diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 412c473f1..aa3c78ab8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,6 @@ jobs: fail-fast: false matrix: db_backend: [rocksdb, goleveldb] - node_type: [query] runs-on: ubuntu-latest env: # Or as an environment variable SPID_TESTNET: ${{ secrets.SPID_TESTNET }} @@ -73,7 +72,7 @@ jobs: - name: Build testnet run: | source "$HOME/.sgxsdk/sgxsdk/environment" - VERSION=${{ steps.get_version.outputs.VERSION }} DB_BACKEND=${{ matrix.db_backend }} FEATURES_U=$(echo ${{ matrix.node_type }} | awk '/query/{printf "query-node,"} /validator/{printf ""}') make build-testnet + VERSION=${{ steps.get_version.outputs.VERSION }} DB_BACKEND=${{ matrix.db_backend }} FEATURES_U=query-node, make build-testnet cp build/secretnetwork_${{ steps.get_version.outputs.VERSION }}_amd64.deb secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64.deb - uses: actions/upload-artifact@v2 with: @@ -86,10 +85,11 @@ jobs: fail-fast: false matrix: db_backend: [goleveldb, rocksdb] - node_type: [query] env: # Or as an environment variable SPID_MAINNET: ${{ secrets.SPID_MAINNET }} API_KEY_MAINNET: ${{ secrets.API_KEY_MAINNET }} + REGISTRY: ghcr.io + IMAGE_NAME: scrtlabs/secret-network-node steps: - uses: actions/checkout@v3 - name: Get the version @@ -104,12 +104,22 @@ jobs: echo $API_KEY_MAINNET > api_key.txt - name: Build run: | - VERSION=${{ steps.get_version.outputs.VERSION }} DB_BACKEND=${{ matrix.db_backend }} FEATURES=production make build-mainnet-upgrade + VERSION=${{ steps.get_version.outputs.VERSION }} DB_BACKEND=${{ matrix.db_backend }} FEATURES=production FEATURES_U=query-node, make build-mainnet-upgrade cp build/secretnetwork_${{ steps.get_version.outputs.VERSION }}_amd64.deb secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64.deb - uses: actions/upload-artifact@v2 with: name: secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64.deb path: secretnetwork_${{ steps.get_version.outputs.VERSION }}_mainnet_${{ matrix.db_backend }}_amd64.deb + - name: Log in to the Container registry + if: ${{ matrix.db_backend == 'goleveldb' }} + uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Push docker image + if: ${{ matrix.db_backend == 'goleveldb' }} + run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }} native-build-cli: runs-on: ${{matrix.os}} diff --git a/CHANGELOG.md b/CHANGELOG.md index c5ec32703..a77443cbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ # 1.3.1 -- Updated `/swagger` endpoint in the LCD REST server +- Use all available cores to serve queries. +- Mainnet docker image with automatic node registration & state sync ([docs](https://docs.scrt.network/node-guides/full-node-docker.html)). +- Mempool optimizations (Thanks @ValarDragon!). For more info see [this](https://github.com/scrtlabs/cosmos-sdk/pull/141#issuecomment-1136767411). +- Fix missing `libsnappy1v5` dependency for rocksdb deb package. +- Updated `${LCD_URL}/swagger/` for v1.3 and added `${LCD_URL}/openapi/`. # 1.3.0 diff --git a/Makefile b/Makefile index 2f56b7483..7a3b5386c 100644 --- a/Makefile +++ b/Makefile @@ -200,24 +200,6 @@ deb-no-compile: dpkg-deb --build /tmp/SecretNetwork/deb/ . -rm -rf /tmp/SecretNetwork -rename_for_release: - -rename "s/windows-4.0-amd64/v${VERSION}-win64/" *.exe - -rename "s/darwin-10.6-amd64/v${VERSION}-osx64/" *darwin* - -sign_for_release: rename_for_release - sha256sum enigma-blockchain*.deb > SHA256SUMS - -sha256sum secretd-* secretcli-* >> SHA256SUMS - gpg -u 91831DE812C6415123AFAA7B420BF1CB005FBCE6 --digest-algo sha256 --clearsign --yes SHA256SUMS - rm -f SHA256SUMS - -release: sign_for_release - rm -rf ./release/ - mkdir -p ./release/ - cp enigma-blockchain_*.deb ./release/ - cp secretcli-* ./release/ - cp secretd-* ./release/ - cp SHA256SUMS.asc ./release/ - clean: -rm -rf /tmp/SecretNetwork -rm -f ./secretcli* @@ -260,11 +242,10 @@ build-testnet: docker_base build-mainnet-upgrade: docker_base @mkdir build 2>&3 || true - docker build --build-arg BUILD_VERSION=${VERSION} -f deployment/dockerfiles/mainnet-upgrade-release.Dockerfile -t build-release . + docker build --build-arg BUILD_VERSION=${VERSION} -f deployment/dockerfiles/mainnet-upgrade-release.Dockerfile -t build-release:latest . docker build --build-arg BUILD_VERSION=${VERSION} --build-arg SGX_MODE=HW -f deployment/dockerfiles/build-deb-mainnet.Dockerfile -t deb_build . docker run -e VERSION=${VERSION} -v $(CUR_DIR)/build:/build deb_build - docker tag build-release ghcr.io/scrtlabs/secret-network-node-mainnet:$(VERSION) - + docker tag build-release ghcr.io/scrtlabs/secret-network-node:$(VERSION) build-mainnet: docker_base @mkdir build 2>&3 || true @@ -445,21 +426,6 @@ bin-data-production: secret-contract-optimizer: sudo docker buildx build --platform=linux/amd64,linux/arm64/v8 -f deployment/dockerfiles/secret-contract-optimizer.Dockerfile -t enigmampc/secret-contract-optimizer:${TAG} --push . -secretjs-build: - cd cosmwasm-js/packages/sdk && yarn && yarn build - -# Before running this, first make sure: -# 1. To `npm login` with enigma-dev -# 2. The new version is updated in `cosmwasm-js/packages/sdk/package.json` -secretjs-publish-npm: secretjs-build - cd cosmwasm-js/packages/sdk && npm publish - -# Before running this, first make sure: -# 1. To `npm login` with enigma-dev -# 2. The new version is updated in `cosmwasm-js/packages/sdk/package.json` -secretjs-publish-beta-npm: secretjs-build - cd cosmwasm-js/packages/sdk && npm publish --tag beta - aesm-image: docker build -f deployment/dockerfiles/aesm.Dockerfile -t enigmampc/aesm . @@ -476,9 +442,8 @@ statik: @echo "Installing statik..." @go install github.com/rakyll/statik@v0.1.6 - -update-swagger-docs: statik - statik -src=client/docs/static/swagger/ -dest=client/docs -f -m +update-swagger-openapi-docs: statik proto-swagger-openapi-gen + statik -src=client/docs/static/ -dest=client/docs -f -m @if [ -n "$(git status --porcelain)" ]; then \ echo "\033[91mSwagger docs are out of sync!!!\033[0m";\ exit 1;\ @@ -486,7 +451,7 @@ update-swagger-docs: statik echo "\033[92mSwagger docs are in sync\033[0m";\ fi -.PHONY: update-swagger-docs statik +.PHONY: update-swagger-openapi-docs statik ############################################################################### ### Protobuf ### @@ -505,27 +470,16 @@ update-swagger-docs: statik protoVer=v0.7 -proto-all: proto-format proto-lint proto-gen proto-swagger-gen +proto-all: proto-format proto-lint proto-gen proto-swagger-openapi-gen proto-gen: @echo "Generating Protobuf files" $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace tendermintdev/sdk-proto-gen:$(protoVer) sh ./scripts/protocgen.sh -# This one doesn't work and i can't find the right docker repo -proto-format: - @echo "Formatting Protobuf files" - $(DOCKER) run --rm -v $(CURDIR):/workspace \ - --workdir /workspace tendermintdev/docker-build-proto \ - find ./ -not -path "./third_party/*" -name *.proto -exec clang-format -i {} \; - -proto-swagger-gen: - @./scripts/protoc-swagger-gen.sh +proto-swagger-openapi-gen: + @./scripts/protoc-swagger-openapi-gen.sh proto-lint: @$(DOCKER_BUF) lint --error-format=json -## TODO - change branch release/v0.5.x to master after columbus-5 merged -proto-check-breaking: - @$(DOCKER_BUF) breaking --against-input $(HTTPS_GIT)#branch=release/v0.43-stargate - -.PHONY: proto-all proto-gen proto-swagger-gen proto-format proto-lint proto-check-breaking +.PHONY: proto-all proto-gen proto-swagger-openapi-gen proto-format proto-lint proto-check-breaking diff --git a/app/app.go b/app/app.go index 792dd0af3..e2c7eff33 100644 --- a/app/app.go +++ b/app/app.go @@ -724,10 +724,10 @@ func RegisterSwaggerAPI(_ client.Context, rtr *mux.Router) { panic(err) } - staticServer := http.FileServer(statikFS) - rtr.PathPrefix("/static/").Handler(http.StripPrefix("/static/", staticServer)) - rtr.PathPrefix("/swagger/").Handler(http.StripPrefix("/swagger/", staticServer)) - // rtr.PathPrefix("/swagger/").Handler(staticServer) + statikServer := http.FileServer(statikFS) + rtr.PathPrefix("/static/").Handler(http.StripPrefix("/static/", statikServer)) + rtr.PathPrefix("/swagger/").Handler(statikServer) + rtr.PathPrefix("/openapi/").Handler(statikServer) } // BlockedAddrs returns all the app's module account addresses that are not diff --git a/client/docs/config.json b/client/docs/config.json index 16c8ea857..e1a5bc622 100644 --- a/client/docs/config.json +++ b/client/docs/config.json @@ -1,143 +1,236 @@ { "swagger": "2.0", "info": { - "title": "Cosmos SDK - Legacy REST and gRPC Gateway docs", - "description": "A REST interface for state queries, legacy transactions", - "version": "1.0.0" + "title": "Secret Network - gRPC Gateway docs", + "description": "A REST interface for queries and transactions", + "version": "v1.3.1" }, "apis": [ { - "url": "./client/docs/static/swagger/swagger.yaml", - "dereference": { - "circular": "ignore" + "url": "../../tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.jsonUpgradedConsensusState" + } } }, { - "url": "./tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/authz/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "AuthParams" + "Params": "../../tmp-swagger-gen/cosmos/authz/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/authz/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/authz/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "BankParams" + "Params": "../../tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/base/tendermint/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/base/tendermint/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "BaseParams" + "Params": "../../tmp-swagger-gen/cosmos/base/tendermint/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/base/tendermint/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/base/tendermint/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "DistributionParams" + "Params": "../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/evidence/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/evidence/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "EvidenceParams" + "Params": "../../tmp-swagger-gen/cosmos/evidence/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/evidence/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/evidence/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/feegrant/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "GovParams" + "Params": "../../tmp-swagger-gen/cosmos/feegrant/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/feegrant/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/feegrant/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "MintParams" + "Params": "../../tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "Params" + "Params": "../../tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "SlashingParams" + "Params": "../../tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "StakingParams", - "DelegatorValidators": "StakingDelegatorValidators" + "Params": "../../tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/tx/v1beta1/service.swagger.json", - "dereference": { - "circular": "ignore" + "url": "../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonUpgradedConsensusState" + } } }, { - "url": "./tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.json", "operationIds": { "rename": { - "Params": "UpgradeParams" + "Params": "../../tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/authz/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/controller/v1/query.swagger.json", "operationIds": { "rename": { - "Params": "AuthzParams" + "Params": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/controller/v1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/controller/v1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/controller/v1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/cosmos/feegrant/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.json", "operationIds": { "rename": { - "Params": "FeegrantParams" + "Params": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/secret/registration/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/ibc/applications/transfer/v1/query.swagger.json", "operationIds": { "rename": { - "Params": "RegistrationParams" + "Params": "../../tmp-swagger-gen/ibc/applications/transfer/v1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/ibc/applications/transfer/v1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/ibc/applications/transfer/v1/query.swagger.jsonUpgradedConsensusState" } } }, { - "url": "./tmp-swagger-gen/secret/compute/v1beta1/query.swagger.json", + "url": "../../tmp-swagger-gen/ibc/core/channel/v1/query.swagger.json", "operationIds": { "rename": { - "Params": "ComputeParams" + "Params": "../../tmp-swagger-gen/ibc/core/channel/v1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/ibc/core/channel/v1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/ibc/core/channel/v1/query.swagger.jsonUpgradedConsensusState" } } + }, + { + "url": "../../tmp-swagger-gen/ibc/core/client/v1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/ibc/core/client/v1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/ibc/core/client/v1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/ibc/core/client/v1/query.swagger.jsonUpgradedConsensusState" + } + } + }, + { + "url": "../../tmp-swagger-gen/ibc/core/connection/v1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/ibc/core/connection/v1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/ibc/core/connection/v1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/ibc/core/connection/v1/query.swagger.jsonUpgradedConsensusState" + } + } + }, + { + "url": "../../tmp-swagger-gen/secret/compute/v1beta1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/secret/compute/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/secret/compute/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/secret/compute/v1beta1/query.swagger.jsonUpgradedConsensusState" + } + } + }, + { + "url": "../../tmp-swagger-gen/secret/intertx/v1beta1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/secret/intertx/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/secret/intertx/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/secret/intertx/v1beta1/query.swagger.jsonUpgradedConsensusState" + } + } + }, + { + "url": "../../tmp-swagger-gen/secret/registration/v1beta1/query.swagger.json", + "operationIds": { + "rename": { + "Params": "../../tmp-swagger-gen/secret/registration/v1beta1/query.swagger.jsonParams", + "DelegatorValidators": "../../tmp-swagger-gen/secret/registration/v1beta1/query.swagger.jsonDelegatorValidators", + "UpgradedConsensusState": "../../tmp-swagger-gen/secret/registration/v1beta1/query.swagger.jsonUpgradedConsensusState" + } + } + }, + { + "url": "./swagger_legacy.yaml", + "dereference": { + "circular": "ignore" + } } ] -} \ No newline at end of file +} diff --git a/client/docs/package.json b/client/docs/package.json new file mode 100644 index 000000000..80c785748 --- /dev/null +++ b/client/docs/package.json @@ -0,0 +1,16 @@ +{ + "name": "docs", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "scripts": { + "combine": "swagger-combine ./config.json -o static/swagger/swagger.yaml -f yaml --continueOnConflictingPaths --includeDefinitions", + "convert": "mkdir -p static/openapi && swagger2openapi static/swagger/swagger.yaml --outfile static/openapi/openapi.yaml --yaml", + "build": "redoc-cli build static/openapi/openapi.yaml --output ./static/openapi/index.html" + }, + "dependencies": { + "redoc-cli": "0.13.14", + "swagger-combine": "1.4.0", + "swagger2openapi": "7.0.8" + } +} \ No newline at end of file diff --git a/client/docs/static/openapi/index.html b/client/docs/static/openapi/index.html new file mode 100644 index 000000000..3c2936801 --- /dev/null +++ b/client/docs/static/openapi/index.html @@ -0,0 +1,3307 @@ + + + + + + Secret Network - gRPC Gateway docs + + + + + + + + + +

Secret Network - gRPC Gateway docs (v1.3.1)

Download OpenAPI specification:Download

A REST interface for queries and transactions

+

Authentication

kms

Security Scheme Type HTTP
HTTP Authorization Scheme basic

Query

Accounts returns all the existing accounts

Since: cosmos-sdk 0.43

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Account returns account details based on address.

path Parameters
address
required
string

address defines the address to query for.

+

Responses

Params queries all parameters.

Responses

Returns list of `Authorization`, granted to the grantee by the granter.

query Parameters
granter
string
grantee
string
msg_type_url
string

Optional, msg_type_url, when set, will query only grants matching given msg type.

+
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

GranteeGrants returns a list of `GrantAuthorization` by grantee.

Since: cosmos-sdk 0.45.2

+
path Parameters
grantee
required
string
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

GranterGrants returns list of `GrantAuthorization`, granted by granter.

Since: cosmos-sdk 0.45.2

+
path Parameters
granter
required
string
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

AllBalances queries the balance of all coins for a single account.

path Parameters
address
required
string

address is the address to query balances for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Balance queries the balance of a single coin for a single account.

path Parameters
address
required
string

address is the address to query balances for.

+
query Parameters
denom
string

denom is the coin denom to query balances for.

+

Responses

DenomsMetadata queries the client metadata for all registered coin denominations.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

DenomsMetadata queries the client metadata of a given coin denomination.

path Parameters
denom
required
string

denom is the coin denom to query the metadata for.

+

Responses

Params queries the parameters of x/bank module.

Responses

SpendableBalances queries the spenable balance of all coins for a single +account.

path Parameters
address
required
string

address is the address to query spendable balances for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

TotalSupply queries the total supply of all coins.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

SupplyOf queries the supply of a single coin.

path Parameters
denom
required
string

denom is the coin denom to query balances for.

+

Responses

CommunityPool queries the community pool coins.

Responses

DelegationTotalRewards queries the total rewards accrued by a each +validator.

path Parameters
delegator_address
required
string

delegator_address defines the delegator address to query for.

+

Responses

DelegationRewards queries the total rewards accrued by a delegation.

path Parameters
delegator_address
required
string

delegator_address defines the delegator address to query for.

+
validator_address
required
string

validator_address defines the validator address to query for.

+

Responses

DelegatorValidators queries the validators of a delegator.

path Parameters
delegator_address
required
string

delegator_address defines the delegator address to query for.

+

Responses

DelegatorWithdrawAddress queries withdraw address of a delegator.

path Parameters
delegator_address
required
string

delegator_address defines the delegator address to query for.

+

Responses

DelegatorWithdrawAddress queries withdraw address of a delegator.

Responses

Params queries params of the distribution module.

Responses

ValidatorCommission queries accumulated commission for a validator.

path Parameters
validator_address
required
string

validator_address defines the validator address to query for.

+

Responses

ValidatorOutstandingRewards queries rewards of a validator address.

path Parameters
validator_address
required
string

validator_address defines the validator address to query for.

+

Responses

ValidatorSlashes queries slash events of a validator.

path Parameters
validator_address
required
string

validator_address defines the validator address to query for.

+
query Parameters
starting_height
string <uint64>

starting_height defines the optional starting height to query the slashes.

+
ending_height
string <uint64>

starting_height defines the optional ending height to query the slashes.

+
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

AllEvidence queries all evidence.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Evidence queries evidence based on evidence hash.

path Parameters
evidence_hash
required
string <byte>

evidence_hash defines the hash of the requested evidence.

+

Responses

Allowance returns fee granted to the grantee by the granter.

path Parameters
granter
required
string

granter is the address of the user granting an allowance of their funds.

+
grantee
required
string

grantee is the address of the user being granted an allowance of another user's funds.

+

Responses

Allowances returns all the grants for address.

path Parameters
grantee
required
string
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Params queries all parameters of the gov module.

path Parameters
params_type
required
string

params_type defines which parameters to query for, can be one of "voting", +"tallying" or "deposit".

+

Responses

Proposals queries all proposals based on given status.

query Parameters
proposal_status
string
Default: "PROPOSAL_STATUS_UNSPECIFIED"
Enum: "PROPOSAL_STATUS_UNSPECIFIED" "PROPOSAL_STATUS_DEPOSIT_PERIOD" "PROPOSAL_STATUS_VOTING_PERIOD" "PROPOSAL_STATUS_PASSED" "PROPOSAL_STATUS_REJECTED" "PROPOSAL_STATUS_FAILED"

proposal_status defines the status of the proposals.

+
    +
  • PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal 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.
  • +
+
voter
string

voter defines the voter address for the proposals.

+
depositor
string

depositor defines the deposit addresses from the proposals.

+
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Proposal queries proposal details based on ProposalID.

path Parameters
proposal_id
required
string <uint64>

proposal_id defines the unique id of the proposal.

+

Responses

Deposits queries all deposits of a single proposal.

path Parameters
proposal_id
required
string <uint64>

proposal_id defines the unique id of the proposal.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Deposit queries single deposit information based proposalID, depositAddr.

path Parameters
proposal_id
required
string <uint64>

proposal_id defines the unique id of the proposal.

+
depositor
required
string

depositor defines the deposit addresses from the proposals.

+

Responses

TallyResult queries the tally of a proposal vote.

path Parameters
proposal_id
required
string <uint64>

proposal_id defines the unique id of the proposal.

+

Responses

Votes queries votes of a given proposal.

path Parameters
proposal_id
required
string <uint64>

proposal_id defines the unique id of the proposal.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Vote queries voted information based on proposalID, voterAddr.

path Parameters
proposal_id
required
string <uint64>

proposal_id defines the unique id of the proposal.

+
voter
required
string

voter defines the oter address for the proposals.

+

Responses

AnnualProvisions current minting annual provisions value.

Responses

Inflation returns the current minting inflation value.

Responses

Params returns the total set of minting parameters.

Responses

Params queries a specific parameter of a module, given its subspace and +key.

query Parameters
subspace
string

subspace defines the module to query the parameter for.

+
key
string

key defines the key of the parameter in the subspace.

+

Responses

Params queries the parameters of slashing module

Responses

SigningInfos queries signing info of all validators

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

SigningInfo queries the signing info of given cons address

path Parameters
cons_address
required
string

cons_address is the address to query signing info of

+

Responses

DelegatorDelegations queries all delegations of a given delegator address.

path Parameters
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Redelegations queries redelegations of given address.

path Parameters
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+
query Parameters
src_validator_addr
string

src_validator_addr defines the validator address to redelegate from.

+
dst_validator_addr
string

dst_validator_addr defines the validator address to redelegate to.

+
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

DelegatorUnbondingDelegations queries all unbonding delegations of a given +delegator address.

path Parameters
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

DelegatorValidators queries all validators info for given delegator +address.

path Parameters
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

DelegatorValidator queries validator info for given delegator validator +pair.

path Parameters
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+
validator_addr
required
string

validator_addr defines the validator address to query for.

+

Responses

HistoricalInfo queries the historical info for given height.

path Parameters
height
required
string <int64>

height defines at which height to query the historical info.

+

Responses

Parameters queries the staking parameters.

Responses

Pool queries the pool info.

Responses

Validators queries all validators that match the given status.

query Parameters
status
string

status enables to query for validators matching a given status.

+
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Validator queries validator info for given validator address.

path Parameters
validator_addr
required
string

validator_addr defines the validator address to query for.

+

Responses

ValidatorDelegations queries delegate info for given validator.

path Parameters
validator_addr
required
string

validator_addr defines the validator address to query for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Delegation queries delegate info for given validator delegator pair.

path Parameters
validator_addr
required
string

validator_addr defines the validator address to query for.

+
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+

Responses

UnbondingDelegation queries unbonding info for given validator delegator +pair.

path Parameters
validator_addr
required
string

validator_addr defines the validator address to query for.

+
delegator_addr
required
string

delegator_addr defines the delegator address to query for.

+

Responses

ValidatorUnbondingDelegations queries unbonding delegations of a validator.

path Parameters
validator_addr
required
string

validator_addr defines the validator address to query for.

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

AppliedPlan queries a previously applied upgrade plan by its name.

path Parameters
name
required
string

name is the name of the applied plan to query for.

+

Responses

CurrentPlan queries the current upgrade plan.

Responses

ModuleVersions queries the list of module versions from state.

Since: cosmos-sdk 0.43

+
query Parameters
module_name
string

module_name is a field to query a specific module +consensus version from state. Leaving this empty will +fetch the full list of module versions from state.

+

Responses

UpgradedConsensusState queries the consensus state that will serve +as a trusted kernel for the next version of this chain. It will only be +stored at the last height of this chain. +UpgradedConsensusState RPC not supported with legacy querier +This rpc is deprecated now that IBC has its own replacement +(https://github.com/cosmos/ibc-go/blob/2c880a22e9f9cc75f62b527ca94aa75ce1106001/proto/ibc/core/client/v1/query.proto#L54)

path Parameters
last_height
required
string <int64>

last height of the current chain must be sent in request +as this is the height under which next consensus state is stored

+

Responses

Params queries all parameters of the ICA controller submodule.

Responses

Params queries all parameters of the ICA host submodule.

Responses

DenomHash queries a denomination hash information.

path Parameters
trace
required
string

The denomination trace ([port_id]/[channel_id])+/[denom]

+

Responses

DenomTraces queries all denomination traces.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

DenomTrace queries a denomination trace information.

path Parameters
hash
required
string

hash (in hex format) of the denomination trace information.

+

Responses

Params queries all parameters of the ibc-transfer module.

Responses

Channels queries all the IBC channels of a chain.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Channel queries an IBC Channel.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+

Responses

ChannelClientState queries for the client state for the channel associated +with the provided channel identifiers.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+

Responses

ChannelConsensusState queries for the consensus state for the channel +associated with the provided channel identifiers.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
revision_number
required
string <uint64>

revision number of the consensus state

+
revision_height
required
string <uint64>

revision height of the consensus state

+

Responses

NextSequenceReceive returns the next receive sequence for a given channel.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+

Responses

PacketAcknowledgements returns all the packet acknowledgements associated +with a channel.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+
packet_commitment_sequences
Array of strings <uint64>

list of packet sequences.

+

Responses

PacketAcknowledgement queries a stored packet acknowledgement hash.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
sequence
required
string <uint64>

packet sequence

+

Responses

PacketCommitments returns all the packet commitments hashes associated +with a channel.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

UnreceivedAcks returns all the unreceived IBC acknowledgements associated +with a channel and sequences.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
packet_ack_sequences
required
Array of strings <uint64> non-empty

list of acknowledgement sequences

+

Responses

UnreceivedPackets returns all the unreceived IBC packets associated with a +channel and sequences.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
packet_commitment_sequences
required
Array of strings <uint64> non-empty

list of packet sequences

+

Responses

PacketCommitment queries a stored packet commitment hash.

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
sequence
required
string <uint64>

packet sequence

+

Responses

PacketReceipt queries if a given packet sequence has been received on the +queried chain

path Parameters
channel_id
required
string

channel unique identifier

+
port_id
required
string

port unique identifier

+
sequence
required
string <uint64>

packet sequence

+

Responses

ConnectionChannels queries all the channels associated with a connection +end.

path Parameters
connection
required
string

connection unique identifier

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

ClientParams queries all parameters of the ibc client.

Responses

ClientStates queries all the IBC light clients of a chain.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

ClientState queries an IBC light client.

path Parameters
client_id
required
string

client state unique identifier

+

Responses

Status queries the status of an IBC client.

path Parameters
client_id
required
string

client unique identifier

+

Responses

ConsensusStates queries all the consensus state associated with a given +client.

path Parameters
client_id
required
string

client identifier

+
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

ConsensusState queries a consensus state associated with a client state at +a given height.

path Parameters
client_id
required
string

client identifier

+
revision_number
required
string <uint64>

consensus state revision number

+
revision_height
required
string <uint64>

consensus state revision height

+
query Parameters
latest_height
boolean

latest_height overrrides the height field and queries the latest stored +ConsensusState.

+

Responses

UpgradedClientState queries an Upgraded IBC light client.

Responses

UpgradedConsensusState queries an Upgraded IBC consensus state.

Responses

ClientConnections queries the connection paths associated with a client +state.

path Parameters
client_id
required
string

client identifier associated with a connection

+

Responses

Connections queries all the IBC connections of a chain.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Connection queries an IBC connection end.

path Parameters
connection_id
required
string

connection unique identifier

+

Responses

ConnectionClientState queries the client state associated with the +connection.

path Parameters
connection_id
required
string

connection identifier

+

Responses

ConnectionConsensusState queries the consensus state associated with the +connection.

path Parameters
connection_id
required
string

connection identifier

+
revision_number
required
string <uint64>
revision_height
required
string <uint64>

Responses

Query all contract codes on-chain

Responses

Query a specific contract code

path Parameters
code_id
required
string <uint64>

Responses

Query contract

path Parameters
code_id
required
string <uint64>

Responses

Query contract

path Parameters
address
required
string <byte>

address is the address of the contract to query

+

Responses

Query contract

path Parameters
address
required
string <byte>

address is the address of the contract

+
query Parameters
query_data
string <byte>

Responses

QueryInterchainAccountFromAddress returns the interchain account for given owner address on a given connection pair

query Parameters
owner
string
connection_id
string

Responses

Returns the encrypted seed for a registered node by public key

path Parameters
pub_key
required
string <byte>

Responses

Returns the key used for registration

Responses

Returns the key used for transactions

Responses

Service

GetLatestBlock returns the latest block.

Responses

GetBlockByHeight queries block for given height.

path Parameters
height
required
string <int64>

Responses

GetNodeInfo queries the current node info.

Responses

GetSyncing queries node syncing.

Responses

GetLatestValidatorSet queries latest validator-set.

query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

GetValidatorSetByHeight queries validator-set at a given height.

path Parameters
height
required
string <int64>
query Parameters
pagination.key
string <byte>

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.

+
pagination.offset
string <uint64>

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.

+
pagination.limit
string <uint64>

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.

+
pagination.count_total
boolean

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.

+
pagination.reverse
boolean

reverse is set to true if results are to be returned in the descending order.

+

Since: cosmos-sdk 0.43

+

Responses

Secret REST

The properties of the connected node

Information about the connected node

+

Responses

Response samples

Content type
application/json
{
  • "application_version": {
    },
  • "node_info": {
    }
}

Tendermint RPC

Syncing state of node

Get if the node is currently syning with other nodes

+

Responses

Response samples

Content type
application/json
{
  • "syncing": true
}

Get the latest block

Responses

Response samples

Content type
application/json
{
  • "block_meta": {
    },
  • "block": {
    }
}

Get a block at a certain height

path Parameters
height
required
number
Example: 1

Block height

+

Responses

Response samples

Content type
application/json
{
  • "block_meta": {
    },
  • "block": {
    }
}

Get the latest validator set

Responses

Response samples

Content type
application/json
{
  • "block_height": "string",
  • "validators": [
    ]
}

Get a validator set a certain height

path Parameters
height
required
number
Example: 1

Block height

+

Responses

Response samples

Content type
application/json
{
  • "block_height": "string",
  • "validators": [
    ]
}

Transactions

Get a Tx by hash Deprecated

Retrieve a transaction using its hash.

+
path Parameters
hash
required
string
Example: BCBE20E8D46758B96AE5883B792858296AC06E51435490FBDCAE25A72B3CC76B

Tx hash

+

Responses

Response samples

Content type
application/json
{
  • "hash": "D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656",
  • "height": 368,
  • "tx": {
    },
  • "result": {
    }
}

Search transactions Deprecated

Search transactions by events.

+
query Parameters
message.action
string
Example: message.action=send

transaction events such as 'message.action=send' which results in the following endpoint: 'GET /txs?message.action=send'. note that each module documents its own events. look for xx_events.md in the corresponding cosmos-sdk/docs/spec directory

+
message.sender
string
Example: message.sender=cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

transaction tags with sender: 'GET /txs?message.action=send&message.sender=cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv'

+
page
integer
Example: page=1

Page number

+
limit
integer
Example: limit=1

Maximum number of items per page

+
tx.minheight
integer
Example: tx.minheight=25

transactions on blocks with height greater or equal this value

+
tx.maxheight
integer
Example: tx.maxheight=800000

transactions on blocks with height less than or equal this value

+

Responses

Response samples

Content type
application/json
{
  • "total_count": 1,
  • "count": 1,
  • "page_number": 1,
  • "page_total": 1,
  • "limit": 30,
  • "txs": [
    ]
}

Broadcast a signed tx

Broadcast a signed tx to a full node

+
Request Body schema: application/json

The tx must be a signed StdTx. The supported broadcast modes include "block"(return after tx commit), "sync"(return afer CheckTx) and "async"(return right away).

+
object
mode
string
sequences
Array of strings
fee_granter
string

bech32 encoded address

+

Responses

Request samples

Content type
application/json
{
  • "tx": {
    },
  • "mode": "block",
  • "sequences": [
    ],
  • "fee_granter": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27"
}

Response samples

Content type
application/json
{
  • "check_tx": {
    },
  • "deliver_tx": {
    },
  • "hash": "EE5F3404034C524501629B56E0DDC38FAD651F04",
  • "height": 0
}

Encode a transaction to the Amino wire format Deprecated

Encode a transaction (signed or not) from JSON to base64-encoded Amino serialized bytes

+
Request Body schema: application/json

The tx to encode

+
object

Responses

Request samples

Content type
application/json
{
  • "tx": {
    }
}

Response samples

Content type
application/json
{
  • "tx": "The base64-encoded Amino-serialized bytes for the tx"
}

Decode a transaction from the Amino wire format Deprecated

Decode a transaction (signed or not) from base64-encoded Amino serialized bytes to JSON

+
Request Body schema: application/json

The tx to decode

+
tx
string

Responses

Request samples

Content type
application/json
{
  • "tx": "SvBiXe4KPqijYZoKFFHEzJ8c2HPAfv2EFUcIhx0yPagwEhTy0vPA+GGhCEslKXa4Af0uB+mfShoMCgVzdGFrZRIDMTAwEgQQwJoM"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Bank

Get the account balances Deprecated

path Parameters
address
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Account address in bech32 format

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Send coins from one account to another Deprecated

path Parameters
address
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Account address in bech32 format

+
Request Body schema: application/json

The sender and tx information

+
object
Array of objects[ items ]

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "amount": [
    ]
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Total supply of coins in the chain Deprecated

Responses

Response samples

Content type
application/json
{
  • "total": [
    ]
}

Total supply of a single coin denomination Deprecated

path Parameters
denomination
required
string
Example: uatom

Coin denomination

+

Responses

Response samples

Content type
application/json
"string"

Auth

Get the account information on blockchain Deprecated

path Parameters
address
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Account address

+

Responses

Response samples

Content type
application/json
{
  • "type": "string",
  • "value": {
    }
}

Staking

Get all delegations from a delegator Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Submit delegation

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
Request Body schema: application/json

Delegate an amount of liquid coins to a validator

+
object
delegator_address
string

bech32 encoded address

+
validator_address
string

bech32 encoded address

+
object

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "delegator_address": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "validator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "amount": {
    }
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query the current delegation between a delegator and a validator Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
{
  • "delegator_address": "string",
  • "validator_address": "string",
  • "shares": "string",
  • "balance": {
    }
}

Get all unbonding delegations from a delegator Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Submit an unbonding delegation

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
Request Body schema: application/json

Unbond an amount of bonded shares from a validator

+
object
delegator_address
string

bech32 encoded address

+
validator_address
string

bech32 encoded address

+
object

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "delegator_address": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "validator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "amount": {
    }
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query all unbonding delegations between a delegator and a validator Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
{
  • "delegator_address": "string",
  • "validator_address": "string",
  • "entries": [
    ]
}

Get all redelegations (filter by query params) Deprecated

query Parameters
delegator
string

Bech32 AccAddress of Delegator

+
validator_from
string

Bech32 ValAddress of SrcValidator

+
validator_to
string

Bech32 ValAddress of DstValidator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Submit a redelegation Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
Request Body schema: application/json

The sender and tx information

+
object
delegator_address
string

bech32 encoded address

+
validator_src_addressess
string

bech32 encoded address

+
validator_dst_address
string

bech32 encoded address

+
shares
string

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "delegator_address": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "validator_src_addressess": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "validator_dst_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "shares": "100"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query all validators that a delegator is bonded to Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Query a validator that a delegator is bonded to Deprecated

path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 ValAddress of Delegator

+

Responses

Response samples

Content type
application/json
{
  • "operator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "consensus_pubkey": "cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf",
  • "jailed": true,
  • "status": 0,
  • "tokens": "string",
  • "delegator_shares": "string",
  • "description": {
    },
  • "bond_height": "0",
  • "bond_intra_tx_counter": 0,
  • "unbonding_height": "0",
  • "unbonding_time": "1970-01-01T00:00:00Z",
  • "commission": {
    }
}

Get all validator candidates. By default it returns only the bonded validators. Deprecated

query Parameters
status
string
Example: status=bonded

The validator bond status. Must be either 'bonded', 'unbonded', or 'unbonding'.

+
page
integer
Example: page=1

The page number.

+
limit
integer
Example: limit=1

The maximum number of items per page.

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Query the information from a single validator Deprecated

path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
{
  • "operator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "consensus_pubkey": "cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf",
  • "jailed": true,
  • "status": 0,
  • "tokens": "string",
  • "delegator_shares": "string",
  • "description": {
    },
  • "bond_height": "0",
  • "bond_intra_tx_counter": 0,
  • "unbonding_height": "0",
  • "unbonding_time": "1970-01-01T00:00:00Z",
  • "commission": {
    }
}

Get all delegations from a validator Deprecated

path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Get all unbonding delegations from a validator Deprecated

path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Get the current state of the staking pool Deprecated

Responses

Response samples

Content type
application/json
{
  • "loose_tokens": "string",
  • "bonded_tokens": "string",
  • "inflation_last_time": "string",
  • "inflation": "string",
  • "date_last_commission_reset": "string",
  • "prev_bonded_shares": "string"
}

Get the current staking parameter values Deprecated

Responses

Response samples

Content type
application/json
{
  • "inflation_rate_change": "string",
  • "inflation_max": "string",
  • "inflation_min": "string",
  • "goal_bonded": "string",
  • "unbonding_time": "string",
  • "max_validators": 0,
  • "bond_denom": "string"
}

Slashing

Get sign info of given all validators Deprecated

Get sign info of all validators

+
query Parameters
page
required
integer
Example: page=1

Page number

+
limit
required
integer
Example: limit=5

Maximum number of items per page

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Unjail a jailed validator Deprecated

Send transaction to unjail a jailed validator

+
path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 validator address

+
Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    }
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Get the current slashing parameters Deprecated

Responses

Response samples

Content type
application/json
{
  • "max_evidence_age": "string",
  • "signed_blocks_window": "string",
  • "min_signed_per_window": "string",
  • "double_sign_unbond_duration": "string",
  • "downtime_unbond_duration": "string",
  • "slash_fraction_double_sign": "string",
  • "slash_fraction_downtime": "string"
}

Governance

Submit a proposal Deprecated

Send transaction to submit a proposal

+
Request Body schema: application/json

valid value of "proposal_type" can be "text", "parameter_change", "software_upgrade"

+
object
title
string
description
string
proposal_type
string
proposer
string

bech32 encoded address

+
Array of objects[ items ]

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "title": "string",
  • "description": "string",
  • "proposal_type": "text",
  • "proposer": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "initial_deposit": [
    ]
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query proposals Deprecated

Query proposals information with parameters

+
query Parameters
voter
string

voter address

+
depositor
string

depositor address

+
status
string

proposal status, valid values can be "deposit_period", "voting_period", "passed", "rejected"

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Generate a parameter change proposal transaction Deprecated

Generate a parameter change proposal transaction

+
Request Body schema: application/json

The parameter change proposal body that contains all parameter changes

+
object
title
string
description
string
proposer
string

bech32 encoded address

+
Array of objects[ items ]
Array of objects[ items ]

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "title": "string",
  • "description": "string",
  • "proposer": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "deposit": [
    ],
  • "changes": [
    ]
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query a proposal Deprecated

Query a proposal by id

+
path Parameters
proposalId
required
string
Example: 2

Responses

Response samples

Content type
application/json
{
  • "proposal_id": 0,
  • "title": "string",
  • "description": "string",
  • "proposal_type": "string",
  • "proposal_status": "string",
  • "final_tally_result": {
    },
  • "submit_time": "string",
  • "total_deposit": [
    ],
  • "voting_start_time": "string"
}

Query proposer Deprecated

Query for the proposer for a proposal

+
path Parameters
proposalId
required
string
Example: 2

Responses

Response samples

Content type
application/json
{
  • "proposal_id": "string",
  • "proposer": "string"
}

Query deposits Deprecated

Query deposits by proposalId

+
path Parameters
proposalId
required
string
Example: 2

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Deposit tokens to a proposal Deprecated

Send transaction to deposit tokens to a proposal

+
path Parameters
proposalId
required
string
Example: 2

proposal id

+
Request Body schema: application/json
object
depositor
string

bech32 encoded address

+
Array of objects[ items ]

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "depositor": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "amount": [
    ]
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query deposit Deprecated

Query deposit by proposalId and depositor address

+
path Parameters
proposalId
required
string
Example: 2

proposal id

+
depositor
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 depositor address

+

Responses

Response samples

Content type
application/json
{
  • "amount": [
    ],
  • "proposal_id": "string",
  • "depositor": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27"
}

Query voters Deprecated

Query voters information by proposalId

+
path Parameters
proposalId
required
string
Example: 2

proposal id

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Vote a proposal Deprecated

Send transaction to vote a proposal

+
path Parameters
proposalId
required
string
Example: 2

proposal id

+
Request Body schema: application/json

valid value of "option" field can be "yes", "no", "no_with_veto" and "abstain"

+
object
voter
string

bech32 encoded address

+
option
string

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "voter": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27",
  • "option": "yes"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query vote Deprecated

Query vote information by proposal Id and voter address

+
path Parameters
proposalId
required
string
Example: 2

proposal id

+
voter
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 voter address

+

Responses

Response samples

Content type
application/json
{
  • "voter": "string",
  • "proposal_id": "string",
  • "option": "string"
}

Get a proposal's tally result at the current time Deprecated

Gets a proposal's tally result at the current time. If the proposal is pending deposits (i.e status 'DepositPeriod') it returns an empty tally result.

+
path Parameters
proposalId
required
string
Example: 2

proposal id

+

Responses

Response samples

Content type
application/json
{
  • "yes": "0.0000000000",
  • "abstain": "0.0000000000",
  • "no": "0.0000000000",
  • "no_with_veto": "0.0000000000"
}

Query governance deposit parameters Deprecated

Query governance deposit parameters. The max_deposit_period units are in nanoseconds.

+

Responses

Response samples

Content type
application/json
{
  • "min_deposit": [
    ],
  • "max_deposit_period": "86400000000000"
}

Query governance tally parameters Deprecated

Query governance tally parameters

+

Responses

Response samples

Content type
application/json
{
  • "threshold": "0.5000000000",
  • "veto": "0.3340000000",
  • "governance_penalty": "0.0100000000"
}

Query governance voting parameters Deprecated

Query governance voting parameters. The voting_period units are in nanoseconds.

+

Responses

Response samples

Content type
application/json
{
  • "voting_period": "86400000000000"
}

Distribution

Get the total rewards balance from all delegations Deprecated

Get the sum of all the rewards earned by delegations by a single delegator

+
path Parameters
delegatorAddr
required
string
Example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf

Bech32 AccAddress of Delegator

+

Responses

Response samples

Content type
application/json
{
  • "rewards": [
    ],
  • "total": [
    ]
}

Withdraw all the delegator's delegation rewards Deprecated

Withdraw all the delegator's delegation rewards

+
path Parameters
delegatorAddr
required
string
Example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf

Bech32 AccAddress of Delegator

+
Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    }
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Query a delegation reward Deprecated

Query a single delegation reward by a delegator

+
path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Withdraw a delegation reward Deprecated

Withdraw a delegator's delegation reward from a single validator

+
path Parameters
delegatorAddr
required
string
Example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv

Bech32 AccAddress of Delegator

+
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+
Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    }
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Get the rewards withdrawal address Deprecated

Get the delegations' rewards withdrawal address. This is the address in which the user will receive the reward funds

+
path Parameters
delegatorAddr
required
string
Example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf

Bech32 AccAddress of Delegator

+

Responses

Response samples

Content type
application/json
"cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27"

Replace the rewards withdrawal address Deprecated

Replace the delegations' rewards withdrawal address for a new one.

+
path Parameters
delegatorAddr
required
string
Example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf

Bech32 AccAddress of Delegator

+
Request Body schema: application/json
object
withdraw_address
string

bech32 encoded address

+

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "withdraw_address": "cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Validator distribution information Deprecated

Query the distribution information of a single validator

+
path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
{
  • "operator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  • "self_bond_rewards": [
    ],
  • "val_commission": [
    ]
}

Fee distribution outstanding rewards of a single validator Deprecated

path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Commission and self-delegation rewards of a single validator Deprecated

Query the commission and self-delegation rewards of validator.

+
path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Withdraw the validator's rewards Deprecated

Withdraw the validator's self-delegation and commissions rewards

+
path Parameters
validatorAddr
required
string
Example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l

Bech32 OperatorAddress of validator

+
Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    }
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Community pool parameters Deprecated

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Fee distribution parameters Deprecated

Responses

Response samples

Content type
application/json
{
  • "base_proposer_reward": "string",
  • "bonus_proposer_reward": "string",
  • "community_tax": "string"
}

Mint

Minting module parameters Deprecated

Responses

Response samples

Content type
application/json
{
  • "mint_denom": "string",
  • "inflation_rate_change": "string",
  • "inflation_max": "string",
  • "inflation_min": "string",
  • "goal_bonded": "string",
  • "blocks_per_year": "string"
}

Current minting inflation value Deprecated

Responses

Response samples

Content type
application/json
"string"

Current minting annual provisions value Deprecated

Responses

Response samples

Content type
application/json
"string"

Wasm

Generate wasm store code message

Request Body schema: application/json
object
wasm_bytes
string

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "wasm_bytes": "Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

List code info

Responses

Response samples

Content type
application/json
{
  • "height": "string",
  • "result": {
    }
}

Instantiate wasm contract message

path Parameters
codeID
required
number

code ID you want to instantiate

+
Request Body schema: application/json
object
Array of objects[ items ]
init_msg
string

json formatted string

+

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "init_coins": [
    ],
  • "init_msg": "{}"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Get code info of the code ID

path Parameters
codeID
required
number

code ID you want to query

+

Responses

Response samples

Content type
application/json
{
  • "height": "string",
  • "result": {
    }
}

Get info about all contracts deployed with a code ID

path Parameters
codeID
required
number

code ID you want to query

+

Responses

Response samples

Content type
application/json
{
  • "height": "string",
  • "result": {
    }
}

Execute wasm contract message

path Parameters
contractAddress
required
string

contract address you want to execute

+
Request Body schema: application/json
object
Array of objects[ items ]
exec_msg
string

Responses

Request samples

Content type
application/json
{
  • "base_req": {
    },
  • "coins": [
    ],
  • "exec_msg": "{}"
}

Response samples

Content type
application/json
{
  • "msg": [
    ],
  • "fee": {
    },
  • "memo": "string",
  • "signature": {
    }
}

Get stored contract-hash information

path Parameters
contractAddress
required
string

contract address you want to lookup

+
query Parameters
query_msg
required
string
Example: query_msg={}

json formatted query msg

+

Responses

Response samples

Content type
application/json
{
  • "height": "string",
  • "result": "string"
}

Get stored information with store key

path Parameters
contractAddress
required
string

contract address you want to lookup

+
query
required
string

hex encoded data for the query

+
query Parameters
encoding
string

encoding of the query data (only hex supported)

+

Responses

Response samples

Content type
application/json
{
  • "height": "string",
  • "result": {
    }
}

Get code ID data hash

path Parameters
codeID
required
number

code ID you want to query

+

Responses

Response samples

Content type
application/json
{
  • "height": "string",
  • "result": {
    }
}

Reg

Get chain public key

Get chain public key

+

Responses

+ + + + \ No newline at end of file diff --git a/client/docs/static/openapi/openapi.yaml b/client/docs/static/openapi/openapi.yaml new file mode 100644 index 000000000..976e4ff92 --- /dev/null +++ b/client/docs/static/openapi/openapi.yaml @@ -0,0 +1,50113 @@ +openapi: 3.0.0 +info: + title: Secret Network - gRPC Gateway docs + description: A REST interface for queries and transactions + version: v1.3.1 +paths: + /cosmos/auth/v1beta1/accounts: + get: + summary: Accounts returns all the existing accounts + description: "Since: cosmos-sdk 0.43" + operationId: Accounts + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + accounts: + 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" + } + title: accounts are the existing accounts + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAccountsResponse is the response type for the + Query/Accounts RPC method. + + + Since: cosmos-sdk 0.43 + default: + description: An unexpected error response. + content: + "*/*": + 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: 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/auth/v1beta1/accounts/{address}": + get: + summary: Account returns account details based on address. + operationId: Account + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + account: + 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: QueryAccountResponse is the response type for the Query/Account RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: address + description: address defines the address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/auth/v1beta1/params: + get: + summary: Params queries all parameters. + operationId: ../../tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_memo_characters: + type: string + format: uint64 + tx_sig_limit: + type: string + format: uint64 + tx_size_cost_per_byte: + type: string + format: uint64 + sig_verify_cost_ed25519: + type: string + format: uint64 + sig_verify_cost_secp256k1: + type: string + format: uint64 + description: QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/authz/v1beta1/grants: + get: + summary: Returns list of `Authorization`, granted to the grantee by the granter. + operationId: Grants + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + grants: + type: array + items: + type: object + properties: + authorization: + 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" + } + expiration: + type: string + format: date-time + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryGrantsResponse is the response type for the + Query/Authorizations RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: granter + in: query + required: false + schema: + type: string + - name: grantee + in: query + required: false + schema: + type: string + - name: msg_type_url + description: Optional, msg_type_url, when set, will query only grants matching + given msg type. + in: query + required: false + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/authz/v1beta1/grants/grantee/{grantee}": + get: + summary: GranteeGrants returns a list of `GrantAuthorization` by grantee. + description: "Since: cosmos-sdk 0.45.2" + operationId: GranteeGrants + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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" + } + expiration: + type: string + format: date-time + description: "Since: cosmos-sdk 0.45.2" + 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 to the grantee. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryGranteeGrantsResponse is the response type for the + Query/GranteeGrants RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: grantee + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/authz/v1beta1/grants/granter/{granter}": + get: + summary: GranterGrants returns list of `GrantAuthorization`, granted by granter. + description: "Since: cosmos-sdk 0.45.2" + operationId: GranterGrants + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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" + } + expiration: + type: string + format: date-time + description: "Since: cosmos-sdk 0.45.2" + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryGranterGrantsResponse is the response type for the + Query/GranterGrants RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: granter + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/bank/v1beta1/balances/{address}": + get: + summary: AllBalances queries the balance of all coins for a single account. + operationId: AllBalances + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + balances: + 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: balances is the balances of all the coins. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAllBalancesResponse is the response type for the + Query/AllBalances RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 address to query balances for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/bank/v1beta1/balances/{address}/by_denom": + get: + summary: Balance queries the balance of a single coin for a single account. + operationId: Balance + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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: QueryBalanceResponse is the response type for the Query/Balance RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 address to query balances for. + in: path + required: true + schema: + type: string + - name: denom + description: denom is the coin denom to query balances for. + in: query + required: false + schema: + type: string + tags: + - Query + /cosmos/bank/v1beta1/denoms_metadata: + get: + summary: DenomsMetadata queries the client metadata for all registered coin + denominations. + operationId: DenomsMetadata + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + metadatas: + type: array + items: + 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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + description: metadata provides the client information for all the registered + tokens. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryDenomsMetadataResponse is the response type for the + Query/DenomsMetadata RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/bank/v1beta1/denoms_metadata/{denom}": + get: + summary: DenomsMetadata queries the client metadata of a given coin denomination. + operationId: DenomMetadata + responses: + "200": + description: A successful response. + content: + "*/*": + 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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + description: >- + QueryDenomMetadataResponse is the response type for the + Query/DenomMetadata RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: denom + description: denom is the coin denom to query the metadata for. + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/bank/v1beta1/params: + get: + summary: Params queries the parameters of x/bank module. + operationId: ../../tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + type: object + properties: + send_enabled: + type: array + items: + type: object + properties: + denom: + type: string + enabled: + type: boolean + description: >- + SendEnabled maps coin denom to a send_enabled status + (whether a denom is + + sendable). + default_send_enabled: + type: boolean + description: Params defines the parameters for the bank module. + description: QueryParamsResponse defines the response type for querying x/bank + parameters. + default: + description: An unexpected error response. + content: + "*/*": + 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 + "/cosmos/bank/v1beta1/spendable_balances/{address}": + get: + summary: |- + SpendableBalances queries the spenable balance of all coins for a single + account. + operationId: SpendableBalances + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + balances: + 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: balances is the spendable balances of all the coins. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QuerySpendableBalancesResponse defines the gRPC response + structure for querying + + an account's spendable balances. + default: + description: An unexpected error response. + content: + "*/*": + 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 address to query spendable balances for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + /cosmos/bank/v1beta1/supply: + get: + summary: TotalSupply queries the total supply of all coins. + operationId: TotalSupply + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + supply: + 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: supply is the supply of the coins + pagination: + description: |- + pagination defines the pagination in the response. + + Since: cosmos-sdk 0.43 + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryTotalSupplyResponse is the response type for the + Query/TotalSupply RPC + + method + default: + description: An unexpected error response. + content: + "*/*": + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/bank/v1beta1/supply/{denom}": + get: + summary: SupplyOf queries the supply of a single coin. + operationId: SupplyOf + responses: + "200": + description: A successful response. + content: + "*/*": + 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: QuerySupplyOfResponse is the response type for the Query/SupplyOf + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: denom + description: denom is the coin denom to query balances for. + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/base/tendermint/v1beta1/blocks/latest: + get: + summary: GetLatestBlock returns the latest block. + operationId: GetLatestBlock + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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, + + 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 Tendermint 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. + + 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + description: GetLatestBlockResponse is the response type for the + Query/GetLatestBlock RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: + - Service + "/cosmos/base/tendermint/v1beta1/blocks/{height}": + get: + summary: GetBlockByHeight queries block for given height. + operationId: GetBlockByHeight + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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, + + 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 Tendermint 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. + + 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + description: GetBlockByHeightResponse is the response type for the + Query/GetBlockByHeight RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: height + in: path + required: true + schema: + type: string + format: int64 + tags: + - Service + /cosmos/base/tendermint/v1beta1/node_info: + get: + summary: GetNodeInfo queries the current node info. + operationId: GetNodeInfo + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 request type for the Query/GetNodeInfo + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: + - Service + /cosmos/base/tendermint/v1beta1/syncing: + get: + summary: GetSyncing queries node syncing. + operationId: GetSyncing + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + syncing: + type: boolean + description: GetSyncingResponse is the response type for the Query/GetSyncing + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: + - Service + /cosmos/base/tendermint/v1beta1/validatorsets/latest: + get: + summary: GetLatestValidatorSet queries latest validator-set. + operationId: GetLatestValidatorSet + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Service + "/cosmos/base/tendermint/v1beta1/validatorsets/{height}": + get: + summary: GetValidatorSetByHeight queries validator-set at a given height. + operationId: GetValidatorSetByHeight + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: GetValidatorSetByHeightResponse is the response type for the + Query/GetValidatorSetByHeight RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: height + in: path + required: true + schema: + type: string + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Service + /cosmos/distribution/v1beta1/community_pool: + get: + summary: CommunityPool queries the community pool coins. + operationId: CommunityPool + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + "/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards": + get: + summary: |- + DelegationTotalRewards queries the total rewards accrued by a each + validator. + operationId: DelegationTotalRewards + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + rewards: + type: array + items: + 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. + + + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_address + description: delegator_address defines the delegator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address}": + get: + summary: DelegationRewards queries the total rewards accrued by a delegation. + operationId: DelegationRewards + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_address + description: delegator_address defines the delegator address to query for. + in: path + required: true + schema: + type: string + - name: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/distribution/v1beta1/delegators/{delegator_address}/validators": + get: + summary: DelegatorValidators queries the validators of a delegator. + operationId: ../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonDelegatorValidators + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_address + description: delegator_address defines the delegator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address": + get: + summary: DelegatorWithdrawAddress queries withdraw address of a delegator. + operationId: DelegatorWithdrawAddress + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_address + description: delegator_address defines the delegator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/distribution/v1beta1/foundation_tax: + get: + summary: DelegatorWithdrawAddress queries withdraw address of a delegator. + operationId: FoundationTax + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + tax: + type: string + description: withdraw_address defines the delegator address to query for. + foundation_address: + type: string + description: >- + QueryDelegatorWithdrawAddressResponse is the response type for + the + + Query/DelegatorWithdrawAddress RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/distribution/v1beta1/params: + get: + summary: Params queries params of the distribution module. + operationId: ../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + community_tax: + type: string + base_proposer_reward: + type: string + bonus_proposer_reward: + type: string + withdraw_addr_enabled: + type: boolean + secret_foundation_tax: + type: string + secret_foundation_address: + type: string + description: QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + "/cosmos/distribution/v1beta1/validators/{validator_address}/commission": + get: + summary: ValidatorCommission queries accumulated commission for a validator. + operationId: ValidatorCommission + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + commission: + description: commission defines the commision the validator received. + 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. + + + 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 + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards": + get: + summary: ValidatorOutstandingRewards queries rewards of a validator address. + operationId: ValidatorOutstandingRewards + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + rewards: + 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. + description: >- + QueryValidatorOutstandingRewardsResponse is the response type + for the + + Query/ValidatorOutstandingRewards RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/distribution/v1beta1/validators/{validator_address}/slashes": + get: + summary: ValidatorSlashes queries slash events of a validator. + operationId: ValidatorSlashes + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + schema: + type: string + - name: starting_height + description: starting_height defines the optional starting height to query the + slashes. + in: query + required: false + schema: + type: string + format: uint64 + - name: ending_height + description: starting_height defines the optional ending height to query the + slashes. + in: query + required: false + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + /cosmos/evidence/v1beta1/evidence: + get: + summary: AllEvidence queries all evidence. + operationId: AllEvidence + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAllEvidenceResponse is the response type for the + Query/AllEvidence RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/evidence/v1beta1/evidence/{evidence_hash}": + get: + summary: Evidence queries evidence based on evidence hash. + operationId: Evidence + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + evidence: + 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: QueryEvidenceResponse is the response type for the Query/Evidence + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: evidence_hash + description: evidence_hash defines the hash of the requested evidence. + in: path + required: true + schema: + type: string + format: byte + tags: + - Query + "/cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}": + get: + summary: Allowance returns fee granted to the grantee by the granter. + operationId: Allowance + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 and filtered 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 + + 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. + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: granter + description: granter is the address of the user granting an allowance of their + funds. + in: path + required: true + schema: + type: string + - name: grantee + description: grantee is the address of the user being granted an allowance of + another user's funds. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/feegrant/v1beta1/allowances/{grantee}": + get: + summary: Allowances returns all the grants for address. + operationId: Allowances + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 and filtered 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 + + 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. + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: grantee + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/gov/v1beta1/params/{params_type}": + get: + summary: Params queries all parameters of the gov module. + operationId: ../../tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + 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: >- + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: params_type + description: >- + params_type defines which parameters to query for, can be one of + "voting", + + "tallying" or "deposit". + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/gov/v1beta1/proposals: + get: + summary: Proposals queries all proposals based on given status. + operationId: Proposals + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + proposals: + type: array + items: + 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 + + 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 propopsal 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: + 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. + 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 + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryProposalsResponse is the response type for the + Query/Proposals RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_status + description: >- + proposal_status defines the status of the proposals. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal 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. + in: query + required: false + schema: + 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 + - name: voter + description: voter defines the voter address for the proposals. + in: query + required: false + schema: + type: string + - name: depositor + description: depositor defines the deposit addresses from the proposals. + in: query + required: false + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/gov/v1beta1/proposals/{proposal_id}": + get: + summary: Proposal queries proposal details based on ProposalID. + operationId: Proposal + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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 + + 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 propopsal 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: + 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. + 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 + description: Proposal defines the core field members of a governance proposal. + description: QueryProposalResponse is the response type for the Query/Proposal + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/cosmos/gov/v1beta1/proposals/{proposal_id}/deposits": + get: + summary: Deposits queries all deposits of a single proposal. + operationId: Deposits + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + + + 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: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryDepositsResponse is the response type for the Query/Deposits + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/gov/v1beta1/proposals/{proposal_id}/deposits/{depositor}": + get: + summary: Deposit queries single deposit information based proposalID, depositAddr. + operationId: Deposit + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + + + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + schema: + type: string + format: uint64 + - name: depositor + description: depositor defines the deposit addresses from the proposals. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/gov/v1beta1/proposals/{proposal_id}/tally": + get: + summary: TallyResult queries the tally of a proposal vote. + operationId: TallyResult + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + tally: + 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. + description: QueryTallyResultResponse is the response type for the Query/Tally + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/cosmos/gov/v1beta1/proposals/{proposal_id}/votes": + get: + summary: Votes queries votes of a given proposal. + operationId: Votes + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + votes: + type: array + items: + 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: >- + 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 + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryVotesResponse is the response type for the Query/Votes RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/gov/v1beta1/proposals/{proposal_id}/votes/{voter}": + get: + summary: Vote queries voted information based on proposalID, voterAddr. + operationId: Vote + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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: >- + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + schema: + type: string + format: uint64 + - name: voter + description: voter defines the oter address for the proposals. + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/mint/v1beta1/annual_provisions: + get: + summary: AnnualProvisions current minting annual provisions value. + operationId: AnnualProvisions + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/mint/v1beta1/inflation: + get: + summary: Inflation returns the current minting inflation value. + operationId: Inflation + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/mint/v1beta1/params: + get: + summary: Params returns the total set of minting parameters. + operationId: ../../tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + 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: QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/params/v1beta1/params: + get: + summary: |- + Params queries a specific parameter of a module, given its subspace and + key. + operationId: ../../tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + param: + description: param defines the queried parameter. + type: object + properties: + subspace: + type: string + key: + type: string + value: + type: string + description: QueryParamsResponse is response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: subspace + description: subspace defines the module to query the parameter for. + in: query + required: false + schema: + type: string + - name: key + description: key defines the key of the parameter in the subspace. + in: query + required: false + schema: + type: string + tags: + - Query + /cosmos/slashing/v1beta1/params: + get: + summary: Params queries the parameters of slashing module + operationId: ../../tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + type: object + properties: + 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. + title: QueryParamsResponse is the response type for the Query/Params RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/slashing/v1beta1/signing_infos: + get: + summary: SigningInfos queries signing info of all validators + operationId: SigningInfos + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + info: + 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: + 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: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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: + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: >- + QuerySigningInfosResponse is the response type for the + Query/SigningInfos RPC + + method + default: + description: An unexpected error response. + content: + "*/*": + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/slashing/v1beta1/signing_infos/{cons_address}": + get: + summary: SigningInfo queries the signing info of given cons address + operationId: SigningInfo + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + val_signing_info: + 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 + + 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: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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 + default: + description: An unexpected error response. + content: + "*/*": + 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: cons_address + description: cons_address is the address to query signing info of + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/staking/v1beta1/delegations/{delegator_addr}": + get: + summary: DelegatorDelegations queries all delegations of a given delegator + address. + operationId: DelegatorDelegations + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/staking/v1beta1/delegators/{delegator_addr}/redelegations": + get: + summary: Redelegations queries redelegations of given address. + operationId: Redelegations + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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: + 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: + 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 + + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryRedelegationsResponse is response type for the + Query/Redelegations RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + type: string + - name: src_validator_addr + description: src_validator_addr defines the validator address to redelegate from. + in: query + required: false + schema: + type: string + - name: dst_validator_addr + description: dst_validator_addr defines the validator address to redelegate to. + in: query + required: false + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/staking/v1beta1/delegators/{delegator_addr}/unbonding_delegations": + get: + summary: >- + DelegatorUnbondingDelegations queries all unbonding delegations of a + given + + delegator address. + operationId: DelegatorUnbondingDelegations + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + unbonding_responses: + 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: + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryUnbondingDelegatorDelegationsResponse is response type + for the + + Query/UnbondingDelegatorDelegations RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/staking/v1beta1/delegators/{delegator_addr}/validators": + get: + summary: |- + DelegatorValidators queries all validators info for given delegator + address. + operationId: ../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonDelegatorValidators + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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: + 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 + 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. + 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: validators defines the the validators' info of a delegator. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/staking/v1beta1/delegators/{delegator_addr}/validators/{validator_addr}": + get: + summary: |- + DelegatorValidator queries validator info for given delegator validator + pair. + operationId: DelegatorValidator + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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: + 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 + 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. + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + type: string + - name: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/staking/v1beta1/historical_info/{height}": + get: + summary: HistoricalInfo queries the historical info for given height. + operationId: HistoricalInfo + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + hist: + description: hist defines the historical info at the given height. + 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 Tendermint 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 + + 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 + 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. + 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: >- + QueryHistoricalInfoResponse is response type for the + Query/HistoricalInfo RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: height + description: height defines at which height to query the historical info. + in: path + required: true + schema: + type: string + format: int64 + tags: + - Query + /cosmos/staking/v1beta1/params: + get: + summary: Parameters queries the staking parameters. + operationId: ../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + description: QueryParamsResponse is response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/staking/v1beta1/pool: + get: + summary: Pool queries the pool info. + operationId: Pool + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/staking/v1beta1/validators: + get: + summary: Validators queries all validators that match the given status. + operationId: Validators + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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: + 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 + 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. + 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: validators contains all the queried validators. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryValidatorsResponse is response type for the Query/Validators RPC + method + default: + description: An unexpected error response. + content: + "*/*": + 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: status enables to query for validators matching a given status. + in: query + required: false + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/staking/v1beta1/validators/{validator_addr}": + get: + summary: Validator queries validator info for given validator address. + operationId: Validator + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + 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: + 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 + 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. + 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. + title: QueryValidatorResponse is response type for the Query/Validator RPC + method + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/staking/v1beta1/validators/{validator_addr}/delegations": + get: + summary: ValidatorDelegations queries delegate info for given validator. + operationId: ValidatorDelegations + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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: + 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 + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: |- + QueryValidatorDelegationsResponse is response type for the + Query/ValidatorDelegations RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}": + get: + summary: Delegation queries delegate info for given validator delegator pair. + operationId: Delegation + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + schema: + type: string + - name: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}/unbonding_delegation": + get: + summary: |- + UnbondingDelegation queries unbonding info for given validator delegator + pair. + operationId: UnbondingDelegation + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + unbond: + 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: + 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. + description: >- + QueryDelegationResponse is response type for the + Query/UnbondingDelegation + + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + schema: + type: string + - name: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + schema: + type: string + tags: + - Query + "/cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations": + get: + summary: ValidatorUnbondingDelegations queries unbonding delegations of a + validator. + operationId: ValidatorUnbondingDelegations + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + unbonding_responses: + 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: + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryValidatorUnbondingDelegationsResponse is response type + for the + + Query/ValidatorUnbondingDelegations RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/cosmos/upgrade/v1beta1/applied_plan/{name}": + get: + summary: AppliedPlan queries a previously applied upgrade plan by its name. + operationId: AppliedPlan + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + default: + description: An unexpected error response. + content: + "*/*": + 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: name + description: name is the name of the applied plan to query for. + in: path + required: true + schema: + type: string + tags: + - Query + /cosmos/upgrade/v1beta1/current_plan: + get: + summary: CurrentPlan queries the current upgrade plan. + operationId: CurrentPlan + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + + version of the software to apply any special "on-upgrade" commands during + + 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 + + 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 + + has been removed from the SDK. + + 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: >- + 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: >- + QueryCurrentPlanResponse is the response type for the + Query/CurrentPlan RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /cosmos/upgrade/v1beta1/module_versions: + get: + summary: ModuleVersions queries the list of module versions from state. + description: "Since: cosmos-sdk 0.43" + operationId: ModuleVersions + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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. + + + 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 + + RPC method. + + + Since: cosmos-sdk 0.43 + default: + description: An unexpected error response. + content: + "*/*": + 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: module_name + description: |- + module_name is a field to query a specific module + consensus version from state. Leaving this empty will + fetch the full list of module versions from state. + in: query + required: false + schema: + type: string + tags: + - Query + "/cosmos/upgrade/v1beta1/upgraded_consensus_state/{last_height}": + get: + summary: >- + UpgradedConsensusState queries the consensus state that will serve + + as a trusted kernel for the next version of this chain. It will only be + + stored at the last height of this chain. + + UpgradedConsensusState RPC not supported with legacy querier + + This rpc is deprecated now that IBC has its own replacement + + (https://github.com/cosmos/ibc-go/blob/2c880a22e9f9cc75f62b527ca94aa75ce1106001/proto/ibc/core/client/v1/query.proto#L54) + operationId: ../../tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.jsonUpgradedConsensusState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + 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 + + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: last_height + description: |- + last height of the current chain must be sent in request + as this is the height under which next consensus state is stored + in: path + required: true + schema: + type: string + format: int64 + tags: + - Query + /ibc/apps/interchain_accounts/controller/v1/params: + get: + summary: Params queries all parameters of the ICA controller submodule. + operationId: ../../tmp-swagger-gen/ibc/applications/interchain_accounts/controller/v1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + controller_enabled: + type: boolean + description: controller_enabled enables or disables the controller submodule. + description: QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /ibc/apps/interchain_accounts/host/v1/params: + get: + summary: Params queries all parameters of the ICA host submodule. + operationId: ../../tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + host_enabled: + type: boolean + description: host_enabled enables or disables the host submodule. + allow_messages: + type: array + items: + type: string + description: allow_messages defines a list of sdk message typeURLs allowed to be + executed on a host chain. + description: QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + "/ibc/apps/transfer/v1/denom_hashes/{trace}": + get: + summary: DenomHash queries a denomination hash information. + operationId: DenomHash + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + hash: + type: string + description: hash (in hex format) of the denomination trace information. + description: >- + QueryDenomHashResponse is the response type for the + Query/DenomHash RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: trace + description: The denomination trace ([port_id]/[channel_id])+/[denom] + in: path + required: true + schema: + type: string + tags: + - Query + /ibc/apps/transfer/v1/denom_traces: + get: + summary: DenomTraces queries all denomination traces. + operationId: DenomTraces + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + denom_traces: + type: array + items: + type: object + properties: + path: + type: string + description: >- + path defines the chain of port/channel identifiers + used for tracing the + + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 + fungible tokens and the + + source tracing information path. + description: denom_traces returns all denominations trace information. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryConnectionsResponse is the response type for the + Query/DenomTraces RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/ibc/apps/transfer/v1/denom_traces/{hash}": + get: + summary: DenomTrace queries a denomination trace information. + operationId: DenomTrace + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + denom_trace: + type: object + properties: + path: + type: string + description: >- + path defines the chain of port/channel identifiers + used for tracing the + + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 + fungible tokens and the + + source tracing information path. + description: >- + QueryDenomTraceResponse is the response type for the + Query/DenomTrace RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: hash + description: hash (in hex format) of the denomination trace information. + in: path + required: true + schema: + type: string + tags: + - Query + /ibc/apps/transfer/v1/params: + get: + summary: Params queries all parameters of the ibc-transfer module. + operationId: ../../tmp-swagger-gen/ibc/applications/transfer/v1/query.swagger.jsonParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + send_enabled: + type: boolean + description: >- + send_enabled enables or disables all cross-chain token + transfers from this + + chain. + receive_enabled: + type: boolean + description: >- + receive_enabled enables or disables all cross-chain + token transfers to this + + chain. + description: QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /ibc/core/channel/v1/channels: + get: + summary: Channels queries all the IBC channels of a chain. + operationId: Channels + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + channels: + type: array + items: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the + following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel + ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along + which packets sent on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: >- + IdentifiedChannel defines a channel with additional port + and channel + + identifier fields. + description: list of stored channels of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: QueryChannelsResponse is the response type for the Query/Channels + RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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: 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}": + get: + summary: Channel queries an IBC Channel. + operationId: Channel + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + channel: + title: channel associated with the request identifiers + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following + states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel + ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which + packets sent on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + description: >- + Channel defines pipeline for exactly-once packet delivery + between specific + + modules on separate blockchains, which has at least one end capable of + + sending packets and one end capable of receiving packets. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryChannelResponse is the response type for the + Query/Channel RPC method. + + Besides the Channel end, it includes a proof and the height from which the + + proof was retrieved. + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/client_state": + get: + summary: >- + ChannelClientState queries for the client state for the channel + associated + + with the provided channel identifiers. + operationId: ChannelClientState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: >- + IdentifiedClientState defines a client state with an + additional client + + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/consensus_state/revision/{revision_number}/height/{revision_height}": + get: + summary: |- + ChannelConsensusState queries for the consensus state for the channel + associated with the provided channel identifiers. + operationId: ChannelConsensusState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + consensus_state: + 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: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + - name: revision_number + description: revision number of the consensus state + in: path + required: true + schema: + type: string + format: uint64 + - name: revision_height + description: revision height of the consensus state + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/next_sequence": + get: + summary: NextSequenceReceive returns the next receive sequence for a given + channel. + operationId: NextSequenceReceive + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + next_sequence_receive: + type: string + format: uint64 + title: next sequence receive number + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QuerySequenceResponse is the request type for the + Query/QueryNextSequenceReceiveResponse RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_acknowledgements": + get: + summary: >- + PacketAcknowledgements returns all the packet acknowledgements + associated + + with a channel. + operationId: PacketAcknowledgements + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + acknowledgements: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to + retrieve and store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret this + + state as a commitment, acknowledgement, or a receipt. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryPacketAcknowledgemetsResponse is the request type for the + Query/QueryPacketAcknowledgements RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + - name: packet_commitment_sequences + description: list of packet sequences. + in: query + required: false + explode: true + schema: + type: array + items: + type: string + format: uint64 + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_acks/{sequence}": + get: + summary: PacketAcknowledgement queries a stored packet acknowledgement hash. + operationId: PacketAcknowledgement + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + acknowledgement: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryPacketAcknowledgementResponse defines the client query + response for a + + packet which also includes a proof and the height from which the + + proof was retrieved + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + - name: sequence + description: packet sequence + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments": + get: + summary: |- + PacketCommitments returns all the packet commitments hashes associated + with a channel. + operationId: PacketCommitments + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + commitments: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to + retrieve and store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret this + + state as a commitment, acknowledgement, or a receipt. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryPacketCommitmentsResponse is the request type for the + Query/QueryPacketCommitments RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_ack_sequences}/unreceived_acks": + get: + summary: >- + UnreceivedAcks returns all the unreceived IBC acknowledgements + associated + + with a channel and sequences. + operationId: UnreceivedAcks + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived acknowledgement sequences + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryUnreceivedAcksResponse is the response type for the + Query/UnreceivedAcks RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + - name: packet_ack_sequences + description: list of acknowledgement sequences + in: path + required: true + style: simple + schema: + type: array + items: + type: string + format: uint64 + minItems: 1 + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_commitment_sequences}/unreceived_packets": + get: + summary: >- + UnreceivedPackets returns all the unreceived IBC packets associated with + a + + channel and sequences. + operationId: UnreceivedPackets + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived packet sequences + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryUnreceivedPacketsResponse is the response type for the + Query/UnreceivedPacketCommitments RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + - name: packet_commitment_sequences + description: list of packet sequences + in: path + required: true + style: simple + schema: + type: array + items: + type: string + format: uint64 + minItems: 1 + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{sequence}": + get: + summary: PacketCommitment queries a stored packet commitment hash. + operationId: PacketCommitment + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + commitment: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryPacketCommitmentResponse defines the client query + response for a packet + + which also includes a proof and the height from which the proof was + + retrieved + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + - name: sequence + description: packet sequence + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_receipts/{sequence}": + get: + summary: >- + PacketReceipt queries if a given packet sequence has been received on + the + + queried chain + operationId: PacketReceipt + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + received: + type: boolean + title: success flag for if receipt exists + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryPacketReceiptResponse defines the client query response + for a packet + + receipt which also includes a proof, and the height from which the proof was + + retrieved + default: + description: An unexpected error response. + content: + "*/*": + 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: channel_id + description: channel unique identifier + in: path + required: true + schema: + type: string + - name: port_id + description: port unique identifier + in: path + required: true + schema: + type: string + - name: sequence + description: packet sequence + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/ibc/core/channel/v1/connections/{connection}/channels": + get: + summary: |- + ConnectionChannels queries all the channels associated with a connection + end. + operationId: ConnectionChannels + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + channels: + type: array + items: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the + following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel + ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along + which packets sent on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: >- + IdentifiedChannel defines a channel with additional port + and channel + + identifier fields. + description: list of channels associated with a connection. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryConnectionChannelsResponse is the Response type for the + Query/QueryConnectionChannels RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: connection + description: connection unique identifier + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + /ibc/client/v1/params: + get: + summary: ClientParams queries all parameters of the ibc client. + operationId: ClientParams + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + allowed_clients: + type: array + items: + type: string + description: allowed_clients defines the list of allowed client state types. + description: >- + QueryClientParamsResponse is the response type for the + Query/ClientParams RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /ibc/core/client/v1/client_states: + get: + summary: ClientStates queries all the IBC light clients of a chain. + operationId: ClientStates + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + client_states: + type: array + items: + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: >- + IdentifiedClientState defines a client state with an + additional client + + identifier field. + description: list of stored ClientStates of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + description: >- + QueryClientStatesResponse is the response type for the + Query/ClientStates RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/ibc/core/client/v1/client_states/{client_id}": + get: + summary: ClientState queries an IBC light client. + operationId: ClientState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + client_state: + 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: client state associated with the request identifier + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryClientStateResponse is the response type for the + Query/ClientState RPC + + method. Besides the client state, it includes a proof and the height from + + which the proof was retrieved. + default: + description: An unexpected error response. + content: + "*/*": + 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: client_id + description: client state unique identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/client/v1/client_status/{client_id}": + get: + summary: Status queries the status of an IBC client. + operationId: ClientStatus + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + status: + type: string + description: >- + QueryClientStatusResponse is the response type for the + Query/ClientStatus RPC + + method. It returns the current status of the IBC client. + default: + description: An unexpected error response. + content: + "*/*": + 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: client_id + description: client unique identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/client/v1/consensus_states/{client_id}": + get: + summary: |- + ConsensusStates queries all the consensus state associated with a given + client. + operationId: ConsensusStates + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + consensus_states: + type: array + items: + type: object + properties: + height: + title: consensus state height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each + height while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + consensus_state: + 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: consensus state + description: >- + ConsensusStateWithHeight defines a consensus state with + an additional height + + field. + title: consensus states associated with the identifier + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: |- + QueryConsensusStatesResponse is the response type for the + Query/ConsensusStates RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: client_id + description: client identifier + in: path + required: true + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/ibc/core/client/v1/consensus_states/{client_id}/revision/{revision_number}/height/{revision_height}": + get: + summary: >- + ConsensusState queries a consensus state associated with a client state + at + + a given height. + operationId: ConsensusState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + consensus_state: + 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: consensus state associated with the client identifier at the given height + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryConsensusStateResponse is the response type for the + Query/ConsensusState + + RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: client_id + description: client identifier + in: path + required: true + schema: + type: string + - name: revision_number + description: consensus state revision number + in: path + required: true + schema: + type: string + format: uint64 + - name: revision_height + description: consensus state revision height + in: path + required: true + schema: + type: string + format: uint64 + - name: latest_height + description: >- + latest_height overrrides the height field and queries the latest + stored + + ConsensusState. + in: query + required: false + schema: + type: boolean + tags: + - Query + /ibc/core/client/v1/upgraded_client_states: + get: + summary: UpgradedClientState queries an Upgraded IBC light client. + operationId: UpgradedClientState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + upgraded_client_state: + 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: client state associated with the request identifier + description: |- + QueryUpgradedClientStateResponse is the response type for the + Query/UpgradedClientState RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + /ibc/core/client/v1/upgraded_consensus_states: + get: + summary: UpgradedConsensusState queries an Upgraded IBC consensus state. + operationId: ../../tmp-swagger-gen/ibc/core/client/v1/query.swagger.jsonUpgradedConsensusState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + upgraded_consensus_state: + 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: Consensus state associated with the request identifier + description: >- + QueryUpgradedConsensusStateResponse is the response type for + the + + Query/UpgradedConsensusState RPC method. + default: + description: An unexpected error response. + content: + "*/*": + 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 + "/ibc/core/connection/v1/client_connections/{client_id}": + get: + summary: |- + ClientConnections queries the connection paths associated with a client + state. + operationId: ClientConnections + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + connection_paths: + type: array + items: + type: string + description: slice of all the connection paths associated with a client. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was generated + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryClientConnectionsResponse is the response type for the + Query/ClientConnections RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: client_id + description: client identifier associated with a connection + in: path + required: true + schema: + type: string + tags: + - Query + /ibc/core/connection/v1/connections: + get: + summary: Connections queries all the IBC connections of a chain. + operationId: Connections + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + connections: + type: array + items: + type: object + properties: + id: + type: string + description: connection identifier. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to + negotiate the IBC verison in + + the connection handshake. + title: >- + IBC version which can be utilised to determine + encodings or protocols for + + channels or packets utilising this connection + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain + associated with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the + counterparty chain associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: delay period associated with this connection. + description: >- + IdentifiedConnection defines a connection with + additional connection + + identifier field. + description: list of stored connections of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryConnectionsResponse is the response type for the + Query/Connections RPC + + method. + default: + description: An unexpected error response. + content: + "*/*": + 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: 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + 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 + schema: + type: boolean + tags: + - Query + "/ibc/core/connection/v1/connections/{connection_id}": + get: + summary: Connection queries an IBC connection end. + operationId: Connection + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + connection: + title: connection associated with the request identifier + type: object + properties: + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to + negotiate the IBC verison in + + the connection handshake. + description: >- + IBC version which can be utilised to determine + encodings or protocols for + + channels or packets utilising this connection. + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain + associated with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty + chain associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: >- + delay period that must pass before a consensus state + can be used for + + packet-verification NOTE: delay period logic is only implemented by some + + clients. + description: >- + ConnectionEnd defines a stateful object on a chain + connected to another + + separate one. + + NOTE: there must only be 2 defined ConnectionEnds to establish + + a connection between two chains. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryConnectionResponse is the response type for the + Query/Connection RPC + + method. Besides the connection end, it includes a proof and the height from + + which the proof was retrieved. + default: + description: An unexpected error response. + content: + "*/*": + 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: connection_id + description: connection unique identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/connection/v1/connections/{connection_id}/client_state": + get: + summary: |- + ConnectionClientState queries the client state associated with the + connection. + operationId: ConnectionClientState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: >- + IdentifiedClientState defines a client state with an + additional client + + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryConnectionClientStateResponse is the response type for + the + + Query/ConnectionClientState RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: connection_id + description: connection identifier + in: path + required: true + schema: + type: string + tags: + - Query + "/ibc/core/connection/v1/connections/{connection_id}/consensus_state/revision/{revision_number}/height/{revision_height}": + get: + summary: |- + ConnectionConsensusState queries the consensus state associated with the + connection. + operationId: ConnectionConsensusState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + consensus_state: + 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: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryConnectionConsensusStateResponse is the response type for + the + + Query/ConnectionConsensusState RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: connection_id + description: connection identifier + in: path + required: true + schema: + type: string + - name: revision_number + in: path + required: true + schema: + type: string + format: uint64 + - name: revision_height + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + /compute/v1beta1/code: + get: + summary: Query all contract codes on-chain + operationId: Codes + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + code_infos: + type: array + items: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + default: + description: An unexpected error response. + content: + "*/*": + 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 + "/compute/v1beta1/code/{code_id}": + get: + summary: Query a specific contract code + operationId: Code + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + code_info: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + data: + type: string + format: byte + default: + description: An unexpected error response. + content: + "*/*": + 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: code_id + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/compute/v1beta1/code/{code_id}/contracts": + get: + summary: Query contract + operationId: ContractsByCode + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + contract_infos: + type: array + items: + type: object + properties: + address: + type: string + format: byte + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: >- + never show this in query results, just use for + sorting + + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: ContractInfoWithAddress adds the address (key) to the ContractInfo + representation + default: + description: An unexpected error response. + content: + "*/*": + 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: code_id + in: path + required: true + schema: + type: string + format: uint64 + tags: + - Query + "/compute/v1beta1/contract/{address}": + get: + summary: Query contract + operationId: ContractInfo + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + address: + type: string + format: byte + title: address is the address of the contract + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: >- + never show this in query results, just use for sorting + + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: QueryContractInfoResponse is the response type for the Query/ContractInfo + RPC method + default: + description: An unexpected error response. + content: + "*/*": + 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: address + description: address is the address of the contract to query + in: path + required: true + schema: + type: string + format: byte + tags: + - Query + "/compute/v1beta1/contract/{address}/smart": + get: + summary: Query contract + operationId: SmartContractState + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + data: + type: string + format: byte + default: + description: An unexpected error response. + content: + "*/*": + 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: address + description: address is the address of the contract + in: path + required: true + schema: + type: string + format: byte + - name: query_data + in: query + required: false + schema: + type: string + format: byte + tags: + - Query + /mauth/v1beta1/address-to-ica: + get: + summary: QueryInterchainAccountFromAddress returns the interchain account for + given owner address on a given connection pair + operationId: InterchainAccountFromAddress + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + interchain_account_address: + type: string + title: QueryInterchainAccountFromAddressResponse the response type for the + Query/InterchainAccountAddress RPC + default: + description: An unexpected error response. + content: + "*/*": + 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: query + required: false + schema: + type: string + - name: connection_id + in: query + required: false + schema: + type: string + tags: + - Query + "/registration/v1beta1/encrypted-seed/{pub_key}": + get: + summary: Returns the encrypted seed for a registered node by public key + operationId: EncryptedSeed + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + encrypted_seed: + type: string + format: byte + default: + description: An unexpected error response. + content: + "*/*": + 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: pub_key + in: path + required: true + schema: + type: string + format: byte + tags: + - Query + /registration/v1beta1/registration-key: + get: + summary: Returns the key used for registration + operationId: RegistrationKey + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + key: + type: string + format: byte + default: + description: An unexpected error response. + content: + "*/*": + 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 + /registration/v1beta1/tx-key: + get: + summary: Returns the key used for transactions + operationId: TxKey + responses: + "200": + description: A successful response. + content: + "*/*": + schema: + type: object + properties: + key: + type: string + format: byte + default: + description: An unexpected error response. + content: + "*/*": + 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 + /node_info: + get: + description: Information about the connected node + summary: The properties of the connected node + tags: + - Secret REST + responses: + "200": + description: Node status + content: + application/json: + schema: + type: object + properties: + application_version: + properties: + build_tags: + type: string + client_name: + type: string + commit: + type: string + go: + type: string + name: + type: string + server_name: + type: string + version: + type: string + node_info: + properties: + id: + type: string + moniker: + type: string + example: validator-name + protocol_version: + properties: + p2p: + type: string + example: 7 + block: + type: string + example: 10 + app: + type: string + example: 0 + network: + type: string + example: gaia-2 + channels: + type: string + listen_addr: + type: string + example: 192.168.56.1:26656 + version: + description: Tendermint version + type: string + example: 0.15.0 + other: + description: more information on versions + type: object + properties: + tx_index: + type: string + example: on + rpc_address: + type: string + example: tcp://0.0.0.0:26657 + "500": + description: Failed to query node status + /syncing: + get: + summary: Syncing state of node + tags: + - Tendermint RPC + description: Get if the node is currently syning with other nodes + responses: + "200": + description: Node syncing status + content: + application/json: + schema: + type: object + properties: + syncing: + type: boolean + "500": + description: Server internal error + /blocks/latest: + get: + summary: Get the latest block + tags: + - Tendermint RPC + responses: + "200": + description: The latest block + content: + application/json: + schema: + type: object + properties: + block_meta: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + block: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: "0" + height: + type: string + example: "0" + round: + type: string + example: "0" + timestamp: + type: string + example: 2017-12-30T05:53:09.287+01:00 + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + "500": + description: Server internal error + "/blocks/{height}": + get: + summary: Get a block at a certain height + tags: + - Tendermint RPC + parameters: + - in: path + name: height + description: Block height + required: true + example: 1 + schema: + type: number + responses: + "200": + description: The block at a specific height + content: + application/json: + schema: + type: object + properties: + block_meta: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + block: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: "0" + height: + type: string + example: "0" + round: + type: string + example: "0" + timestamp: + type: string + example: 2017-12-30T05:53:09.287+01:00 + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + "400": + description: Invalid height + "404": + description: Request block height doesn't + "500": + description: Server internal error + /validatorsets/latest: + get: + summary: Get the latest validator set + tags: + - Tendermint RPC + responses: + "200": + description: The validator set at the latest block height + content: + application/json: + schema: + type: object + properties: + block_height: + type: string + validators: + type: array + items: + type: object + properties: + address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + pub_key: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: "1000" + proposer_priority: + type: string + example: "1000" + "500": + description: Server internal error + "/validatorsets/{height}": + get: + summary: Get a validator set a certain height + tags: + - Tendermint RPC + parameters: + - in: path + name: height + description: Block height + required: true + example: 1 + schema: + type: number + responses: + "200": + description: The validator set at a specific block height + content: + application/json: + schema: + type: object + properties: + block_height: + type: string + validators: + type: array + items: + type: object + properties: + address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + pub_key: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: "1000" + proposer_priority: + type: string + example: "1000" + "400": + description: Invalid height + "404": + description: Block at height not available + "500": + description: Server internal error + "/txs/{hash}": + get: + deprecated: true + summary: Get a Tx by hash + tags: + - Transactions + description: Retrieve a transaction using its hash. + parameters: + - in: path + name: hash + description: Tx hash + required: true + example: BCBE20E8D46758B96AE5883B792858296AC06E51435490FBDCAE25A72B3CC76B + schema: + type: string + responses: + "200": + description: Tx with the provided hash + content: + application/json: + schema: + type: object + properties: + hash: + type: string + example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: "200000" + gas_used: + type: string + example: "26354" + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + "500": + description: Internal Server Error + /txs: + get: + deprecated: true + tags: + - Transactions + summary: Search transactions + description: Search transactions by events. + parameters: + - in: query + name: message.action + description: "transaction events such as 'message.action=send' which results in + the following endpoint: 'GET /txs?message.action=send'. note that + each module documents its own events. look for xx_events.md in the + corresponding cosmos-sdk/docs/spec directory" + example: send + schema: + type: string + - in: query + name: message.sender + description: "transaction tags with sender: 'GET + /txs?message.action=send&message.sender=cosmos16xyempempp92x9hyzz9w\ + rgf94r6j9h5f06pxxv'" + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + - in: query + name: page + description: Page number + example: 1 + schema: + type: integer + - in: query + name: limit + description: Maximum number of items per page + example: 1 + schema: + type: integer + - in: query + name: tx.minheight + description: transactions on blocks with height greater or equal this value + example: 25 + schema: + type: integer + - in: query + name: tx.maxheight + description: transactions on blocks with height less than or equal this value + example: 800000 + schema: + type: integer + responses: + "200": + description: All txs matching the provided events + content: + application/json: + schema: + type: object + properties: + total_count: + type: number + example: 1 + count: + type: number + example: 1 + page_number: + type: number + example: 1 + page_total: + type: number + example: 1 + limit: + type: number + example: 30 + txs: + type: array + items: + type: object + properties: + hash: + type: string + example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: "200000" + gas_used: + type: string + example: "26354" + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + "400": + description: Invalid search events + "500": + description: Internal Server Error + post: + tags: + - Transactions + summary: Broadcast a signed tx + description: Broadcast a signed tx to a full node + requestBody: + content: + application/json: + schema: + type: object + properties: + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + mode: + type: string + example: block + sequences: + type: array + items: + type: string + example: "1" + fee_granter: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + description: The tx must be a signed StdTx. The supported broadcast modes + include `"block"`(return after tx commit), `"sync"`(return afer + CheckTx) and `"async"`(return right away). + required: true + responses: + "200": + description: Tx broadcasting result + content: + application/json: + schema: + type: object + properties: + check_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + deliver_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + height: + type: integer + "500": + description: Internal Server Error + /txs/encode: + post: + deprecated: true + tags: + - Transactions + summary: Encode a transaction to the Amino wire format + description: Encode a transaction (signed or not) from JSON to base64-encoded + Amino serialized bytes + requestBody: + content: + application/json: + schema: + type: object + properties: + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + description: The tx to encode + required: true + responses: + "200": + description: The tx was successfully decoded and re-encoded + content: + application/json: + schema: + type: object + properties: + tx: + type: string + example: The base64-encoded Amino-serialized bytes for the tx + "400": + description: The tx was malformated + "500": + description: Server internal error + /txs/decode: + post: + deprecated: true + tags: + - Transactions + summary: Decode a transaction from the Amino wire format + description: Decode a transaction (signed or not) from base64-encoded Amino + serialized bytes to JSON + requestBody: + content: + application/json: + schema: + type: object + properties: + tx: + type: string + example: SvBiXe4KPqijYZoKFFHEzJ8c2HPAfv2EFUcIhx0yPagwEhTy0vPA+GGhCEslKXa4Af0uB+mfShoMCgVzdGFrZRIDMTAwEgQQwJoM + description: The tx to decode + required: true + responses: + "200": + description: The tx was successfully decoded + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: The tx was malformated + "500": + description: Server internal error + "/bank/balances/{address}": + get: + deprecated: true + summary: Get the account balances + tags: + - Bank + parameters: + - in: path + name: address + description: Account address in bech32 format + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + responses: + "200": + description: Account balances + content: + application/json: + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "500": + description: Server internal error + "/bank/accounts/{address}/transfers": + post: + deprecated: true + summary: Send coins from one account to another + tags: + - Bank + parameters: + - in: path + name: address + description: Account address in bech32 format + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + description: The sender and tx information + required: true + responses: + "202": + description: Tx was succesfully generated + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid request + "500": + description: Server internal error + /bank/total: + get: + deprecated: true + summary: Total supply of coins in the chain + tags: + - Bank + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + total: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "500": + description: Internal Server Error + "/bank/total/{denomination}": + parameters: + - in: path + name: denomination + description: Coin denomination + required: true + example: uatom + schema: + type: string + get: + deprecated: true + summary: Total supply of a single coin denomination + tags: + - Bank + responses: + "200": + description: OK + content: + application/json: + schema: + type: string + "400": + description: Invalid coin denomination + "500": + description: Internal Server Error + "/auth/accounts/{address}": + get: + deprecated: true + summary: Get the account information on blockchain + tags: + - Auth + parameters: + - in: path + name: address + description: Account address + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + responses: + "200": + description: Account information on the blockchain + content: + application/json: + schema: + type: object + properties: + type: + type: string + value: + type: object + properties: + account_number: + type: string + address: + type: string + coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + public_key: + type: object + properties: + type: + type: string + value: + type: string + sequence: + type: string + "500": + description: Server internel error + "/staking/delegators/{delegatorAddr}/delegations": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + get: + deprecated: true + summary: Get all delegations from a delegator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid delegator address + "500": + description: Internal Server Error + post: + summary: Submit delegation + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + delegator_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + amount: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + description: Delegate an amount of liquid coins to a validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid delegator address or delegation request body + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/staking/delegators/{delegatorAddr}/delegations/{validatorAddr}": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Query the current delegation between a delegator and a validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid delegator address or validator address + "500": + description: Internal Server Error + "/staking/delegators/{delegatorAddr}/unbonding_delegations": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + get: + deprecated: true + summary: Get all unbonding delegations from a delegator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + "400": + description: Invalid delegator address + "500": + description: Internal Server Error + post: + summary: Submit an unbonding delegation + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + delegator_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + amount: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + description: Unbond an amount of bonded shares from a validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid delegator address or unbonding delegation request body + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/staking/delegators/{delegatorAddr}/unbonding_delegations/{validatorAddr}": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Query all unbonding delegations between a delegator and a validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + entries: + type: array + items: + type: object + properties: + initial_balance: + type: string + balance: + type: string + creation_height: + type: string + min_time: + type: string + "400": + description: Invalid delegator address or validator address + "500": + description: Internal Server Error + /staking/redelegations: + parameters: + - in: query + name: delegator + description: Bech32 AccAddress of Delegator + required: false + schema: + type: string + - in: query + name: validator_from + description: Bech32 ValAddress of SrcValidator + required: false + schema: + type: string + - in: query + name: validator_to + description: Bech32 ValAddress of DstValidator + required: false + schema: + type: string + get: + deprecated: true + summary: Get all redelegations (filter by query params) + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + $ref: "#/components/schemas/Redelegation" + "500": + description: Internal Server Error + "/staking/delegators/{delegatorAddr}/redelegations": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + post: + deprecated: true + summary: Submit a redelegation + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + delegator_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + validator_src_addressess: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + validator_dst_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + shares: + type: string + example: "100" + description: The sender and tx information + tags: + - Staking + responses: + "200": + description: Tx was succesfully generated + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid delegator address or redelegation request body + "500": + description: Internal Server Error + "/staking/delegators/{delegatorAddr}/validators": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + get: + deprecated: true + summary: Query all validators that a delegator is bonded to + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: "0" + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: "0" + unbonding_time: + type: string + example: 1970-01-01T00:00:00Z + commission: + type: object + properties: + rate: + type: string + example: "0" + max_rate: + type: string + example: "0" + max_change_rate: + type: string + example: "0" + update_time: + type: string + example: 1970-01-01T00:00:00Z + "400": + description: Invalid delegator address + "500": + description: Internal Server Error + "/staking/delegators/{delegatorAddr}/validators/{validatorAddr}": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + - in: path + name: validatorAddr + description: Bech32 ValAddress of Delegator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Query a validator that a delegator is bonded to + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: "0" + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: "0" + unbonding_time: + type: string + example: 1970-01-01T00:00:00Z + commission: + type: object + properties: + rate: + type: string + example: "0" + max_rate: + type: string + example: "0" + max_change_rate: + type: string + example: "0" + update_time: + type: string + example: 1970-01-01T00:00:00Z + "400": + description: Invalid delegator address or validator address + "500": + description: Internal Server Error + /staking/validators: + get: + deprecated: true + summary: Get all validator candidates. By default it returns only the bonded + validators. + parameters: + - in: query + name: status + description: The validator bond status. Must be either 'bonded', 'unbonded', or + 'unbonding'. + example: bonded + schema: + type: string + - in: query + name: page + description: The page number. + example: 1 + schema: + type: integer + - in: query + name: limit + description: The maximum number of items per page. + example: 1 + schema: + type: integer + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: "0" + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: "0" + unbonding_time: + type: string + example: 1970-01-01T00:00:00Z + commission: + type: object + properties: + rate: + type: string + example: "0" + max_rate: + type: string + example: "0" + max_change_rate: + type: string + example: "0" + update_time: + type: string + example: 1970-01-01T00:00:00Z + "500": + description: Internal Server Error + "/staking/validators/{validatorAddr}": + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Query the information from a single validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: "0" + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: "0" + unbonding_time: + type: string + example: 1970-01-01T00:00:00Z + commission: + type: object + properties: + rate: + type: string + example: "0" + max_rate: + type: string + example: "0" + max_change_rate: + type: string + example: "0" + update_time: + type: string + example: 1970-01-01T00:00:00Z + "400": + description: Invalid validator address + "500": + description: Internal Server Error + "/staking/validators/{validatorAddr}/delegations": + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Get all delegations from a validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid validator address + "500": + description: Internal Server Error + "/staking/validators/{validatorAddr}/unbonding_delegations": + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Get all unbonding delegations from a validator + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + "400": + description: Invalid validator address + "500": + description: Internal Server Error + /staking/pool: + get: + deprecated: true + summary: Get the current state of the staking pool + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + loose_tokens: + type: string + bonded_tokens: + type: string + inflation_last_time: + type: string + inflation: + type: string + date_last_commission_reset: + type: string + prev_bonded_shares: + type: string + "500": + description: Internal Server Error + /staking/parameters: + get: + deprecated: true + summary: Get the current staking parameter values + tags: + - Staking + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + inflation_rate_change: + type: string + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + unbonding_time: + type: string + max_validators: + type: integer + bond_denom: + type: string + "500": + description: Internal Server Error + /slashing/signing_infos: + get: + deprecated: true + summary: Get sign info of given all validators + description: Get sign info of all validators + tags: + - Slashing + parameters: + - in: query + name: page + description: Page number + required: true + example: 1 + schema: + type: integer + - in: query + name: limit + description: Maximum number of items per page + required: true + example: 5 + schema: + type: integer + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + start_height: + type: string + index_offset: + type: string + jailed_until: + type: string + missed_blocks_counter: + type: string + "400": + description: Invalid validator public key for one of the validators + "500": + description: Internal Server Error + "/slashing/validators/{validatorAddr}/unjail": + post: + deprecated: true + summary: Unjail a jailed validator + description: Send transaction to unjail a jailed validator + tags: + - Slashing + parameters: + - description: Bech32 validator address + name: validatorAddr + required: true + in: path + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + required: true + responses: + "200": + description: Tx was succesfully generated + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid validator address or base_req + "500": + description: Internal Server Error + /slashing/parameters: + get: + deprecated: true + summary: Get the current slashing parameters + tags: + - Slashing + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + max_evidence_age: + type: string + signed_blocks_window: + type: string + min_signed_per_window: + type: string + double_sign_unbond_duration: + type: string + downtime_unbond_duration: + type: string + slash_fraction_double_sign: + type: string + slash_fraction_downtime: + type: string + "500": + description: Internal Server Error + /gov/proposals: + post: + deprecated: true + summary: Submit a proposal + description: Send transaction to submit a proposal + tags: + - Governance + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + title: + type: string + description: + type: string + proposal_type: + type: string + example: text + proposer: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + initial_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + description: valid value of `"proposal_type"` can be `"text"`, + `"parameter_change"`, `"software_upgrade"` + required: true + responses: + "200": + description: Tx was succesfully generated + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid proposal body + "500": + description: Internal Server Error + get: + deprecated: true + summary: Query proposals + description: Query proposals information with parameters + tags: + - Governance + parameters: + - in: query + name: voter + description: voter address + required: false + schema: + type: string + - in: query + name: depositor + description: depositor address + required: false + schema: + type: string + - in: query + name: status + description: proposal status, valid values can be `"deposit_period"`, + `"voting_period"`, `"passed"`, `"rejected"` + required: false + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: + type: object + properties: + yes: + type: string + example: "0.0000000000" + abstain: + type: string + example: "0.0000000000" + no: + type: string + example: "0.0000000000" + no_with_veto: + type: string + example: "0.0000000000" + submit_time: + type: string + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + voting_start_time: + type: string + "400": + description: Invalid query parameters + "500": + description: Internal Server Error + /gov/proposals/param_change: + post: + deprecated: true + summary: Generate a parameter change proposal transaction + description: Generate a parameter change proposal transaction + tags: + - Governance + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + title: + type: string + x-example: Param Change + description: + type: string + x-example: Update max validators + proposer: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + changes: + type: array + items: + type: object + properties: + subspace: + type: string + example: staking + key: + type: string + example: MaxValidators + subkey: + type: string + example: "" + value: + type: object + description: The parameter change proposal body that contains all parameter changes + required: true + responses: + "200": + description: The transaction was succesfully generated + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid proposal body + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}": + get: + deprecated: true + summary: Query a proposal + description: Query a proposal by id + tags: + - Governance + parameters: + - name: proposalId + required: true + in: path + example: "2" + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: + type: object + properties: + yes: + type: string + example: "0.0000000000" + abstain: + type: string + example: "0.0000000000" + no: + type: string + example: "0.0000000000" + no_with_veto: + type: string + example: "0.0000000000" + submit_time: + type: string + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + voting_start_time: + type: string + "400": + description: Invalid proposal id + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}/proposer": + get: + deprecated: true + summary: Query proposer + description: Query for the proposer for a proposal + tags: + - Governance + parameters: + - name: proposalId + required: true + in: path + example: "2" + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + proposal_id: + type: string + proposer: + type: string + "400": + description: Invalid proposal ID + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}/deposits": + get: + deprecated: true + summary: Query deposits + description: Query deposits by proposalId + tags: + - Governance + parameters: + - name: proposalId + required: true + in: path + example: "2" + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + proposal_id: + type: string + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + "400": + description: Invalid proposal id + "500": + description: Internal Server Error + post: + deprecated: true + summary: Deposit tokens to a proposal + description: Send transaction to deposit tokens to a proposal + tags: + - Governance + parameters: + - description: proposal id + name: proposalId + required: true + in: path + example: "2" + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + required: true + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid proposal id or deposit body + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}/deposits/{depositor}": + get: + deprecated: true + summary: Query deposit + description: Query deposit by proposalId and depositor address + tags: + - Governance + parameters: + - description: proposal id + name: proposalId + required: true + in: path + example: "2" + schema: + type: string + - description: Bech32 depositor address + name: depositor + required: true + in: path + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + proposal_id: + type: string + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + "400": + description: Invalid proposal id or depositor address + "404": + description: Found no deposit + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}/votes": + get: + deprecated: true + summary: Query voters + description: Query voters information by proposalId + tags: + - Governance + parameters: + - description: proposal id + name: proposalId + required: true + in: path + example: "2" + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + voter: + type: string + proposal_id: + type: string + option: + type: string + "400": + description: Invalid proposal id + "500": + description: Internal Server Error + post: + deprecated: true + summary: Vote a proposal + description: Send transaction to vote a proposal + tags: + - Governance + parameters: + - description: proposal id + name: proposalId + required: true + in: path + example: "2" + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + voter: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + option: + type: string + example: yes + description: valid value of `"option"` field can be `"yes"`, `"no"`, + `"no_with_veto"` and `"abstain"` + required: true + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid proposal id or vote body + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}/votes/{voter}": + get: + deprecated: true + summary: Query vote + description: Query vote information by proposal Id and voter address + tags: + - Governance + parameters: + - description: proposal id + name: proposalId + required: true + in: path + example: "2" + schema: + type: string + - description: Bech32 voter address + name: voter + required: true + in: path + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + voter: + type: string + proposal_id: + type: string + option: + type: string + "400": + description: Invalid proposal id or voter address + "404": + description: Found no vote + "500": + description: Internal Server Error + "/gov/proposals/{proposalId}/tally": + get: + deprecated: true + summary: Get a proposal's tally result at the current time + description: Gets a proposal's tally result at the current time. If the proposal + is pending deposits (i.e status 'DepositPeriod') it returns an empty + tally result. + tags: + - Governance + parameters: + - description: proposal id + name: proposalId + required: true + in: path + example: "2" + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + yes: + type: string + example: "0.0000000000" + abstain: + type: string + example: "0.0000000000" + no: + type: string + example: "0.0000000000" + no_with_veto: + type: string + example: "0.0000000000" + "400": + description: Invalid proposal id + "500": + description: Internal Server Error + /gov/parameters/deposit: + get: + deprecated: true + summary: Query governance deposit parameters + description: Query governance deposit parameters. The max_deposit_period units + are in nanoseconds. + tags: + - Governance + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + min_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + max_deposit_period: + type: string + example: "86400000000000" + "400": + description: is not a valid query request path + "404": + description: Found no deposit parameters + "500": + description: Internal Server Error + /gov/parameters/tallying: + get: + deprecated: true + summary: Query governance tally parameters + description: Query governance tally parameters + tags: + - Governance + responses: + "200": + description: OK + content: + application/json: + schema: + properties: + threshold: + type: string + example: "0.5000000000" + veto: + type: string + example: "0.3340000000" + governance_penalty: + type: string + example: "0.0100000000" + "400": + description: is not a valid query request path + "404": + description: Found no tally parameters + "500": + description: Internal Server Error + /gov/parameters/voting: + get: + deprecated: true + summary: Query governance voting parameters + description: Query governance voting parameters. The voting_period units are in + nanoseconds. + tags: + - Governance + responses: + "200": + description: OK + content: + application/json: + schema: + properties: + voting_period: + type: string + example: "86400000000000" + "400": + description: is not a valid query request path + "404": + description: Found no voting parameters + "500": + description: Internal Server Error + "/distribution/delegators/{delegatorAddr}/rewards": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf + schema: + type: string + get: + deprecated: true + summary: Get the total rewards balance from all delegations + description: Get the sum of all the rewards earned by delegations by a single + delegator + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + rewards: + type: array + items: + type: object + properties: + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + reward: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + total: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid delegator address + "500": + description: Internal Server Error + post: + deprecated: true + summary: Withdraw all the delegator's delegation rewards + description: Withdraw all the delegator's delegation rewards + tags: + - Distribution + requestBody: + $ref: "#/components/requestBodies/WithdrawRequestBody" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid delegator address + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/distribution/delegators/{delegatorAddr}/rewards/{validatorAddr}": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + schema: + type: string + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Query a delegation reward + description: Query a single delegation reward by a delegator + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid delegator address + "500": + description: Internal Server Error + post: + deprecated: true + summary: Withdraw a delegation reward + description: Withdraw a delegator's delegation reward from a single validator + tags: + - Distribution + requestBody: + $ref: "#/components/requestBodies/WithdrawRequestBody" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid delegator address or delegation body + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/distribution/delegators/{delegatorAddr}/withdraw_address": + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf + schema: + type: string + get: + deprecated: true + summary: Get the rewards withdrawal address + description: Get the delegations' rewards withdrawal address. This is the + address in which the user will receive the reward funds + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + "400": + description: Invalid delegator address + "500": + description: Internal Server Error + post: + deprecated: true + summary: Replace the rewards withdrawal address + description: Replace the delegations' rewards withdrawal address for a new one. + tags: + - Distribution + requestBody: + content: + application/json: + schema: + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + withdraw_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid delegator or withdraw address + "401": + description: Key password is wrong + "500": + description: Internal Server Error + "/distribution/validators/{validatorAddr}": + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Validator distribution information + description: Query the distribution information of a single validator + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + self_bond_rewards: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + val_commission: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid validator address + "500": + description: Internal Server Error + "/distribution/validators/{validatorAddr}/outstanding_rewards": + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Fee distribution outstanding rewards of a single validator + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "500": + description: Internal Server Error + "/distribution/validators/{validatorAddr}/rewards": + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + schema: + type: string + get: + deprecated: true + summary: Commission and self-delegation rewards of a single validator + description: Query the commission and self-delegation rewards of validator. + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "400": + description: Invalid validator address + "500": + description: Internal Server Error + post: + deprecated: true + summary: Withdraw the validator's rewards + description: Withdraw the validator's self-delegation and commissions rewards + tags: + - Distribution + requestBody: + $ref: "#/components/requestBodies/WithdrawRequestBody" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Invalid validator address + "401": + description: Key password is wrong + "500": + description: Internal Server Error + /distribution/community_pool: + get: + deprecated: true + summary: Community pool parameters + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + "500": + description: Internal Server Error + /distribution/parameters: + get: + deprecated: true + summary: Fee distribution parameters + tags: + - Distribution + responses: + "200": + description: OK + content: + application/json: + schema: + properties: + base_proposer_reward: + type: string + bonus_proposer_reward: + type: string + community_tax: + type: string + "500": + description: Internal Server Error + /minting/parameters: + get: + deprecated: true + summary: Minting module parameters + tags: + - Mint + responses: + "200": + description: OK + content: + application/json: + schema: + properties: + mint_denom: + type: string + inflation_rate_change: + type: string + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + blocks_per_year: + type: string + "500": + description: Internal Server Error + /minting/inflation: + get: + deprecated: true + summary: Current minting inflation value + tags: + - Mint + responses: + "200": + description: OK + content: + application/json: + schema: + type: string + "500": + description: Internal Server Error + /minting/annual-provisions: + get: + deprecated: true + summary: Current minting annual provisions value + tags: + - Mint + responses: + "200": + description: OK + content: + application/json: + schema: + type: string + "500": + description: Internal Server Error + /wasm/code: + post: + summary: Generate wasm store code message + tags: + - Wasm + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + wasm_bytes: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Bad request + "500": + description: Internal Server Error + get: + summary: List code info + tags: + - Wasm + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + id: + type: number + creator: + type: string + data_hash: + type: string + source: + type: string + builder: + type: string + "/wasm/code/{codeID}": + post: + summary: Instantiate wasm contract message + tags: + - Wasm + parameters: + - in: path + name: codeID + description: code ID you want to instantiate + required: true + schema: + type: number + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + init_coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + init_msg: + type: string + description: json formatted string + example: "{}" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Bad request + "500": + description: Internal Server Error + get: + summary: Get code info of the code ID + tags: + - Wasm + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + schema: + type: number + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + code_hash: + type: string + creator: + type: string + "/wasm/code/{codeID}/contracts": + get: + summary: Get info about all contracts deployed with a code ID + tags: + - Wasm + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + schema: + type: number + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + code-id: + type: number + creator: + type: string + label: + type: string + address: + type: string + "/wasm/contract/{contractAddress}": + post: + summary: Execute wasm contract message + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to execute + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + exec_msg: + type: string + example: "{}" + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + "400": + description: Bad request + "500": + description: Internal Server Error + "/wasm/contract/{contractAddress}/code-hash": + get: + summary: Get stored contract-hash information + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to lookup + required: true + schema: + type: string + - in: query + name: query_msg + description: json formatted query msg + required: true + example: "{}" + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + height: + type: string + result: + type: string + "/wasm/contract/{contractAddress}/query/{query}": + get: + summary: Get stored information with store key + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to lookup + required: true + schema: + type: string + - in: path + name: query + description: hex encoded data for the query + required: true + schema: + type: string + - in: query + name: encoding + description: encoding of the query data (only hex supported) + required: false + schema: + type: string + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + key: + type: string + value: + type: string + "/wasm/code/{codeID}/hash": + get: + summary: Get code ID data hash + tags: + - Wasm + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + schema: + type: number + responses: + "200": + description: OK + content: + application/json: + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + height: + type: string + result: + type: string + "404": + description: Not Found + /reg/consensus-io-exch-pubkey: + get: + tags: + - Reg + summary: Get chain public key + description: Get chain public key + operationId: consensus-io-exch-pubkey + responses: + "200": + description: OK + content: + "*/*": + schema: + type: object + properties: + type: object + properties: + height: + type: string + result: + type: object + properties: + ioExchPubkey: + type: string + "404": + description: Not Found +components: + requestBodies: + WithdrawRequestBody: + content: + application/json: + schema: + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + securitySchemes: + kms: + type: http + scheme: basic + schemas: + cosmos.auth.v1beta1.Params: + type: object + properties: + max_memo_characters: + type: string + format: uint64 + tx_sig_limit: + type: string + format: uint64 + tx_size_cost_per_byte: + type: string + format: uint64 + sig_verify_cost_ed25519: + type: string + format: uint64 + sig_verify_cost_secp256k1: + type: string + format: uint64 + description: Params defines the parameters for the auth module. + cosmos.auth.v1beta1.QueryAccountResponse: + type: object + properties: + account: + 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: QueryAccountResponse is the response type for the Query/Account RPC + method. + cosmos.auth.v1beta1.QueryAccountsResponse: + type: object + properties: + accounts: + 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" + } + title: accounts are the existing accounts + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAccountsResponse is the response type for the Query/Accounts RPC + method. + + + Since: cosmos-sdk 0.43 + cosmos.auth.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_memo_characters: + type: string + format: uint64 + tx_sig_limit: + type: string + format: uint64 + tx_size_cost_per_byte: + type: string + format: uint64 + sig_verify_cost_ed25519: + type: string + format: uint64 + sig_verify_cost_secp256k1: + type: string + format: uint64 + description: QueryParamsResponse is the response type for the Query/Params RPC method. + cosmos.base.query.v1beta1.PageRequest: + 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 + description: |- + message SomeRequest { + Foo some_parameter = 1; + PageRequest pagination = 2; + } + title: |- + PageRequest is to be embedded in gRPC request messages for efficient + pagination. Ex: + cosmos.base.query.v1beta1.PageResponse: + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + google.protobuf.Any: + 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" + } + grpc.gateway.runtime.Error: + 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" + } + 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 + + 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" + } + expiration: + type: string + format: date-time + description: |- + Grant gives permissions to execute + the provide method with expiration time. + cosmos.authz.v1beta1.GrantAuthorization: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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" + } + expiration: + type: string + format: date-time + description: "Since: cosmos-sdk 0.45.2" + title: >- + GrantAuthorization extends a grant with both the addresses of the + grantee and granter. + + It is used in genesis.proto and query.proto + cosmos.authz.v1beta1.QueryGranteeGrantsResponse: + type: object + properties: + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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" + } + expiration: + type: string + format: date-time + description: "Since: cosmos-sdk 0.45.2" + 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 to the grantee. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: 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: + 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" + } + expiration: + type: string + format: date-time + description: "Since: cosmos-sdk 0.45.2" + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: 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: + 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" + } + expiration: + type: string + format: date-time + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: QueryGrantsResponse is the response type for the + Query/Authorizations RPC method. + cosmos.bank.v1beta1.DenomUnit: + 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 = 1^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. + cosmos.bank.v1beta1.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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + cosmos.bank.v1beta1.Params: + type: object + properties: + send_enabled: + type: array + items: + type: object + properties: + denom: + type: string + enabled: + type: boolean + description: >- + SendEnabled maps coin denom to a send_enabled status (whether a + denom is + + sendable). + default_send_enabled: + type: boolean + description: Params defines the parameters for the bank module. + cosmos.bank.v1beta1.QueryAllBalancesResponse: + type: object + properties: + balances: + 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: balances is the balances of all the coins. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAllBalancesResponse is the response type for the Query/AllBalances + RPC + + method. + cosmos.bank.v1beta1.QueryBalanceResponse: + type: object + properties: + 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: QueryBalanceResponse is the response type for the Query/Balance RPC + method. + cosmos.bank.v1beta1.QueryDenomMetadataResponse: + 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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + description: >- + QueryDenomMetadataResponse is the response type for the + Query/DenomMetadata RPC + + method. + cosmos.bank.v1beta1.QueryDenomsMetadataResponse: + type: object + properties: + metadatas: + type: array + items: + 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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + description: metadata provides the client information for all the registered + tokens. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryDenomsMetadataResponse is the response type for the + Query/DenomsMetadata RPC + + method. + cosmos.bank.v1beta1.QueryParamsResponse: + type: object + properties: + params: + type: object + properties: + send_enabled: + type: array + items: + type: object + properties: + denom: + type: string + enabled: + type: boolean + description: >- + SendEnabled maps coin denom to a send_enabled status (whether + a denom is + + sendable). + default_send_enabled: + type: boolean + description: Params defines the parameters for the bank module. + description: QueryParamsResponse defines the response type for querying x/bank + parameters. + cosmos.bank.v1beta1.QuerySpendableBalancesResponse: + type: object + properties: + balances: + 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: balances is the spendable balances of all the coins. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QuerySpendableBalancesResponse defines the gRPC response structure for + querying + + an account's spendable balances. + cosmos.bank.v1beta1.QuerySupplyOfResponse: + 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: QuerySupplyOfResponse is the response type for the Query/SupplyOf + RPC method. + cosmos.bank.v1beta1.QueryTotalSupplyResponse: + type: object + properties: + supply: + 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: supply is the supply of the coins + pagination: + description: |- + pagination defines the pagination in the response. + + Since: cosmos-sdk 0.43 + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryTotalSupplyResponse is the response type for the Query/TotalSupply + RPC + + method + cosmos.bank.v1beta1.SendEnabled: + type: object + properties: + denom: + type: string + enabled: + type: boolean + description: |- + SendEnabled maps coin denom to a send_enabled status (whether a denom is + sendable). + cosmos.base.v1beta1.Coin: + 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. + cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse: + type: object + properties: + 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, + + 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 Tendermint 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. + + 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + description: GetBlockByHeightResponse is the response type for the + Query/GetBlockByHeight RPC method. + cosmos.base.tendermint.v1beta1.GetLatestBlockResponse: + type: object + properties: + 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, + + 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 Tendermint 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. + + 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + description: GetLatestBlockResponse is the response type for the + Query/GetLatestBlock RPC method. + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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 request 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: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: GetValidatorSetByHeightResponse is the response type for the + Query/GetValidatorSetByHeight RPC method. + 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.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: + 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 Tendermint 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, + + 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 Tendermint 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. + + 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + tendermint.types.BlockID: + 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 + 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: + 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.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: + 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. + tendermint.types.Evidence: + 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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: 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + 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: + 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 Tendermint 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: + 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 Tendermint 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 Tendermint 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. + + - 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, + + 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. + + 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. + + + 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 + secret_foundation_tax: + type: string + secret_foundation_address: + type: string + 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 + + 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: + 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: |- + 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.QueryFoundationTaxResponse: + type: object + properties: + tax: + type: string + description: withdraw_address defines the delegator address to query for. + foundation_address: + type: string + 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 + base_proposer_reward: + type: string + bonus_proposer_reward: + type: string + withdraw_addr_enabled: + type: boolean + secret_foundation_tax: + type: string + secret_foundation_address: + type: string + 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: + 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. + title: |- + QueryValidatorCommissionResponse is the response type for the + Query/ValidatorCommission RPC method + cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse: + type: object + properties: + rewards: + 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. + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: + 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: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAllEvidenceResponse is the response type for the Query/AllEvidence + RPC + + method. + cosmos.evidence.v1beta1.QueryEvidenceResponse: + type: object + properties: + evidence: + 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: QueryEvidenceResponse is the response type for the Query/Evidence + RPC method. + cosmos.feegrant.v1beta1.Grant: + 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 and filtered 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 + + 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. + 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 and filtered 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 + + 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. + 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.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 and filtered 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 + + 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. + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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.gov.v1beta1.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. + + + 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 + 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 + + 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 propopsal 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: + 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. + 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 + 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 propopsal 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: + 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. + + + 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: + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: 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 + 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: >- + 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: + type: object + properties: + 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 + + 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 propopsal 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: + 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. + 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 + 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: + proposals: + type: array + items: + 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 + + 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 propopsal 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: + 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. + 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 + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: |- + QueryProposalsResponse is the response type for the Query/Proposals RPC + method. + cosmos.gov.v1beta1.QueryTallyResultResponse: + type: object + properties: + tally: + 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. + description: QueryTallyResultResponse is the response type for the Query/Tally + RPC method. + cosmos.gov.v1beta1.QueryVoteResponse: + type: object + properties: + 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: |- + 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: + votes: + type: array + items: + 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: |- + 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 + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: 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: |- + 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: + 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.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: + type: object + properties: + params: + description: params defines the parameters of the module. + 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: 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 + key: + type: string + value: + type: string + description: QueryParamsResponse is response type for the Query/Params RPC method. + cosmos.slashing.v1beta1.Params: + type: object + properties: + 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: + 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. + title: QueryParamsResponse is the response type for the Query/Params RPC method + cosmos.slashing.v1beta1.QuerySigningInfoResponse: + type: object + properties: + val_signing_info: + 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 + + 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: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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: + info: + 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: + 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: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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: + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + 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: + 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 + + 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: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + description: >- + BondStatus is the status of a validator. + + - 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: + 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: + 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. + 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: + 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. + cosmos.staking.v1beta1.Description: + 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. + 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, + + 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 Tendermint 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 + + 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 + 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. + 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 + 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. + 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 + + 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: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: + unbonding_responses: + 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: + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: |- + QueryUnbondingDelegatorDelegationsResponse is response type for the + Query/UnbondingDelegatorDelegations RPC method. + cosmos.staking.v1beta1.QueryDelegatorValidatorResponse: + type: object + properties: + 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: + 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 + 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. + 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: + 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: + 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 + 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. + 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: validators defines the the validators' info of a delegator. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: + 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 Tendermint 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 + + 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 + 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. + 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: >- + QueryHistoricalInfoResponse is response type for the + Query/HistoricalInfo RPC + + 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. + 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: + 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. + 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 + + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryRedelegationsResponse is response type for the Query/Redelegations + RPC + + method. + cosmos.staking.v1beta1.QueryUnbondingDelegationResponse: + type: object + properties: + unbond: + 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: + 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. + 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: + 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 + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: |- + QueryValidatorDelegationsResponse is response type for the + Query/ValidatorDelegations RPC method + cosmos.staking.v1beta1.QueryValidatorResponse: + type: object + properties: + 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: + 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 + 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. + 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. + title: QueryValidatorResponse is response type for the Query/Validator RPC + method + cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse: + type: object + properties: + unbonding_responses: + 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: + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: |- + 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 + 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 + 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. + 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: validators contains all the queried validators. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: 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: + 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: + 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 + + 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 + + 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 + + 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. + cosmos.staking.v1beta1.UnbondingDelegation: + 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: + 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: + 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: + 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 + 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. + 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. + 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. + + 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 + + version of the software to apply any special "on-upgrade" commands during + + 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 + + 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 + + has been removed from the SDK. + + 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: >- + 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: 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.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 + + version of the software to apply any special "on-upgrade" commands during + + 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 + + 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 + + has been removed from the SDK. + + 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: >- + 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: >- + QueryCurrentPlanResponse is the response type for the Query/CurrentPlan + RPC + + 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. + + 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 + + RPC method. + + + 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 + + RPC method. + ibc.applications.interchain_accounts.controller.v1.Params: + type: object + properties: + controller_enabled: + type: boolean + description: controller_enabled enables or disables the controller submodule. + description: >- + Params defines the set of on-chain interchain accounts parameters. + + The following parameters may be used to disable the controller submodule. + ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + controller_enabled: + type: boolean + description: controller_enabled enables or disables the controller submodule. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + ibc.applications.interchain_accounts.host.v1.Params: + type: object + properties: + host_enabled: + type: boolean + description: host_enabled enables or disables the host submodule. + allow_messages: + type: array + items: + type: string + description: allow_messages defines a list of sdk message typeURLs allowed to be + executed on a host chain. + description: |- + Params defines the set of on-chain interchain accounts parameters. + The following parameters may be used to disable the host submodule. + ibc.applications.interchain_accounts.host.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + host_enabled: + type: boolean + description: host_enabled enables or disables the host submodule. + allow_messages: + type: array + items: + type: string + description: allow_messages defines a list of sdk message typeURLs allowed to be + executed on a host chain. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + ibc.applications.transfer.v1.DenomTrace: + type: object + properties: + path: + type: string + description: >- + path defines the chain of port/channel identifiers used for tracing + the + + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible tokens and + the + + source tracing information path. + ibc.applications.transfer.v1.Params: + type: object + properties: + send_enabled: + type: boolean + description: >- + send_enabled enables or disables all cross-chain token transfers + from this + + chain. + receive_enabled: + type: boolean + description: >- + receive_enabled enables or disables all cross-chain token transfers + to this + + chain. + description: >- + Params defines the set of IBC transfer parameters. + + NOTE: To prevent a single token from being transferred, set the + + TransfersEnabled parameter to true and then set the bank module's SendEnabled + + parameter for the denomination to false. + ibc.applications.transfer.v1.QueryDenomHashResponse: + type: object + properties: + hash: + type: string + description: hash (in hex format) of the denomination trace information. + description: |- + QueryDenomHashResponse is the response type for the Query/DenomHash RPC + method. + ibc.applications.transfer.v1.QueryDenomTraceResponse: + type: object + properties: + denom_trace: + type: object + properties: + path: + type: string + description: >- + path defines the chain of port/channel identifiers used for + tracing the + + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible tokens + and the + + source tracing information path. + description: >- + QueryDenomTraceResponse is the response type for the Query/DenomTrace + RPC + + method. + ibc.applications.transfer.v1.QueryDenomTracesResponse: + type: object + properties: + denom_traces: + type: array + items: + type: object + properties: + path: + type: string + description: >- + path defines the chain of port/channel identifiers used for + tracing the + + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible + tokens and the + + source tracing information path. + description: denom_traces returns all denominations trace information. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryConnectionsResponse is the response type for the Query/DenomTraces + RPC + + method. + ibc.applications.transfer.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + send_enabled: + type: boolean + description: >- + send_enabled enables or disables all cross-chain token transfers + from this + + chain. + receive_enabled: + type: boolean + description: >- + receive_enabled enables or disables all cross-chain token + transfers to this + + chain. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + ibc.core.channel.v1.Channel: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets sent + on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + description: >- + Channel defines pipeline for exactly-once packet delivery between + specific + + modules on separate blockchains, which has at least one end capable of + + sending packets and one end capable of receiving packets. + ibc.core.channel.v1.Counterparty: + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + title: Counterparty defines a channel end counterparty + ibc.core.channel.v1.IdentifiedChannel: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets sent + on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: |- + IdentifiedChannel defines a channel with additional port and channel + identifier fields. + ibc.core.channel.v1.Order: + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + title: Order defines if a channel is ORDERED or UNORDERED + ibc.core.channel.v1.PacketState: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve and store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret this + + state as a commitment, acknowledgement, or a receipt. + ibc.core.channel.v1.QueryChannelClientStateResponse: + type: object + properties: + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: >- + IdentifiedClientState defines a client state with an additional + client + + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method + ibc.core.channel.v1.QueryChannelConsensusStateResponse: + type: object + properties: + consensus_state: + 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: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method + ibc.core.channel.v1.QueryChannelResponse: + type: object + properties: + channel: + title: channel associated with the request identifiers + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets + sent on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + description: >- + Channel defines pipeline for exactly-once packet delivery between + specific + + modules on separate blockchains, which has at least one end capable of + + sending packets and one end capable of receiving packets. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryChannelResponse is the response type for the Query/Channel RPC + method. + + Besides the Channel end, it includes a proof and the height from which the + + proof was retrieved. + ibc.core.channel.v1.QueryChannelsResponse: + type: object + properties: + channels: + type: array + items: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets + sent on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: >- + IdentifiedChannel defines a channel with additional port and + channel + + identifier fields. + description: list of stored channels of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: QueryChannelsResponse is the response type for the Query/Channels + RPC method. + ibc.core.channel.v1.QueryConnectionChannelsResponse: + type: object + properties: + channels: + type: array + items: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets + sent on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: >- + IdentifiedChannel defines a channel with additional port and + channel + + identifier fields. + description: list of channels associated with a connection. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryConnectionChannelsResponse is the Response type for the + Query/QueryConnectionChannels RPC method + ibc.core.channel.v1.QueryNextSequenceReceiveResponse: + type: object + properties: + next_sequence_receive: + type: string + format: uint64 + title: next sequence receive number + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QuerySequenceResponse is the request type for the + Query/QueryNextSequenceReceiveResponse RPC method + ibc.core.channel.v1.QueryPacketAcknowledgementResponse: + type: object + properties: + acknowledgement: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryPacketAcknowledgementResponse defines the client query response for + a + + packet which also includes a proof and the height from which the + + proof was retrieved + ibc.core.channel.v1.QueryPacketAcknowledgementsResponse: + type: object + properties: + acknowledgements: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve and + store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret this + + state as a commitment, acknowledgement, or a receipt. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryPacketAcknowledgemetsResponse is the request type for the + Query/QueryPacketAcknowledgements RPC method + ibc.core.channel.v1.QueryPacketCommitmentResponse: + type: object + properties: + commitment: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryPacketCommitmentResponse defines the client query response for a + packet + + which also includes a proof and the height from which the proof was + + retrieved + ibc.core.channel.v1.QueryPacketCommitmentsResponse: + type: object + properties: + commitments: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve and + store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret this + + state as a commitment, acknowledgement, or a receipt. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryPacketCommitmentsResponse is the request type for the + Query/QueryPacketCommitments RPC method + ibc.core.channel.v1.QueryPacketReceiptResponse: + type: object + properties: + received: + type: boolean + title: success flag for if receipt exists + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryPacketReceiptResponse defines the client query response for a + packet + + receipt which also includes a proof, and the height from which the proof was + + retrieved + ibc.core.channel.v1.QueryUnreceivedAcksResponse: + type: object + properties: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived acknowledgement sequences + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryUnreceivedAcksResponse is the response type for the + Query/UnreceivedAcks RPC method + ibc.core.channel.v1.QueryUnreceivedPacketsResponse: + type: object + properties: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived packet sequences + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryUnreceivedPacketsResponse is the response type for the + Query/UnreceivedPacketCommitments RPC method + ibc.core.channel.v1.State: + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ibc.core.client.v1.Height: + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + Height is a monotonically increasing data type + + that can be compared against another Height for the purposes of updating and + + freezing clients + ibc.core.client.v1.IdentifiedClientState: + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: |- + IdentifiedClientState defines a client state with an additional client + identifier field. + ibc.core.client.v1.ConsensusStateWithHeight: + type: object + properties: + height: + title: consensus state height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + consensus_state: + 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: consensus state + description: >- + ConsensusStateWithHeight defines a consensus state with an additional + height + + field. + ibc.core.client.v1.Params: + type: object + properties: + allowed_clients: + type: array + items: + type: string + description: allowed_clients defines the list of allowed client state types. + description: Params defines the set of IBC light client parameters. + ibc.core.client.v1.QueryClientParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + allowed_clients: + type: array + items: + type: string + description: allowed_clients defines the list of allowed client state types. + description: >- + QueryClientParamsResponse is the response type for the + Query/ClientParams RPC + + method. + ibc.core.client.v1.QueryClientStateResponse: + type: object + properties: + client_state: + 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: client state associated with the request identifier + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryClientStateResponse is the response type for the Query/ClientState + RPC + + method. Besides the client state, it includes a proof and the height from + + which the proof was retrieved. + ibc.core.client.v1.QueryClientStatesResponse: + type: object + properties: + client_states: + type: array + items: + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: >- + IdentifiedClientState defines a client state with an additional + client + + identifier field. + description: list of stored ClientStates of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + description: >- + QueryClientStatesResponse is the response type for the + Query/ClientStates RPC + + method. + ibc.core.client.v1.QueryClientStatusResponse: + type: object + properties: + status: + type: string + description: >- + QueryClientStatusResponse is the response type for the + Query/ClientStatus RPC + + method. It returns the current status of the IBC client. + ibc.core.client.v1.QueryConsensusStateResponse: + type: object + properties: + consensus_state: + 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: consensus state associated with the client identifier at the given height + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: >- + QueryConsensusStateResponse is the response type for the + Query/ConsensusState + + RPC method + ibc.core.client.v1.QueryConsensusStatesResponse: + type: object + properties: + consensus_states: + type: array + items: + type: object + properties: + height: + title: consensus state height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + consensus_state: + 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: consensus state + description: >- + ConsensusStateWithHeight defines a consensus state with an + additional height + + field. + title: consensus states associated with the identifier + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: |- + QueryConsensusStatesResponse is the response type for the + Query/ConsensusStates RPC method + ibc.core.client.v1.QueryUpgradedClientStateResponse: + type: object + properties: + upgraded_client_state: + 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: client state associated with the request identifier + description: |- + QueryUpgradedClientStateResponse is the response type for the + Query/UpgradedClientState RPC method. + ibc.core.client.v1.QueryUpgradedConsensusStateResponse: + type: object + properties: + upgraded_consensus_state: + 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: Consensus state associated with the request identifier + description: |- + QueryUpgradedConsensusStateResponse is the response type for the + Query/UpgradedConsensusState RPC method. + ibc.core.commitment.v1.MerklePrefix: + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + ibc.core.connection.v1.ConnectionEnd: + type: object + properties: + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the IBC + verison in + + the connection handshake. + description: >- + IBC version which can be utilised to determine encodings or + protocols for + + channels or packets utilising this connection. + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated with + a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain + associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: >- + delay period that must pass before a consensus state can be used for + + packet-verification NOTE: delay period logic is only implemented by some + + clients. + description: |- + ConnectionEnd defines a stateful object on a chain connected to another + separate one. + NOTE: there must only be 2 defined ConnectionEnds to establish + a connection between two chains. + ibc.core.connection.v1.Counterparty: + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated with a + given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain associated + with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + description: Counterparty defines the counterparty chain associated with a + connection end. + ibc.core.connection.v1.IdentifiedConnection: + type: object + properties: + id: + type: string + description: connection identifier. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the IBC + verison in + + the connection handshake. + title: >- + IBC version which can be utilised to determine encodings or + protocols for + + channels or packets utilising this connection + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated with + a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain + associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: delay period associated with this connection. + description: |- + IdentifiedConnection defines a connection with additional connection + identifier field. + ibc.core.connection.v1.QueryClientConnectionsResponse: + type: object + properties: + connection_paths: + type: array + items: + type: string + description: slice of all the connection paths associated with a client. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was generated + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryClientConnectionsResponse is the response type for the + Query/ClientConnections RPC method + ibc.core.connection.v1.QueryConnectionClientStateResponse: + type: object + properties: + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + 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: client state + description: >- + IdentifiedClientState defines a client state with an additional + client + + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryConnectionClientStateResponse is the response type for the + Query/ConnectionClientState RPC method + ibc.core.connection.v1.QueryConnectionConsensusStateResponse: + type: object + properties: + consensus_state: + 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: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + title: |- + QueryConnectionConsensusStateResponse is the response type for the + Query/ConnectionConsensusState RPC method + ibc.core.connection.v1.QueryConnectionResponse: + type: object + properties: + connection: + title: connection associated with the request identifier + type: object + properties: + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the + IBC verison in + + the connection handshake. + description: >- + IBC version which can be utilised to determine encodings or + protocols for + + channels or packets utilising this connection. + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated + with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain + associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: >- + delay period that must pass before a consensus state can be used + for + + packet-verification NOTE: delay period logic is only implemented by some + + clients. + description: >- + ConnectionEnd defines a stateful object on a chain connected to + another + + separate one. + + NOTE: there must only be 2 defined ConnectionEnds to establish + + a connection between two chains. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryConnectionResponse is the response type for the Query/Connection + RPC + + method. Besides the connection end, it includes a proof and the height from + + which the proof was retrieved. + ibc.core.connection.v1.QueryConnectionsResponse: + type: object + properties: + connections: + type: array + items: + type: object + properties: + id: + type: string + description: connection identifier. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the + IBC verison in + + the connection handshake. + title: >- + IBC version which can be utilised to determine encodings or + protocols for + + channels or packets utilising this connection + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated + with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain + associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: delay period associated with this connection. + description: >- + IdentifiedConnection defines a connection with additional + connection + + identifier field. + description: list of stored connections of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so that + + height continues to be monitonically increasing even as the RevisionHeight + + gets reset + description: >- + QueryConnectionsResponse is the response type for the Query/Connections + RPC + + method. + ibc.core.connection.v1.State: + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a connection is in one of the following states: + + INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A connection end has just started the opening handshake. + - STATE_TRYOPEN: A connection end has acknowledged the handshake step on the counterparty + chain. + - STATE_OPEN: A connection end has completed the handshake. + ibc.core.connection.v1.Version: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the IBC verison + in + + the connection handshake. + secret.compute.v1beta1.AbsoluteTxPosition: + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: AbsoluteTxPosition can be used to sort contracts + secret.compute.v1beta1.CodeInfoResponse: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + secret.compute.v1beta1.ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: |- + never show this in query results, just use for sorting + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: ContractInfo stores a WASM contract instance + secret.compute.v1beta1.ContractInfoWithAddress: + type: object + properties: + address: + type: string + format: byte + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: |- + never show this in query results, just use for sorting + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: ContractInfoWithAddress adds the address (key) to the ContractInfo + representation + secret.compute.v1beta1.QueryCodeResponse: + type: object + properties: + code_info: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + data: + type: string + format: byte + secret.compute.v1beta1.QueryCodesResponse: + type: object + properties: + code_infos: + type: array + items: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + secret.compute.v1beta1.QueryContractInfoResponse: + type: object + properties: + address: + type: string + format: byte + title: address is the address of the contract + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: |- + never show this in query results, just use for sorting + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: QueryContractInfoResponse is the response type for the Query/ContractInfo + RPC method + secret.compute.v1beta1.QueryContractsByCodeResponse: + type: object + properties: + contract_infos: + type: array + items: + type: object + properties: + address: + type: string + format: byte + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: >- + never show this in query results, just use for sorting + + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: ContractInfoWithAddress adds the address (key) to the ContractInfo + representation + secret.compute.v1beta1.QuerySmartContractStateResponse: + type: object + properties: + data: + type: string + format: byte + secret.intertx.v1beta1.QueryInterchainAccountFromAddressResponse: + type: object + properties: + interchain_account_address: + type: string + title: QueryInterchainAccountFromAddressResponse the response type for the + Query/InterchainAccountAddress RPC + secret.registration.v1beta1.Key: + type: object + properties: + key: + type: string + format: byte + secret.registration.v1beta1.QueryEncryptedSeedResponse: + type: object + properties: + encrypted_seed: + type: string + format: byte + CodeIdContracts: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + code-id: + type: number + creator: + type: string + label: + type: string + address: + type: string + IoExchPubkeyResponse: + type: object + properties: + height: + type: string + result: + type: object + properties: + ioExchPubkey: + type: string + ListContractSingle: + type: object + properties: + code-id: + type: number + creator: + type: string + label: + type: string + address: + type: string + ListCodeReponse: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + id: + type: number + creator: + type: string + data_hash: + type: string + source: + type: string + builder: + type: string + ListCodeSingle: + type: object + properties: + id: + type: number + creator: + type: string + data_hash: + type: string + source: + type: string + builder: + type: string + CodeHash: + type: object + properties: + height: + type: string + result: + type: string + CodeInfo: + type: object + properties: + code_hash: + type: string + creator: + type: string + StoreCodeReq: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + wasm_bytes: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + InstantiateContractReq: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + init_coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + init_msg: + type: string + description: json formatted string + example: "{}" + ExecuteContractReq: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + exec_msg: + type: string + example: "{}" + CheckTxResult: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + DeliverTxResult: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + BroadcastTxCommitResult: + type: object + properties: + check_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + deliver_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + height: + type: integer + KVPair: + type: object + properties: + key: + type: string + value: + type: string + Msg: + type: string + Address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + ValidatorAddress: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + Coin: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + Hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + TxQuery: + type: object + properties: + hash: + type: string + example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: "200000" + gas_used: + type: string + example: "26354" + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + PaginatedQueryTxs: + type: object + properties: + total_count: + type: number + example: 1 + count: + type: number + example: 1 + page_number: + type: number + example: 1 + page_total: + type: number + example: 1 + limit: + type: number + example: 30 + txs: + type: array + items: + type: object + properties: + hash: + type: string + example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: "200000" + gas_used: + type: string + example: "26354" + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + StdTx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + BlockID: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + BlockHeader: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + Block: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: "0" + height: + type: string + example: "0" + round: + type: string + example: "0" + timestamp: + type: string + example: 2017-12-30T05:53:09.287+01:00 + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + BlockQuery: + type: object + properties: + block_meta: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + block: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: 2017-12-30T05:53:09.287+01:00 + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: "0" + height: + type: string + example: "0" + round: + type: string + example: "0" + timestamp: + type: string + example: 2017-12-30T05:53:09.287+01:00 + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + DelegationDelegatorReward: + type: object + properties: + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + reward: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + DelegatorTotalRewards: + type: object + properties: + rewards: + type: array + items: + type: object + properties: + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + reward: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + total: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + BaseReq: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + TendermintValidator: + type: object + properties: + address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + pub_key: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: "1000" + proposer_priority: + type: string + example: "1000" + TextProposal: + type: object + properties: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: + type: object + properties: + yes: + type: string + example: "0.0000000000" + abstain: + type: string + example: "0.0000000000" + no: + type: string + example: "0.0000000000" + no_with_veto: + type: string + example: "0.0000000000" + submit_time: + type: string + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + voting_start_time: + type: string + Proposer: + type: object + properties: + proposal_id: + type: string + proposer: + type: string + Deposit: + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + proposal_id: + type: string + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + TallyResult: + type: object + properties: + yes: + type: string + example: "0.0000000000" + abstain: + type: string + example: "0.0000000000" + no: + type: string + example: "0.0000000000" + no_with_veto: + type: string + example: "0.0000000000" + Vote: + type: object + properties: + voter: + type: string + proposal_id: + type: string + option: + type: string + Validator: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: "0" + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: "0" + unbonding_time: + type: string + example: 1970-01-01T00:00:00Z + commission: + type: object + properties: + rate: + type: string + example: "0" + max_rate: + type: string + example: "0" + max_change_rate: + type: string + example: "0" + update_time: + type: string + example: 1970-01-01T00:00:00Z + Delegation: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + UnbondingDelegationPair: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + entries: + type: array + items: + type: object + properties: + initial_balance: + type: string + balance: + type: string + creation_height: + type: string + min_time: + type: string + UnbondingEntries: + type: object + properties: + initial_balance: + type: string + balance: + type: string + creation_height: + type: string + min_time: + type: string + UnbondingDelegation: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + Redelegation: + type: object + properties: + delegator_address: + type: string + validator_src_address: + type: string + validator_dst_address: + type: string + entries: + type: array + items: + $ref: "#/components/schemas/Redelegation" + RedelegationEntry: + type: object + properties: + creation_height: + type: integer + completion_time: + type: integer + initial_balance: + type: string + balance: + type: string + shares_dst: + type: string + ValidatorDistInfo: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + self_bond_rewards: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + val_commission: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + PublicKey: + type: object + properties: + type: + type: string + value: + type: string + SigningInfo: + type: object + properties: + start_height: + type: string + index_offset: + type: string + jailed_until: + type: string + missed_blocks_counter: + type: string + ParamChange: + type: object + properties: + subspace: + type: string + example: staking + key: + type: string + example: MaxValidators + subkey: + type: string + example: "" + value: + type: object + Supply: + type: object + properties: + total: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" diff --git a/client/docs/static/swagger/index.html b/client/docs/static/swagger/index.html index 0c4855763..2d5a30395 100644 --- a/client/docs/static/swagger/index.html +++ b/client/docs/static/swagger/index.html @@ -2,14 +2,13 @@ - + Swagger UI - + @@ -33,28 +30,22 @@
- - + + + window.ui = ui; + }; + diff --git a/client/docs/static/swagger/swagger.yaml b/client/docs/static/swagger/swagger.yaml index b89e4d258..36712ef46 100644 --- a/client/docs/static/swagger/swagger.yaml +++ b/client/docs/static/swagger/swagger.yaml @@ -1,3132 +1,10234 @@ swagger: '2.0' info: - title: Cosmos SDK - Legacy REST and gRPC Gateway docs - description: A REST interface for state queries, legacy transactions - version: 1.0.0 + title: Secret Network - gRPC Gateway docs + description: A REST interface for queries and transactions + version: v1.3.1 paths: - /node_info: + /cosmos/auth/v1beta1/accounts: get: - description: Information about the connected node - summary: The properties of the connected node - tags: - - Gaia REST - produces: - - application/json + summary: Accounts returns all the existing accounts + description: 'Since: cosmos-sdk 0.43' + operationId: Accounts responses: '200': - description: Node status + description: A successful response. schema: type: object properties: - application_version: - properties: - build_tags: - type: string - client_name: - type: string - commit: - type: string - go: - type: string - name: - type: string - server_name: - type: string - version: - type: string - node_info: + accounts: + 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" + } + title: accounts are the existing accounts + pagination: + description: pagination defines the pagination in the response. + type: object properties: - id: - type: string - moniker: - type: string - example: validator-name - protocol_version: - properties: - p2p: - type: string - example: 7 - block: - type: string - example: 10 - app: - type: string - example: 0 - network: - type: string - example: gaia-2 - channels: - type: string - listen_addr: + next_key: type: string - example: 192.168.56.1:26656 - version: - description: Tendermint version + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: 0.15.0 - other: - description: more information on versions - type: object - properties: - tx_index: - type: string - example: 'on' - rpc_address: - type: string - example: tcp://0.0.0.0:26657 - '500': - description: Failed to query node status - /syncing: - get: - summary: Syncing state of node - tags: - - Tendermint RPC - description: Get if the node is currently syning with other nodes - produces: - - application/json - responses: - '200': - description: Node syncing status - schema: - type: object - properties: - syncing: - type: boolean - '500': - description: Server internal error - /blocks/latest: - get: - summary: Get the latest block - tags: - - Tendermint RPC - produces: - - application/json - responses: - '200': - description: The latest block + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryAccountsResponse is the response type for the Query/Accounts + RPC method. + + + Since: cosmos-sdk 0.43 + default: + description: An unexpected error response. schema: type: object properties: - block_meta: - type: object - properties: - header: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: - type: object - properties: - block: - type: string - example: 10 - app: - type: string - example: 0 - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - block: - type: object - properties: - header: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: - type: object - properties: - block: - type: string - example: 10 - app: - type: string - example: 0 - txs: - type: array - items: - type: string - evidence: - type: array - items: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: type: string - last_commit: - type: object - properties: - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - precommits: - type: array - items: - type: object - properties: - validator_address: - type: string - validator_index: - type: string - example: '0' - height: - type: string - example: '0' - round: - type: string - example: '0' - timestamp: + 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: 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 + /cosmos/auth/v1beta1/accounts/{address}: + get: + summary: Account returns account details based on address. + operationId: Account + responses: + '200': + description: A successful response. + schema: + type: object + properties: + account: + 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: >- + QueryAccountResponse is the response type for the Query/Account + 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" + } + parameters: + - name: address + description: address defines the address to query for. + in: path + required: true + type: string + tags: + - Query + /cosmos/auth/v1beta1/params: + get: + summary: Params queries all parameters. + operationId: ../../tmp-swagger-gen/cosmos/auth/v1beta1/query.swagger.jsonParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_memo_characters: + type: string + format: uint64 + tx_sig_limit: + type: string + format: uint64 + tx_size_cost_per_byte: + type: string + format: uint64 + sig_verify_cost_ed25519: + type: string + format: uint64 + sig_verify_cost_secp256k1: + type: string + format: uint64 + 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 + /cosmos/authz/v1beta1/grants: + get: + summary: Returns list of `Authorization`, granted to the grantee by the granter. + operationId: Grants + responses: + '200': + description: A successful response. + schema: + type: object + properties: + grants: + type: array + items: + type: object + properties: + authorization: + 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" + } + expiration: + type: string + format: date-time + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryGrantsResponse is the response type for the + Query/Authorizations 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" + } + parameters: + - name: granter + in: query + required: false + type: string + - name: grantee + in: query + required: false + type: string + - name: msg_type_url + description: >- + Optional, msg_type_url, when set, will query only grants matching + given msg type. + in: query + required: false + 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 + /cosmos/authz/v1beta1/grants/grantee/{grantee}: + get: + summary: GranteeGrants returns a list of `GrantAuthorization` by grantee. + description: 'Since: cosmos-sdk 0.45.2' + operationId: GranteeGrants + responses: + '200': + description: A successful response. + schema: + type: object + properties: + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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" + } + expiration: + type: string + format: date-time + description: 'Since: cosmos-sdk 0.45.2' + 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 to the grantee. + pagination: + description: pagination defines an pagination for the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryGranteeGrantsResponse is the response type for the + Query/GranteeGrants 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" + } + parameters: + - name: grantee + 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 + /cosmos/authz/v1beta1/grants/granter/{granter}: + get: + summary: GranterGrants returns list of `GrantAuthorization`, granted by granter. + description: 'Since: cosmos-sdk 0.45.2' + operationId: GranterGrants + responses: + '200': + description: A successful response. + schema: + type: object + properties: + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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" + } + expiration: + type: string + format: date-time + description: 'Since: cosmos-sdk 0.45.2' + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryGranterGrantsResponse is the response type for the + Query/GranterGrants 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" + } + parameters: + - name: granter + 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 + /cosmos/bank/v1beta1/balances/{address}: + get: + summary: AllBalances queries the balance of all coins for a single account. + operationId: AllBalances + responses: + '200': + description: A successful response. + schema: + type: object + properties: + balances: + 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: balances is the balances of all the coins. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryAllBalancesResponse is the response type for the + Query/AllBalances 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 + description: address is the address to query balances 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 + + 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 + /cosmos/bank/v1beta1/balances/{address}/by_denom: + get: + summary: Balance queries the balance of a single coin for a single account. + operationId: Balance + responses: + '200': + description: A successful response. + schema: + type: object + properties: + 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: >- + QueryBalanceResponse is the response type for the Query/Balance + 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 + description: address is the address to query balances for. + in: path + required: true + type: string + - name: denom + description: denom is the coin denom to query balances for. + in: query + required: false + type: string + tags: + - Query + /cosmos/bank/v1beta1/denoms_metadata: + get: + summary: >- + DenomsMetadata queries the client metadata for all registered coin + denominations. + operationId: DenomsMetadata + responses: + '200': + description: A successful response. + schema: + type: object + properties: + metadatas: + type: array + items: + 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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + description: >- + metadata provides the client information for all the + registered tokens. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryDenomsMetadataResponse is the response type for the + Query/DenomsMetadata 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: 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 + /cosmos/bank/v1beta1/denoms_metadata/{denom}: + get: + summary: DenomsMetadata queries the client metadata of a given coin denomination. + operationId: DenomMetadata + 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 = 1^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 + description: |- + Metadata represents a struct that describes + a basic token. + description: >- + QueryDenomMetadataResponse is the response type for the + Query/DenomMetadata 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: denom + description: denom is the coin denom to query the metadata for. + in: path + required: true + type: string + tags: + - Query + /cosmos/bank/v1beta1/params: + get: + summary: Params queries the parameters of x/bank module. + operationId: ../../tmp-swagger-gen/cosmos/bank/v1beta1/query.swagger.jsonParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + type: object + properties: + send_enabled: + type: array + items: + type: object + properties: + denom: + type: string + enabled: + type: boolean + description: >- + SendEnabled maps coin denom to a send_enabled status + (whether a denom is + + sendable). + default_send_enabled: + type: boolean + description: Params defines the parameters for the bank module. + description: >- + QueryParamsResponse defines the response type for querying x/bank + parameters. + 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 + /cosmos/bank/v1beta1/spendable_balances/{address}: + get: + summary: |- + SpendableBalances queries the spenable balance of all coins for a single + account. + operationId: SpendableBalances + responses: + '200': + description: A successful response. + schema: + type: object + properties: + balances: + 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: balances is the spendable balances of all the coins. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QuerySpendableBalancesResponse defines the gRPC response structure + for querying + + an account's spendable balances. + 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 address to query spendable balances 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 + + 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 + /cosmos/bank/v1beta1/supply: + get: + summary: TotalSupply queries the total supply of all coins. + operationId: TotalSupply + responses: + '200': + description: A successful response. + schema: + type: object + properties: + supply: + 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: supply is the supply of the coins + pagination: + description: |- + pagination defines the pagination in the response. + + Since: cosmos-sdk 0.43 + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryTotalSupplyResponse is the response type for the + Query/TotalSupply 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: 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 + /cosmos/bank/v1beta1/supply/{denom}: + get: + summary: SupplyOf queries the supply of a single coin. + operationId: SupplyOf + 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: >- + QuerySupplyOfResponse is the response type for the Query/SupplyOf + 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: denom + description: denom is the coin denom to query balances for. + in: path + required: true + type: string + tags: + - Query + /cosmos/base/tendermint/v1beta1/blocks/latest: + get: + summary: GetLatestBlock returns the latest block. + operationId: GetLatestBlock + responses: + '200': + description: A successful response. + schema: + type: object + properties: + 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, + + 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 Tendermint 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. + + 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 + Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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 - example: '2017-12-30T05:53:09.287+01:00' - type: - type: number - example: 2 - block_id: + 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. + description: >- + GetLatestBlockResponse is the response type for the + Query/GetLatestBlock 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: + - Service + /cosmos/base/tendermint/v1beta1/blocks/{height}: + get: + summary: GetBlockByHeight queries block for given height. + operationId: GetBlockByHeight + responses: + '200': + description: A successful response. + schema: + type: object + properties: + 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, + + 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 Tendermint 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. + + 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: - hash: + 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 + Tendermint 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 Tendermint 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 Tendermint Validators + voting_power: + type: string + format: int64 + proposer_priority: + type: string + format: int64 + total_voting_power: + type: string + format: int64 + common_height: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 + 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 Tendermint 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 - example: >- - 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== - '500': - description: Server internal error - /blocks/{height}: + 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. + description: >- + GetBlockByHeightResponse is the response type for the + Query/GetBlockByHeight 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" + } + parameters: + - name: height + in: path + required: true + type: string + format: int64 + tags: + - Service + /cosmos/base/tendermint/v1beta1/node_info: + get: + summary: GetNodeInfo queries the current node info. + operationId: GetNodeInfo + responses: + '200': + description: A successful response. + schema: + 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 request type for the Query/GetNodeInfo + 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: + - Service + /cosmos/base/tendermint/v1beta1/syncing: get: - summary: Get a block at a certain height + summary: GetSyncing queries node syncing. + operationId: GetSyncing + responses: + '200': + description: A successful response. + schema: + type: object + properties: + syncing: + type: boolean + description: >- + GetSyncingResponse is the response type for the Query/GetSyncing + 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: + - Service + /cosmos/base/tendermint/v1beta1/validatorsets/latest: + get: + summary: GetLatestValidatorSet queries latest validator-set. + operationId: GetLatestValidatorSet + responses: + '200': + description: A successful response. + schema: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + 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: 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: - - Tendermint RPC - produces: - - application/json + - Service + /cosmos/base/tendermint/v1beta1/validatorsets/{height}: + get: + summary: GetValidatorSetByHeight queries validator-set at a given height. + operationId: GetValidatorSetByHeight + responses: + '200': + description: A successful response. + schema: + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + GetValidatorSetByHeightResponse is the response type for the + Query/GetValidatorSetByHeight 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" + } parameters: - - in: path - name: height - description: Block height + - name: height + in: path required: true - type: number - x-example: 1 + type: string + 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: + - Service + /cosmos/distribution/v1beta1/community_pool: + get: + summary: CommunityPool queries the community pool coins. + operationId: CommunityPool responses: '200': - description: The block at a specific height + description: A successful response. schema: type: object properties: - block_meta: - type: object - properties: - header: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: - type: object - properties: - block: - type: string - example: 10 - app: - type: string - example: 0 - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - block: - type: object - properties: - header: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: - type: object - properties: - block: - type: string - example: 10 - app: - type: string - example: 0 - txs: - type: array - items: + pool: + type: array + items: + type: object + properties: + denom: type: string - evidence: - type: array - items: + amount: type: string - last_commit: - type: object - properties: - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - precommits: - type: array - items: - type: object - properties: - validator_address: - type: string - validator_index: - type: string - example: '0' - height: - type: string - example: '0' - round: - type: string - example: '0' - timestamp: - type: string - example: '2017-12-30T05:53:09.287+01:00' - type: - type: number - example: 2 - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - signature: - type: string - example: >- - 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== - '400': - description: Invalid height - '404': - description: Request block height doesn't - '500': - description: Server internal error - /validatorsets/latest: - get: - summary: Get the latest validator set + 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 + + 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: - - Tendermint RPC - produces: - - application/json + - Query + /cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards: + get: + summary: |- + DelegationTotalRewards queries the total rewards accrued by a each + validator. + operationId: DelegationTotalRewards responses: '200': - description: The validator set at the latest block height + description: A successful response. schema: type: object properties: - block_height: - type: string - validators: + rewards: type: array items: type: object properties: - address: + validator_address: type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - pub_key: + 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. + + + 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 - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - voting_power: + amount: type: string - example: '1000' - proposer_priority: + 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. + 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 - example: '1000' - '500': - description: Server internal error - /validatorsets/{height}: - get: - summary: Get a validator set a certain height - tags: - - Tendermint RPC - produces: - - application/json + value: + type: string + format: byte parameters: - - in: path - name: height - description: Block height + - name: delegator_address + description: delegator_address defines the delegator address to query for. + in: path required: true - type: number - x-example: 1 + type: string + tags: + - Query + /cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address}: + get: + summary: DelegationRewards queries the total rewards accrued by a delegation. + operationId: DelegationRewards responses: '200': - description: The validator set at a specific block height + description: A successful response. schema: type: object properties: - block_height: - type: string - validators: + rewards: type: array items: type: object properties: - address: + denom: type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - pub_key: + amount: type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - voting_power: + 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. + 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 - example: '1000' - proposer_priority: + value: type: string - example: '1000' - '400': - description: Invalid height - '404': - description: Block at height not available - '500': - description: Server internal error - /txs/{hash}: - get: - deprecated: true - summary: Get a Tx by hash - tags: - - Transactions - description: Retrieve a transaction using its hash. - produces: - - application/json + format: byte parameters: - - in: path - name: hash - description: Tx hash + - name: delegator_address + description: delegator_address defines the delegator address to query for. + in: path required: true type: string - x-example: BCBE20E8D46758B96AE5883B792858296AC06E51435490FBDCAE25A72B3CC76B + - name: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + type: string + tags: + - Query + /cosmos/distribution/v1beta1/delegators/{delegator_address}/validators: + get: + summary: DelegatorValidators queries the validators of a delegator. + operationId: >- + ../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonDelegatorValidators responses: '200': - description: Tx with the provided hash + description: A successful response. schema: type: object properties: - hash: + 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. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: type: string - example: >- - D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 - height: - type: number - example: 368 - tx: - type: object - properties: - msg: - type: array - items: + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - result: - type: object - properties: - log: - type: string - gas_wanted: - type: string - example: '200000' - gas_used: - type: string - example: '26354' - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - '500': - description: Internal Server Error - /txs: - get: - deprecated: true - tags: - - Transactions - summary: Search transactions - description: Search transactions by events. - produces: - - application/json + value: + type: string + format: byte parameters: - - in: query - name: message.action - type: string - description: >- - transaction events such as 'message.action=send' which results in - the following endpoint: 'GET /txs?message.action=send'. note that - each module documents its own events. look for xx_events.md in the - corresponding cosmos-sdk/docs/spec directory - x-example: send - - in: query - name: message.sender + - name: delegator_address + description: delegator_address defines the delegator address to query for. + in: path + required: true type: string - description: >- - transaction tags with sender: 'GET - /txs?message.action=send&message.sender=cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv' - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - - in: query - name: page - description: Page number - type: integer - x-example: 1 - - in: query - name: limit - description: Maximum number of items per page - type: integer - x-example: 1 - - in: query - name: tx.minheight - type: integer - description: transactions on blocks with height greater or equal this value - x-example: 25 - - in: query - name: tx.maxheight - type: integer - description: transactions on blocks with height less than or equal this value - x-example: 800000 + tags: + - Query + /cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address: + get: + summary: DelegatorWithdrawAddress queries withdraw address of a delegator. + operationId: DelegatorWithdrawAddress responses: '200': - description: All txs matching the provided events + description: A successful response. schema: type: object properties: - total_count: - type: number - example: 1 - count: - type: number - example: 1 - page_number: - type: number - example: 1 - page_total: - type: number - example: 1 - limit: - type: number - example: 30 - txs: + 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. + 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: - hash: + type_url: type: string - example: >- - D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 - height: - type: number - example: 368 - tx: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - result: - type: object - properties: - log: - type: string - gas_wanted: - type: string - example: '200000' - gas_used: - type: string - example: '26354' - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - '400': - description: Invalid search events - '500': - description: Internal Server Error - post: - tags: - - Transactions - summary: Broadcast a signed tx - description: Broadcast a signed tx to a full node - consumes: - - application/json - produces: - - application/json + value: + type: string + format: byte parameters: - - in: body - name: txBroadcast - description: >- - The tx must be a signed StdTx. The supported broadcast modes include - `"block"`(return after tx commit), `"sync"`(return afer CheckTx) and - `"async"`(return right away). + - name: delegator_address + description: delegator_address defines the delegator address to query for. + in: path required: true + type: string + tags: + - Query + /cosmos/distribution/v1beta1/foundation_tax: + get: + summary: DelegatorWithdrawAddress queries withdraw address of a delegator. + operationId: FoundationTax + responses: + '200': + description: A successful response. schema: type: object properties: - tx: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - required: true - mode: - required: true + tax: type: string - example: block - sequences: - required: false + description: withdraw_address defines the delegator address to query for. + foundation_address: + type: string + description: |- + QueryDelegatorWithdrawAddressResponse is the response type for the + Query/DelegatorWithdrawAddress 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: string - example: '1' - fee_granter: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - required: false + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + tags: + - Query + /cosmos/distribution/v1beta1/params: + get: + summary: Params queries params of the distribution module. + operationId: >- + ../../tmp-swagger-gen/cosmos/distribution/v1beta1/query.swagger.jsonParams responses: '200': - description: Tx broadcasting result + description: A successful response. schema: type: object properties: - check_tx: + params: + description: params defines the parameters of the module. type: object properties: - code: - type: integer - data: + community_tax: type: string - gas_used: - type: integer - gas_wanted: - type: integer - info: + base_proposer_reward: type: string - log: + bonus_proposer_reward: type: string - tags: + withdraw_addr_enabled: + type: boolean + secret_foundation_tax: + type: string + secret_foundation_address: + type: string + 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 + /cosmos/distribution/v1beta1/validators/{validator_address}/commission: + get: + summary: ValidatorCommission queries accumulated commission for a validator. + operationId: ValidatorCommission + responses: + '200': + description: A successful response. + schema: + type: object + properties: + commission: + description: commission defines the commision the validator received. + type: object + properties: + commission: type: array items: type: object properties: - key: + denom: type: string - value: + amount: type: string - example: - code: 0 - data: data - log: log - gas_used: 5000 - gas_wanted: 10000 - info: info - tags: - - '' - - '' - deliver_tx: + 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 + 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: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + type: string + tags: + - Query + /cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards: + get: + summary: ValidatorOutstandingRewards queries rewards of a validator address. + operationId: ValidatorOutstandingRewards + responses: + '200': + description: A successful response. + schema: + type: object + properties: + rewards: type: object properties: - code: - type: integer - data: - type: string - gas_used: - type: integer - gas_wanted: - type: integer - info: - type: string - log: - type: string - tags: + rewards: type: array items: type: object properties: - key: + denom: type: string - value: + amount: type: string - example: - code: 5 - data: data - log: log - gas_used: 5000 - gas_wanted: 10000 - info: info - tags: - - '' - - '' - hash: + 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. + description: >- + QueryValidatorOutstandingRewardsResponse is the response type for + the + + Query/ValidatorOutstandingRewards RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - height: + code: type: integer - '500': - description: Internal Server Error - /txs/encode: - post: - deprecated: true - tags: - - Transactions - summary: Encode a transaction to the Amino wire format - description: >- - Encode a transaction (signed or not) from JSON to base64-encoded Amino - serialized bytes - consumes: - - application/json - produces: - - application/json + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte parameters: - - in: body - name: tx - description: The tx to encode + - name: validator_address + description: validator_address defines the validator address to query for. + in: path required: true + type: string + tags: + - Query + /cosmos/distribution/v1beta1/validators/{validator_address}/slashes: + get: + summary: ValidatorSlashes queries slash events of a validator. + operationId: ValidatorSlashes + responses: + '200': + description: A successful response. schema: type: object properties: - tx: + 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: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: + next_key: type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - responses: - '200': - description: The tx was successfully decoded and re-encoded + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + default: + description: An unexpected error response. schema: type: object properties: - tx: + error: type: string - example: The base64-encoded Amino-serialized bytes for the tx - '400': - description: The tx was malformated - '500': - description: Server internal error - /txs/decode: - post: - deprecated: true + 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: validator_address + description: validator_address defines the validator address to query for. + in: path + required: true + type: string + - name: starting_height + description: >- + starting_height defines the optional starting height to query the + slashes. + in: query + required: false + type: string + format: uint64 + - name: ending_height + description: >- + starting_height defines the optional ending height to query the + slashes. + 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 + - 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: - - Transactions - summary: Decode a transaction from the Amino wire format - description: >- - Decode a transaction (signed or not) from base64-encoded Amino - serialized bytes to JSON - consumes: - - application/json - produces: - - application/json - parameters: - - in: body - name: tx - description: The tx to decode - required: true - schema: - type: object - properties: - tx: - type: string - example: >- - SvBiXe4KPqijYZoKFFHEzJ8c2HPAfv2EFUcIhx0yPagwEhTy0vPA+GGhCEslKXa4Af0uB+mfShoMCgVzdGFrZRIDMTAwEgQQwJoM + - Query + /cosmos/evidence/v1beta1/evidence: + get: + summary: AllEvidence queries all evidence. + operationId: AllEvidence responses: '200': - description: The tx was successfully decoded + description: A successful response. schema: type: object properties: - msg: + evidence: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + 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: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: The tx was malformated - '500': - description: Server internal error - /bank/balances/{address}: - get: - deprecated: true - summary: Get the account balances - tags: - - Bank - produces: - - application/json + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryAllEvidenceResponse is the response type for the + Query/AllEvidence 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" + } parameters: - - in: path - name: address - description: Account address in bech32 format - 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 - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + 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 + /cosmos/evidence/v1beta1/evidence/{evidence_hash}: + get: + summary: Evidence queries evidence based on evidence hash. + operationId: Evidence responses: '200': - description: Account balances - schema: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '500': - description: Server internal error - /bank/accounts/{address}/transfers: - post: - deprecated: true - summary: Send coins from one account to another - tags: - - Bank - consumes: - - application/json - produces: - - application/json - parameters: - - in: path - name: address - description: Account address in bech32 format - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - - in: body - name: account - description: The sender and tx information - required: true + description: A successful response. schema: type: object properties: - base_req: + evidence: type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: + type_url: type: string - example: '200000' - gas_adjustment: + 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 - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false + format: byte description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - responses: - '202': - description: Tx was succesfully generated + 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. + default: + description: An unexpected error response. schema: type: object properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: + error: type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - '400': - description: Invalid request - '500': - description: Server internal error - /bank/total: - get: - deprecated: true - summary: Total supply of coins in the chain - tags: - - Bank - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - total: + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - '500': - description: Internal Server Error - /bank/total/{denomination}: - parameters: - - in: path - name: denomination - description: Coin denomination - required: true - type: string - x-example: uatom - get: - deprecated: true - summary: Total supply of a single coin denomination - tags: - - Bank - produces: - - application/json - responses: - '200': - description: OK - schema: - type: string - '400': - description: Invalid coin denomination - '500': - description: Internal Server Error - /auth/accounts/{address}: - get: - deprecated: true - summary: Get the account information on blockchain - tags: - - Auth - produces: - - application/json + 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: - - in: path - name: address - description: Account address + - name: evidence_hash + description: evidence_hash defines the hash of the requested evidence. + in: path required: true type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + format: byte + tags: + - Query + /cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}: + get: + summary: Allowance returns fee granted to the grantee by the granter. + operationId: Allowance responses: '200': - description: Account information on the blockchain + description: A successful response. schema: type: object properties: - type: - type: string - value: + allowance: + description: allowance is a allowance granted for grantee by granter. type: object properties: - account_number: + granter: type: string - address: + description: >- + granter is the address of the user granting an allowance + of their funds. + grantee: type: string - coins: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - public_key: + 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 and filtered fee allowance. type: object properties: - type: + 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 - sequence: - type: string - '500': - description: Server internel error - /staking/delegators/{delegatorAddr}/delegations: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - get: - deprecated: true - summary: Get all delegations from a delegator - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - shares: - type: string - balance: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '400': - description: Invalid delegator address - '500': - description: Internal Server Error - post: - summary: Submit delegation - parameters: - - in: body - name: delegation - description: Delegate an amount of liquid coins to a validator + 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. + default: + description: An unexpected error response. schema: type: object properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - delegator_address: + error: type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - validator_address: + code: + type: integer + format: int32 + message: type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - amount: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - tags: - - Staking - consumes: - - application/json - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - msg: + details: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - '400': - description: Invalid delegator address or delegation request body - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /staking/delegators/{delegatorAddr}/delegations/{validatorAddr}: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Query the current delegation between a delegator and a validator + 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: granter + description: >- + granter is the address of the user granting an allowance of their + funds. + in: path + required: true + type: string + - name: grantee + description: >- + grantee is the address of the user being granted an allowance of + another user's funds. + in: path + required: true + type: string tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - shares: - type: string - balance: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '400': - description: Invalid delegator address or validator address - '500': - description: Internal Server Error - /staking/delegators/{delegatorAddr}/unbonding_delegations: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - Query + /cosmos/feegrant/v1beta1/allowances/{grantee}: get: - deprecated: true - summary: Get all unbonding delegations from a delegator - tags: - - Staking - produces: - - application/json + summary: Allowances returns all the grants for address. + operationId: Allowances responses: '200': - description: OK - schema: - type: array - items: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - initial_balance: - type: string - balance: - type: string - creation_height: - type: integer - min_time: - type: integer - '400': - description: Invalid delegator address - '500': - description: Internal Server Error - post: - summary: Submit an unbonding delegation - parameters: - - in: body - name: delegation - description: Unbond an amount of bonded shares from a validator + description: A successful response. schema: type: object properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: + 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 and filtered fee + allowance. type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - delegator_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - validator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - amount: + 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: - denom: + next_key: type: string - example: stake - amount: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '50' + 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. + 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: grantee + 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: - - Staking - consumes: - - application/json - produces: - - application/json + - Query + /cosmos/gov/v1beta1/params/{params_type}: + get: + summary: Params queries all parameters of the gov module. + operationId: ../../tmp-swagger-gen/cosmos/gov/v1beta1/query.swagger.jsonParams responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: - type: array - items: - type: string - fee: + voting_params: + description: voting_params defines the parameters related to voting. type: object properties: - gas: + voting_period: type: string - amount: + 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 - example: stake amount: type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: + 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 - example: '0' - '400': - description: Invalid delegator address or unbonding delegation request body - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /staking/delegators/{delegatorAddr}/unbonding_delegations/{validatorAddr}: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Query all unbonding delegations between a delegator and a validator - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - entries: - type: array - items: - type: object - properties: - initial_balance: - type: string - balance: - type: string - creation_height: - type: string - min_time: - type: string - '400': - description: Invalid delegator address or validator address - '500': - description: Internal Server Error - /staking/redelegations: - parameters: - - in: query - name: delegator - description: Bech32 AccAddress of Delegator - required: false - type: string - - in: query - name: validator_from - description: Bech32 ValAddress of SrcValidator - required: false - type: string - - in: query - name: validator_to - description: Bech32 ValAddress of DstValidator - required: false - type: string - get: - deprecated: true - summary: Get all redelegations (filter by query params) - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - $ref: '#/definitions/Redelegation' - '500': - description: Internal Server Error - /staking/delegators/{delegatorAddr}/redelegations: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - post: - deprecated: true - summary: Submit a redelegation - parameters: - - in: body - name: delegation - description: The sender and tx information - schema: - type: object - properties: - base_req: + 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: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: + quorum: type: string - example: '1' - gas: + format: byte + description: >- + Minimum percentage of total stake needed to vote for a + result to be + considered valid. + threshold: type: string - example: '200000' - gas_adjustment: + format: byte + description: >- + Minimum proportion of Yes votes for proposal to pass. + Default value: 0.5. + veto_threshold: type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false + format: byte description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - delegator_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - validator_src_addressess: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - validator_dst_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - shares: - type: string - example: '100' - tags: - - Staking - consumes: - - application/json - produces: - - application/json - responses: - '200': - description: Tx was succesfully generated + 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. + default: + description: An unexpected error response. schema: type: object properties: - msg: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - '400': - description: Invalid delegator address or redelegation request body - '500': - description: Internal Server Error - /staking/delegators/{delegatorAddr}/validators: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - get: - deprecated: true - summary: Query all validators that a delegator is bonded to - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - operator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - consensus_pubkey: - type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - jailed: - type: boolean - status: - type: integer - tokens: - type: string - delegator_shares: - type: string - description: - type: object - properties: - moniker: - type: string - identity: - type: string - website: - type: string - security_contact: - type: string - details: - type: string - bond_height: - type: string - example: '0' - bond_intra_tx_counter: - type: integer - example: 0 - unbonding_height: - type: string - example: '0' - unbonding_time: - type: string - example: '1970-01-01T00:00:00Z' - commission: type: object properties: - rate: - type: string - example: '0' - max_rate: - type: string - example: '0' - max_change_rate: - type: string - example: '0' - update_time: + type_url: type: string - example: '1970-01-01T00:00:00Z' - '400': - description: Invalid delegator address - '500': - description: Internal Server Error - /staking/delegators/{delegatorAddr}/validators/{validatorAddr}: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - - in: path - name: validatorAddr - description: Bech32 ValAddress of Delegator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Query a validator that a delegator is bonded to - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - operator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - consensus_pubkey: - type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - jailed: - type: boolean - status: - type: integer - tokens: - type: string - delegator_shares: - type: string - description: - type: object - properties: - moniker: - type: string - identity: - type: string - website: - type: string - security_contact: - type: string - details: - type: string - bond_height: - type: string - example: '0' - bond_intra_tx_counter: - type: integer - example: 0 - unbonding_height: - type: string - example: '0' - unbonding_time: - type: string - example: '1970-01-01T00:00:00Z' - commission: - type: object - properties: - rate: - type: string - example: '0' - max_rate: - type: string - example: '0' - max_change_rate: - type: string - example: '0' - update_time: - type: string - example: '1970-01-01T00:00:00Z' - '400': - description: Invalid delegator address or validator address - '500': - description: Internal Server Error - /staking/validators: - get: - deprecated: true - summary: >- - Get all validator candidates. By default it returns only the bonded - validators. + 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: - - in: query - name: status - type: string + - name: params_type description: >- - The validator bond status. Must be either 'bonded', 'unbonded', or - 'unbonding'. - x-example: bonded - - in: query - name: page - description: The page number. - type: integer - x-example: 1 - - in: query - name: limit - description: The maximum number of items per page. - type: integer - x-example: 1 + params_type defines which parameters to query for, can be one of + "voting", + + "tallying" or "deposit". + in: path + required: true + type: string tags: - - Staking - produces: - - application/json + - Query + /cosmos/gov/v1beta1/proposals: + get: + summary: Proposals queries all proposals based on given status. + operationId: Proposals responses: '200': - description: OK + description: A successful response. schema: - type: array - items: - type: object - properties: - operator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - consensus_pubkey: - type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - jailed: - type: boolean - status: - type: integer - tokens: - type: string - delegator_shares: - type: string - description: - type: object - properties: - moniker: - type: string - identity: - type: string - website: - type: string - security_contact: - type: string - details: - type: string - bond_height: - type: string - example: '0' - bond_intra_tx_counter: - type: integer - example: 0 - unbonding_height: - type: string - example: '0' - unbonding_time: - type: string - example: '1970-01-01T00:00:00Z' - commission: + type: object + properties: + proposals: + type: array + items: type: object properties: - rate: + proposal_id: type: string - example: '0' - max_rate: + 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 - example: '0' - max_change_rate: + 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 propopsal 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: + 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. + submit_time: type: string - example: '0' - update_time: + format: date-time + deposit_end_time: type: string - example: '1970-01-01T00:00:00Z' - '500': - description: Internal Server Error - /staking/validators/{validatorAddr}: - parameters: - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Query the information from a single validator - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - operator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - consensus_pubkey: - type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - jailed: - type: boolean - status: - type: integer - tokens: - type: string - delegator_shares: - type: string - description: + 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 + description: >- + Proposal defines the core field members of a governance + proposal. + pagination: + description: pagination defines the pagination in the response. type: object properties: - moniker: - type: string - identity: - type: string - website: - type: string - security_contact: + next_key: type: string - details: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - bond_height: + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryProposalsResponse is the response type for the + Query/Proposals RPC + + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: type: string - example: '0' - bond_intra_tx_counter: + code: type: integer - example: 0 - unbonding_height: - type: string - example: '0' - unbonding_time: + format: int32 + message: type: string - example: '1970-01-01T00:00:00Z' - commission: - type: object - properties: - rate: - type: string - example: '0' - max_rate: - type: string - example: '0' - max_change_rate: - type: string - example: '0' - update_time: - type: string - example: '1970-01-01T00:00:00Z' - '400': - description: Invalid validator address - '500': - description: Internal Server Error - /staking/validators/{validatorAddr}/delegations: - parameters: - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Get all delegations from a validator - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - shares: - type: string - balance: + details: + type: array + items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - '400': - description: Invalid validator address - '500': - description: Internal Server Error - /staking/validators/{validatorAddr}/unbonding_delegations: - parameters: - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Get all unbonding delegations from a validator - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - initial_balance: - type: string - balance: - type: string - creation_height: - type: integer - min_time: - type: integer - '400': - description: Invalid validator address - '500': - description: Internal Server Error - /staking/pool: - get: - deprecated: true - summary: Get the current state of the staking pool - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - loose_tokens: - type: string - bonded_tokens: - type: string - inflation_last_time: - type: string - inflation: - type: string - date_last_commission_reset: - type: string - prev_bonded_shares: - type: string - '500': - description: Internal Server Error - /staking/parameters: - get: - deprecated: true - summary: Get the current staking parameter values - tags: - - Staking - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - inflation_rate_change: - type: string - inflation_max: - type: string - inflation_min: - type: string - goal_bonded: - type: string - unbonding_time: - type: string - max_validators: - type: integer - bond_denom: - type: string - '500': - description: Internal Server Error - /slashing/signing_infos: - get: - deprecated: true - summary: Get sign info of given all validators - description: Get sign info of all validators - produces: - - application/json - tags: - - Slashing + 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: - - in: query - name: page - description: Page number - type: integer - required: true - x-example: 1 - - in: query - name: limit - description: Maximum number of items per page - type: integer - required: true - x-example: 5 - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - start_height: - type: string - index_offset: - type: string - jailed_until: - type: string - missed_blocks_counter: - type: string - '400': - description: Invalid validator public key for one of the validators - '500': - description: Internal Server Error - /slashing/validators/{validatorAddr}/unjail: - post: - deprecated: true - summary: Unjail a jailed validator - description: Send transaction to unjail a jailed validator - consumes: - - application/json - produces: - - application/json + - name: proposal_status + description: |- + proposal_status defines the status of the proposals. + + - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal 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. + in: query + required: false + 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 + - name: voter + description: voter defines the voter address for the proposals. + in: query + required: false + type: string + - name: depositor + description: depositor defines the deposit addresses from the proposals. + in: query + required: false + 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: - - Slashing - parameters: - - type: string - description: Bech32 validator address - name: validatorAddr - required: true - in: path - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - - description: '' - name: UnjailBody - in: body - required: true + - Query + /cosmos/gov/v1beta1/proposals/{proposal_id}: + get: + summary: Proposal queries proposal details based on ProposalID. + operationId: Proposal + responses: + '200': + description: A successful response. schema: type: object properties: - base_req: + proposal: type: object properties: - msg: - type: array - items: - type: string - fee: + proposal_id: + type: string + format: uint64 + content: type: object properties: - gas: + type_url: type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: + 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 - signature: + 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 propopsal 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: type: object properties: - signature: + 'yes': type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + abstain: type: string - example: '0' - sequence: + 'no': type: string - example: '0' - responses: - '200': - description: Tx was succesfully generated - schema: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: + no_with_veto: + type: string + description: >- + TallyResult defines a standard tally for a governance + proposal. + submit_time: type: string - amount: + format: date-time + deposit_end_time: + type: string + format: date-time + total_deposit: type: array items: type: object properties: denom: type: string - example: stake amount: type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + 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 - example: '0' - sequence: + format: date-time + voting_end_time: type: string - example: '0' - '400': - description: Invalid validator address or base_req - '500': - description: Internal Server Error - /slashing/parameters: - get: - deprecated: true - summary: Get the current slashing parameters + 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. + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + type: string + format: uint64 tags: - - Slashing - produces: - - application/json + - Query + /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits: + get: + summary: Deposits queries all deposits of a single proposal. + operationId: Deposits responses: '200': - description: OK - schema: - type: object - properties: - max_evidence_age: - type: string - signed_blocks_window: - type: string - min_signed_per_window: - type: string - double_sign_unbond_duration: - type: string - downtime_unbond_duration: - type: string - slash_fraction_double_sign: - type: string - slash_fraction_downtime: - type: string - '500': - description: Internal Server Error - /gov/proposals: - post: - deprecated: true - summary: Submit a proposal - description: Send transaction to submit a proposal - consumes: - - application/json - produces: - - application/json - tags: - - Governance - parameters: - - description: >- - valid value of `"proposal_type"` can be `"text"`, - `"parameter_change"`, `"software_upgrade"` - name: post_proposal_body - in: body - required: true + description: A successful response. schema: type: object properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - title: - type: string - description: - type: string - proposal_type: - type: string - example: text - proposer: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - initial_deposit: + deposits: type: array items: type: object properties: - denom: + proposal_id: type: string - example: stake - amount: + format: uint64 + depositor: type: string - example: '50' - responses: - '200': - description: Tx was succesfully generated - schema: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + 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. + pagination: + description: pagination defines the pagination in the response. type: object properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Invalid proposal body - '500': - description: Internal Server Error - get: - deprecated: true - summary: Query proposals - description: Query proposals information with parameters - produces: - - application/json - tags: - - Governance - parameters: - - in: query - name: voter - description: voter address - required: false - type: string - - in: query - name: depositor - description: depositor address - required: false - type: string - - in: query - name: status - description: >- - proposal status, valid values can be `"deposit_period"`, - `"voting_period"`, `"passed"`, `"rejected"` - required: false - type: string - responses: - '200': - description: OK + 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. + default: + description: An unexpected error response. schema: - type: array - items: - type: object - properties: - proposal_id: - type: integer - title: - type: string - description: - type: string - proposal_type: - type: string - proposal_status: - type: string - final_tally_result: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: type: object properties: - 'yes': - type: string - example: '0.0000000000' - abstain: - type: string - example: '0.0000000000' - 'no': + type_url: type: string - example: '0.0000000000' - no_with_veto: + 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 - example: '0.0000000000' - submit_time: - type: string - total_deposit: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - voting_start_time: - type: string - '400': - description: Invalid query parameters - '500': - description: Internal Server Error - /gov/proposals/param_change: - post: - deprecated: true - summary: Generate a parameter change proposal transaction - description: Generate a parameter change proposal transaction - consumes: - - application/json - produces: - - application/json - tags: - - Governance + 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: - - description: >- - The parameter change proposal body that contains all parameter - changes - name: post_proposal_body - in: body + - name: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path required: true - schema: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - title: - type: string - x-example: Param Change - description: - type: string - x-example: Update max validators - proposer: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - deposit: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - changes: - type: array - items: - type: object - properties: - subspace: - type: string - example: staking - key: - type: string - example: MaxValidators - subkey: - type: string - example: '' - value: - type: object + 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 + - 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 + /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits/{depositor}: + get: + summary: >- + Deposit queries single deposit information based proposalID, + depositAddr. + operationId: Deposit responses: '200': - description: The transaction was succesfully generated + description: A successful response. schema: type: object properties: - msg: - type: array - items: - type: string - fee: + deposit: type: object properties: - gas: + proposal_id: + type: string + format: uint64 + depositor: type: string amount: type: array @@ -3135,2106 +10237,3643 @@ paths: properties: denom: type: string - example: stake amount: type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - '400': - description: Invalid proposal body - '500': - description: Internal Server Error - /gov/proposals/{proposalId}: - get: - deprecated: true - summary: Query a proposal - description: Query a proposal by id - produces: - - application/json - tags: - - Governance - parameters: - - type: string - name: proposalId - required: true - in: path - x-example: '2' - responses: - '200': - description: OK + 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. + default: + description: An unexpected error response. schema: type: object properties: - proposal_id: - type: integer - title: - type: string - description: - type: string - proposal_type: - type: string - proposal_status: + error: type: string - final_tally_result: - type: object - properties: - 'yes': - type: string - example: '0.0000000000' - abstain: - type: string - example: '0.0000000000' - 'no': - type: string - example: '0.0000000000' - no_with_veto: - type: string - example: '0.0000000000' - submit_time: + code: + type: integer + format: int32 + message: type: string - total_deposit: + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - voting_start_time: - type: string - '400': - description: Invalid proposal id - '500': - description: Internal Server Error - /gov/proposals/{proposalId}/proposer: - get: - deprecated: true - summary: Query proposer - description: Query for the proposer for a proposal - produces: - - application/json - tags: - - Governance - parameters: - - type: string - name: proposalId - required: true - in: path - x-example: '2' - responses: - '200': - description: OK - schema: - type: object - properties: - proposal_id: - type: string - proposer: - type: string - '400': - description: Invalid proposal ID - '500': - description: Internal Server Error - /gov/proposals/{proposalId}/deposits: - get: - deprecated: true - summary: Query deposits - description: Query deposits by proposalId - produces: - - application/json - tags: - - Governance - parameters: - - type: string - name: proposalId - required: true - in: path - x-example: '2' - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - proposal_id: - type: string - depositor: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - '400': - description: Invalid proposal id - '500': - description: Internal Server Error - post: - deprecated: true - summary: Deposit tokens to a proposal - description: Send transaction to deposit tokens to a proposal - consumes: - - application/json - produces: - - application/json - tags: - - Governance + 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: - - type: string - description: proposal id - name: proposalId + - name: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path required: true + type: string + format: uint64 + - name: depositor + description: depositor defines the deposit addresses from the proposals. in: path - x-example: '2' - - description: '' - name: post_deposit_body - in: body required: true + type: string + tags: + - Query + /cosmos/gov/v1beta1/proposals/{proposal_id}/tally: + get: + summary: TallyResult queries the tally of a proposal vote. + operationId: TallyResult + responses: + '200': + description: A successful response. schema: type: object properties: - base_req: + tally: type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: + 'yes': type: string - example: '0' - sequence: + abstain: type: string - example: '1' - gas: + 'no': type: string - example: '200000' - gas_adjustment: + no_with_veto: type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - depositor: + description: >- + TallyResult defines a standard tally for a governance + proposal. + description: >- + QueryTallyResultResponse is the response type for the Query/Tally + RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - amount: + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' + 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: proposal_id + description: proposal_id defines the unique id of the proposal. + in: path + required: true + type: string + format: uint64 + tags: + - Query + /cosmos/gov/v1beta1/proposals/{proposal_id}/votes: + get: + summary: Votes queries votes of a given proposal. + operationId: Votes responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: + votes: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + 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: >- + 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 properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Invalid proposal id or deposit body - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /gov/proposals/{proposalId}/deposits/{depositor}: - get: - deprecated: true - summary: Query deposit - description: Query deposit by proposalId and depositor address - produces: - - application/json - tags: - - Governance + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryVotesResponse is the response type for the Query/Votes 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" + } parameters: - - type: string - description: proposal id - name: proposalId - required: true + - name: proposal_id + description: proposal_id defines the unique id of the proposal. in: path - x-example: '2' - - type: string - description: Bech32 depositor address - name: depositor required: true - in: path - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - responses: - '200': - description: OK - schema: - type: object - properties: - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - proposal_id: - type: string - depositor: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - '400': - description: Invalid proposal id or depositor address - '404': - description: Found no deposit - '500': - description: Internal Server Error - /gov/proposals/{proposalId}/votes: - get: - deprecated: true - summary: Query voters - description: Query voters information by proposalId - produces: - - application/json + 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 + - 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: - - Governance - parameters: - - type: string - description: proposal id - name: proposalId - required: true - in: path - x-example: '2' + - Query + /cosmos/gov/v1beta1/proposals/{proposal_id}/votes/{voter}: + get: + summary: Vote queries voted information based on proposalID, voterAddr. + operationId: Vote responses: '200': - description: OK - schema: - type: array - items: - type: object - properties: - voter: - type: string - proposal_id: - type: string - option: - type: string - '400': - description: Invalid proposal id - '500': - description: Internal Server Error - post: - deprecated: true - summary: Vote a proposal - description: Send transaction to vote a proposal - consumes: - - application/json - produces: - - application/json - tags: - - Governance - parameters: - - type: string - description: proposal id - name: proposalId - required: true - in: path - x-example: '2' - - description: >- - valid value of `"option"` field can be `"yes"`, `"no"`, - `"no_with_veto"` and `"abstain"` - name: post_vote_body - in: body - required: true + description: A successful response. schema: type: object properties: - base_req: + vote: type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: + proposal_id: type: string - example: '1' - gas: + format: uint64 + voter: type: string - example: '200000' - gas_adjustment: + 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 - example: '1.2' - fees: + 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: + option: type: string - example: stake - amount: + 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 - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - voter: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - option: - type: string - example: 'yes' - responses: - '200': - description: OK + description: >- + WeightedVoteOption defines a unit of vote for vote + split. + + + 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. + default: + description: An unexpected error response. schema: type: object properties: - msg: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - '400': - description: Invalid proposal id or vote body - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /gov/proposals/{proposalId}/votes/{voter}: - get: - deprecated: true - summary: Query vote - description: Query vote information by proposal Id and voter address - produces: - - application/json - tags: - - Governance + 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: - - type: string - description: proposal id - name: proposalId - required: true + - name: proposal_id + description: proposal_id defines the unique id of the proposal. in: path - x-example: '2' - - type: string - description: Bech32 voter address - name: voter required: true + type: string + format: uint64 + - name: voter + description: voter defines the oter address for the proposals. in: path - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + required: true + type: string + tags: + - Query + /cosmos/mint/v1beta1/annual_provisions: + get: + summary: AnnualProvisions current minting annual provisions value. + operationId: AnnualProvisions responses: '200': - description: OK + description: A successful response. schema: type: object properties: - voter: - type: string - proposal_id: - type: string - option: + annual_provisions: type: string - '400': - description: Invalid proposal id or voter address - '404': - description: Found no vote - '500': - description: Internal Server Error - /gov/proposals/{proposalId}/tally: - get: - deprecated: true - summary: Get a proposal's tally result at the current time - description: >- - Gets a proposal's tally result at the current time. If the proposal is - pending deposits (i.e status 'DepositPeriod') it returns an empty tally - result. - produces: - - application/json - tags: - - Governance - parameters: - - type: string - description: proposal id - name: proposalId - required: true - in: path - x-example: '2' - responses: - '200': - description: OK + format: byte + description: >- + annual_provisions is the current minting annual provisions + value. + description: |- + QueryAnnualProvisionsResponse is the response type for the + Query/AnnualProvisions RPC method. + default: + description: An unexpected error response. schema: type: object properties: - 'yes': - type: string - example: '0.0000000000' - abstain: - type: string - example: '0.0000000000' - 'no': + error: type: string - example: '0.0000000000' - no_with_veto: + code: + type: integer + format: int32 + message: type: string - example: '0.0000000000' - '400': - description: Invalid proposal id - '500': - description: Internal Server Error - /gov/parameters/deposit: - get: - deprecated: true - summary: Query governance deposit parameters - description: >- - Query governance deposit parameters. The max_deposit_period units are in - nanoseconds. - produces: - - application/json - tags: - - Governance - responses: - '200': - description: OK - schema: - type: object - properties: - min_deposit: + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - amount: + value: type: string - example: '50' - max_deposit_period: - type: string - example: '86400000000000' - '400': - description: is not a valid query request path - '404': - description: Found no deposit parameters - '500': - description: Internal Server Error - /gov/parameters/tallying: - get: - deprecated: true - summary: Query governance tally parameters - description: Query governance tally parameters - produces: - - application/json + format: byte tags: - - Governance - responses: - '200': - description: OK - schema: - properties: - threshold: - type: string - example: '0.5000000000' - veto: - type: string - example: '0.3340000000' - governance_penalty: - type: string - example: '0.0100000000' - '400': - description: is not a valid query request path - '404': - description: Found no tally parameters - '500': - description: Internal Server Error - /gov/parameters/voting: + - Query + /cosmos/mint/v1beta1/inflation: get: - deprecated: true - summary: Query governance voting parameters - description: >- - Query governance voting parameters. The voting_period units are in - nanoseconds. - produces: - - application/json - tags: - - Governance + summary: Inflation returns the current minting inflation value. + operationId: Inflation responses: '200': - description: OK + description: A successful response. schema: + type: object properties: - voting_period: + inflation: type: string - example: '86400000000000' - '400': - description: is not a valid query request path - '404': - description: Found no voting parameters - '500': - description: Internal Server Error - /distribution/delegators/{delegatorAddr}/rewards: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf - get: - deprecated: true - summary: Get the total rewards balance from all delegations - description: >- - Get the sum of all the rewards earned by delegations by a single - delegator - produces: - - application/json - tags: - - Distribution - responses: - '200': - description: OK + format: byte + description: inflation is the current minting inflation value. + description: >- + QueryInflationResponse is the response type for the + Query/Inflation RPC + + method. + default: + description: An unexpected error response. schema: type: object properties: - rewards: - type: array - items: - type: object - properties: - validator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - reward: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - total: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - amount: + value: type: string - example: '50' - '400': - description: Invalid delegator address - '500': - description: Internal Server Error - post: - deprecated: true - summary: Withdraw all the delegator's delegation rewards - description: Withdraw all the delegator's delegation rewards + format: byte tags: - - Distribution - consumes: - - application/json - produces: - - application/json - parameters: - - in: body - name: Withdraw request body + - Query + /cosmos/mint/v1beta1/params: + get: + summary: Params returns the total set of minting parameters. + operationId: ../../tmp-swagger-gen/cosmos/mint/v1beta1/query.swagger.jsonParams + responses: + '200': + description: A successful response. schema: + type: object properties: - base_req: + params: + description: params defines the parameters of the module. type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: + mint_denom: type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: + title: type of coin to mint + inflation_rate_change: type: string - example: Cosmos-Hub - account_number: + title: maximum annual change in inflation rate + inflation_max: type: string - example: '0' - sequence: + title: maximum inflation rate + inflation_min: type: string - example: '1' - gas: + title: minimum inflation rate + goal_bonded: type: string - example: '200000' - gas_adjustment: + title: goal of percent bonded atoms + blocks_per_year: type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - responses: - '200': - description: OK + format: uint64 + title: expected blocks per year + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. + default: + description: An unexpected error response. schema: type: object properties: - msg: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + tags: + - Query + /cosmos/params/v1beta1/params: + get: + summary: |- + Params queries a specific parameter of a module, given its subspace and + key. + operationId: ../../tmp-swagger-gen/cosmos/params/v1beta1/query.swagger.jsonParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + param: + description: param defines the queried parameter. type: object properties: - signature: + subspace: type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + key: type: string - example: '0' - sequence: + value: type: string - example: '0' - '400': - description: Invalid delegator address - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /distribution/delegators/{delegatorAddr}/rewards/{validatorAddr}: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Query a delegation reward - description: Query a single delegation reward by a delegator + description: >- + QueryParamsResponse is 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: subspace + description: subspace defines the module to query the parameter for. + in: query + required: false + type: string + - name: key + description: key defines the key of the parameter in the subspace. + in: query + required: false + type: string tags: - - Distribution - produces: - - application/json + - Query + /cosmos/slashing/v1beta1/params: + get: + summary: Params queries the parameters of slashing module + operationId: ../../tmp-swagger-gen/cosmos/slashing/v1beta1/query.swagger.jsonParams responses: '200': - description: OK - schema: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '400': - description: Invalid delegator address - '500': - description: Internal Server Error - post: - deprecated: true - summary: Withdraw a delegation reward - description: Withdraw a delegator's delegation reward from a single validator - tags: - - Distribution - consumes: - - application/json - produces: - - application/json - parameters: - - in: body - name: Withdraw request body + description: A successful response. schema: + type: object properties: - base_req: + params: type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: + signed_blocks_window: type: string - example: Cosmos-Hub - account_number: + format: int64 + min_signed_per_window: type: string - example: '0' - sequence: + format: byte + downtime_jail_duration: type: string - example: '1' - gas: + slash_fraction_double_sign: type: string - example: '200000' - gas_adjustment: + format: byte + slash_fraction_downtime: type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) + 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 + 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 + /cosmos/slashing/v1beta1/signing_infos: + get: + summary: SigningInfos queries signing info of all validators + operationId: SigningInfos responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: + info: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + 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 + + 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: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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: type: object properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Invalid delegator address or delegation body - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /distribution/delegators/{delegatorAddr}/withdraw_address: - parameters: - - in: path - name: delegatorAddr - description: Bech32 AccAddress of Delegator - required: true - type: string - x-example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf - get: - deprecated: true - summary: Get the rewards withdrawal address - description: >- - Get the delegations' rewards withdrawal address. This is the address in - which the user will receive the reward funds + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: >- + QuerySigningInfosResponse is the response type for the + Query/SigningInfos 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: 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: - - Distribution - produces: - - application/json + - Query + /cosmos/slashing/v1beta1/signing_infos/{cons_address}: + get: + summary: SigningInfo queries the signing info of given cons address + operationId: SigningInfo responses: '200': - description: OK - schema: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - '400': - description: Invalid delegator address - '500': - description: Internal Server Error - post: - deprecated: true - summary: Replace the rewards withdrawal address - description: Replace the delegations' rewards withdrawal address for a new one. - tags: - - Distribution - consumes: - - application/json - produces: - - application/json - parameters: - - in: body - name: Withdraw request body + description: A successful response. schema: + type: object properties: - base_req: + val_signing_info: type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: + address: type: string - example: '0' - sequence: + start_height: type: string - example: '1' - gas: + format: int64 + title: >- + Height at which validator was first a candidate OR was + unjailed + index_offset: type: string - example: '200000' - gas_adjustment: + 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: type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: + format: date-time + description: >- + Timestamp until which the validator is jailed due to + liveness downtime. + tombstoned: type: boolean - example: false description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - withdraw_address: + 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: + type: string + format: int64 + description: >- + A counter kept to avoid unnecessary array reads. + + 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 + default: + description: An unexpected error response. + schema: + type: object + properties: + error: type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + 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: cons_address + description: cons_address is the address to query signing info of + in: path + required: true + type: string + tags: + - Query + /cosmos/staking/v1beta1/delegations/{delegator_addr}: + get: + summary: >- + DelegatorDelegations queries all delegations of a given delegator + address. + operationId: DelegatorDelegations responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: + delegation_responses: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - 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 - example: stake amount: type: string - example: '50' - memo: - type: string - signature: + 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: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Invalid delegator or withdraw address - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /distribution/validators/{validatorAddr}: - parameters: - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Validator distribution information - description: Query the distribution information of a single validator - tags: - - Distribution - produces: - - application/json - responses: - '200': - description: OK + 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. + default: + description: An unexpected error response. schema: type: object properties: - operator_address: + error: type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - self_bond_rewards: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - val_commission: + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - '400': - description: Invalid validator address - '500': - description: Internal Server Error - /distribution/validators/{validatorAddr}/outstanding_rewards: - parameters: - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - get: - deprecated: true - summary: Fee distribution outstanding rewards of a single validator + 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: delegator_addr + description: delegator_addr defines the delegator address to query 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 + + 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: - - Distribution - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '500': - description: Internal Server Error - /distribution/validators/{validatorAddr}/rewards: - parameters: - - in: path - name: validatorAddr - description: Bech32 OperatorAddress of validator - required: true - type: string - x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + - Query + /cosmos/staking/v1beta1/delegators/{delegator_addr}/redelegations: get: - deprecated: true - summary: Commission and self-delegation rewards of a single validator - description: Query the commission and self-delegation rewards of validator. - tags: - - Distribution - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '400': - description: Invalid validator address - '500': - description: Internal Server Error - post: - deprecated: true - summary: Withdraw the validator's rewards - description: Withdraw the validator's self-delegation and commissions rewards - tags: - - Distribution - consumes: - - application/json - produces: - - application/json - parameters: - - in: body - name: Withdraw request body - schema: - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) + summary: Redelegations queries redelegations of given address. + operationId: Redelegations responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: + redelegation_responses: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: + type: object + properties: + redelegation: type: object properties: - denom: + delegator_address: type: string - example: stake - amount: + description: >- + delegator_address is the bech32-encoded address of + the delegator. + validator_src_address: type: string - example: '50' - memo: - type: string - signature: + 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. + 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 + + 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. + pagination: + description: pagination defines the pagination in the response. type: object properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Invalid validator address - '401': - description: Key password is wrong - '500': - description: Internal Server Error - /distribution/community_pool: - get: - deprecated: true - summary: Community pool parameters - tags: - - Distribution - produces: - - application/json - responses: - '200': - description: OK - schema: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - '500': - description: Internal Server Error - /distribution/parameters: - get: - deprecated: true - summary: Fee distribution parameters - tags: - - Distribution - produces: - - application/json - responses: - '200': - description: OK - schema: - properties: - base_proposer_reward: - type: string - bonus_proposer_reward: - type: string - community_tax: - type: string - '500': - description: Internal Server Error - /minting/parameters: - get: - deprecated: true - summary: Minting module parameters - tags: - - Mint - produces: - - application/json - responses: - '200': - description: OK + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryRedelegationsResponse is response type for the + Query/Redelegations RPC + + method. + default: + description: An unexpected error response. schema: + type: object properties: - mint_denom: - type: string - inflation_rate_change: - type: string - inflation_max: - type: string - inflation_min: - type: string - goal_bonded: + error: type: string - blocks_per_year: + code: + type: integer + format: int32 + message: type: string - '500': - description: Internal Server Error - /minting/inflation: - get: - deprecated: true - summary: Current minting inflation value - tags: - - Mint - produces: - - application/json - responses: - '200': - description: OK - schema: - type: string - '500': - description: Internal Server Error - /minting/annual-provisions: - get: - deprecated: true - summary: Current minting annual provisions value - tags: - - Mint - produces: - - application/json - responses: - '200': - description: OK - schema: - type: string - '500': - description: Internal Server Error - /wasm/code: - post: - summary: Generate wasm store code message + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + type: string + - name: src_validator_addr + description: src_validator_addr defines the validator address to redelegate from. + in: query + required: false + type: string + - name: dst_validator_addr + description: dst_validator_addr defines the validator address to redelegate to. + in: query + required: false + 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: - - Wasm - produces: - - application/json - parameters: - - in: body - name: store code request body - schema: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - wasm_bytes: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + - Query + /cosmos/staking/v1beta1/delegators/{delegator_addr}/unbonding_delegations: + get: + summary: >- + DelegatorUnbondingDelegations queries all unbonding delegations of a + given + + delegator address. + operationId: DelegatorUnbondingDelegations responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: + unbonding_responses: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + 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: + 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. + pagination: + description: pagination defines the pagination in the response. type: object properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Bad request - '500': - description: Internal Server Error - get: - summary: List code info - tags: - - Wasm - produces: - - application/json - responses: - '200': - description: OK + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryUnbondingDelegatorDelegationsResponse is response type for + the + + Query/UnbondingDelegatorDelegations RPC method. + default: + description: An unexpected error response. schema: type: object properties: - height: + error: type: string - result: - type: object - properties: - height: - type: string - result: - type: array - items: - type: object - properties: - id: - type: number - creator: - type: string - data_hash: - type: string - source: - type: string - builder: - type: string - /wasm/code/{codeID}: - post: - summary: Instantiate wasm contract message - tags: - - Wasm - produces: - - application/json - parameters: - - in: path - name: codeID - description: code ID you want to instantiate - required: true - type: number - - in: body - name: instantiate contract request body - schema: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - init_coins: + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - init_msg: - type: string - description: json formatted string - example: '{}' + 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: delegator_addr + description: delegator_addr defines the delegator address to query 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 + + 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 + /cosmos/staking/v1beta1/delegators/{delegator_addr}/validators: + get: + summary: |- + DelegatorValidators queries all validators info for given delegator + address. + operationId: >- + ../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonDelegatorValidators responses: '200': - description: OK + description: A successful response. schema: type: object properties: - msg: + validators: type: array items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - 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: - denom: + type_url: type: string - example: stake - 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 - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - '400': - description: Bad request - '500': - description: Internal Server Error - get: - summary: Get code info of the code ID - tags: - - Wasm - produces: - - application/json - parameters: - - in: path - name: codeID - description: code ID you want to query - required: true - type: number - responses: - '200': - description: OK - schema: - type: object - properties: - height: - type: string - result: - type: object - properties: - code_hash: - type: string - creator: - type: string - /wasm/code/{codeID}/contracts: - get: - summary: Get info about all contracts deployed with a code ID - tags: - - Wasm - produces: - - application/json - parameters: - - in: path - name: codeID - description: code ID you want to query - required: true - type: number - responses: - '200': - description: OK - schema: - type: object - properties: - height: - type: string - result: - type: object - properties: - height: - type: string - result: - type: array - items: + 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: >- + delegator_shares defines total shares issued to a + validator's delegators. + description: + description: >- + description defines the description terms for the + validator. type: object properties: - code-id: - type: number - creator: + moniker: type: string - label: + description: >- + moniker defines a human-readable name for the + validator. + identity: type: string - address: + description: >- + identity defines an optional identity signature (ex. + UPort or Keybase). + website: type: string - /wasm/contract/{contractAddress}: - post: - summary: Execute wasm contract message - tags: - - Wasm - produces: - - application/json - parameters: - - in: path - name: contractAddress - description: contract address you want to execute - required: true - type: string - - in: body - name: execute contract request body - schema: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: + description: website defines an optional website link. + security_contact: type: string - example: stake - amount: + description: >- + security_contact defines an optional email for + security contact. + details: type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in - conjunction with generate_only) - coins: - type: array - items: - type: object - properties: - denom: + description: details define other optional details. + unbonding_height: type: string - example: stake - amount: + format: int64 + description: >- + unbonding_height defines, if unbonding, the height at + which this validator has begun unbonding. + unbonding_time: type: string - example: '50' - exec_msg: - type: string - example: '{}' - responses: - '200': - description: OK - schema: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: - 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: - denom: - type: string - example: stake - amount: + 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 - example: '50' - memo: - type: string - signature: + 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. + 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: validators defines the the validators' info of a delegator. + pagination: + description: pagination defines the pagination in the response. type: object properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object - properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: + next_key: type: string - example: '0' - sequence: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - example: '0' - '400': - description: Bad request - '500': - description: Internal Server Error - /wasm/contract/{contractAddress}/code-hash: - get: - summary: Get stored contract-hash information - tags: - - Wasm - parameters: - - in: path - name: contractAddress - description: contract address you want to lookup - required: true - type: string - - in: query - name: query_msg - description: json formatted query msg - required: true - type: string - x-example: '{}' - produces: - - application/json - responses: - '200': - description: OK + 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. + default: + description: An unexpected error response. schema: type: object properties: - height: + error: type: string - result: + code: + type: integer + format: int32 + message: type: string - /wasm/contract/{contractAddress}/query/{query}: - get: - summary: Get stored information with store key - tags: - - Wasm + 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: - - in: path - name: contractAddress - description: contract address you want to lookup + - name: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path required: true type: string - - in: path - name: query - description: hex encoded data for the query - 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 - - in: query - name: encoding - description: encoding of the query data (only hex supported) + 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 - produces: - - application/json + 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 + /cosmos/staking/v1beta1/delegators/{delegator_addr}/validators/{validator_addr}: + get: + summary: |- + DelegatorValidator queries validator info for given delegator validator + pair. + operationId: DelegatorValidator responses: '200': - description: OK + description: A successful response. schema: type: object properties: - height: - type: string - result: + validator: type: object properties: - key: + 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 + + 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 - value: + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: type: string - /wasm/code/{codeID}/hash: - get: - summary: Get code ID data hash - tags: - - Wasm - parameters: - - in: path - name: codeID - description: code ID you want to query - required: true - type: number - produces: - - application/json - responses: - '200': - description: OK - schema: - type: object - properties: - height: - type: string - result: - type: object - properties: - height: + description: >- + tokens define the delegated tokens (incl. + self-delegation). + delegator_shares: type: string - result: + 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 - '404': - description: Not Found - /reg/consensus-io-exch-pubkey: - get: - tags: - - Reg - summary: Get chain public key - description: Get chain public key - operationId: consensus-io-exch-pubkey - responses: - '200': - description: OK - schema: - type: object - properties: - type: object - properties: - height: - type: string - result: - type: object - properties: - ioExchPubkey: - type: string - '404': - description: Not Found - /cosmos/auth/v1beta1/accounts: - get: - summary: Accounts returns all the existing accounts - description: 'Since: cosmos-sdk 0.43' - operationId: Accounts - responses: - '200': - description: A successful response. + 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. + 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. + default: + description: An unexpected error response. schema: type: object properties: - accounts: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object @@ -5313,129 +13952,527 @@ paths: 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++. + + 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: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + type: string + - name: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + type: string + tags: + - Query + /cosmos/staking/v1beta1/historical_info/{height}: + get: + summary: HistoricalInfo queries the historical info for given height. + operationId: HistoricalInfo + responses: + '200': + description: A successful response. + schema: + type: object + properties: + hist: + description: hist defines the historical info at the given height. + 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 Tendermint 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 + + 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 1: Pack and unpack a message in C++. + Example 4: Pack and unpack a message in Go - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - Example 2: Pack and unpack a message in Java. + The pack methods provided by protobuf library will + by default use - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + 'type.googleapis.com/full.type.name' as the type URL + and the unpack - Example 3: Pack and unpack a message in Python. + methods only use the fully qualified type name after + the last '/' - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + in the type URL, for example "foo.bar.com/x/y.z" + will yield type - Example 4: Pack and unpack a message in Go + name "y.z". - 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 + JSON - 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 + The JSON representation of an `Any` value uses the + regular - name "y.z". + 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; + } - JSON + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - ==== + If the embedded message type is well-known and has a + custom JSON - The JSON representation of an `Any` value uses the regular + representation, that representation will be embedded + adding a field - representation of the deserialized, embedded message, with - an + `value` which holds the custom JSON in addition to + the `@type` - additional field `@type` which contains the type URL. - Example: + field. Example (for message + [google.protobuf.Duration][]): - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + { + "@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. + 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" - } - title: accounts are the existing accounts - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + exchange rate. Voting power can be calculated as total + bonded shares - was set, its value is undefined otherwise + multiplied by exchange rate. description: >- - QueryAccountsResponse is the response type for the Query/Accounts - RPC method. - + QueryHistoricalInfoResponse is response type for the + Query/HistoricalInfo RPC - Since: cosmos-sdk 0.43 + method. default: description: An unexpected error response. schema: @@ -5626,248 +14663,53 @@ paths: "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 + - name: height + description: height defines at which height to query the historical info. + in: path + required: true 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 + format: int64 tags: - Query - /cosmos/auth/v1beta1/accounts/{address}: + /cosmos/staking/v1beta1/params: get: - summary: Account returns account details based on address. - operationId: Account + summary: Parameters queries the staking parameters. + operationId: ../../tmp-swagger-gen/cosmos/staking/v1beta1/query.swagger.jsonParams responses: '200': description: A successful response. schema: type: object properties: - account: - 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" - } + 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. description: >- - QueryAccountResponse is the response type for the Query/Account - RPC method. + QueryParamsResponse is response type for the Query/Params RPC + method. default: description: An unexpected error response. schema: @@ -6057,46 +14899,27 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - parameters: - - name: address - description: address defines the address to query for. - in: path - required: true - type: string tags: - Query - /cosmos/auth/v1beta1/params: + /cosmos/staking/v1beta1/pool: get: - summary: Params queries all parameters. - operationId: AuthParams + summary: Pool queries the pool info. + operationId: Pool responses: '200': description: A successful response. schema: type: object properties: - params: - description: params defines the parameters of the module. + pool: + description: pool defines the pool info. type: object properties: - max_memo_characters: - type: string - format: uint64 - tx_sig_limit: - type: string - format: uint64 - tx_size_cost_per_byte: - type: string - format: uint64 - sig_verify_cost_ed25519: + not_bonded_tokens: type: string - format: uint64 - sig_verify_cost_secp256k1: + bonded_tokens: type: string - format: uint64 - description: >- - QueryParamsResponse is the response type for the Query/Params RPC - method. + description: QueryPoolResponse is response type for the Query/Pool RPC method. default: description: An unexpected error response. schema: @@ -6288,294 +15111,329 @@ paths: } tags: - Query - /cosmos/bank/v1beta1/balances/{address}: + /cosmos/staking/v1beta1/validators: get: - summary: AllBalances queries the balance of all coins for a single account. - operationId: AllBalances + summary: Validators queries all validators that match the given status. + operationId: Validators responses: '200': description: A successful response. schema: type: object properties: - balances: + validators: 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. - description: balances is the balances of all the coins. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + the fully qualified name of the type (as in - was set, its value is undefined otherwise - description: >- - QueryAllBalancesResponse is the response type for the - Query/AllBalances RPC + `path/google.protobuf.Duration`). The name should be + in a canonical form - 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 is the address to query balances 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. + (e.g., leading "." is not accepted). - 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. + In practice, teams usually precompile into the + binary all types that they - 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 + expect it to use in the context of Any. However, for + URLs which use the - a count of the total number of items available for pagination in - UIs. + scheme `http`, `https`, or no scheme, one can + optionally set up a type - count_total is only respected when offset is used. It is ignored - when key + server that maps type URLs to message definitions as + follows: - 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. + * If no scheme is provided, `https` is assumed. - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /cosmos/bank/v1beta1/balances/{address}/by_denom: - get: - summary: Balance queries the balance of a single coin for a single account. - operationId: Balance - responses: - '200': - description: A successful response. - schema: - type: object - properties: - balance: - 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: >- - QueryBalanceResponse is the response type for the Query/Balance - 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.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 - value: + enum: + - BOND_STATUS_UNSPECIFIED + - BOND_STATUS_UNBONDED + - BOND_STATUS_UNBONDING + - BOND_STATUS_BONDED + default: BOND_STATUS_UNSPECIFIED + tokens: type: string - format: byte - parameters: - - name: address - description: address is the address to query balances for. - in: path - required: true - type: string - - name: denom - description: denom is the coin denom to query balances for. - in: query - required: false - type: string - tags: - - Query - /cosmos/bank/v1beta1/denoms_metadata: - get: - summary: >- - DenomsMetadata queries the client metadata for all registered coin - denominations. - operationId: DenomsMetadata - responses: - '200': - description: A successful response. - schema: - type: object - properties: - metadatas: - type: array - items: - type: object - properties: + 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 - 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 + description: >- + min_self_delegation is the validator's self declared + minimum self delegation. + description: >- + Validator defines a validator, together with the total + amount of the - raise the base_denom to in order to equal the - given DenomUnit's denom + Validator's bond shares and their exchange rate to coins. + Slashing results in - 1 denom = 1^exponent base_denom + a decrease in the exchange rate, allowing correct + calculation of future - (e.g. with a base_denom of uatom, one can create a - DenomUnit of 'atom' with + undelegations without iterating over delegators. When coins + are delegated to - 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 + this validator, the validator is credited with a delegation + whose number of - be the same as the display. + 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.43 - description: |- - Metadata represents a struct that describes - a basic token. - description: >- - metadata provides the client information for all the - registered tokens. + multiplied by exchange rate. + description: validators contains all the queried validators. pagination: description: pagination defines the pagination in the response. type: object @@ -6594,11 +15452,9 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryDenomsMetadataResponse is the response type for the - Query/DenomsMetadata RPC - - method. + title: >- + QueryValidatorsResponse is response type for the Query/Validators + RPC method default: description: An unexpected error response. schema: @@ -6618,457 +15474,182 @@ paths: 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. + description: >- + A URL/resource name that uniquely identifies the type of + the serialized - It is less efficient than using key. Only one of offset or key - should + protocol buffer message. This string must contain at + least - 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. + one "/" character. The last segment of the URL's path + must represent - 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 + the fully qualified name of the type (as in - a count of the total number of items available for pagination in - UIs. + `path/google.protobuf.Duration`). The name should be in + a canonical form - count_total is only respected when offset is used. It is ignored - when key + (e.g., leading "." is not accepted). - 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 - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /cosmos/bank/v1beta1/denoms_metadata/{denom}: - get: - summary: DenomsMetadata queries the client metadata of a given coin denomination. - operationId: DenomMetadata - 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 + expect it to use in the context of Any. However, for + URLs which use the - raise the base_denom to in order to equal the given - DenomUnit's denom + scheme `http`, `https`, or no scheme, one can optionally + set up a type - 1 denom = 1^exponent base_denom + server that maps type URLs to message definitions as + follows: - (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 + * If no scheme is provided, `https` is assumed. - be the same as the display. + * 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 - Since: cosmos-sdk 0.43 - description: |- - Metadata represents a struct that describes - a basic token. - description: >- - QueryDenomMetadataResponse is the response type for the - Query/DenomMetadata RPC + protobuf release, and it is not used for type URLs + beginning with - 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: denom - description: denom is the coin denom to query the metadata for. - in: path - required: true - type: string - tags: - - Query - /cosmos/bank/v1beta1/params: - get: - summary: Params queries the parameters of x/bank module. - operationId: BankParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - type: object - properties: - send_enabled: - type: array - items: - type: object - properties: - denom: - type: string - enabled: - type: boolean - description: >- - SendEnabled maps coin denom to a send_enabled status - (whether a denom is + type.googleapis.com. - sendable). - default_send_enabled: - type: boolean - description: Params defines the parameters for the bank module. - description: >- - QueryParamsResponse defines the response type for querying x/bank - parameters. - 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 + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. value: type: string format: byte - tags: - - Query - /cosmos/bank/v1beta1/spendable_balances/{address}: - get: - summary: |- - SpendableBalances queries the spenable balance of all coins for a single - account. - operationId: SpendableBalances - responses: - '200': - description: A successful response. - schema: - type: object - properties: - balances: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string + description: >- + Must be a valid serialized protocol buffer of the above + specified type. 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. - NOTE: The amount field is an Int which implements the custom - method - signatures required by gogoproto. - description: balances is the spendable balances of all the coins. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - 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 - description: >- - QuerySpendableBalancesResponse defines the gRPC response structure - for querying + of utility functions or additional generated methods of the + Any type. - an account's spendable balances. - 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 address to query spendable balances 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 + Example 1: Pack and unpack a message in C++. - 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. + 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". - 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 + JSON - 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. + ==== + The JSON representation of an `Any` value uses the regular - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /cosmos/bank/v1beta1/supply: - get: - summary: TotalSupply queries the total supply of all coins. - operationId: TotalSupply - responses: - '200': - description: A successful response. - schema: - type: object - properties: - supply: - 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. - title: supply is the supply of the coins - pagination: - description: |- - pagination defines the pagination in the response. + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - Since: cosmos-sdk 0.43 - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - 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 - title: >- - QueryTotalSupplyResponse is the response type for the - Query/TotalSupply RPC + representation, that representation will be embedded adding + a field - 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 + `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: status enables to query for validators matching a given status. + in: query + required: false + type: string - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -7127,631 +15708,604 @@ paths: type: boolean tags: - Query - /cosmos/bank/v1beta1/supply/{denom}: - get: - summary: SupplyOf queries the supply of a single coin. - operationId: SupplyOf - 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: >- - QuerySupplyOfResponse is the response type for the Query/SupplyOf - 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: denom - description: denom is the coin denom to query balances for. - in: path - required: true - type: string - tags: - - Query - /cosmos/base/tendermint/v1beta1/blocks/latest: + /cosmos/staking/v1beta1/validators/{validator_addr}: get: - summary: GetLatestBlock returns the latest block. - operationId: GetLatestBlock + summary: Validator queries validator info for given validator address. + operationId: Validator responses: '200': description: A successful response. schema: type: object properties: - block_id: + validator: type: object properties: - hash: + operator_address: type: string - format: byte - part_set_header: + description: >- + operator_address defines the address of the validator's + operator; bech encoded in JSON. + consensus_pubkey: type: object properties: - total: - type: integer - format: int64 - hash: + type_url: 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, + 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: + 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: Header defines the structure of a Tendermint 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. + 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: not all txs here are valid. We're just agreeing - on the order first. + URL that describes the type of the serialized message. - 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 + Protobuf library provides support to pack/unpack Any + values in the form - 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. + 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; + } - - 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 + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - 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, + If the embedded message type is well-known and has a + custom JSON - including all blockchain data structures - and the rules of the application's + representation, that representation will be embedded + adding a field - 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 - Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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: + `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: - height: + moniker: type: string - format: int64 - round: - type: integer - format: int32 - block_id: + 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: - hash: + rate: 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: >- + 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. + 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. + title: >- + QueryValidatorResponse is response type for the Query/Validator + 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" + } + parameters: + - name: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + type: string + tags: + - Query + /cosmos/staking/v1beta1/validators/{validator_addr}/delegations: + get: + summary: ValidatorDelegations queries delegate info for given validator. + operationId: ValidatorDelegations + responses: + '200': + description: A successful response. + schema: + type: object + properties: + delegation_responses: + type: array + items: + type: object + properties: + delegation: + type: object + properties: + delegator_address: + type: string 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. - description: >- - GetLatestBlockResponse is the response type for the - Query/GetLatestBlock RPC method. + 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. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: |- + QueryValidatorDelegationsResponse is response type for the + Query/ValidatorDelegations RPC method default: description: An unexpected error response. schema: @@ -7941,575 +16495,397 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } + parameters: + - name: validator_addr + description: validator_addr defines the validator address to query 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 + + 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: - - Service - /cosmos/base/tendermint/v1beta1/blocks/{height}: + - Query + /cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}: get: - summary: GetBlockByHeight queries block for given height. - operationId: GetBlockByHeight + summary: Delegation queries delegate info for given validator delegator pair. + operationId: Delegation responses: '200': description: A successful response. schema: type: object properties: - block_id: + delegation_response: type: object properties: - hash: - type: string - format: byte - part_set_header: + delegation: type: object properties: - total: - type: integer - format: int64 - hash: + delegator_address: 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, - - 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: + delegator_address is the bech32-encoded address of the + delegator. + validator_address: type: string - format: byte - title: consensus info - proposer_address: + description: >- + validator_address is the bech32-encoded address of the + validator. + shares: type: string - format: byte - description: Header defines the structure of a Tendermint block header. - data: + 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: - txs: - type: array - items: - type: string - format: byte - description: >- - Txs that will be applied by state @ block.Height+1. + 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. + 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. - NOTE: not all txs here are valid. We're just agreeing - on the order first. + * 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 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. + Note: this functionality is not currently available in + the official - - 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 + protobuf release, and it is not used for type URLs + beginning with - 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. + 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. - 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, + Schemes other than `http`, `https` (or the empty scheme) + might be - including all blockchain data structures - and the rules of the application's + 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 - 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 - Tendermint 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 Tendermint 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 Tendermint 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 Tendermint 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. + 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: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + type: string + - name: delegator_addr + description: delegator_addr defines the delegator address to query for. + in: path + required: true + type: string + tags: + - Query + /cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}/unbonding_delegation: + get: + summary: |- + UnbondingDelegation queries unbonding info for given validator delegator + pair. + operationId: UnbondingDelegation + responses: + '200': + description: A successful response. + schema: + type: object + properties: + unbond: + type: object + properties: + delegator_address: + type: string description: >- - Commit contains the evidence that a block was committed by - a set of validators. + 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: + 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. description: >- - GetBlockByHeightResponse is the response type for the - Query/GetBlockByHeight RPC method. + QueryDelegationResponse is response type for the + Query/UnbondingDelegation + + RPC method. default: description: An unexpected error response. schema: @@ -8700,95 +17076,376 @@ paths: "value": "1.212s" } parameters: - - name: height + - name: validator_addr + description: validator_addr defines the validator address to query for. + in: path + required: true + type: string + - name: delegator_addr + description: delegator_addr defines the delegator address to query for. in: path required: true type: string - format: int64 tags: - - Service - /cosmos/base/tendermint/v1beta1/node_info: + - Query + /cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations: get: - summary: GetNodeInfo queries the current node info. - operationId: GetNodeInfo + summary: >- + ValidatorUnbondingDelegations queries unbonding delegations of a + validator. + operationId: ValidatorUnbondingDelegations responses: '200': description: A successful response. schema: type: object properties: - default_node_info: + unbonding_responses: + 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: + 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. + pagination: + description: pagination defines the pagination in the response. 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: + next_key: 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: + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - title: 'Since: cosmos-sdk 0.43' - description: VersionInfo is the type for the GetNodeInfoResponse message. + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryValidatorUnbondingDelegationsResponse is response type for + the + + Query/ValidatorUnbondingDelegations 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" + } + parameters: + - name: validator_addr + description: validator_addr defines the validator address to query 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 + + 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 + /cosmos/upgrade/v1beta1/applied_plan/{name}: + get: + summary: AppliedPlan queries a previously applied upgrade plan by its name. + operationId: AppliedPlan + responses: + '200': + description: A successful response. + schema: + type: object + properties: + height: + type: string + format: int64 + description: height is the block height at which the plan was applied. description: >- - GetNodeInfoResponse is the request type for the Query/GetNodeInfo - RPC method. + QueryAppliedPlanResponse is the response type for the + Query/AppliedPlan RPC + + method. default: description: An unexpected error response. schema: @@ -8978,23 +17635,254 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } + parameters: + - name: name + description: name is the name of the applied plan to query for. + in: path + required: true + type: string tags: - - Service - /cosmos/base/tendermint/v1beta1/syncing: + - Query + /cosmos/upgrade/v1beta1/current_plan: get: - summary: GetSyncing queries node syncing. - operationId: GetSyncing + summary: CurrentPlan queries the current upgrade plan. + operationId: CurrentPlan responses: '200': description: A successful response. schema: type: object properties: - syncing: - type: boolean + 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 + + version of the software to apply any special "on-upgrade" + commands during + + 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 + + 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 + + has been removed from the SDK. + + 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: >- + 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: >- - GetSyncingResponse is the response type for the Query/GetSyncing - RPC method. + QueryCurrentPlanResponse is the response type for the + Query/CurrentPlan RPC + + method. default: description: An unexpected error response. schema: @@ -9185,232 +18073,45 @@ paths: "value": "1.212s" } tags: - - Service - /cosmos/base/tendermint/v1beta1/validatorsets/latest: + - Query + /cosmos/upgrade/v1beta1/module_versions: get: - summary: GetLatestValidatorSet queries latest validator-set. - operationId: GetLatestValidatorSet + summary: ModuleVersions queries the list of module versions from state. + description: 'Since: cosmos-sdk 0.43' + operationId: ModuleVersions responses: '200': description: A successful response. schema: type: object properties: - block_height: - type: string - format: int64 - validators: + module_versions: 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 - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + 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. - was set, its value is undefined otherwise + Since: cosmos-sdk 0.43 + description: >- + module_versions is a list of module names with their consensus + versions. description: >- - GetLatestValidatorSetResponse is the response type for the - Query/GetValidatorSetByHeight RPC method. + QueryModuleVersionsResponse is the response type for the + Query/ModuleVersions + + RPC method. + + + Since: cosmos-sdk 0.43 default: description: An unexpected error response. schema: @@ -9601,289 +18302,47 @@ paths: "value": "1.212s" } parameters: - - name: pagination.key + - name: module_name 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. + module_name is a field to query a specific module + consensus version from state. Leaving this empty will + fetch the full list of module versions from state. 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 + tags: + - Query + /cosmos/upgrade/v1beta1/upgraded_consensus_state/{last_height}: + get: + summary: >- + UpgradedConsensusState queries the consensus state that will serve - a count of the total number of items available for pagination in - UIs. + as a trusted kernel for the next version of this chain. It will only be - count_total is only respected when offset is used. It is ignored - when key + stored at the last height of this chain. - 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. + UpgradedConsensusState RPC not supported with legacy querier + This rpc is deprecated now that IBC has its own replacement - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Service - /cosmos/base/tendermint/v1beta1/validatorsets/{height}: - get: - summary: GetValidatorSetByHeight queries validator-set at a given height. - operationId: GetValidatorSetByHeight + (https://github.com/cosmos/ibc-go/blob/2c880a22e9f9cc75f62b527ca94aa75ce1106001/proto/ibc/core/client/v1/query.proto#L54) + operationId: >- + ../../tmp-swagger-gen/cosmos/upgrade/v1beta1/query.swagger.jsonUpgradedConsensusState responses: '200': description: A successful response. schema: type: object properties: - block_height: + upgraded_consensus_state: 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 - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise + format: byte + title: 'Since: cosmos-sdk 0.43' description: >- - GetValidatorSetByHeightResponse is the response type for the - Query/GetValidatorSetByHeight RPC method. + QueryUpgradedConsensusStateResponse is the response type for the + Query/UpgradedConsensusState + + RPC method. default: description: An unexpected error response. schema: @@ -10049,277 +18508,64 @@ paths: 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: height - in: path - required: true - type: string - 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: - - Service - /cosmos/distribution/v1beta1/community_pool: - get: - summary: CommunityPool queries the community pool coins. - operationId: CommunityPool - responses: - '200': - description: A successful response. - schema: - 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 - - 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 - /cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards: - get: - summary: |- - DelegationTotalRewards queries the total rewards accrued by a each - validator. - operationId: DelegationTotalRewards - responses: - '200': - description: A successful response. - schema: - type: object - properties: - rewards: - type: array - items: - 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. - - - 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. + string last_name = 2; + } + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - NOTE: The amount field is an Dec which implements the custom - method + If the embedded message type is well-known and has a custom + JSON - 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. - 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 + 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: delegator_address - description: delegator_address defines the delegator address to query for. + - name: last_height + description: |- + last height of the current chain must be sent in request + as this is the height under which next consensus state is stored in: path required: true type: string + format: int64 tags: - Query - /cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address}: + /ibc/apps/interchain_accounts/controller/v1/params: get: - summary: DelegationRewards queries the total rewards accrued by a delegation. - operationId: DelegationRewards + summary: Params queries all parameters of the ICA controller submodule. + operationId: >- + ../../tmp-swagger-gen/ibc/applications/interchain_accounts/controller/v1/query.swagger.jsonParams responses: '200': description: A successful response. schema: 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. + params: + description: params defines the parameters of the module. + type: object + properties: + controller_enabled: + type: boolean + description: >- + controller_enabled enables or disables the controller + submodule. + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. default: description: An unexpected error response. schema: @@ -10342,39 +18588,36 @@ paths: value: type: string format: byte - parameters: - - name: delegator_address - description: delegator_address defines the delegator address to query for. - in: path - required: true - type: string - - name: validator_address - description: validator_address defines the validator address to query for. - in: path - required: true - type: string tags: - Query - /cosmos/distribution/v1beta1/delegators/{delegator_address}/validators: + /ibc/apps/interchain_accounts/host/v1/params: get: - summary: DelegatorValidators queries the validators of a delegator. - operationId: DelegatorValidators + summary: Params queries all parameters of the ICA host submodule. + operationId: >- + ../../tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.jsonParams responses: '200': description: A successful response. schema: 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. + params: + description: params defines the parameters of the module. + type: object + properties: + host_enabled: + type: boolean + description: host_enabled enables or disables the host submodule. + allow_messages: + type: array + items: + type: string + description: >- + allow_messages defines a list of sdk message typeURLs + allowed to be executed on a host chain. + description: >- + QueryParamsResponse is the response type for the Query/Params RPC + method. default: description: An unexpected error response. schema: @@ -10397,30 +18640,26 @@ paths: value: type: string format: byte - parameters: - - name: delegator_address - description: delegator_address defines the delegator address to query for. - in: path - required: true - type: string tags: - Query - /cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address: + /ibc/apps/transfer/v1/denom_hashes/{trace}: get: - summary: DelegatorWithdrawAddress queries withdraw address of a delegator. - operationId: DelegatorWithdrawAddress + summary: DenomHash queries a denomination hash information. + operationId: DenomHash responses: '200': description: A successful response. schema: type: object properties: - withdraw_address: + hash: type: string - description: withdraw_address defines the delegator address to query for. - description: |- - QueryDelegatorWithdrawAddressResponse is the response type for the - Query/DelegatorWithdrawAddress RPC method. + description: hash (in hex format) of the denomination trace information. + description: >- + QueryDenomHashResponse is the response type for the + Query/DenomHash RPC + + method. default: description: An unexpected error response. schema: @@ -10444,83 +18683,66 @@ paths: type: string format: byte parameters: - - name: delegator_address - description: delegator_address defines the delegator address to query for. + - name: trace + description: The denomination trace ([port_id]/[channel_id])+/[denom] in: path required: true type: string tags: - Query - /cosmos/distribution/v1beta1/foundation_tax: + /ibc/apps/transfer/v1/denom_traces: get: - summary: DelegatorWithdrawAddress queries withdraw address of a delegator. - operationId: FoundationTax + summary: DenomTraces queries all denomination traces. + operationId: DenomTraces responses: '200': description: A successful response. schema: type: object properties: - tax: - type: string - description: withdraw_address defines the delegator address to query for. - foundation_address: - type: string - description: |- - QueryDelegatorWithdrawAddressResponse is the response type for the - Query/DelegatorWithdrawAddress RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: + denom_traces: type: array items: type: object properties: - type_url: + path: type: string - value: + description: >- + path defines the chain of port/channel identifiers used + for tracing the + + source of the fungible token. + base_denom: type: string - format: byte - tags: - - Query - /cosmos/distribution/v1beta1/params: - get: - summary: Params queries params of the distribution module. - operationId: DistributionParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - description: params defines the parameters of the module. + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible + tokens and the + + source tracing information path. + description: denom_traces returns all denominations trace information. + pagination: + description: pagination defines the pagination in the response. type: object properties: - community_tax: - type: string - base_proposer_reward: - type: string - bonus_proposer_reward: - type: string - withdraw_addr_enabled: - type: boolean - secret_foundation_tax: + next_key: type: string - secret_foundation_address: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- - QueryParamsResponse is the response type for the Query/Params RPC + QueryConnectionsResponse is the response type for the + Query/DenomTraces RPC + method. default: description: An unexpected error response. @@ -10544,43 +18766,98 @@ paths: 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 - /cosmos/distribution/v1beta1/validators/{validator_address}/commission: + /ibc/apps/transfer/v1/denom_traces/{hash}: get: - summary: ValidatorCommission queries accumulated commission for a validator. - operationId: ValidatorCommission + summary: DenomTrace queries a denomination trace information. + operationId: DenomTrace responses: '200': description: A successful response. schema: type: object properties: - commission: - description: commission defines the commision the validator received. + denom_trace: 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. + path: + type: string + description: >- + path defines the chain of port/channel identifiers used + for tracing the + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible + tokens and the - NOTE: The amount field is an Dec which implements the - custom method + source tracing information path. + description: >- + QueryDenomTraceResponse is the response type for the + Query/DenomTrace RPC - signatures required by gogoproto. - title: |- - QueryValidatorCommissionResponse is the response type for the - Query/ValidatorCommission RPC method + method. default: description: An unexpected error response. schema: @@ -10604,55 +18881,45 @@ paths: type: string format: byte parameters: - - name: validator_address - description: validator_address defines the validator address to query for. + - name: hash + description: hash (in hex format) of the denomination trace information. in: path required: true type: string tags: - Query - /cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards: + /ibc/apps/transfer/v1/params: get: - summary: ValidatorOutstandingRewards queries rewards of a validator address. - operationId: ValidatorOutstandingRewards + summary: Params queries all parameters of the ibc-transfer module. + operationId: >- + ../../tmp-swagger-gen/ibc/applications/transfer/v1/query.swagger.jsonParams responses: '200': description: A successful response. schema: type: object properties: - rewards: + params: + description: params defines the parameters of the module. 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 + send_enabled: + type: boolean + description: >- + send_enabled enables or disables all cross-chain token + transfers from this - signatures required by gogoproto. - description: >- - ValidatorOutstandingRewards represents outstanding - (un-withdrawn) rewards + chain. + receive_enabled: + type: boolean + description: >- + receive_enabled enables or disables all cross-chain token + transfers to this - for a validator inexpensive to track, allows simple sanity - checks. + chain. description: >- - QueryValidatorOutstandingRewardsResponse is the response type for - the - - Query/ValidatorOutstandingRewards RPC method. + QueryParamsResponse is the response type for the Query/Params RPC + method. default: description: An unexpected error response. schema: @@ -10675,47 +18942,100 @@ paths: value: type: string format: byte - parameters: - - name: validator_address - description: validator_address defines the validator address to query for. - in: path - required: true - type: string tags: - Query - /cosmos/distribution/v1beta1/validators/{validator_address}/slashes: + /ibc/core/channel/v1/channels: get: - summary: ValidatorSlashes queries slash events of a validator. - operationId: ValidatorSlashes + summary: Channels queries all the IBC channels of a chain. + operationId: Channels responses: '200': description: A successful response. schema: type: object properties: - slashes: + channels: type: array items: type: object properties: - validator_period: - type: string - format: uint64 - fraction: + state: + title: current state of the channel end type: string - description: >- - ValidatorSlashEvent represents a validator slash event. + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following + states: - Height is implicit within the store key. + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. - This is needed to calculate appropriate amount of staking - tokens + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel + ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: >- + port on the counterparty chain which owns the other + end of the channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which + packets sent on - for delegations which are withdrawn after a slash has - occurred. - description: slashes defines the slashes the validator received. + this channel will travel + version: + type: string + title: >- + opaque channel version, which is agreed upon during the + handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: >- + IdentifiedChannel defines a channel with additional port and + channel + + identifier fields. + description: list of stored channels of the chain. pagination: - description: pagination defines the pagination in the response. + title: pagination response type: object properties: next_key: @@ -10732,122 +19052,61 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: |- - QueryValidatorSlashesResponse is the response type for the - Query/ValidatorSlashes 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: validator_address - description: validator_address defines the validator address to query for. - in: path - required: true - type: string - - name: starting_height - description: >- - starting_height defines the optional starting height to query the - slashes. - in: query - required: false - type: string - format: uint64 - - name: ending_height - description: >- - starting_height defines the optional ending height to query the - slashes. - 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 - - 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 + description: >- + PageResponse is to be embedded in gRPC response messages where + the - 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. + corresponding request message has used PageRequest. - 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 + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - a count of the total number of items available for pagination in - UIs. + RevisionNumber the same. However some consensus algorithms may + choose to - count_total is only respected when offset is used. It is ignored - when key + reset the height in certain conditions e.g. hard forks, + state-machine - 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. + breaking changes In these cases, the RevisionNumber is + incremented so that + height continues to be monitonically increasing even as the + RevisionHeight - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /cosmos/evidence/v1beta1/evidence: - get: - summary: AllEvidence queries all evidence. - operationId: AllEvidence - responses: - '200': - description: A successful response. + gets reset + description: >- + QueryChannelsResponse is the response type for the Query/Channels + RPC method. + default: + description: An unexpected error response. schema: type: object properties: - evidence: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: type: array items: type: object @@ -11024,30 +19283,190 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - description: evidence returns all evidences. - pagination: - description: pagination defines the pagination in the response. + 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 + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}: + get: + summary: Channel queries an IBC Channel. + operationId: Channel + responses: + '200': + description: A successful response. + schema: + type: object + properties: + channel: + title: channel associated with the request identifiers type: object properties: - next_key: + state: + title: current state of the channel end type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following + states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered type: string - format: uint64 + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: >- + port on the counterparty chain which owns the other + end of the channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string title: >- - total is total number of results available if - PageRequest.count_total + list of connection identifiers, in order, along which + packets sent on - was set, its value is undefined otherwise + this channel will travel + version: + type: string + title: >- + opaque channel version, which is agreed upon during the + handshake + description: >- + Channel defines pipeline for exactly-once packet delivery + between specific + + modules on separate blockchains, which has at least one end + capable of + + sending packets and one end capable of receiving packets. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset description: >- - QueryAllEvidenceResponse is the response type for the - Query/AllEvidence RPC + QueryChannelResponse is the response type for the Query/Channel + RPC method. - method. + Besides the Channel end, it includes a proof and the height from + which the + + proof was retrieved. default: description: An unexpected error response. schema: @@ -11238,518 +19657,256 @@ paths: "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 + - name: channel_id + description: channel unique identifier + in: path + required: true 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 + - name: port_id + description: port unique identifier + in: path + required: true 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 - /cosmos/evidence/v1beta1/evidence/{evidence_hash}: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/client_state: get: - summary: Evidence queries evidence based on evidence hash. - operationId: Evidence + summary: >- + ChannelClientState queries for the client state for the channel + associated + + with the provided channel identifiers. + operationId: ChannelClientState responses: '200': description: A successful response. schema: type: object properties: - evidence: + identified_client_state: + title: client state associated with the channel type: object properties: - type_url: + client_id: type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized + title: client identifier + client_state: + 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. - - - 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. - 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 + `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" - } - parameters: - - name: evidence_hash - description: evidence_hash defines the hash of the requested evidence. - in: path - required: true - type: string - format: byte - tags: - - Query - /cosmos/gov/v1beta1/params/{params_type}: - get: - summary: Params queries all parameters of the gov module. - operationId: GovParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - voting_params: - description: voting_params defines the parameters related to voting. + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: client state + description: >- + IdentifiedClientState defines a client state with an + additional client + + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - voting_period: + revision_number: 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. + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + RevisionNumber the same. However some consensus algorithms may + choose to - NOTE: The amount field is an Int which implements the - custom method + reset the height in certain conditions e.g. hard forks, + state-machine - 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. + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method default: description: An unexpected error response. schema: @@ -11940,307 +20097,241 @@ paths: "value": "1.212s" } parameters: - - name: params_type - description: >- - params_type defines which parameters to query for, can be one of - "voting", - - "tallying" or "deposit". + - name: channel_id + description: channel unique identifier + in: path + required: true + type: string + - name: port_id + description: port unique identifier in: path required: true type: string tags: - Query - /cosmos/gov/v1beta1/proposals: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/consensus_state/revision/{revision_number}/height/{revision_height}: get: - summary: Proposals queries all proposals based on given status. - operationId: Proposals + summary: |- + ChannelConsensusState queries for the consensus state for the channel + associated with the provided channel identifiers. + operationId: ChannelConsensusState responses: '200': description: A successful response. schema: type: object properties: - proposals: - type: array - items: - 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 - - 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). + consensus_state: + 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). - * If no scheme is provided, `https` is assumed. + In practice, teams usually precompile into the binary all + types that they - * 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.) + expect it to use in the context of Any. However, for URLs + which use the - Note: this functionality is not currently available - in the official + scheme `http`, `https`, or no scheme, one can optionally + set up a type - protobuf release, and it is not used for type URLs - beginning with + server that maps type URLs to message definitions as + follows: - type.googleapis.com. + * If no scheme is provided, `https` is assumed. - Schemes other than `http`, `https` (or the empty - scheme) might be + * 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.) - 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: this functionality is not currently available in the + official - URL that describes the type of the serialized message. + protobuf release, and it is not used for type URLs + beginning with + type.googleapis.com. - Protobuf library provides support to pack/unpack Any - values in the form - of utility functions or additional generated methods of - the Any type. + 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 - Example 1: Pack and unpack a message in C++. + URL that describes the type of the serialized message. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - Example 2: Pack and unpack a message in Java. + Protobuf library provides support to pack/unpack Any values in + the form - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + of utility functions or additional generated methods of the + Any type. - 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 1: Pack and unpack a message in C++. - Example 4: Pack and unpack a message in Go + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + Example 2: Pack and unpack a message in Java. - The pack methods provided by protobuf library will by - default use + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - 'type.googleapis.com/full.type.name' as the type URL and - the unpack + Example 3: Pack and unpack a message in Python. - methods only use the fully qualified type name after the - last '/' + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - in the type URL, for example "foo.bar.com/x/y.z" will - yield type + Example 4: Pack and unpack a message in Go - name "y.z". + 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 - JSON + 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 - The JSON representation of an `Any` value uses the - regular + name "y.z". - 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; - } + JSON - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + ==== - If the embedded message type is well-known and has a - custom JSON + The JSON representation of an `Any` value uses the regular - representation, that representation will be embedded - adding a field + representation of the deserialized, embedded message, with an - `value` which holds the custom JSON in addition to the - `@type` + additional field `@type` which contains the type URL. Example: - field. Example (for message - [google.protobuf.Duration][]): + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - { - "@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. + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal 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: - 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. - 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. + If the embedded message type is well-known and has a custom + JSON + representation, that representation will be embedded adding a + field - NOTE: The amount field is an Int which implements the - custom method + `value` which holds the custom JSON in addition to the `@type` - 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. - pagination: - description: pagination defines the pagination in the response. + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - next_key: + revision_number: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - was set, its value is undefined otherwise - description: >- - QueryProposalsResponse is the response type for the - Query/Proposals RPC + RevisionNumber the same. However some consensus algorithms may + choose to - method. + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method default: description: An unexpected error response. schema: @@ -12431,365 +20522,82 @@ paths: "value": "1.212s" } parameters: - - name: proposal_status - description: |- - proposal_status defines the status of the proposals. - - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal 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. - in: query - required: false - 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 - - name: voter - description: voter defines the voter address for the proposals. - in: query - required: false - type: string - - name: depositor - description: depositor defines the deposit addresses from the proposals. - in: query - required: false + - name: channel_id + description: channel unique identifier + 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 + - name: port_id + description: port unique identifier + in: path + required: true 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 + - name: revision_number + description: revision number of the consensus state + in: path + required: true 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 + - name: revision_height + description: revision height of the consensus state + in: path + required: true 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 - /cosmos/gov/v1beta1/proposals/{proposal_id}: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/next_sequence: get: - summary: Proposal queries proposal details based on ProposalID. - operationId: Proposal + summary: >- + NextSequenceReceive returns the next receive sequence for a given + channel. + operationId: NextSequenceReceive responses: '200': description: A successful response. schema: type: object properties: - proposal: + next_sequence_receive: + type: string + format: uint64 + title: next sequence receive number + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - proposal_id: + revision_number: 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: the revision that the client is currently on + revision_height: 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. + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default propopsal 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: - 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. - 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. + RevisionNumber the same. However some consensus algorithms may + choose to + reset the height in certain conditions e.g. hard forks, + state-machine - NOTE: The amount field is an Int which implements the - custom method + breaking changes In these cases, the RevisionNumber is + incremented so that - 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: >- - QueryProposalResponse is the response type for the Query/Proposal - RPC method. + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QuerySequenceResponse is the request type for the + Query/QueryNextSequenceReceiveResponse RPC method default: description: An unexpected error response. schema: @@ -12980,59 +20788,63 @@ paths: "value": "1.212s" } parameters: - - name: proposal_id - description: proposal_id defines the unique id of the proposal. + - name: channel_id + description: channel unique identifier + in: path + required: true + type: string + - name: port_id + description: port unique identifier in: path required: true type: string - format: uint64 tags: - Query - /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_acknowledgements: get: - summary: Deposits queries all deposits of a single proposal. - operationId: Deposits + summary: >- + PacketAcknowledgements returns all the packet acknowledgements + associated + + with a channel. + operationId: PacketAcknowledgements responses: '200': description: A successful response. schema: type: object properties: - deposits: + acknowledgements: type: array items: type: object properties: - proposal_id: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: type: string format: uint64 - depositor: + description: packet sequence. + data: 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. - + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve + and store - NOTE: The amount field is an Int which implements the - custom method + packet commitments, acknowledgements, and receipts. - signatures required by gogoproto. - description: >- - Deposit defines an amount deposited by an account address to - an active + Caller is responsible for knowing the context necessary to + interpret this - proposal. + state as a commitment, acknowledgement, or a receipt. pagination: - description: pagination defines the pagination in the response. + title: pagination response type: object properties: next_key: @@ -13049,9 +20861,48 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryDepositsResponse is the response type for the Query/Deposits - RPC method. + 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; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryPacketAcknowledgemetsResponse is the request type for the + Query/QueryPacketAcknowledgements RPC method default: description: An unexpected error response. schema: @@ -13242,12 +21093,16 @@ paths: "value": "1.212s" } parameters: - - name: proposal_id - description: proposal_id defines the unique id of the proposal. + - name: channel_id + description: channel unique identifier + in: path + required: true + type: string + - name: port_id + description: port unique identifier in: path required: true type: string - format: uint64 - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -13304,53 +21159,71 @@ paths: in: query required: false type: boolean + - name: packet_commitment_sequences + description: list of packet sequences. + in: query + required: false + type: array + items: + type: string + format: uint64 + collectionFormat: multi tags: - Query - /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits/{depositor}: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_acks/{sequence}: get: - summary: >- - Deposit queries single deposit information based proposalID, - depositAddr. - operationId: Deposit + summary: PacketAcknowledgement queries a stored packet acknowledgement hash. + operationId: PacketAcknowledgement responses: '200': description: A successful response. schema: type: object properties: - deposit: + acknowledgement: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - proposal_id: + revision_number: type: string format: uint64 - depositor: + title: the revision that the client is currently on + revision_height: 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. + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + RevisionNumber the same. However some consensus algorithms may + choose to - NOTE: The amount field is an Int which implements the - custom method + reset the height in certain conditions e.g. hard forks, + state-machine - signatures required by gogoproto. - description: >- - Deposit defines an amount deposited by an account address to - an active + breaking changes In these cases, the RevisionNumber is + incremented so that - proposal. - description: >- - QueryDepositResponse is the response type for the Query/Deposit - RPC method. + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: >- + QueryPacketAcknowledgementResponse defines the client query + response for a + + packet which also includes a proof and the height from which the + + proof was retrieved default: description: An unexpected error response. schema: @@ -13541,46 +21414,125 @@ paths: "value": "1.212s" } parameters: - - name: proposal_id - description: proposal_id defines the unique id of the proposal. + - name: channel_id + description: channel unique identifier in: path required: true type: string - format: uint64 - - name: depositor - description: depositor defines the deposit addresses from the proposals. + - name: port_id + description: port unique identifier + in: path + required: true + type: string + - name: sequence + description: packet sequence in: path required: true type: string + format: uint64 tags: - Query - /cosmos/gov/v1beta1/proposals/{proposal_id}/tally: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments: get: - summary: TallyResult queries the tally of a proposal vote. - operationId: TallyResult + summary: |- + PacketCommitments returns all the packet commitments hashes associated + with a channel. + operationId: PacketCommitments responses: '200': description: A successful response. schema: type: object properties: - tally: + commitments: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve + and store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to + interpret this + + state as a commitment, acknowledgement, or a receipt. + pagination: + title: pagination response type: object properties: - 'yes': + next_key: type: string - abstain: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - 'no': + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: type: string - no_with_veto: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string + format: uint64 + title: the height within the given revision description: >- - TallyResult defines a standard tally for a governance - proposal. - description: >- - QueryTallyResultResponse is the response type for the Query/Tally - RPC method. + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryPacketCommitmentsResponse is the request type for the + Query/QueryPacketCommitments RPC method default: description: An unexpected error response. schema: @@ -13771,111 +21723,126 @@ paths: "value": "1.212s" } parameters: - - name: proposal_id - description: proposal_id defines the unique id of the proposal. + - name: channel_id + description: channel unique identifier in: path required: true type: string + - name: port_id + description: port unique identifier + 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 - /cosmos/gov/v1beta1/proposals/{proposal_id}/votes: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_ack_sequences}/unreceived_acks: get: - summary: Votes queries votes of a given proposal. - operationId: Votes + summary: >- + UnreceivedAcks returns all the unreceived IBC acknowledgements + associated + + with a channel and sequences. + operationId: UnreceivedAcks responses: '200': description: A successful response. schema: type: object properties: - votes: + sequences: type: array items: - 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: >- - 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: string + format: uint64 + title: list of unreceived acknowledgement sequences + height: + title: query block height type: object properties: - next_key: + revision_number: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - was set, its value is undefined otherwise - description: >- - QueryVotesResponse is the response type for the Query/Votes RPC - method. + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryUnreceivedAcksResponse is the response type for the + Query/UnreceivedAcks RPC method default: description: An unexpected error response. schema: @@ -14066,146 +22033,80 @@ paths: "value": "1.212s" } parameters: - - name: proposal_id - description: proposal_id defines the unique id of the proposal. + - name: channel_id + description: channel unique identifier in: path required: true 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 - - 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 + - name: port_id + description: port unique identifier + in: path + required: true 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 + - name: packet_ack_sequences + description: list of acknowledgement sequences + in: path + required: true + type: array + items: + type: string + format: uint64 + collectionFormat: csv + minItems: 1 tags: - Query - /cosmos/gov/v1beta1/proposals/{proposal_id}/votes/{voter}: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_commitment_sequences}/unreceived_packets: get: - summary: Vote queries voted information based on proposalID, voterAddr. - operationId: Vote + summary: >- + UnreceivedPackets returns all the unreceived IBC packets associated with + a + + channel and sequences. + operationId: UnreceivedPackets responses: '200': description: A successful response. schema: type: object properties: - vote: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived packet sequences + height: + title: query block height type: object properties: - proposal_id: + revision_number: type: string format: uint64 - voter: + title: the revision that the client is currently on + revision_height: 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. + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + RevisionNumber the same. However some consensus algorithms may + choose to - Since: cosmos-sdk 0.43 - title: 'Since: cosmos-sdk 0.43' - description: >- - Vote defines a vote on a governance proposal. + reset the height in certain conditions e.g. hard forks, + state-machine - 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. + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryUnreceivedPacketsResponse is the response type for the + Query/UnreceivedPacketCommitments RPC method default: description: An unexpected error response. schema: @@ -14396,258 +22297,83 @@ paths: "value": "1.212s" } parameters: - - name: proposal_id - description: proposal_id defines the unique id of the proposal. + - name: channel_id + description: channel unique identifier in: path required: true type: string - format: uint64 - - name: voter - description: voter defines the oter address for the proposals. + - name: port_id + description: port unique identifier in: path required: true type: string + - name: packet_commitment_sequences + description: list of packet sequences + in: path + required: true + type: array + items: + type: string + format: uint64 + collectionFormat: csv + minItems: 1 tags: - Query - /cosmos/mint/v1beta1/annual_provisions: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{sequence}: get: - summary: AnnualProvisions current minting annual provisions value. - operationId: AnnualProvisions + summary: PacketCommitment queries a stored packet commitment hash. + operationId: PacketCommitment responses: '200': description: A successful response. schema: type: object properties: - annual_provisions: + commitment: 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. - 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 - /cosmos/mint/v1beta1/inflation: - get: - summary: Inflation returns the current minting inflation value. - operationId: Inflation - responses: - '200': - description: A successful response. - schema: - type: object - properties: - inflation: + title: packet associated with the request fields + proof: type: string format: byte - description: inflation is the current minting inflation value. - description: >- - QueryInflationResponse is the response type for the - Query/Inflation 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 - /cosmos/mint/v1beta1/params: - get: - summary: Params returns the total set of minting parameters. - operationId: MintParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - description: params defines the parameters of the module. + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved 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: + revision_number: type: string format: uint64 - title: expected blocks per year - 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 - /cosmos/params/v1beta1/params: - get: - summary: |- - Params queries a specific parameter of a module, given its subspace and - key. - operationId: Params - responses: - '200': - description: A successful response. - schema: - type: object - properties: - param: - description: param defines the queried parameter. - type: object - properties: - subspace: - type: string - key: - type: string - value: - type: string - description: >- - QueryParamsResponse is 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: subspace - description: subspace defines the module to query the parameter for. - in: query - required: false - type: string - - name: key - description: key defines the key of the parameter in the subspace. - in: query - required: false - type: string - tags: - - Query - /cosmos/slashing/v1beta1/params: - get: - summary: Params queries the parameters of slashing module - operationId: SlashingParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - type: object - properties: - signed_blocks_window: - type: string - format: int64 - min_signed_per_window: + title: the revision that the client is currently on + revision_height: type: string - format: byte - downtime_jail_duration: - type: string - slash_fraction_double_sign: - type: string - format: byte - slash_fraction_downtime: - type: string - format: byte + format: uint64 + title: the height within the given revision description: >- - Params represents the parameters used for by the slashing - module. + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset title: >- - QueryParamsResponse is the response type for the Query/Params RPC - method + QueryPacketCommitmentResponse defines the client query response + for a packet + + which also includes a proof and the height from which the proof + was + + retrieved default: description: An unexpected error response. schema: @@ -14667,371 +22393,253 @@ paths: properties: type_url: type: string - value: - type: string - format: byte - tags: - - Query - /cosmos/slashing/v1beta1/signing_infos: - get: - summary: SigningInfos queries signing info of all validators - operationId: SigningInfos - responses: - '200': - description: A successful response. - schema: - type: object - properties: - info: - 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: - type: string - format: int64 description: >- - Index which is incremented each time the validator was a - bonded + A URL/resource name that uniquely identifies the type of + the serialized - in a block and may have signed a precommit or not. This - in conjunction with the + protocol buffer message. This string must contain at + least - `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 + one "/" character. The last segment of the URL's path + must represent - 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. + the fully qualified name of the type (as in - Note that `Sum(MissedBlocksBitArray)` always equals - `MissedBlocksCounter`. - description: >- - ValidatorSigningInfo defines a validator's signing info for - monitoring their + `path/google.protobuf.Duration`). The name should be in + a canonical form - liveness activity. - title: info is the signing info of all validators - pagination: - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + (e.g., leading "." is not accepted). - 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. + In practice, teams usually precompile into the binary + all types that they - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - title: >- - QuerySigningInfosResponse is the response type for the - Query/SigningInfos RPC + expect it to use in the context of Any. However, for + URLs which use the - 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 + 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: 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. + + 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 + ==== - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /cosmos/slashing/v1beta1/signing_infos/{cons_address}: - get: - summary: SigningInfo queries the signing info of given cons address - operationId: SigningInfo - responses: - '200': - description: A successful response. - schema: - type: object - properties: - val_signing_info: - 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 + The JSON representation of an `Any` value uses the regular - in a block and may have signed a precommit or not. This in - conjunction with the + representation of the deserialized, embedded message, with + an - `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 + additional field `@type` which contains the type URL. + Example: - 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. + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - Note that `Sum(MissedBlocksBitArray)` always equals - `MissedBlocksCounter`. - description: >- - ValidatorSigningInfo defines a validator's signing info for - monitoring their + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - 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 + If the embedded message type is well-known and has a custom + JSON - 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 + 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: cons_address - description: cons_address is the address to query signing info of + - name: channel_id + description: channel unique identifier + in: path + required: true + type: string + - name: port_id + description: port unique identifier + in: path + required: true + type: string + - name: sequence + description: packet sequence in: path required: true type: string + format: uint64 tags: - Query - /cosmos/staking/v1beta1/delegations/{delegator_addr}: + /ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_receipts/{sequence}: get: summary: >- - DelegatorDelegations queries all delegations of a given delegator - address. - operationId: DelegatorDelegations + PacketReceipt queries if a given packet sequence has been received on + the + + queried chain + operationId: PacketReceipt responses: '200': description: A successful response. schema: 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 + received: + type: boolean + title: success flag for if receipt exists + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - owned by one delegator, and is associated with the - voting power of one + RevisionNumber the same. However some consensus algorithms may + choose to - validator. - balance: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + reset the height in certain conditions e.g. hard forks, + state-machine + breaking changes In these cases, the RevisionNumber is + incremented so that - NOTE: The amount field is an Int which implements the - custom method + height continues to be monitonically increasing even as the + RevisionHeight - signatures required by gogoproto. - description: >- - DelegationResponse is equivalent to Delegation except that - it contains a + gets reset + title: >- + QueryPacketReceiptResponse defines the client query response for a + packet - 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 - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + receipt which also includes a proof, and the height from which the + proof was - was set, its value is undefined otherwise - description: |- - QueryDelegatorDelegationsResponse is response type for the - Query/DelegatorDelegations RPC method. + retrieved default: description: An unexpected error response. schema: @@ -15222,194 +22830,118 @@ paths: "value": "1.212s" } parameters: - - name: delegator_addr - description: delegator_addr defines the delegator address to query for. + - name: channel_id + description: channel unique identifier 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 + - name: port_id + description: port unique identifier + in: path + required: true 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 + - name: sequence + description: packet sequence + in: path + required: true 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 - /cosmos/staking/v1beta1/delegators/{delegator_addr}/redelegations: + /ibc/core/channel/v1/connections/{connection}/channels: get: - summary: Redelegations queries redelegations of given address. - operationId: Redelegations + summary: |- + ConnectionChannels queries all the channels associated with a connection + end. + operationId: ConnectionChannels responses: '200': description: A successful response. schema: type: object properties: - redelegation_responses: + channels: type: array items: type: object properties: - redelegation: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: >- + State defines if a channel is in one of the following + states: + + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: >- + - ORDER_NONE_UNSPECIFIED: zero-value for channel + ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end type: object properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of - the delegator. - validator_src_address: + port_id: type: string description: >- - validator_src_address is the validator redelegation - source operator address. - validator_dst_address: + port on the counterparty chain which owns the other + end of the channel. + channel_id: 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. - entries: + title: channel end on the counterparty chain + connection_hops: 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 - - contains a balance in addition to shares which is more - suitable for client + type: string + title: >- + list of connection identifiers, in order, along which + packets sent on - responses. + this channel will travel + version: + type: string + title: >- + opaque channel version, which is agreed upon during the + handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier description: >- - RedelegationResponse is equivalent to a Redelegation except - that its entries - - contain a balance in addition to shares which is more - suitable for client + IdentifiedChannel defines a channel with additional port and + channel - responses. + identifier fields. + description: list of channels associated with a connection. pagination: - description: pagination defines the pagination in the response. + title: pagination response type: object properties: next_key: @@ -15426,11 +22958,48 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryRedelegationsResponse is response type for the - Query/Redelegations RPC + description: >- + PageResponse is to be embedded in gRPC response messages where + the - method. + corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryConnectionChannelsResponse is the Response type for the + Query/QueryConnectionChannels RPC method default: description: An unexpected error response. schema: @@ -15621,21 +23190,11 @@ paths: "value": "1.212s" } parameters: - - name: delegator_addr - description: delegator_addr defines the delegator address to query for. + - name: connection + description: connection unique identifier in: path required: true type: string - - name: src_validator_addr - description: src_validator_addr defines the validator address to redelegate from. - in: query - required: false - type: string - - name: dst_validator_addr - description: dst_validator_addr defines the validator address to redelegate to. - in: query - required: false - type: string - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -15694,94 +23253,32 @@ paths: type: boolean tags: - Query - /cosmos/staking/v1beta1/delegators/{delegator_addr}/unbonding_delegations: + /ibc/client/v1/params: get: - summary: >- - DelegatorUnbondingDelegations queries all unbonding delegations of a - given - - delegator address. - operationId: DelegatorUnbondingDelegations + summary: ClientParams queries all parameters of the ibc client. + operationId: ClientParams responses: '200': description: A successful response. schema: type: object properties: - unbonding_responses: - 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: - 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. - pagination: - description: pagination defines the pagination in the response. + params: + description: params defines the parameters of the module. type: object properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise + allowed_clients: + type: array + items: + type: string + description: >- + allowed_clients defines the list of allowed client state + types. description: >- - QueryUnbondingDelegatorDelegationsResponse is response type for - the + QueryClientParamsResponse is the response type for the + Query/ClientParams RPC - Query/UnbondingDelegatorDelegations RPC method. + method. default: description: An unexpected error response. schema: @@ -15971,93 +23468,27 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - parameters: - - name: delegator_addr - description: delegator_addr defines the delegator address to query 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 - - 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 - /cosmos/staking/v1beta1/delegators/{delegator_addr}/validators: + /ibc/core/client/v1/client_states: get: - summary: |- - DelegatorValidators queries all validators info for given delegator - address. - operationId: StakingDelegatorValidators + summary: ClientStates queries all the IBC light clients of a chain. + operationId: ClientStates responses: '200': description: A successful response. schema: type: object properties: - validators: + client_states: type: array items: type: object properties: - operator_address: + client_id: type: string - description: >- - operator_address defines the address of the validator's - operator; bech encoded in JSON. - consensus_pubkey: + title: client identifier + client_state: type: object properties: type_url: @@ -16234,134 +23665,15 @@ paths: "@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. + title: client state 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 + IdentifiedClientState defines a client state with an + additional client - exchange rate. Voting power can be calculated as total - bonded shares - - multiplied by exchange rate. - description: validators defines the the validators' info of a delegator. + identifier field. + description: list of stored ClientStates of the chain. pagination: - description: pagination defines the pagination in the response. + title: pagination response type: object properties: next_key: @@ -16378,9 +23690,21 @@ paths: PageRequest.count_total was set, its value is undefined otherwise - description: |- - QueryDelegatorValidatorsResponse is response type for the - Query/DelegatorValidators RPC method. + 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; + } + description: >- + QueryClientStatesResponse is the response type for the + Query/ClientStates RPC + + method. default: description: An unexpected error response. schema: @@ -16571,11 +23895,6 @@ paths: "value": "1.212s" } parameters: - - name: delegator_addr - description: delegator_addr defines the delegator address to query for. - in: path - required: true - type: string - name: pagination.key description: |- key is a value returned in PageResponse.next_key to begin @@ -16634,328 +23953,229 @@ paths: type: boolean tags: - Query - /cosmos/staking/v1beta1/delegators/{delegator_addr}/validators/{validator_addr}: + /ibc/core/client/v1/client_states/{client_id}: get: - summary: |- - DelegatorValidator queries validator info for given delegator validator - pair. - operationId: DelegatorValidator + summary: ClientState queries an IBC light client. + operationId: ClientState responses: '200': description: A successful response. schema: type: object properties: - validator: + client_state: 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 type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + 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 2: Pack and unpack a message in Java. + URL that describes the type of the serialized message. - 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: + 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: client state associated with the request identifier + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: 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: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string - description: >- - min_self_delegation is the validator's self declared - minimum self delegation. + format: uint64 + title: the height within the given revision description: >- - Validator defines a validator, together with the total amount - of the + Normally the RevisionHeight is incremented at each height + while keeping - Validator's bond shares and their exchange rate to coins. - Slashing results in + RevisionNumber the same. However some consensus algorithms may + choose to - a decrease in the exchange rate, allowing correct calculation - of future + reset the height in certain conditions e.g. hard forks, + state-machine - undelegations without iterating over delegators. When coins - are delegated to + breaking changes In these cases, the RevisionNumber is + incremented so that - this validator, the validator is credited with a delegation - whose number of + height continues to be monitonically increasing even as the + RevisionHeight - bond shares is based on the amount of coins delegated divided - by the current + gets reset + description: >- + QueryClientStateResponse is the response type for the + Query/ClientState RPC - exchange rate. Voting power can be calculated as total bonded - shares + method. Besides the client state, it includes a proof and the + height from - multiplied by exchange rate. - description: |- - QueryDelegatorValidatorResponse response type for the - Query/DelegatorValidator RPC method. + which the proof was retrieved. default: description: An unexpected error response. schema: @@ -17142,432 +24362,34 @@ paths: field. Example (for message [google.protobuf.Duration][]): { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - parameters: - - name: delegator_addr - description: delegator_addr defines the delegator address to query for. - in: path - required: true - type: string - - name: validator_addr - description: validator_addr defines the validator address to query for. - in: path - required: true - type: string - tags: - - Query - /cosmos/staking/v1beta1/historical_info/{height}: - get: - summary: HistoricalInfo queries the historical info for given height. - operationId: HistoricalInfo - responses: - '200': - description: A successful response. - schema: - type: object - properties: - hist: - description: hist defines the historical info at the given height. - 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 Tendermint 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 - - 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 - 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. - 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. + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: client_id + description: client state unique identifier + in: path + required: true + type: string + tags: + - Query + /ibc/core/client/v1/client_status/{client_id}: + get: + summary: Status queries the status of an IBC client. + operationId: ClientStatus + responses: + '200': + description: A successful response. + schema: + type: object + properties: + status: + type: string description: >- - QueryHistoricalInfoResponse is response type for the - Query/HistoricalInfo RPC + QueryClientStatusResponse is the response type for the + Query/ClientStatus RPC - method. + method. It returns the current status of the IBC client. default: description: An unexpected error response. schema: @@ -17758,53 +24580,274 @@ paths: "value": "1.212s" } parameters: - - name: height - description: height defines at which height to query the historical info. + - name: client_id + description: client unique identifier in: path required: true type: string - format: int64 tags: - Query - /cosmos/staking/v1beta1/params: + /ibc/core/client/v1/consensus_states/{client_id}: get: - summary: Parameters queries the staking parameters. - operationId: StakingParams + summary: |- + ConsensusStates queries all the consensus state associated with a given + client. + operationId: ConsensusStates responses: '200': description: A successful response. schema: type: object properties: - params: - description: params holds all the parameters of this module. + consensus_states: + type: array + items: + type: object + properties: + height: + title: consensus state height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each + height while keeping + + RevisionNumber the same. However some consensus + algorithms may choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as + the RevisionHeight + + gets reset + consensus_state: + 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: consensus state + description: >- + ConsensusStateWithHeight defines a consensus state with an + additional height + + field. + title: consensus states associated with the identifier + pagination: + title: pagination response type: object properties: - unbonding_time: + next_key: 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: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - description: bond_denom defines the bondable coin denomination. - description: >- - QueryParamsResponse is response type for the Query/Params RPC - method. + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: |- + QueryConsensusStatesResponse is the response type for the + Query/ConsensusStates RPC method default: description: An unexpected error response. schema: @@ -17910,111 +24953,380 @@ paths: ... } - 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); + } + + 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: client_id + description: client identifier + 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 + /ibc/core/client/v1/consensus_states/{client_id}/revision/{revision_number}/height/{revision_height}: + get: + summary: >- + ConsensusState queries a consensus state associated with a client state + at + + a given height. + operationId: ConsensusState + responses: + '200': + description: A successful response. + schema: + type: object + properties: + consensus_state: + 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); - } + 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 + '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" - } - tags: - - Query - /cosmos/staking/v1beta1/pool: - get: - summary: Pool queries the pool info. - operationId: Pool - responses: - '200': - description: A successful response. - schema: - type: object - properties: - pool: - description: pool defines the pool info. + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: >- + consensus state associated with the client identifier at the + given height + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - not_bonded_tokens: + revision_number: type: string - bonded_tokens: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string - description: QueryPoolResponse is response type for the Query/Pool RPC method. + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: >- + QueryConsensusStateResponse is the response type for the + Query/ConsensusState + + RPC method default: description: An unexpected error response. schema: @@ -18204,352 +25516,220 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } + parameters: + - name: client_id + description: client identifier + in: path + required: true + type: string + - name: revision_number + description: consensus state revision number + in: path + required: true + type: string + format: uint64 + - name: revision_height + description: consensus state revision height + in: path + required: true + type: string + format: uint64 + - name: latest_height + description: >- + latest_height overrrides the height field and queries the latest + stored + + ConsensusState. + in: query + required: false + type: boolean tags: - Query - /cosmos/staking/v1beta1/validators: + /ibc/core/client/v1/upgraded_client_states: get: - summary: Validators queries all validators that match the given status. - operationId: Validators + summary: UpgradedClientState queries an Upgraded IBC light client. + operationId: UpgradedClientState responses: '200': description: A successful response. schema: type: object properties: - 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: - 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. - + upgraded_client_state: + 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. - description: >- - Validator defines a validator, together with the total - amount of the + 'type.googleapis.com/full.type.name' as the type URL and the + unpack - Validator's bond shares and their exchange rate to coins. - Slashing results in + methods only use the fully qualified type name after the last + '/' - a decrease in the exchange rate, allowing correct - calculation of future + in the type URL, for example "foo.bar.com/x/y.z" will yield + type - undelegations without iterating over delegators. When coins - are delegated to + name "y.z". - 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 + JSON - multiplied by exchange rate. - description: validators contains all the queried validators. - pagination: - description: pagination defines the pagination in the response. - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - 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: >- - QueryValidatorsResponse is response type for the Query/Validators - RPC method + 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: client state associated with the request identifier + description: |- + QueryUpgradedClientStateResponse is the response type for the + Query/UpgradedClientState RPC method. default: description: An unexpected error response. schema: @@ -18739,390 +25919,194 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - parameters: - - name: status - description: status enables to query for validators matching a given status. - in: query - required: false - 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 - /cosmos/staking/v1beta1/validators/{validator_addr}: + /ibc/core/client/v1/upgraded_consensus_states: get: - summary: Validator queries validator info for given validator address. - operationId: Validator + summary: UpgradedConsensusState queries an Upgraded IBC consensus state. + operationId: >- + ../../tmp-swagger-gen/ibc/core/client/v1/query.swagger.jsonUpgradedConsensusState responses: '200': description: A successful response. schema: type: object properties: - validator: + upgraded_consensus_state: 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 type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + 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 2: Pack and unpack a message in Java. + URL that describes the type of the serialized message. - 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. - description: >- - Validator defines a validator, together with the total amount - of the + additional field `@type` which contains the type URL. Example: - Validator's bond shares and their exchange rate to coins. - Slashing results in + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - a decrease in the exchange rate, allowing correct calculation - of future + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - undelegations without iterating over delegators. When coins - are delegated to + If the embedded message type is well-known and has a custom + JSON - this validator, the validator is credited with a delegation - whose number of + representation, that representation will be embedded adding a + field - bond shares is based on the amount of coins delegated divided - by the current + `value` which holds the custom JSON in addition to the `@type` - exchange rate. Voting power can be calculated as total bonded - shares + field. Example (for message [google.protobuf.Duration][]): - multiplied by exchange rate. - title: >- - QueryValidatorResponse is response type for the Query/Validator - RPC method + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: Consensus state associated with the request identifier + description: |- + QueryUpgradedConsensusStateResponse is the response type for the + Query/UpgradedConsensusState RPC method. default: description: An unexpected error response. schema: @@ -19312,95 +26296,61 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - parameters: - - name: validator_addr - description: validator_addr defines the validator address to query for. - in: path - required: true - type: string tags: - Query - /cosmos/staking/v1beta1/validators/{validator_addr}/delegations: + /ibc/core/connection/v1/client_connections/{client_id}: get: - summary: ValidatorDelegations queries delegate info for given validator. - operationId: ValidatorDelegations + summary: |- + ClientConnections queries the connection paths associated with a client + state. + operationId: ClientConnections responses: '200': description: A successful response. schema: type: object properties: - delegation_responses: + connection_paths: 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. - pagination: - description: pagination defines the pagination in the response. + type: string + description: slice of all the connection paths associated with a client. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was generated type: object properties: - next_key: + revision_number: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - was set, its value is undefined otherwise + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset title: |- - QueryValidatorDelegationsResponse is response type for the - Query/ValidatorDelegations RPC method + QueryClientConnectionsResponse is the response type for the + Query/ClientConnections RPC method default: description: An unexpected error response. schema: @@ -19591,130 +26541,172 @@ paths: "value": "1.212s" } parameters: - - name: validator_addr - description: validator_addr defines the validator address to query for. + - name: client_id + description: client identifier associated with a connection 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 - /cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}: + /ibc/core/connection/v1/connections: get: - summary: Delegation queries delegate info for given validator delegator pair. - operationId: Delegation + summary: Connections queries all the IBC connections of a chain. + operationId: Connections responses: '200': description: A successful response. schema: 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 + connections: + type: array + items: + type: object + properties: + id: + type: string + description: connection identifier. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: >- + list of features compatible with the specified + identifier 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 + Version defines the versioning scheme used to + negotiate the IBC verison in - owned by one delegator, and is associated with the voting - power of one + the connection handshake. + title: >- + IBC version which can be utilised to determine encodings + or protocols for - validator. - balance: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. + channels or packets utilising this connection + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain + associated with a given + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty + chain associated with a - NOTE: The amount field is an Int which implements the - custom method + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. - signatures required by gogoproto. + The constructed key from the Path and the key will + be append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: delay period associated with this connection. + description: >- + IdentifiedConnection defines a connection with additional + connection + + identifier field. + description: list of stored connections of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- - DelegationResponse is equivalent to Delegation except that it - contains a + PageResponse is to be embedded in gRPC response messages where + the - balance in addition to shares which is more suitable for - client responses. + corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset description: >- - QueryDelegationResponse is response type for the Query/Delegation - RPC method. + QueryConnectionsResponse is the response type for the + Query/Connections RPC + + method. default: description: An unexpected error response. schema: @@ -19905,82 +26897,208 @@ paths: "value": "1.212s" } parameters: - - name: validator_addr - description: validator_addr defines the validator address to query for. - 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 - - name: delegator_addr - description: delegator_addr defines the delegator address to query for. - in: path - required: true + 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 - /cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}/unbonding_delegation: + /ibc/core/connection/v1/connections/{connection_id}: get: - summary: |- - UnbondingDelegation queries unbonding info for given validator delegator - pair. - operationId: UnbondingDelegation + summary: Connection queries an IBC connection end. + operationId: Connection responses: '200': description: A successful response. schema: type: object properties: - unbond: + connection: + title: connection associated with the request identifier type: object properties: - delegator_address: - type: string - description: >- - delegator_address is the bech32-encoded address of the - delegator. - validator_address: + client_id: type: string - description: >- - validator_address is the bech32-encoded address of the - validator. - entries: + description: client associated with this connection. + versions: 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: + identifier: type: string - description: balance defines the tokens to receive at completion. + title: unique version identifier + features: + type: array + items: + type: string + title: >- + list of features compatible with the specified + identifier description: >- - UnbondingDelegationEntry defines an unbonding object - with relevant metadata. - description: entries are the unbonding delegation entries. + Version defines the versioning scheme used to negotiate + the IBC verison in + + the connection handshake. + description: >- + IBC version which can be utilised to determine encodings + or protocols for + + channels or packets utilising this connection. + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain + associated with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty + chain associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be + append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: >- + delay period that must pass before a consensus state can + be used for + + packet-verification NOTE: delay period logic is only + implemented by some + + clients. description: >- - UnbondingDelegation stores all of a single delegator's - unbonding bonds + ConnectionEnd defines a stateful object on a chain connected + to another - for a single validator in an time-ordered list. + separate one. + + NOTE: there must only be 2 defined ConnectionEnds to establish + + a connection between two chains. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping + + RevisionNumber the same. However some consensus algorithms may + choose to + + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset description: >- - QueryDelegationResponse is response type for the - Query/UnbondingDelegation + QueryConnectionResponse is the response type for the + Query/Connection RPC - RPC method. + method. Besides the connection end, it includes a proof and the + height from + + which the proof was retrieved. default: description: An unexpected error response. schema: @@ -20171,104 +27289,249 @@ paths: "value": "1.212s" } parameters: - - name: validator_addr - description: validator_addr defines the validator address to query for. - in: path - required: true - type: string - - name: delegator_addr - description: delegator_addr defines the delegator address to query for. + - name: connection_id + description: connection unique identifier in: path required: true type: string tags: - Query - /cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations: + /ibc/core/connection/v1/connections/{connection_id}/client_state: get: - summary: >- - ValidatorUnbondingDelegations queries unbonding delegations of a - validator. - operationId: ValidatorUnbondingDelegations + summary: |- + ConnectionClientState queries the client state associated with the + connection. + operationId: ConnectionClientState responses: '200': description: A successful response. schema: type: object properties: - unbonding_responses: - 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: - 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. + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + type: object + properties: + type_url: + type: string 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 + A URL/resource name that uniquely identifies the type + of the serialized - for a single validator in an time-ordered list. - pagination: - description: pagination defines the pagination in the response. + 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: client state + description: >- + IdentifiedClientState defines a client state with an + additional client + + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - next_key: + revision_number: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + format: uint64 + title: the revision that the client is currently on + revision_height: type: string format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - was set, its value is undefined otherwise - description: >- - QueryValidatorUnbondingDelegationsResponse is response type for - the + RevisionNumber the same. However some consensus algorithms may + choose to - Query/ValidatorUnbondingDelegations RPC method. + reset the height in certain conditions e.g. hard forks, + state-machine + + breaking changes In these cases, the RevisionNumber is + incremented so that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryConnectionClientStateResponse is the response type for the + Query/ConnectionClientState RPC method default: description: An unexpected error response. schema: @@ -20443,166 +27706,252 @@ paths: "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 + + `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: connection_id + description: connection identifier + in: path + required: true + type: string + tags: + - Query + /ibc/core/connection/v1/connections/{connection_id}/consensus_state/revision/{revision_number}/height/{revision_height}: + get: + summary: |- + ConnectionConsensusState queries the consensus state associated with the + connection. + operationId: ConnectionConsensusState + responses: + '200': + description: A successful response. + schema: + type: object + properties: + consensus_state: + 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". - 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][]): + JSON - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - parameters: - - name: validator_addr - description: validator_addr defines the validator address to query 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 + The JSON representation of an `Any` value uses the regular - 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. + representation of the deserialized, embedded message, with an - 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 + additional field `@type` which contains the type URL. Example: - a count of the total number of items available for pagination in - UIs. + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - count_total is only respected when offset is used. It is ignored - when key + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - 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. + 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` - Since: cosmos-sdk 0.43 - in: query - required: false - type: boolean - tags: - - Query - /cosmos/tx/v1beta1/simulate: - post: - summary: Simulate simulates executing a transaction for estimating gas usage. - operationId: Simulate - responses: - '200': - description: A successful response. - schema: - type: object - properties: - gas_info: - description: gas_info is the information about gas used in the simulation. + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - gas_wanted: + revision_number: type: string format: uint64 - description: >- - GasWanted is the maximum units of work we allow this tx to - perform. - gas_used: + title: the revision that the client is currently on + revision_height: 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 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height + while keeping - length prefixed in order to separate data from multiple - message executions. - 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 + RevisionNumber the same. However some consensus algorithms may + choose to - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx - and ResponseDeliverTx. + reset the height in certain conditions e.g. hard forks, + state-machine - Later, transactions may be queried using these events. - description: >- - Events contains a slice of Event objects that were emitted - during message + breaking changes In these cases, the RevisionNumber is + incremented so that - or handler execution. - description: |- - SimulateResponse is the response type for the - Service.SimulateRPC method. + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryConnectionConsensusStateResponse is the response type for the + Query/ConnectionConsensusState RPC method default: description: An unexpected error response. schema: @@ -20793,22 +28142,51 @@ paths: "value": "1.212s" } parameters: - - name: body - in: body + - name: connection_id + description: connection identifier + in: path required: true - schema: - $ref: '#/definitions/cosmos.tx.v1beta1.SimulateRequest' + type: string + - name: revision_number + in: path + required: true + type: string + format: uint64 + - name: revision_height + in: path + required: true + type: string + format: uint64 tags: - - Service - /cosmos/tx/v1beta1/txs: + - Query + /compute/v1beta1/code: get: - summary: GetTxsEvent fetches txs by event. - operationId: GetTxsEvent + summary: Query all contract codes on-chain + operationId: Codes responses: '200': description: A successful response. schema: - $ref: '#/definitions/cosmos.tx.v1beta1.GetTxsEventResponse' + type: object + properties: + code_infos: + type: array + items: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string default: description: An unexpected error response. schema: @@ -20998,420 +28376,37 @@ paths: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - parameters: - - name: events - description: events is the list of transaction event type. - in: query - required: false - type: array - items: - type: string - collectionFormat: multi - - 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 - - name: order_by - description: |2- - - 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 - in: query - required: false - type: string - enum: - - ORDER_BY_UNSPECIFIED - - ORDER_BY_ASC - - ORDER_BY_DESC - default: ORDER_BY_UNSPECIFIED tags: - - Service - post: - summary: BroadcastTx broadcast transaction. - operationId: BroadcastTx + - Query + /compute/v1beta1/code/{code_id}: + get: + summary: Query a specific contract code + operationId: Code responses: '200': description: A successful response. schema: type: object properties: - tx_response: + code_info: 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: + code_id: 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. - 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: + format: uint64 + creator: type: string - description: Additional information. May be non-deterministic. - gas_wanted: + format: byte + data_hash: type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: + format: byte + source: 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 - - `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" - } - timestamp: + builder: 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, - - 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. - - Later, transactions may be queried using these events. - description: >- - Events defines all the events emitted by processing a - transaction. Note, - - these events include those emitted by processing all the - messages and those - - emitted from the ante handler. Whereas Logs contains the - events, with - - additional metadata, emitted only by processing the - messages. - - - 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. + data: + type: string + format: byte default: description: An unexpected error response. schema: @@ -21602,52 +28597,70 @@ paths: "value": "1.212s" } parameters: - - name: body - in: body + - name: code_id + in: path required: true - schema: - 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: >- - BroadcastTxRequest is the request type for the - Service.BroadcastTxRequest - - RPC method. + type: string + format: uint64 tags: - - Service - /cosmos/tx/v1beta1/txs/block/{height}: + - Query + /compute/v1beta1/code/{code_id}/contracts: get: - summary: GetBlockWithTxs fetches a block with decoded txs. - description: 'Since: cosmos-sdk 0.45.2' - operationId: GetBlockWithTxs + summary: Query contract + operationId: ContractsByCode responses: '200': description: A successful response. schema: - $ref: '#/definitions/cosmos.tx.v1beta1.GetBlockWithTxsResponse' + type: object + properties: + contract_infos: + type: array + items: + type: object + properties: + address: + type: string + format: byte + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: >- + bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: >- + never show this in query results, just use for + sorting + + (Note: when using json tag "-" amino refused to + serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: >- + BlockHeight is the block the contract was + created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block + (actual transaction index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: >- + ContractInfoWithAddress adds the address (key) to the + ContractInfo representation default: description: An unexpected error response. schema: @@ -21838,79 +28851,63 @@ paths: "value": "1.212s" } parameters: - - name: height - description: height is the height of the block to query. + - name: code_id in: path required: true type: string - 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: - - Service - /cosmos/tx/v1beta1/txs/{hash}: + - Query + /compute/v1beta1/contract/{address}: get: - summary: GetTx fetches a tx by hash. - operationId: GetTx + summary: Query contract + operationId: ContractInfo responses: '200': description: A successful response. schema: - $ref: '#/definitions/cosmos.tx.v1beta1.GetTxResponse' + type: object + properties: + address: + type: string + format: byte + title: address is the address of the contract + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: >- + bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: >- + never show this in query results, just use for sorting + + (Note: when using json tag "-" amino refused to serialize + it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block + (actual transaction index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: >- + QueryContractInfoResponse is the response type for the + Query/ContractInfo RPC method default: description: An unexpected error response. schema: @@ -22101,32 +29098,27 @@ paths: "value": "1.212s" } parameters: - - name: hash - description: hash is the tx hash to query, encoded as a hex string. + - name: address + description: address is the address of the contract to query in: path required: true type: string + format: byte tags: - - Service - /cosmos/upgrade/v1beta1/applied_plan/{name}: + - Query + /compute/v1beta1/contract/{address}/smart: get: - summary: AppliedPlan queries a previously applied upgrade plan by its name. - operationId: AppliedPlan + summary: Query contract + operationId: SmartContractState responses: '200': description: A successful response. schema: type: object properties: - height: + data: 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. + format: byte default: description: An unexpected error response. schema: @@ -22317,4480 +29309,4554 @@ paths: "value": "1.212s" } parameters: - - name: name - description: name is the name of the applied plan to query for. + - name: address + description: address is the address of the contract + in: path + required: true + type: string + format: byte + - name: query_data + in: query + required: false + type: string + format: byte + tags: + - Query + /mauth/v1beta1/address-to-ica: + get: + summary: >- + QueryInterchainAccountFromAddress returns the interchain account for + given owner address on a given connection pair + operationId: InterchainAccountFromAddress + responses: + '200': + description: A successful response. + schema: + type: object + properties: + interchain_account_address: + type: string + title: >- + QueryInterchainAccountFromAddressResponse the response type for + the Query/InterchainAccountAddress RPC + 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: query + required: false + type: string + - name: connection_id + in: query + required: false + type: string + tags: + - Query + /registration/v1beta1/encrypted-seed/{pub_key}: + get: + summary: Returns the encrypted seed for a registered node by public key + operationId: EncryptedSeed + responses: + '200': + description: A successful response. + schema: + type: object + properties: + encrypted_seed: + type: string + format: byte + 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: pub_key in: path required: true type: string + format: byte tags: - Query - /cosmos/upgrade/v1beta1/current_plan: + /registration/v1beta1/registration-key: get: - summary: CurrentPlan queries the current upgrade plan. - operationId: CurrentPlan + summary: Returns the key used for registration + operationId: RegistrationKey responses: '200': description: A successful response. schema: type: object properties: - plan: - description: plan is the current upgrade plan. + key: + type: string + format: byte + 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 + /registration/v1beta1/tx-key: + get: + summary: Returns the key used for transactions + operationId: TxKey + responses: + '200': + description: A successful response. + schema: + type: object + properties: + key: + type: string + format: byte + 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 + /node_info: + get: + description: Information about the connected node + summary: The properties of the connected node + tags: + - Secret REST + produces: + - application/json + responses: + '200': + description: Node status + schema: + type: object + properties: + application_version: + properties: + build_tags: + type: string + client_name: + type: string + commit: + type: string + go: + type: string + name: + type: string + server_name: + type: string + version: + type: string + node_info: + properties: + id: + type: string + moniker: + type: string + example: validator-name + protocol_version: + properties: + p2p: + type: string + example: 7 + block: + type: string + example: 10 + app: + type: string + example: 0 + network: + type: string + example: gaia-2 + channels: + type: string + listen_addr: + type: string + example: 192.168.56.1:26656 + version: + description: Tendermint version + type: string + example: 0.15.0 + other: + description: more information on versions + type: object + properties: + tx_index: + type: string + example: 'on' + rpc_address: + type: string + example: tcp://0.0.0.0:26657 + '500': + description: Failed to query node status + /syncing: + get: + summary: Syncing state of node + tags: + - Tendermint RPC + description: Get if the node is currently syning with other nodes + produces: + - application/json + responses: + '200': + description: Node syncing status + schema: + type: object + properties: + syncing: + type: boolean + '500': + description: Server internal error + /blocks/latest: + get: + summary: Get the latest block + tags: + - Tendermint RPC + produces: + - application/json + responses: + '200': + description: The latest block + schema: + type: object + properties: + block_meta: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + block: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: '0' + height: + type: string + example: '0' + round: + type: string + example: '0' + timestamp: + type: string + example: '2017-12-30T05:53:09.287+01:00' + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: >- + 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + '500': + description: Server internal error + /blocks/{height}: + get: + summary: Get a block at a certain height + tags: + - Tendermint RPC + produces: + - application/json + parameters: + - in: path + name: height + description: Block height + required: true + type: number + x-example: 1 + responses: + '200': + description: The block at a specific height + schema: + type: object + properties: + block_meta: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + block: type: object properties: - name: - type: string - description: >- - Sets the name for the upgrade. This name will be used by - the upgraded - - version of the software to apply any special "on-upgrade" - commands during - - 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 - - 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 - - has been removed from the SDK. - - 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: + header: type: object properties: - type_url: + chain_id: 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: + example: cosmoshub-2 + height: + type: number + example: 1 + time: 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: >- - QueryCurrentPlanResponse is the response type for the - Query/CurrentPlan 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: + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: 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: + evidence: + type: array + items: 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 - /cosmos/upgrade/v1beta1/module_versions: + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: '0' + height: + type: string + example: '0' + round: + type: string + example: '0' + timestamp: + type: string + example: '2017-12-30T05:53:09.287+01:00' + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: >- + 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + '400': + description: Invalid height + '404': + description: Request block height doesn't + '500': + description: Server internal error + /validatorsets/latest: get: - summary: ModuleVersions queries the list of module versions from state. - description: 'Since: cosmos-sdk 0.43' - operationId: ModuleVersions + summary: Get the latest validator set + tags: + - Tendermint RPC + produces: + - application/json responses: '200': - description: A successful response. + description: The validator set at the latest block height schema: type: object properties: - module_versions: + block_height: + type: string + validators: type: array items: type: object properties: - name: + address: type: string - title: name of the app module - version: + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + pub_key: type: string - format: uint64 - title: consensus version of the app module - description: |- - ModuleVersion specifies a module and its consensus version. - - 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 - - RPC method. - - - Since: cosmos-sdk 0.43 - default: - description: An unexpected error response. + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: '1000' + proposer_priority: + type: string + example: '1000' + '500': + description: Server internal error + /validatorsets/{height}: + get: + summary: Get a validator set a certain height + tags: + - Tendermint RPC + produces: + - application/json + parameters: + - in: path + name: height + description: Block height + required: true + type: number + x-example: 1 + responses: + '200': + description: The validator set at a specific block height schema: type: object properties: - error: - type: string - code: - type: integer - format: int32 - message: + block_height: type: string - details: + validators: type: array items: 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: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + pub_key: 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" - } + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: '1000' + proposer_priority: + type: string + example: '1000' + '400': + description: Invalid height + '404': + description: Block at height not available + '500': + description: Server internal error + /txs/{hash}: + get: + deprecated: true + summary: Get a Tx by hash + tags: + - Transactions + description: Retrieve a transaction using its hash. + produces: + - application/json parameters: - - name: module_name - description: |- - module_name is a field to query a specific module - consensus version from state. Leaving this empty will - fetch the full list of module versions from state. - in: query - required: false + - in: path + name: hash + description: Tx hash + required: true + type: string + x-example: BCBE20E8D46758B96AE5883B792858296AC06E51435490FBDCAE25A72B3CC76B + responses: + '200': + description: Tx with the provided hash + schema: + type: object + properties: + hash: + type: string + example: >- + D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: '200000' + gas_used: + type: string + example: '26354' + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + '500': + description: Internal Server Error + /txs: + get: + deprecated: true + tags: + - Transactions + summary: Search transactions + description: Search transactions by events. + produces: + - application/json + parameters: + - in: query + name: message.action + type: string + description: >- + transaction events such as 'message.action=send' which results in + the following endpoint: 'GET /txs?message.action=send'. note that + each module documents its own events. look for xx_events.md in the + corresponding cosmos-sdk/docs/spec directory + x-example: send + - in: query + name: message.sender type: string + description: >- + transaction tags with sender: 'GET + /txs?message.action=send&message.sender=cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv' + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: query + name: page + description: Page number + type: integer + x-example: 1 + - in: query + name: limit + description: Maximum number of items per page + type: integer + x-example: 1 + - in: query + name: tx.minheight + type: integer + description: transactions on blocks with height greater or equal this value + x-example: 25 + - in: query + name: tx.maxheight + type: integer + description: transactions on blocks with height less than or equal this value + x-example: 800000 + responses: + '200': + description: All txs matching the provided events + schema: + type: object + properties: + total_count: + type: number + example: 1 + count: + type: number + example: 1 + page_number: + type: number + example: 1 + page_total: + type: number + example: 1 + limit: + type: number + example: 30 + txs: + type: array + items: + type: object + properties: + hash: + type: string + example: >- + D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: '200000' + gas_used: + type: string + example: '26354' + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + '400': + description: Invalid search events + '500': + description: Internal Server Error + post: tags: - - Query - /cosmos/upgrade/v1beta1/upgraded_consensus_state/{last_height}: - get: - summary: >- - UpgradedConsensusState queries the consensus state that will serve - - as a trusted kernel for the next version of this chain. It will only be - - stored at the last height of this chain. - - UpgradedConsensusState RPC not supported with legacy querier - - This rpc is deprecated now that IBC has its own replacement - - (https://github.com/cosmos/ibc-go/blob/2c880a22e9f9cc75f62b527ca94aa75ce1106001/proto/ibc/core/client/v1/query.proto#L54) - operationId: UpgradedConsensusState - responses: - '200': - description: A successful response. + - Transactions + summary: Broadcast a signed tx + description: Broadcast a signed tx to a full node + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: txBroadcast + description: >- + The tx must be a signed StdTx. The supported broadcast modes include + `"block"`(return after tx commit), `"sync"`(return afer CheckTx) and + `"async"`(return right away). + required: true schema: type: object properties: - upgraded_consensus_state: + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + required: true + mode: + required: true type: string - format: byte - title: 'Since: cosmos-sdk 0.43' - description: >- - QueryUpgradedConsensusStateResponse is the response type for the - Query/UpgradedConsensusState - - RPC method. - default: - description: An unexpected error response. + example: block + sequences: + required: false + type: array + items: + type: string + example: '1' + fee_granter: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + required: false + responses: + '200': + description: Tx broadcasting result schema: type: object properties: - error: + check_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - '' + - '' + deliver_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - '' + - '' + hash: type: string - code: + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + height: 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: + '500': + description: Internal Server Error + /txs/encode: + post: + deprecated: true + tags: + - Transactions + summary: Encode a transaction to the Amino wire format + description: >- + Encode a transaction (signed or not) from JSON to base64-encoded Amino + serialized bytes + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: tx + description: The tx to encode + required: true + schema: + type: object + properties: + tx: + type: object + properties: + msg: + type: array + items: 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" - } + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + responses: + '200': + description: The tx was successfully decoded and re-encoded + schema: + type: object + properties: + tx: + type: string + example: The base64-encoded Amino-serialized bytes for the tx + '400': + description: The tx was malformated + '500': + description: Server internal error + /txs/decode: + post: + deprecated: true + tags: + - Transactions + summary: Decode a transaction from the Amino wire format + description: >- + Decode a transaction (signed or not) from base64-encoded Amino + serialized bytes to JSON + consumes: + - application/json + produces: + - application/json parameters: - - name: last_height - description: |- - last height of the current chain must be sent in request - as this is the height under which next consensus state is stored - in: path + - in: body + name: tx + description: The tx to decode required: true - type: string - format: int64 - tags: - - Query - /cosmos/authz/v1beta1/grants: - get: - summary: Returns list of `Authorization`, granted to the grantee by the granter. - operationId: Grants + schema: + type: object + properties: + tx: + type: string + example: >- + SvBiXe4KPqijYZoKFFHEzJ8c2HPAfv2EFUcIhx0yPagwEhTy0vPA+GGhCEslKXa4Af0uB+mfShoMCgVzdGFrZRIDMTAwEgQQwJoM responses: '200': - description: A successful response. + description: The tx was successfully decoded schema: type: object properties: - grants: + msg: type: array items: - type: object - properties: - authorization: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: 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 - - 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: + example: stake + 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) - ... - - 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" - } - expiration: - type: string - format: date-time - 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. + example: '50' + memo: + type: string + signature: type: object properties: - next_key: + signature: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - QueryGrantsResponse is the response type for the - Query/Authorizations 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" - } - parameters: - - name: granter - in: query - required: false - type: string - - name: grantee - in: query - required: false - type: string - - name: msg_type_url - description: >- - Optional, msg_type_url, when set, will query only grants matching - given msg type. - in: query - required: false - 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 + example: '0' + sequence: + type: string + example: '0' + '400': + description: The tx was malformated + '500': + description: Server internal error + /bank/balances/{address}: + get: + deprecated: true + summary: Get the account balances + tags: + - Bank + produces: + - application/json + parameters: + - in: path + name: address + description: Account address in bech32 format + required: true 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 + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + '200': + description: Account balances + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + '500': + description: Server internal error + /bank/accounts/{address}/transfers: + post: + deprecated: true + summary: Send coins from one account to another tags: - - Query - /cosmos/authz/v1beta1/grants/grantee/{grantee}: + - Bank + consumes: + - application/json + produces: + - application/json + parameters: + - in: path + name: address + description: Account address in bech32 format + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: body + name: account + description: The sender and tx information + required: true + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + responses: + '202': + description: Tx was succesfully generated + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid request + '500': + description: Server internal error + /bank/total: get: - summary: GranteeGrants returns a list of `GrantAuthorization` by grantee. - description: 'Since: cosmos-sdk 0.45.2' - operationId: GranteeGrants + deprecated: true + summary: Total supply of coins in the chain + tags: + - Bank + produces: + - application/json responses: '200': - description: A successful response. + description: OK schema: type: object properties: - grants: + total: type: array items: type: object properties: - granter: + denom: type: string - grantee: + example: stake + amount: type: string - authorization: + example: '50' + '500': + description: Internal Server Error + /bank/total/{denomination}: + parameters: + - in: path + name: denomination + description: Coin denomination + required: true + type: string + x-example: uatom + get: + deprecated: true + summary: Total supply of a single coin denomination + tags: + - Bank + produces: + - application/json + responses: + '200': + description: OK + schema: + type: string + '400': + description: Invalid coin denomination + '500': + description: Internal Server Error + /auth/accounts/{address}: + get: + deprecated: true + summary: Get the account information on blockchain + tags: + - Auth + produces: + - application/json + parameters: + - in: path + name: address + description: Account address + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + '200': + description: Account information on the blockchain + schema: + type: object + properties: + type: + type: string + value: + type: object + properties: + account_number: + type: string + address: + type: string + coins: + type: array + items: 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 - - 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: + example: stake + 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) - ... - - 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" - } - expiration: + example: '50' + public_key: + type: object + properties: + type: + type: string + value: + type: string + sequence: + type: string + '500': + description: Server internel error + /staking/delegators/{delegatorAddr}/delegations: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + get: + deprecated: true + summary: Get all delegations from a delegator + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: type: string - format: date-time - description: 'Since: cosmos-sdk 0.45.2' - 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 to the grantee. - pagination: - description: pagination defines an pagination for the response. + example: stake + amount: + type: string + example: '50' + '400': + description: Invalid delegator address + '500': + description: Internal Server Error + post: + summary: Submit delegation + parameters: + - in: body + name: delegation + description: Delegate an amount of liquid coins to a validator + schema: + type: object + properties: + base_req: type: object properties: - next_key: + from: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: type: string - format: uint64 - 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. - default: - description: An unexpected error response. + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + delegator_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + amount: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + tags: + - Staking + consumes: + - application/json + produces: + - application/json + responses: + '200': + description: OK schema: type: object properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: + msg: 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" - } + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid delegator address or delegation request body + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /staking/delegators/{delegatorAddr}/delegations/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query the current delegation between a delegator and a validator + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + '400': + description: Invalid delegator address or validator address + '500': + description: Internal Server Error + /staking/delegators/{delegatorAddr}/unbonding_delegations: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + get: + deprecated: true + summary: Get all unbonding delegations from a delegator + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + '400': + description: Invalid delegator address + '500': + description: Internal Server Error + post: + summary: Submit an unbonding delegation parameters: - - name: grantee - 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 + - in: body + name: delegation + description: Unbond an amount of bonded shares from a validator + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + delegator_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + amount: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' tags: - - Query - /cosmos/authz/v1beta1/grants/granter/{granter}: + - Staking + consumes: + - application/json + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid delegator address or unbonding delegation request body + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /staking/delegators/{delegatorAddr}/unbonding_delegations/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l get: - summary: GranterGrants returns list of `GrantAuthorization`, granted by granter. - description: 'Since: cosmos-sdk 0.45.2' - operationId: GranterGrants + deprecated: true + summary: Query all unbonding delegations between a delegator and a validator + tags: + - Staking + produces: + - application/json responses: '200': - description: A successful response. + description: OK schema: type: object properties: - grants: + delegator_address: + type: string + validator_address: + type: string + entries: type: array items: type: object properties: - granter: + initial_balance: type: string - grantee: + balance: type: string - authorization: + creation_height: + type: string + min_time: + type: string + '400': + description: Invalid delegator address or validator address + '500': + description: Internal Server Error + /staking/redelegations: + parameters: + - in: query + name: delegator + description: Bech32 AccAddress of Delegator + required: false + type: string + - in: query + name: validator_from + description: Bech32 ValAddress of SrcValidator + required: false + type: string + - in: query + name: validator_to + description: Bech32 ValAddress of DstValidator + required: false + type: string + get: + deprecated: true + summary: Get all redelegations (filter by query params) + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + $ref: '#/definitions/Redelegation' + '500': + description: Internal Server Error + /staking/delegators/{delegatorAddr}/redelegations: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + post: + deprecated: true + summary: Submit a redelegation + parameters: + - in: body + name: delegation + description: The sender and tx information + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: 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 - - 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: + example: stake + 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) - ... - - 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" - } - expiration: + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + delegator_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + validator_src_addressess: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + validator_dst_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + shares: + type: string + example: '100' + tags: + - Staking + consumes: + - application/json + produces: + - application/json + responses: + '200': + description: Tx was succesfully generated + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid delegator address or redelegation request body + '500': + description: Internal Server Error + /staking/delegators/{delegatorAddr}/validators: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + get: + deprecated: true + summary: Query all validators that a delegator is bonded to + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: '0' + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: '0' + unbonding_time: + type: string + example: '1970-01-01T00:00:00Z' + commission: + type: object + properties: + rate: type: string - format: date-time - description: 'Since: cosmos-sdk 0.45.2' - 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. + example: '0' + max_rate: + type: string + example: '0' + max_change_rate: + type: string + example: '0' + update_time: + type: string + example: '1970-01-01T00:00:00Z' + '400': + description: Invalid delegator address + '500': + description: Internal Server Error + /staking/delegators/{delegatorAddr}/validators/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 ValAddress of Delegator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query a validator that a delegator is bonded to + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: type: object properties: - next_key: + moniker: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + identity: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - QueryGranterGrantsResponse is the response type for the - Query/GranterGrants RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: type: string - code: + example: '0' + bond_intra_tx_counter: type: integer - format: int32 - message: + example: 0 + unbonding_height: type: string - details: - type: array - items: + example: '0' + unbonding_time: + type: string + example: '1970-01-01T00:00:00Z' + commission: + type: object + properties: + rate: + type: string + example: '0' + max_rate: + type: string + example: '0' + max_change_rate: + type: string + example: '0' + update_time: + type: string + example: '1970-01-01T00:00:00Z' + '400': + description: Invalid delegator address or validator address + '500': + description: Internal Server Error + /staking/validators: + get: + deprecated: true + summary: >- + Get all validator candidates. By default it returns only the bonded + validators. + parameters: + - in: query + name: status + type: string + description: >- + The validator bond status. Must be either 'bonded', 'unbonded', or + 'unbonding'. + x-example: bonded + - in: query + name: page + description: The page number. + type: integer + x-example: 1 + - in: query + name: limit + description: The maximum number of items per page. + type: integer + x-example: 1 + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: type: object properties: - type_url: + moniker: 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: + identity: 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: granter - 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 + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: '0' + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: '0' + unbonding_time: + type: string + example: '1970-01-01T00:00:00Z' + commission: + type: object + properties: + rate: + type: string + example: '0' + max_rate: + type: string + example: '0' + max_change_rate: + type: string + example: '0' + update_time: + type: string + example: '1970-01-01T00:00:00Z' + '500': + description: Internal Server Error + /staking/validators/{validatorAddr}: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query the information from a single validator + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: + type: string + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: '0' + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: '0' + unbonding_time: + type: string + example: '1970-01-01T00:00:00Z' + commission: + type: object + properties: + rate: + type: string + example: '0' + max_rate: + type: string + example: '0' + max_change_rate: + type: string + example: '0' + update_time: + type: string + example: '1970-01-01T00:00:00Z' + '400': + description: Invalid validator address + '500': + description: Internal Server Error + /staking/validators/{validatorAddr}/delegations: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Get all delegations from a validator tags: - - Query - /cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}: + - Staking + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + '400': + description: Invalid validator address + '500': + description: Internal Server Error + /staking/validators/{validatorAddr}/unbonding_delegations: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l get: - summary: Allowance returns fee granted to the grantee by the granter. - operationId: Allowance + deprecated: true + summary: Get all unbonding delegations from a validator + tags: + - Staking + produces: + - application/json responses: '200': - description: A successful response. + description: OK + schema: + type: array + items: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + '400': + description: Invalid validator address + '500': + description: Internal Server Error + /staking/pool: + get: + deprecated: true + summary: Get the current state of the staking pool + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK schema: 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 and filtered 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 - - 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. - 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. - default: - description: An unexpected error response. + loose_tokens: + type: string + bonded_tokens: + type: string + inflation_last_time: + type: string + inflation: + type: string + date_last_commission_reset: + type: string + prev_bonded_shares: + type: string + '500': + description: Internal Server Error + /staking/parameters: + get: + deprecated: true + summary: Get the current staking parameter values + tags: + - Staking + produces: + - application/json + responses: + '200': + description: OK schema: type: object properties: - error: + inflation_rate_change: type: string - code: + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + unbonding_time: + type: string + max_validators: type: integer - format: int32 - message: + bond_denom: 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" - } + '500': + description: Internal Server Error + /slashing/signing_infos: + get: + deprecated: true + summary: Get sign info of given all validators + description: Get sign info of all validators + produces: + - application/json + tags: + - Slashing parameters: - - name: granter - description: >- - granter is the address of the user granting an allowance of their - funds. - in: path + - in: query + name: page + description: Page number + type: integer required: true - type: string - - name: grantee - description: >- - grantee is the address of the user being granted an allowance of - another user's funds. - in: path + x-example: 1 + - in: query + name: limit + description: Maximum number of items per page + type: integer required: true - type: string + x-example: 5 + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + start_height: + type: string + index_offset: + type: string + jailed_until: + type: string + missed_blocks_counter: + type: string + '400': + description: Invalid validator public key for one of the validators + '500': + description: Internal Server Error + /slashing/validators/{validatorAddr}/unjail: + post: + deprecated: true + summary: Unjail a jailed validator + description: Send transaction to unjail a jailed validator + consumes: + - application/json + produces: + - application/json tags: - - Query - /cosmos/feegrant/v1beta1/allowances/{grantee}: - get: - summary: Allowances returns all the grants for address. - operationId: Allowances + - Slashing + parameters: + - type: string + description: Bech32 validator address + name: validatorAddr + required: true + in: path + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + - description: '' + name: UnjailBody + in: body + required: true + schema: + type: object + properties: + base_req: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' responses: '200': - description: A successful response. + description: Tx was succesfully generated schema: type: object properties: - allowances: + msg: 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 and filtered fee - allowance. + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: 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 - - 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: + example: stake + amount: 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. + example: '50' + memo: + type: string + signature: type: object properties: - next_key: + signature: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: 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. - default: - description: An unexpected error response. + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid validator address or base_req + '500': + description: Internal Server Error + /slashing/parameters: + get: + deprecated: true + summary: Get the current slashing parameters + tags: + - Slashing + produces: + - application/json + responses: + '200': + description: OK schema: type: object properties: - error: + max_evidence_age: type: string - code: - type: integer - format: int32 - message: + signed_blocks_window: 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" - } + min_signed_per_window: + type: string + double_sign_unbond_duration: + type: string + downtime_unbond_duration: + type: string + slash_fraction_double_sign: + type: string + slash_fraction_downtime: + type: string + '500': + description: Internal Server Error + /gov/proposals: + post: + deprecated: true + summary: Submit a proposal + description: Send transaction to submit a proposal + consumes: + - application/json + produces: + - application/json + tags: + - Governance parameters: - - name: grantee - in: path + - description: >- + valid value of `"proposal_type"` can be `"text"`, + `"parameter_change"`, `"software_upgrade"` + name: post_proposal_body + in: body 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 - /registration/v1beta1/encrypted-seed/{pub_key}: - get: - summary: Returns the encrypted seed for a registered node by public key - operationId: EncryptedSeed - responses: - '200': - description: A successful response. schema: type: object properties: - encrypted_seed: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + title: type: string - format: byte - default: - description: An unexpected error response. - schema: - type: object - properties: - error: + description: type: string - code: - type: integer - format: int32 - message: + proposal_type: type: string - details: + example: text + proposer: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + initial_deposit: type: array items: type: object properties: - type_url: + denom: type: string - value: + example: stake + amount: type: string - format: byte - parameters: - - name: pub_key - in: path - required: true - type: string - format: byte - tags: - - Query - /registration/v1beta1/registration-key: - get: - summary: Returns the key used for registration - operationId: RegistrationKey + example: '50' responses: '200': - description: A successful response. - schema: - type: object - properties: - key: - type: string - format: byte - default: - description: An unexpected error response. + description: Tx was succesfully generated schema: type: object properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: + msg: type: array items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid proposal body + '500': + description: Internal Server Error + get: + deprecated: true + summary: Query proposals + description: Query proposals information with parameters + produces: + - application/json + tags: + - Governance + parameters: + - in: query + name: voter + description: voter address + required: false + type: string + - in: query + name: depositor + description: depositor address + required: false + type: string + - in: query + name: status + description: >- + proposal status, valid values can be `"deposit_period"`, + `"voting_period"`, `"passed"`, `"rejected"` + required: false + type: string + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: type: object properties: - type_url: + 'yes': type: string - value: + example: '0.0000000000' + abstain: type: string - format: byte + example: '0.0000000000' + 'no': + type: string + example: '0.0000000000' + no_with_veto: + type: string + example: '0.0000000000' + submit_time: + type: string + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + voting_start_time: + type: string + '400': + description: Invalid query parameters + '500': + description: Internal Server Error + /gov/proposals/param_change: + post: + deprecated: true + summary: Generate a parameter change proposal transaction + description: Generate a parameter change proposal transaction + consumes: + - application/json + produces: + - application/json tags: - - Query - /registration/v1beta1/tx-key: - get: - summary: Returns the key used for transactions - operationId: TxKey - responses: - '200': - description: A successful response. + - Governance + parameters: + - description: >- + The parameter change proposal body that contains all parameter + changes + name: post_proposal_body + in: body + required: true schema: type: object properties: - key: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + title: type: string - format: byte - default: - description: An unexpected error response. - schema: - type: object - properties: - error: + x-example: Param Change + description: type: string - code: - type: integer - format: int32 - message: + x-example: Update max validators + proposer: type: string - details: + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + deposit: type: array items: type: object properties: - type_url: + denom: type: string - value: + example: stake + amount: type: string - format: byte - tags: - - Query - /compute/v1beta1/code: - get: - summary: Query all contract codes on-chain - operationId: Codes - responses: - '200': - description: A successful response. - schema: - type: object - properties: - code_infos: + example: '50' + changes: type: array items: type: object properties: - code_id: - type: string - format: uint64 - creator: - type: string - format: byte - data_hash: + subspace: type: string - format: byte - source: + example: staking + key: type: string - builder: + example: MaxValidators + subkey: type: string - default: - description: An unexpected error response. + example: '' + value: + type: object + responses: + '200': + description: The transaction was succesfully generated schema: type: object properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: + msg: 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 - /compute/v1beta1/code/{code_id}: + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid proposal body + '500': + description: Internal Server Error + /gov/proposals/{proposalId}: get: - summary: Query a specific contract code - operationId: Code + deprecated: true + summary: Query a proposal + description: Query a proposal by id + produces: + - application/json + tags: + - Governance + parameters: + - type: string + name: proposalId + required: true + in: path + x-example: '2' responses: '200': - description: A successful response. + description: OK schema: type: object properties: - code_info: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: type: object properties: - code_id: - type: string - format: uint64 - creator: + 'yes': type: string - format: byte - data_hash: + example: '0.0000000000' + abstain: type: string - format: byte - source: + example: '0.0000000000' + 'no': type: string - builder: + example: '0.0000000000' + no_with_veto: type: string - data: + example: '0.0000000000' + submit_time: type: string - format: byte - default: - description: An unexpected error response. + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + voting_start_time: + type: string + '400': + description: Invalid proposal id + '500': + description: Internal Server Error + /gov/proposals/{proposalId}/proposer: + get: + deprecated: true + summary: Query proposer + description: Query for the proposer for a proposal + produces: + - application/json + tags: + - Governance + parameters: + - type: string + name: proposalId + required: true + in: path + x-example: '2' + responses: + '200': + description: OK schema: type: object properties: - error: + proposal_id: type: string - code: - type: integer - format: int32 - message: + proposer: type: string - details: + '400': + description: Invalid proposal ID + '500': + description: Internal Server Error + /gov/proposals/{proposalId}/deposits: + get: + deprecated: true + summary: Query deposits + description: Query deposits by proposalId + produces: + - application/json + tags: + - Governance + parameters: + - type: string + name: proposalId + required: true + in: path + x-example: '2' + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + proposal_id: + type: string + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + '400': + description: Invalid proposal id + '500': + description: Internal Server Error + post: + deprecated: true + summary: Deposit tokens to a proposal + description: Send transaction to deposit tokens to a proposal + consumes: + - application/json + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: '2' + - description: '' + name: post_deposit_body + in: body + required: true + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + amount: type: array items: 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 - - 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: + example: stake + 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) - ... - - 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" - } + example: '50' + responses: + '200': + description: OK + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid proposal id or deposit body + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /gov/proposals/{proposalId}/deposits/{depositor}: + get: + deprecated: true + summary: Query deposit + description: Query deposit by proposalId and depositor address + produces: + - application/json + tags: + - Governance parameters: - - name: code_id - in: path + - type: string + description: proposal id + name: proposalId required: true - type: string - format: uint64 - tags: - - Query - /compute/v1beta1/code/{code_id}/contracts: - get: - summary: Query contract - operationId: ContractsByCode + in: path + x-example: '2' + - type: string + description: Bech32 depositor address + name: depositor + required: true + in: path + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv responses: '200': - description: A successful response. + description: OK schema: type: object properties: - contract_infos: + amount: type: array items: type: object properties: - address: + denom: type: string - format: byte - ContractInfo: + example: stake + amount: + type: string + example: '50' + proposal_id: + type: string + depositor: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + '400': + description: Invalid proposal id or depositor address + '404': + description: Found no deposit + '500': + description: Internal Server Error + /gov/proposals/{proposalId}/votes: + get: + deprecated: true + summary: Query voters + description: Query voters information by proposalId + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: '2' + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + voter: + type: string + proposal_id: + type: string + option: + type: string + '400': + description: Invalid proposal id + '500': + description: Internal Server Error + post: + deprecated: true + summary: Vote a proposal + description: Send transaction to vote a proposal + consumes: + - application/json + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: '2' + - description: >- + valid value of `"option"` field can be `"yes"`, `"no"`, + `"no_with_veto"` and `"abstain"` + name: post_vote_body + in: body + required: true + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: type: object properties: - code_id: + denom: type: string - format: uint64 - creator: + example: stake + amount: type: string - format: byte - label: + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + voter: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + option: + type: string + example: 'yes' + responses: + '200': + description: OK + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: type: string - title: >- - bytes admin = 3 [(gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - created: - title: >- - never show this in query results, just use for - sorting - - (Note: when using json tag "-" amino refused to - serialize it...) - type: object - properties: - block_height: - type: string - format: int64 - title: >- - BlockHeight is the block the contract was - created at - tx_index: - type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block - (actual transaction index, or gas consumed) - title: ContractInfo stores a WASM contract instance - title: >- - ContractInfoWithAddress adds the address (key) to the - ContractInfo representation - default: - description: An unexpected error response. + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid proposal id or vote body + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /gov/proposals/{proposalId}/votes/{voter}: + get: + deprecated: true + summary: Query vote + description: Query vote information by proposal Id and voter address + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: '2' + - type: string + description: Bech32 voter address + name: voter + required: true + in: path + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + '200': + description: OK schema: type: object properties: - error: + voter: type: string - code: - type: integer - format: int32 - message: + proposal_id: type: string - details: + option: + type: string + '400': + description: Invalid proposal id or voter address + '404': + description: Found no vote + '500': + description: Internal Server Error + /gov/proposals/{proposalId}/tally: + get: + deprecated: true + summary: Get a proposal's tally result at the current time + description: >- + Gets a proposal's tally result at the current time. If the proposal is + pending deposits (i.e status 'DepositPeriod') it returns an empty tally + result. + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: '2' + responses: + '200': + description: OK + schema: + type: object + properties: + 'yes': + type: string + example: '0.0000000000' + abstain: + type: string + example: '0.0000000000' + 'no': + type: string + example: '0.0000000000' + no_with_veto: + type: string + example: '0.0000000000' + '400': + description: Invalid proposal id + '500': + description: Internal Server Error + /gov/parameters/deposit: + get: + deprecated: true + summary: Query governance deposit parameters + description: >- + Query governance deposit parameters. The max_deposit_period units are in + nanoseconds. + produces: + - application/json + tags: + - Governance + responses: + '200': + description: OK + schema: + type: object + properties: + min_deposit: type: array items: 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 - - 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: + example: stake + 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) - ... - - 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: code_id - in: path - required: true - type: string - format: uint64 + example: '50' + max_deposit_period: + type: string + example: '86400000000000' + '400': + description: is not a valid query request path + '404': + description: Found no deposit parameters + '500': + description: Internal Server Error + /gov/parameters/tallying: + get: + deprecated: true + summary: Query governance tally parameters + description: Query governance tally parameters + produces: + - application/json tags: - - Query - /compute/v1beta1/contract/{address}: + - Governance + responses: + '200': + description: OK + schema: + properties: + threshold: + type: string + example: '0.5000000000' + veto: + type: string + example: '0.3340000000' + governance_penalty: + type: string + example: '0.0100000000' + '400': + description: is not a valid query request path + '404': + description: Found no tally parameters + '500': + description: Internal Server Error + /gov/parameters/voting: get: - summary: Query contract - operationId: ContractInfo + deprecated: true + summary: Query governance voting parameters + description: >- + Query governance voting parameters. The voting_period units are in + nanoseconds. + produces: + - application/json + tags: + - Governance responses: '200': - description: A successful response. + description: OK schema: - type: object properties: - address: + voting_period: type: string - format: byte - title: address is the address of the contract - ContractInfo: - type: object - properties: - code_id: - type: string - format: uint64 - creator: - type: string - format: byte - label: - type: string - title: >- - bytes admin = 3 [(gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - created: - title: >- - never show this in query results, just use for sorting - - (Note: when using json tag "-" amino refused to serialize - it...) - type: object - properties: - block_height: - type: string - format: int64 - title: BlockHeight is the block the contract was created at - tx_index: - type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block - (actual transaction index, or gas consumed) - title: ContractInfo stores a WASM contract instance - title: >- - QueryContractInfoResponse is the response type for the - Query/ContractInfo RPC method - default: - description: An unexpected error response. + example: '86400000000000' + '400': + description: is not a valid query request path + '404': + description: Found no voting parameters + '500': + description: Internal Server Error + /distribution/delegators/{delegatorAddr}/rewards: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf + get: + deprecated: true + summary: Get the total rewards balance from all delegations + description: >- + Get the sum of all the rewards earned by delegations by a single + delegator + produces: + - application/json + tags: + - Distribution + responses: + '200': + description: OK schema: type: object properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: + rewards: type: array items: type: object properties: - type_url: + validator_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: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + reward: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + total: + type: array + items: + type: object + properties: + 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 - - 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: address - description: address is the address of the contract to query - in: path - required: true - type: string - format: byte + example: stake + amount: + type: string + example: '50' + '400': + description: Invalid delegator address + '500': + description: Internal Server Error + post: + deprecated: true + summary: Withdraw all the delegator's delegation rewards + description: Withdraw all the delegator's delegation rewards tags: - - Query - /compute/v1beta1/contract/{address}/smart: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + responses: + '200': + description: OK + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid delegator address + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /distribution/delegators/{delegatorAddr}/rewards/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l get: - summary: Query contract - operationId: SmartContractState + deprecated: true + summary: Query a delegation reward + description: Query a single delegation reward by a delegator + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + '400': + description: Invalid delegator address + '500': + description: Internal Server Error + post: + deprecated: true + summary: Withdraw a delegation reward + description: Withdraw a delegator's delegation reward from a single validator + tags: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) responses: '200': - description: A successful response. + description: OK schema: type: object properties: - data: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: type: string - format: byte - default: - description: An unexpected error response. + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid delegator address or delegation body + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /distribution/delegators/{delegatorAddr}/withdraw_address: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf + get: + deprecated: true + summary: Get the rewards withdrawal address + description: >- + Get the delegations' rewards withdrawal address. This is the address in + which the user will receive the reward funds + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + '400': + description: Invalid delegator address + '500': + description: Internal Server Error + post: + deprecated: true + summary: Replace the rewards withdrawal address + description: Replace the delegations' rewards withdrawal address for a new one. + tags: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body schema: - type: object properties: - error: - type: string - code: - type: integer - format: int32 - message: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + withdraw_address: type: string - details: + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + responses: + '200': + description: OK + schema: + type: object + properties: + msg: 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: address - description: address is the address of the contract - in: path - required: true - type: string - format: byte - - name: query_data - in: query - required: false - type: string - format: byte - tags: - - Query -securityDefinitions: - kms: - type: basic -definitions: - CodeIdContracts: - type: object - properties: - height: - type: string - result: - type: array - items: - type: object - properties: - code-id: - type: number - creator: - type: string - label: - type: string - address: - type: string - IoExchPubkeyResponse: - type: object - properties: - height: - type: string - result: - type: object - properties: - ioExchPubkey: - type: string - ListContractSingle: - type: object - properties: - code-id: - type: number - creator: - type: string - label: - type: string - address: - type: string - ListCodeReponse: - type: object - properties: - height: - type: string - result: - type: array - items: - type: object - properties: - id: - type: number - creator: - type: string - data_hash: - type: string - source: - type: string - builder: - type: string - ListCodeSingle: - type: object - properties: - id: - type: number - creator: - type: string - data_hash: - type: string - source: - type: string - builder: - type: string - CodeHash: - type: object - properties: - height: - type: string - result: - type: string - CodeInfo: - type: object - properties: - code_hash: - type: string - creator: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid delegator or withdraw address + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /distribution/validators/{validatorAddr}: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true type: string - StoreCodeReq: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in conjunction with - generate_only) - wasm_bytes: + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Validator distribution information + description: Query the distribution information of a single validator + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + self_bond_rewards: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + val_commission: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + '400': + description: Invalid validator address + '500': + description: Internal Server Error + /distribution/validators/{validatorAddr}/outstanding_rewards: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - InstantiateContractReq: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Fee distribution outstanding rewards of a single validator + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: type: array items: type: object @@ -26801,56 +33867,28 @@ definitions: amount: type: string example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in conjunction with - generate_only) - init_coins: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - init_msg: + '500': + description: Internal Server Error + /distribution/validators/{validatorAddr}/rewards: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true type: string - description: json formatted string - example: '{}' - ExecuteContractReq: - type: object - properties: - base_req: - type: object - properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: - type: string - example: '1.2' - fees: + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Commission and self-delegation rewards of a single validator + description: Query the commission and self-delegation rewards of validator. + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: type: array items: type: object @@ -26861,384 +33899,135 @@ definitions: amount: type: string example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in conjunction with - generate_only) - coins: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - exec_msg: - type: string - example: '{}' - CheckTxResult: - type: object - properties: - code: - type: integer - data: - type: string - gas_used: - type: integer - gas_wanted: - type: integer - info: - type: string - log: - type: string - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - example: - code: 0 - data: data - log: log - gas_used: 5000 - gas_wanted: 10000 - info: info - tags: - - '' - - '' - DeliverTxResult: - type: object - properties: - code: - type: integer - data: - type: string - gas_used: - type: integer - gas_wanted: - type: integer - info: - type: string - log: - type: string - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - example: - code: 5 - data: data - log: log - gas_used: 5000 - gas_wanted: 10000 - info: info + '400': + description: Invalid validator address + '500': + description: Internal Server Error + post: + deprecated: true + summary: Withdraw the validator's rewards + description: Withdraw the validator's self-delegation and commissions rewards tags: - - '' - - '' - BroadcastTxCommitResult: - type: object - properties: - check_tx: - type: object - properties: - code: - type: integer - data: - type: string - gas_used: - type: integer - gas_wanted: - type: integer - info: - type: string - log: - type: string - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - example: - code: 0 - data: data - log: log - gas_used: 5000 - gas_wanted: 10000 - info: info - tags: - - '' - - '' - deliver_tx: - type: object - properties: - code: - type: integer - data: - type: string - gas_used: - type: integer - gas_wanted: - type: integer - info: - type: string - log: - type: string - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - example: - code: 5 - data: data - log: log - gas_used: 5000 - gas_wanted: 10000 - info: info - tags: - - '' - - '' - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - height: - type: integer - KVPair: - type: object - properties: - key: - type: string - value: - type: string - Msg: - type: string - Address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - ValidatorAddress: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - Coin: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - Hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - TxQuery: - type: object - properties: - hash: - type: string - example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 - height: - type: number - example: 368 - tx: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + responses: + '200': + description: OK + schema: type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: + properties: + msg: + type: array + items: + type: string + fee: type: object properties: - type: - type: string - example: tendermint/PubKeySecp256k1 - value: - type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - result: - type: object - properties: - log: - type: string - gas_wanted: - type: string - example: '200000' - gas_used: - type: string - example: '26354' - tags: - type: array - items: - type: object - properties: - key: - type: string - value: - type: string - PaginatedQueryTxs: - type: object - properties: - total_count: - type: number - example: 1 - count: - type: number - example: 1 - page_number: - type: number - example: 1 - page_total: - type: number - example: 1 - limit: - type: number - example: 30 - txs: - type: array - items: - type: object - properties: - hash: - type: string - example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 - height: - type: number - example: 368 - tx: - type: object - properties: - msg: - type: array - items: + gas: type: string - fee: - type: object - properties: - gas: - type: string - amount: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: + amount: + type: array + items: type: object properties: - type: + denom: type: string - example: tendermint/PubKeySecp256k1 - value: + example: stake + amount: type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - result: - type: object - properties: - log: - type: string - gas_wanted: - type: string - example: '200000' - gas_used: - type: string - example: '26354' - tags: - type: array - items: + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: type: object properties: - key: + type: type: string + example: tendermint/PubKeySecp256k1 value: type: string - StdTx: - type: object - properties: - msg: - type: array - items: - type: string - fee: - type: object - properties: - gas: - type: string - amount: + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Invalid validator address + '401': + description: Key password is wrong + '500': + description: Internal Server Error + /distribution/community_pool: + get: + deprecated: true + summary: Community pool parameters + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: type: array items: type: object @@ -27249,938 +34038,1657 @@ definitions: amount: type: string example: '50' - memo: - type: string - signature: - type: object - properties: - signature: - type: string - example: >- - MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= - pub_key: - type: object + '500': + description: Internal Server Error + /distribution/parameters: + get: + deprecated: true + summary: Fee distribution parameters + tags: + - Distribution + produces: + - application/json + responses: + '200': + description: OK + schema: properties: - type: + base_proposer_reward: type: string - example: tendermint/PubKeySecp256k1 - value: + bonus_proposer_reward: type: string - example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH - account_number: - type: string - example: '0' - sequence: - type: string - example: '0' - BlockID: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: + community_tax: + type: string + '500': + description: Internal Server Error + /minting/parameters: + get: + deprecated: true + summary: Minting module parameters + tags: + - Mint + produces: + - application/json + responses: + '200': + description: OK + schema: + properties: + mint_denom: + type: string + inflation_rate_change: + type: string + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + blocks_per_year: + type: string + '500': + description: Internal Server Error + /minting/inflation: + get: + deprecated: true + summary: Current minting inflation value + tags: + - Mint + produces: + - application/json + responses: + '200': + description: OK + schema: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - BlockHeader: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: - type: object - properties: - hash: + '500': + description: Internal Server Error + /minting/annual-provisions: + get: + deprecated: true + summary: Current minting annual provisions value + tags: + - Mint + produces: + - application/json + responses: + '200': + description: OK + schema: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: + '500': + description: Internal Server Error + /wasm/code: + post: + summary: Generate wasm store code message + tags: + - Wasm + produces: + - application/json + parameters: + - in: body + name: store code request body + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + wasm_bytes: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + responses: + '200': + description: OK + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Bad request + '500': + description: Internal Server Error + get: + summary: List code info + tags: + - Wasm + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + id: + type: number + creator: + type: string + data_hash: + type: string + source: + type: string + builder: + type: string + /wasm/code/{codeID}: + post: + summary: Instantiate wasm contract message + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: codeID + description: code ID you want to instantiate + required: true + type: number + - in: body + name: instantiate contract request body + schema: + type: object + properties: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + init_coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + init_msg: + type: string + description: json formatted string + example: '{}' + responses: + '200': + description: OK + schema: type: object properties: - total: - type: number - example: 0 - hash: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: - type: object - properties: - block: - type: string - example: 10 - app: - type: string - example: 0 - Block: - type: object - properties: - header: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + '400': + description: Bad request + '500': + description: Internal Server Error + get: + summary: Get code info of the code ID + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + type: number + responses: + '200': + description: OK + schema: type: object properties: - hash: + height: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: + result: type: object properties: - total: - type: number - example: 0 - hash: + code_hash: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: + creator: + type: string + /wasm/code/{codeID}/contracts: + get: + summary: Get info about all contracts deployed with a code ID + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + type: number + responses: + '200': + description: OK + schema: type: object properties: - block: - type: string - example: 10 - app: + height: type: string - example: 0 - txs: - type: array - items: - type: string - evidence: - type: array - items: + result: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + code-id: + type: number + creator: + type: string + label: + type: string + address: + type: string + /wasm/contract/{contractAddress}: + post: + summary: Execute wasm contract message + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: contractAddress + description: contract address you want to execute + required: true type: string - last_commit: - type: object - properties: - block_id: + - in: body + name: execute contract request body + schema: type: object properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: + base_req: type: object properties: - total: - type: number - example: 0 - hash: + from: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - precommits: - type: array - items: - type: object - properties: - validator_address: - type: string - validator_index: - type: string - example: '0' - height: - type: string - example: '0' - round: - type: string - example: '0' - timestamp: - type: string - example: '2017-12-30T05:53:09.287+01:00' - type: - type: number - example: 2 - block_id: + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in + conjunction with generate_only) + coins: + type: array + items: type: object properties: - hash: + denom: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: + example: stake + amount: + type: string + example: '50' + exec_msg: + type: string + example: '{}' + responses: + '200': + description: OK + schema: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: type: object properties: - total: - type: number - example: 0 - hash: + denom: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - signature: - type: string - example: >- - 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== - BlockQuery: - type: object - properties: - block_meta: - type: object - properties: - header: - type: object - properties: - chain_id: - type: string - example: cosmoshub-2 - height: - type: number - example: 1 - time: + example: stake + amount: + type: string + example: '50' + memo: type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: + signature: type: object properties: - hash: + signature: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: type: object properties: - total: - type: number - example: 0 - hash: + type: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: - type: object - properties: - block: + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: type: string - example: 10 - app: + example: '0' + sequence: type: string - example: 0 - block_id: + example: '0' + '400': + description: Bad request + '500': + description: Internal Server Error + /wasm/contract/{contractAddress}/code-hash: + get: + summary: Get stored contract-hash information + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to lookup + required: true + type: string + - in: query + name: query_msg + description: json formatted query msg + required: true + type: string + x-example: '{}' + produces: + - application/json + responses: + '200': + description: OK + schema: + type: object + properties: + height: + type: string + result: + type: string + /wasm/contract/{contractAddress}/query/{query}: + get: + summary: Get stored information with store key + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to lookup + required: true + type: string + - in: path + name: query + description: hex encoded data for the query + required: true + type: string + - in: query + name: encoding + description: encoding of the query data (only hex supported) + required: false + type: string + produces: + - application/json + responses: + '200': + description: OK + schema: type: object properties: - hash: + height: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: + result: type: object properties: - total: - type: number - example: 0 - hash: + key: type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - block: - type: object - properties: - header: + value: + type: string + /wasm/code/{codeID}/hash: + get: + summary: Get code ID data hash + tags: + - Wasm + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + type: number + produces: + - application/json + responses: + '200': + description: OK + schema: type: object properties: - chain_id: - type: string - example: cosmoshub-2 height: - type: number - example: 1 - time: - type: string - example: '2017-12-30T05:53:09.287+01:00' - num_txs: - type: number - example: 0 - last_block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - total_txs: - type: number - example: 35 - last_commit_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - data_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - next_validators_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - consensus_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - app_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - last_results_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - evidence_hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - proposer_address: type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - version: + result: type: object properties: - block: + height: type: string - example: 10 - app: + result: type: string - example: 0 - txs: - type: array - items: - type: string - evidence: - type: array - items: - type: string - last_commit: + '404': + description: Not Found + /reg/consensus-io-exch-pubkey: + get: + tags: + - Reg + summary: Get chain public key + description: Get chain public key + operationId: consensus-io-exch-pubkey + responses: + '200': + description: OK + schema: type: object properties: - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - precommits: - type: array - items: + type: object + properties: + height: + type: string + result: type: object properties: - validator_address: - type: string - validator_index: - type: string - example: '0' - height: - type: string - example: '0' - round: - type: string - example: '0' - timestamp: - type: string - example: '2017-12-30T05:53:09.287+01:00' - type: - type: number - example: 2 - block_id: - type: object - properties: - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - parts: - type: object - properties: - total: - type: number - example: 0 - hash: - type: string - example: EE5F3404034C524501629B56E0DDC38FAD651F04 - signature: + ioExchPubkey: type: string - example: >- - 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== - DelegationDelegatorReward: - type: object - properties: - validator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - reward: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - DelegatorTotalRewards: - type: object - properties: - rewards: - type: array - items: - type: object - properties: - validator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - reward: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - total: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - BaseReq: + '404': + description: Not Found +definitions: + cosmos.auth.v1beta1.Params: type: object properties: - from: - type: string - example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc - description: Sender address or Keybase name to generate a transaction - memo: - type: string - example: Sent via Cosmos Voyager 🚀 - chain_id: - type: string - example: Cosmos-Hub - account_number: - type: string - example: '0' - sequence: - type: string - example: '1' - gas: - type: string - example: '200000' - gas_adjustment: + max_memo_characters: type: string - example: '1.2' - fees: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - simulate: - type: boolean - example: false - description: >- - Estimate gas for a transaction (cannot be used in conjunction with - generate_only) - TendermintValidator: - type: object - properties: - address: + format: uint64 + tx_sig_limit: type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - pub_key: + format: uint64 + tx_size_cost_per_byte: type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - voting_power: + format: uint64 + sig_verify_cost_ed25519: type: string - example: '1000' - proposer_priority: + format: uint64 + sig_verify_cost_secp256k1: type: string - example: '1000' - TextProposal: + format: uint64 + description: Params defines the parameters for the auth module. + cosmos.auth.v1beta1.QueryAccountResponse: type: object properties: - proposal_id: - type: integer - title: - type: string - description: - type: string - proposal_type: - type: string - proposal_status: - type: string - final_tally_result: + account: type: object properties: - 'yes': - type: string - example: '0.0000000000' - abstain: - type: string - example: '0.0000000000' - 'no': + type_url: type: string - example: '0.0000000000' - no_with_veto: + 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 - example: '0.0000000000' - submit_time: - type: string - total_deposit: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - voting_start_time: - type: string - Proposer: - type: object - properties: - proposal_id: - type: string - proposer: - type: string - Deposit: + 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: >- + QueryAccountResponse is the response type for the Query/Account RPC + method. + cosmos.auth.v1beta1.QueryAccountsResponse: type: object properties: - amount: + accounts: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - proposal_id: - type: string - depositor: - type: string - description: bech32 encoded address - example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 - TallyResult: - type: object - properties: - 'yes': - type: string - example: '0.0000000000' - abstain: - type: string - example: '0.0000000000' - 'no': - type: string - example: '0.0000000000' - no_with_veto: - type: string - example: '0.0000000000' - Vote: - type: object - properties: - voter: - type: string - proposal_id: - type: string - option: - type: string - Validator: - type: object - properties: - operator_address: - type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - consensus_pubkey: - type: string - example: >- - cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf - jailed: - type: boolean - status: - type: integer - tokens: - type: string - delegator_shares: - type: string - description: + 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: accounts are the existing accounts + pagination: + description: pagination defines the pagination in the response. type: object properties: - moniker: - type: string - identity: - type: string - website: - type: string - security_contact: + next_key: type: string - details: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - bond_height: - type: string - example: '0' - bond_intra_tx_counter: - type: integer - example: 0 - unbonding_height: - type: string - example: '0' - unbonding_time: - type: string - example: '1970-01-01T00:00:00Z' - commission: + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryAccountsResponse is the response type for the Query/Accounts RPC + method. + + + Since: cosmos-sdk 0.43 + cosmos.auth.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. type: object properties: - rate: - type: string - example: '0' - max_rate: + max_memo_characters: type: string - example: '0' - max_change_rate: + format: uint64 + tx_sig_limit: type: string - example: '0' - update_time: + format: uint64 + tx_size_cost_per_byte: type: string - example: '1970-01-01T00:00:00Z' - Delegation: - type: object - properties: - delegator_address: - type: string - validator_address: - type: string - shares: - type: string - balance: - type: object - properties: - denom: + format: uint64 + sig_verify_cost_ed25519: type: string - example: stake - amount: + format: uint64 + sig_verify_cost_secp256k1: type: string - example: '50' - UnbondingDelegationPair: + format: uint64 + description: QueryParamsResponse is the response type for the Query/Params RPC method. + cosmos.base.query.v1beta1.PageRequest: type: object properties: - delegator_address: + key: type: string - validator_address: + 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 - entries: - type: array - items: - type: object - properties: - initial_balance: - type: string - balance: - type: string - creation_height: - type: string - min_time: - type: string - UnbondingEntries: + 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 + description: |- + message SomeRequest { + Foo some_parameter = 1; + PageRequest pagination = 2; + } + title: |- + PageRequest is to be embedded in gRPC request messages for efficient + pagination. Ex: + cosmos.base.query.v1beta1.PageResponse: type: object properties: - initial_balance: - type: string - balance: - type: string - creation_height: + next_key: type: string - min_time: + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string - UnbondingDelegation: + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + google.protobuf.Any: type: object properties: - delegator_address: - type: string - validator_address: - type: string - initial_balance: + type_url: type: string - balance: + 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 - creation_height: - type: integer - min_time: - type: integer - Redelegation: + 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" + } + grpc.gateway.runtime.Error: type: object properties: - delegator_address: - type: string - validator_src_address: - type: string - validator_dst_address: + error: type: string - entries: - type: array - items: - $ref: '#/definitions/Redelegation' - RedelegationEntry: - type: object - properties: - creation_height: - type: integer - completion_time: + code: type: integer - initial_balance: - type: string - balance: - type: string - shares_dst: - type: string - ValidatorDistInfo: - type: object - properties: - operator_address: + format: int32 + message: type: string - description: bech32 encoded address - example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l - self_bond_rewards: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - val_commission: + details: type: array items: type: object properties: - denom: + type_url: type: string - example: stake - 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 - example: '50' - PublicKey: - type: object - properties: - type: - type: string - value: - type: string - SigningInfo: - type: object - properties: - start_height: - type: string - index_offset: - type: string - jailed_until: - type: string - missed_blocks_counter: - type: string - ParamChange: + 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" + } + cosmos.authz.v1beta1.Grant: type: object properties: - subspace: - type: string - example: staking - key: - type: string - example: MaxValidators - subkey: - type: string - example: '' - value: + authorization: type: object - Supply: - type: object - properties: - total: - type: array - items: - type: object - properties: - denom: - type: string - example: stake - amount: - type: string - example: '50' - cosmos.auth.v1beta1.Params: + 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" + } + expiration: + type: string + format: date-time + description: |- + Grant gives permissions to execute + the provide method with expiration time. + cosmos.authz.v1beta1.GrantAuthorization: type: object properties: - max_memo_characters: - type: string - format: uint64 - tx_sig_limit: - type: string - format: uint64 - tx_size_cost_per_byte: - type: string - format: uint64 - sig_verify_cost_ed25519: + granter: type: string - format: uint64 - sig_verify_cost_secp256k1: + grantee: type: string - format: uint64 - description: Params defines the parameters for the auth module. - cosmos.auth.v1beta1.QueryAccountResponse: - type: object - properties: - account: + authorization: type: object properties: type_url: @@ -28339,179 +35847,208 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - description: >- - QueryAccountResponse is the response type for the Query/Account RPC - method. - cosmos.auth.v1beta1.QueryAccountsResponse: + expiration: + type: string + format: date-time + description: 'Since: cosmos-sdk 0.45.2' + title: >- + GrantAuthorization extends a grant with both the addresses of the grantee + and granter. + + It is used in genesis.proto and query.proto + cosmos.authz.v1beta1.QueryGranteeGrantsResponse: type: object properties: - accounts: + grants: type: array items: type: object properties: - type_url: + granter: type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + grantee: + type: string + authorization: + 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 + `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" - } - title: accounts are the existing accounts + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + expiration: + type: string + format: date-time + description: 'Since: cosmos-sdk 0.45.2' + 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 to the grantee. pagination: - description: pagination defines the pagination in the response. + description: pagination defines an pagination for the response. type: object properties: next_key: @@ -28529,439 +36066,425 @@ definitions: was set, its value is undefined otherwise description: >- - QueryAccountsResponse is the response type for the Query/Accounts RPC - method. - - - Since: cosmos-sdk 0.43 - cosmos.auth.v1beta1.QueryParamsResponse: - type: object - properties: - params: - description: params defines the parameters of the module. - type: object - properties: - max_memo_characters: - type: string - format: uint64 - tx_sig_limit: - type: string - format: uint64 - tx_size_cost_per_byte: - type: string - format: uint64 - sig_verify_cost_ed25519: - type: string - format: uint64 - sig_verify_cost_secp256k1: - type: string - format: uint64 - description: QueryParamsResponse is the response type for the Query/Params RPC method. - cosmos.base.query.v1beta1.PageRequest: + QueryGranteeGrantsResponse is the response type for the + Query/GranteeGrants RPC method. + cosmos.authz.v1beta1.QueryGranterGrantsResponse: 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. - + grants: + type: array + items: + type: object + properties: + granter: + type: string + grantee: + type: string + authorization: + 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: |- - message SomeRequest { - Foo some_parameter = 1; - PageRequest pagination = 2; - } - title: |- - PageRequest is to be embedded in gRPC request messages for efficient - pagination. Ex: - cosmos.base.query.v1beta1.PageResponse: - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - 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. + protocol buffer message. This string must contain at least - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - google.protobuf.Any: - 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" + } + expiration: + type: string + format: date-time + description: 'Since: cosmos-sdk 0.45.2' + title: >- + GrantAuthorization extends a grant with both the addresses of the + grantee and granter. - field. Example (for message [google.protobuf.Duration][]): + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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" - } - grpc.gateway.runtime.Error: + 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: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: + grants: type: array items: type: object properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized + authorization: + 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 + `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" + } + expiration: + type: string + format: date-time + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- + QueryGrantsResponse is the response type for the Query/Authorizations RPC + method. cosmos.bank.v1beta1.DenomUnit: type: object properties: @@ -34272,106 +41795,376 @@ definitions: 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 + 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.feegrant.v1beta1.Grant: + 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 and filtered 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 + + 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. + 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 and filtered fee allowance. + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - URL that describes the type of the serialized message. + protocol buffer message. This string must contain at least + one "/" character. The last segment of the URL's path must + represent - Protobuf library provides support to pack/unpack Any values in the - form + the fully qualified name of the type (as in - of utility functions or additional generated methods of the Any type. + `path/google.protobuf.Duration`). The name should be in a + canonical form + (e.g., leading "." is not accepted). - Example 1: Pack and unpack a message in C++. - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + In practice, teams usually precompile into the binary all + types that they - Example 2: Pack and unpack a message in Java. + 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.class)) { - foo = any.unpack(Foo.class); - } + scheme `http`, `https`, or no scheme, one can optionally set + up a type - Example 3: Pack and unpack a message in Python. + server that maps type URLs to message definitions as follows: - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - Example 4: Pack and unpack a message in Go + * If no scheme is provided, `https` is assumed. - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + * 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 pack methods provided by protobuf library will by default use + Note: this functionality is not currently available in the + official - 'type.googleapis.com/full.type.name' as the type URL and the unpack + protobuf release, and it is not used for type URLs beginning + with - methods only use the fully qualified type name after the last '/' + type.googleapis.com. - in the type URL, for example "foo.bar.com/x/y.z" will yield type - 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. + 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.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 and filtered 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 - JSON + one "/" character. The last segment of the URL's path must + represent - ==== + the fully qualified name of the type (as in - The JSON representation of an `Any` value uses the regular + `path/google.protobuf.Duration`). The name should be in a + canonical form - representation of the deserialized, embedded message, with an + (e.g., leading "." is not accepted). - additional field `@type` which contains the type URL. Example: - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + In practice, teams usually precompile into the binary all + types that they - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + expect it to use in the context of Any. However, for URLs + which use the - If the embedded message type is well-known and has a custom JSON + scheme `http`, `https`, or no scheme, one can optionally set + up a type - representation, that representation will be embedded adding a field + server that maps type URLs to message definitions as + follows: - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + * If no scheme is provided, `https` is assumed. - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } + * 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. + 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 + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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: >- - QueryEvidenceResponse is the response type for the Query/Evidence RPC + QueryAllowancesResponse is the response type for the Query/Allowances RPC method. cosmos.gov.v1beta1.Deposit: type: object @@ -39242,222 +47035,65 @@ definitions: exchange rate. Voting power can be calculated as total bonded shares 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: + cosmos.upgrade.v1beta1.ModuleVersion: type: object properties: - gas_wanted: + name: type: string - format: uint64 - description: GasWanted is the maximum units of work we allow this tx to perform. - gas_used: + title: name of the app module + version: 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 - - length prefixed in order to separate data from multiple message - executions. - 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. - 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. + title: consensus version of the app module 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: + ModuleVersion specifies a module and its consensus version. + + Since: cosmos-sdk 0.43 + cosmos.upgrade.v1beta1.Plan: 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: + name: 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 + description: >- + Sets the name for the upgrade. This name will be used by the upgraded - strings instead of raw bytes. - description: >- - StringEvent defines en Event object wrapper where all the - attributes + version of the software to apply any special "on-upgrade" commands + during - contain key/value pairs that are strings instead of raw bytes. - description: >- - Events contains a slice of Event objects that were emitted - during some + the first BeginBlock method after the upgrade is applied. It is also + used - 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: + 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 + + assumed that the software is out-of-date when the upgrade Time or + Height is + + reached and the software will exit. + time: type: string - description: Additional information. May be non-deterministic. - gas_wanted: + format: date-time + description: >- + Deprecated: Time based upgrades have been deprecated. Time based + upgrade logic + + has been removed from the SDK. + + If this field is not empty, an error will be thrown. + height: type: string format: int64 - description: Amount of gas requested for transaction. - gas_used: + description: |- + The height at which the upgrade must be performed. + Only used if Time is not set. + info: type: string - format: int64 - description: Amount of gas consumed by transaction. - tx: + 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: @@ -39616,327 +47252,674 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - timestamp: + description: >- + Plan specifies information about a planned upgrade and when it should + occur. + cosmos.upgrade.v1beta1.QueryAppliedPlanResponse: + type: object + properties: + height: type: string - description: >- - Time of the previous block. For heights > 1, it's the weighted median - of + 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.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 - the timestamps of the valid votes in the block.LastCommit. For height - == 1, + version of the software to apply any special "on-upgrade" commands + during - 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 + 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 + + 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 + + has been removed from the SDK. + + 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: >- - EventAttribute is a single key-value pair, associated with an - event. - description: >- - Event allows application developers to attach additional information - to + A URL/resource name that uniquely identifies the type of the + serialized - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + protocol buffer message. This string must contain at least - Later, transactions may be queried using these events. - description: >- - Events defines all the events emitted by processing a transaction. - Note, + 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 - these events include those emitted by processing all the messages and - those + 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 - emitted from the ante handler. Whereas Logs contains the events, with + representation, that representation will be embedded adding a + field - additional metadata, emitted only by processing the messages. + `value` which holds the custom JSON in addition to the `@type` + field. Example (for message [google.protobuf.Duration][]): - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } description: >- - TxResponse defines a structure containing relevant tx data and metadata. - The + QueryCurrentPlanResponse is the response type for the Query/CurrentPlan + RPC - tags are stringified and the log is JSON decoded. - cosmos.crypto.multisig.v1beta1.CompactBitArray: + method. + cosmos.upgrade.v1beta1.QueryModuleVersionsResponse: type: object properties: - extra_bits_stored: - type: integer - format: int64 - elems: + 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. + + 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 + + RPC method. + + + 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 + + RPC method. + ibc.applications.interchain_accounts.controller.v1.Params: + type: object + properties: + controller_enabled: + type: boolean + description: controller_enabled enables or disables the controller submodule. 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_LEGACY_AMINO_JSON - - SIGN_MODE_EIP_191 - default: SIGN_MODE_UNSPECIFIED - description: |- - SignMode represents a signing mode with its own security guarantees. - - - 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 - - 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 - cosmos.tx.v1beta1.AuthInfo: + Params defines the set of on-chain interchain accounts parameters. + The following parameters may be used to disable the controller submodule. + ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + controller_enabled: + type: boolean + description: controller_enabled enables or disables the controller submodule. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + ibc.applications.interchain_accounts.host.v1.Params: type: object properties: - signer_infos: + host_enabled: + type: boolean + description: host_enabled enables or disables the host submodule. + allow_messages: type: array items: - $ref: '#/definitions/cosmos.tx.v1beta1.SignerInfo' + type: string + description: >- + allow_messages defines a list of sdk message typeURLs allowed to be + executed on a host chain. + description: |- + Params defines the set of on-chain interchain accounts parameters. + The following parameters may be used to disable the host submodule. + ibc.applications.interchain_accounts.host.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + host_enabled: + type: boolean + description: host_enabled enables or disables the host submodule. + allow_messages: + type: array + items: + type: string + description: >- + allow_messages defines a list of sdk message typeURLs allowed to + be executed on a host chain. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + ibc.applications.transfer.v1.DenomTrace: + type: object + properties: + path: + type: string description: >- - signer_infos defines the signing modes for the required signers. The - number + path defines the chain of port/channel identifiers used for tracing + the - and order of elements must match the required signers from TxBody's + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible tokens and + the - messages. The first element is the primary signer and the one which - pays + source tracing information path. + ibc.applications.transfer.v1.Params: + type: object + properties: + send_enabled: + type: boolean + description: >- + send_enabled enables or disables all cross-chain token transfers from + this - the fee. - fee: + chain. + receive_enabled: + type: boolean description: >- - Fee is the fee and gas limit for the transaction. The first signer is - the + receive_enabled enables or disables all cross-chain token transfers to + this + + chain. + description: >- + Params defines the set of IBC transfer parameters. - primary signer and the one which pays the fee. The fee can be - calculated + NOTE: To prevent a single token from being transferred, set the - based on the cost of evaluating the body and doing signature - verification + TransfersEnabled parameter to true and then set the bank module's + SendEnabled - of the signers. This can be estimated via simulation. + parameter for the denomination to false. + ibc.applications.transfer.v1.QueryDenomHashResponse: + type: object + properties: + hash: + type: string + description: hash (in hex format) of the denomination trace information. + description: |- + QueryDenomHashResponse is the response type for the Query/DenomHash RPC + method. + ibc.applications.transfer.v1.QueryDenomTraceResponse: + type: object + properties: + denom_trace: 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: + path: type: string - format: uint64 - title: >- - gas_limit is the maximum gas that can be used in transaction - processing + description: >- + path defines the chain of port/channel identifiers used for + tracing the - before an out of gas error occurs - payer: + source of the fungible token. + base_denom: type: string - description: >- - if unset, the first signer is responsible for paying the fees. If - set, the specified account must pay the fees. + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible tokens + and the + + source tracing information path. + description: |- + QueryDenomTraceResponse is the response type for the Query/DenomTrace RPC + method. + ibc.applications.transfer.v1.QueryDenomTracesResponse: + type: object + properties: + denom_traces: + type: array + items: + type: object + properties: + path: + type: string + description: >- + path defines the chain of port/channel identifiers used for + tracing the - the payer must be a tx signer (and thus have signed this field in - AuthInfo). + source of the fungible token. + base_denom: + type: string + description: base denomination of the relayed fungible token. + description: >- + DenomTrace contains the base denomination for ICS20 fungible tokens + and the - setting this field does *not* change the ordering of required - signers for the transaction. - granter: + source tracing information path. + description: denom_traces returns all denominations trace information. + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: type: string + format: uint64 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 + total is total number of results available if + PageRequest.count_total - not support fee grants, this will fail - 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 + was set, its value is undefined otherwise description: >- - BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC + QueryConnectionsResponse is the response type for the Query/DenomTraces + RPC + method. + ibc.applications.transfer.v1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + send_enabled: + type: boolean + description: >- + send_enabled enables or disables all cross-chain token transfers + from this + + chain. + receive_enabled: + type: boolean + description: >- + receive_enabled enables or disables all cross-chain token + transfers to this - - 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: + chain. + description: QueryParamsResponse is the response type for the Query/Params RPC method. + ibc.core.channel.v1.Channel: type: object properties: - tx_bytes: + state: + title: current state of the channel end type: string - format: byte - description: tx_bytes is the raw transaction. - mode: + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a channel is in one of the following states: + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered 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: |- - BroadcastTxRequest is the request type for the Service.BroadcastTxRequest - RPC method. - cosmos.tx.v1beta1.BroadcastTxResponse: - type: object - properties: - tx_response: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end 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: + port_id: 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. - 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: + port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: |- + list of connection identifiers, in order, along which packets sent on + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + description: |- + Channel defines pipeline for exactly-once packet delivery between specific + modules on separate blockchains, which has at least one end capable of + sending packets and one end capable of receiving packets. + ibc.core.channel.v1.Counterparty: + type: object + properties: + port_id: + type: string + description: >- + port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + title: Counterparty defines a channel end counterparty + ibc.core.channel.v1.IdentifiedChannel: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a channel is in one of the following states: + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: type: string - description: Additional information. May be non-deterministic. - gas_wanted: + description: >- + port on the counterparty chain which owns the other end of the + channel. + channel_id: type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: |- + list of connection identifiers, in order, along which packets sent on + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: |- + IdentifiedChannel defines a channel with additional port and channel + identifier fields. + ibc.core.channel.v1.Order: + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + title: Order defines if a channel is ORDERED or UNORDERED + ibc.core.channel.v1.PacketState: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: |- + PacketState defines the generic type necessary to retrieve and store + packet commitments, acknowledgements, and receipts. + Caller is responsible for knowing the context necessary to interpret this + state as a commitment, acknowledgement, or a receipt. + ibc.core.channel.v1.QueryChannelClientStateResponse: + type: object + properties: + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: type: string - format: int64 - description: Amount of gas consumed by transaction. - tx: + title: client identifier + client_state: type: object properties: type_url: @@ -40101,678 +48084,879 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - timestamp: + title: client state + description: |- + IdentifiedClientState defines a client state with an additional client + identifier field. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method + ibc.core.channel.v1.QueryChannelConsensusStateResponse: + type: object + properties: + consensus_state: + type: object + properties: + type_url: type: string description: >- - Time of the previous block. For heights > 1, it's the weighted - median of + 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 + + 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). - 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 + + 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 - Later, transactions may be queried using these events. + 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: >- - Events defines all the events emitted by processing a transaction. - Note, + 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 - these events include those emitted by processing all the messages - and those + 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 - emitted from the ante handler. Whereas Logs contains the events, - with + representation, that representation will be embedded adding a field - additional metadata, emitted only by processing the messages. + `value` which holds the custom JSON in addition to the `@type` + field. Example (for message [google.protobuf.Duration][]): - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision description: >- - TxResponse defines a structure containing relevant tx data and - metadata. The + Normally the RevisionHeight is incremented at each height while + keeping - tags are stringified and the log is JSON decoded. - description: |- - BroadcastTxResponse is the response type for the - Service.BroadcastTx method. - cosmos.tx.v1beta1.Fee: + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryChannelClientStateResponse is the Response type for the + Query/QueryChannelClientState RPC method + ibc.core.channel.v1.QueryChannelResponse: type: object properties: - amount: + channel: + title: channel associated with the request identifiers + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a channel is in one of the following states: + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: >- + port on the counterparty chain which owns the other end of the + channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets sent + on + + this channel will travel + version: + type: string + title: opaque channel version, which is agreed upon during the handshake + description: >- + Channel defines pipeline for exactly-once packet delivery between + specific + + modules on separate blockchains, which has at least one end capable of + + sending packets and one end capable of receiving packets. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + description: >- + QueryChannelResponse is the response type for the Query/Channel RPC + method. + + Besides the Channel end, it includes a proof and the height from which the + + proof was retrieved. + ibc.core.channel.v1.QueryChannelsResponse: + type: object + properties: + channels: type: array items: type: object properties: - denom: + state: + title: current state of the channel end type: string - amount: + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a channel is in one of the following states: + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: >- + port on the counterparty chain which owns the other end of + the channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets + sent on + + this channel will travel + version: + type: string + title: >- + opaque channel version, which is agreed upon during the + handshake + port_id: type: string + title: port identifier + channel_id: + type: string + title: channel identifier description: |- - Coin defines a token with a denomination and an amount. + IdentifiedChannel defines a channel with additional port and channel + identifier fields. + description: list of stored channels of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: + type: string + 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. - 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 + 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. - before an out of gas error occurs - payer: - type: string + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision description: >- - if unset, the first signer is responsible for paying the fees. If set, - the specified account must pay the fees. + Normally the RevisionHeight is incremented at each height while + keeping - 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 + RevisionNumber the same. However some consensus algorithms may choose + to - to pay fees instead of the fee payer's own balance. If an appropriate - fee grant does not exist or the chain does + reset the height in certain conditions e.g. hard forks, state-machine - not support fee grants, this will fail - description: >- - Fee includes the amount of coins paid in fees and the maximum + breaking changes In these cases, the RevisionNumber is incremented so + that - gas to be used by the transaction. The ratio yields an effective - "gasprice", + height continues to be monitonically increasing even as the + RevisionHeight - which must be above some miminum to be accepted into the mempool. - cosmos.tx.v1beta1.GetBlockWithTxsResponse: + gets reset + description: >- + QueryChannelsResponse is the response type for the Query/Channels RPC + method. + ibc.core.channel.v1.QueryConnectionChannelsResponse: type: object properties: - txs: + channels: type: array items: - $ref: '#/definitions/cosmos.tx.v1beta1.Tx' - description: txs are the transactions in the block. - block_id: + type: object + properties: + state: + title: current state of the channel end + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a channel is in one of the following states: + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ordering: + title: whether the channel is ordered or unordered + type: string + enum: + - ORDER_NONE_UNSPECIFIED + - ORDER_UNORDERED + - ORDER_ORDERED + default: ORDER_NONE_UNSPECIFIED + description: |- + - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering + - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in + which they were sent. + - ORDER_ORDERED: packets are delivered exactly in the order which they were sent + counterparty: + title: counterparty channel end + type: object + properties: + port_id: + type: string + description: >- + port on the counterparty chain which owns the other end of + the channel. + channel_id: + type: string + title: channel end on the counterparty chain + connection_hops: + type: array + items: + type: string + title: >- + list of connection identifiers, in order, along which packets + sent on + + this channel will travel + version: + type: string + title: >- + opaque channel version, which is agreed upon during the + handshake + port_id: + type: string + title: port identifier + channel_id: + type: string + title: channel identifier + description: |- + IdentifiedChannel defines a channel with additional port and channel + identifier fields. + description: list of channels associated with a connection. + pagination: + title: pagination response type: object properties: - hash: + next_key: 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: + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height 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, + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - including all blockchain data structures and the rules of the - application's + RevisionNumber the same. However some consensus algorithms may choose + to - 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 Tendermint 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. + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryConnectionChannelsResponse is the Response type for the + Query/QueryConnectionChannels RPC method + ibc.core.channel.v1.QueryNextSequenceReceiveResponse: + type: object + properties: + next_sequence_receive: + type: string + format: uint64 + title: next sequence receive number + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - NOTE: not all txs here are valid. We're just agreeing on the - order first. + RevisionNumber the same. However some consensus algorithms may choose + to - 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. + reset the height in certain conditions e.g. hard forks, state-machine - - 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 + breaking changes In these cases, the RevisionNumber is incremented so + that - 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. + height continues to be monitonically increasing even as the + RevisionHeight - - 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 + gets reset + title: |- + QuerySequenceResponse is the request type for the + Query/QueryNextSequenceReceiveResponse RPC method + ibc.core.channel.v1.QueryPacketAcknowledgementResponse: + type: object + properties: + acknowledgement: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - 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, + RevisionNumber the same. However some consensus algorithms may choose + to - including all blockchain data structures - and the rules of the application's + reset the height in certain conditions e.g. hard forks, state-machine - 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 Tendermint - 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 Tendermint 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 Tendermint 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 Tendermint 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. + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryPacketAcknowledgementResponse defines the client query response for a + packet which also includes a proof and the height from which the + proof was retrieved + ibc.core.channel.v1.QueryPacketAcknowledgementsResponse: + type: object + properties: + acknowledgements: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve and store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret + this + + state as a commitment, acknowledgement, or a receipt. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryPacketAcknowledgemetsResponse is the request type for the + Query/QueryPacketAcknowledgements RPC method + ibc.core.channel.v1.QueryPacketCommitmentResponse: + type: object + properties: + commitment: + type: string + format: byte + title: packet associated with the request fields + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: >- + QueryPacketCommitmentResponse defines the client query response for a + packet + + which also includes a proof and the height from which the proof was + + retrieved + ibc.core.channel.v1.QueryPacketCommitmentsResponse: + type: object + properties: + commitments: + type: array + items: + type: object + properties: + port_id: + type: string + description: channel port identifier. + channel_id: + type: string + description: channel unique identifier. + sequence: + type: string + format: uint64 + description: packet sequence. + data: + type: string + format: byte + description: embedded data that represents packet state. + description: >- + PacketState defines the generic type necessary to retrieve and store + + packet commitments, acknowledgements, and receipts. + + Caller is responsible for knowing the context necessary to interpret + this + + state as a commitment, acknowledgement, or a receipt. pagination: - description: pagination defines a pagination for the response. + title: pagination response type: object properties: next_key: @@ -40789,822 +48973,610 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - GetBlockWithTxsResponse is the response type for the - Service.GetBlockWithTxs method. - + description: |- + PageResponse is to be embedded in gRPC response messages where the + corresponding request message has used PageRequest. - 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: + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height 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: + revision_number: type: string - description: Result bytes, if any. - raw_log: + format: uint64 + title: the revision that the client is currently on + revision_height: 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 + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - strings instead of raw bytes. - description: >- - StringEvent defines en Event object wrapper where all the - attributes + RevisionNumber the same. However some consensus algorithms may choose + to - contain key/value pairs that are strings instead of raw - bytes. - description: >- - Events contains a slice of Event objects that were emitted - during some + reset the height in certain conditions e.g. hard forks, state-machine - 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: + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryPacketCommitmentsResponse is the request type for the + Query/QueryPacketCommitments RPC method + ibc.core.channel.v1.QueryPacketReceiptResponse: + type: object + properties: + received: + type: boolean + title: success flag for if receipt exists + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: type: string - format: int64 - description: Amount of gas requested for transaction. - gas_used: + format: uint64 + title: the revision that the client is currently on + revision_height: 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 + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - protocol buffer message. This string must contain at least + RevisionNumber the same. However some consensus algorithms may choose + to - one "/" character. The last segment of the URL's path must - represent + reset the height in certain conditions e.g. hard forks, state-machine - the fully qualified name of the type (as in + breaking changes In these cases, the RevisionNumber is incremented so + that - `path/google.protobuf.Duration`). The name should be in a - canonical form + height continues to be monitonically increasing even as the + RevisionHeight - (e.g., leading "." is not accepted). + gets reset + title: >- + QueryPacketReceiptResponse defines the client query response for a packet + receipt which also includes a proof, and the height from which the proof + was - In practice, teams usually precompile into the binary all - types that they + retrieved + ibc.core.channel.v1.QueryUnreceivedAcksResponse: + type: object + properties: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived acknowledgement sequences + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - expect it to use in the context of Any. However, for URLs - which use the + RevisionNumber the same. However some consensus algorithms may choose + to - scheme `http`, `https`, or no scheme, one can optionally set - up a type + reset the height in certain conditions e.g. hard forks, state-machine - server that maps type URLs to message definitions as follows: + breaking changes In these cases, the RevisionNumber is incremented so + that + height continues to be monitonically increasing even as the + RevisionHeight - * If no scheme is provided, `https` is assumed. + gets reset + title: |- + QueryUnreceivedAcksResponse is the response type for the + Query/UnreceivedAcks RPC method + ibc.core.channel.v1.QueryUnreceivedPacketsResponse: + type: object + properties: + sequences: + type: array + items: + type: string + format: uint64 + title: list of unreceived packet sequences + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - * 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.) + RevisionNumber the same. However some consensus algorithms may choose + to - Note: this functionality is not currently available in the - official + reset the height in certain conditions e.g. hard forks, state-machine - protobuf release, and it is not used for type URLs beginning - with + breaking changes In these cases, the RevisionNumber is incremented so + that - type.googleapis.com. + height continues to be monitonically increasing even as the + RevisionHeight + gets reset + title: |- + QueryUnreceivedPacketsResponse is the response type for the + Query/UnreceivedPacketCommitments RPC method + ibc.core.channel.v1.State: + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + - STATE_CLOSED + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a channel is in one of the following states: + CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A channel has just started the opening handshake. + - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. + - STATE_OPEN: A channel has completed the handshake. Open channels are + ready to send and receive packets. + - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive + packets. + ibc.core.client.v1.Height: + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: |- + Normally the RevisionHeight is incremented at each height while keeping + RevisionNumber the same. However some consensus algorithms may choose to + reset the height in certain conditions e.g. hard forks, state-machine + breaking changes In these cases, the RevisionNumber is incremented so that + height continues to be monitonically increasing even as the RevisionHeight + gets reset + title: >- + Height is a monotonically increasing data type - Schemes other than `http`, `https` (or the empty scheme) might - be + that can be compared against another Height for the purposes of updating + and - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. + freezing clients + ibc.core.client.v1.IdentifiedClientState: + type: object + properties: + client_id: + type: string + title: client identifier + client_state: + type: object + properties: + type_url: + type: string 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 { - ... - } + A URL/resource name that uniquely identifies the type of the + serialized - The pack methods provided by protobuf library will by default use + protocol buffer message. This string must contain at least - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + one "/" character. The last segment of the URL's path must + represent - methods only use the fully qualified type name after the last '/' + the fully qualified name of the type (as in - in the type URL, for example "foo.bar.com/x/y.z" will yield type + `path/google.protobuf.Duration`). The name should be in a + canonical form - name "y.z". + (e.g., leading "." is not accepted). + In practice, teams usually precompile into the binary all types + that they - JSON + 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 - The JSON representation of an `Any` value uses the regular + server that maps type URLs to message definitions as follows: - representation of the deserialized, embedded message, with an - additional field `@type` which contains the type URL. Example: + * If no scheme is provided, `https` is assumed. - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + * 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.profile.Person", - "firstName": , - "lastName": - } + Note: this functionality is not currently available in the + official - If the embedded message type is well-known and has a custom JSON + protobuf release, and it is not used for type URLs beginning with - representation, that representation will be embedded adding a - field + type.googleapis.com. - `value` which holds the custom JSON in addition to the `@type` - field. Example (for message [google.protobuf.Duration][]): + Schemes other than `http`, `https` (or the empty scheme) might be - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - timestamp: + used with implementation specific semantics. + value: type: string + format: byte 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, - - 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. - - Later, transactions may be queried using these events. - description: >- - Events defines all the events emitted by processing a transaction. - Note, - - these events include those emitted by processing all the messages - and those - - emitted from the ante handler. Whereas Logs contains the events, - with - - additional metadata, emitted only by processing the messages. - - - Since: cosmos-sdk 0.42.11, 0.44.5, 0.45 + Must be a valid serialized protocol buffer of the above specified + type. description: >- - TxResponse defines a structure containing relevant tx data and - metadata. The + `Any` contains an arbitrary serialized protocol buffer message along + with a - 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 + URL that describes the type of the serialized message. - 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 + Protobuf library provides support to pack/unpack Any values in the + form - 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 + of utility functions or additional generated methods of the Any type. - protocol buffer message. This string must contain at least - one "/" character. The last segment of the URL's path must - represent + Example 1: Pack and unpack a message in C++. - the fully qualified name of the type (as in + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } - `path/google.protobuf.Duration`). The name should be in a - canonical form + Example 2: Pack and unpack a message in Java. - (e.g., leading "." is not accepted). + 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. - In practice, teams usually precompile into the binary all - types that they + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - expect it to use in the context of Any. However, for URLs - which use the + Example 4: Pack and unpack a message in Go - scheme `http`, `https`, or no scheme, one can optionally set - up a type + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - server that maps type URLs to message definitions as - follows: + The pack methods provided by protobuf library will by default use + 'type.googleapis.com/full.type.name' as the type URL and the unpack - * If no scheme is provided, `https` is assumed. + methods only use the fully qualified type name after the last '/' - * 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 type URL, for example "foo.bar.com/x/y.z" will yield type - Note: this functionality is not currently available in the - official + name "y.z". - protobuf release, and it is not used for type URLs beginning - with - type.googleapis.com. + JSON - 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 + The JSON representation of an `Any` value uses the regular - URL that describes the type of the serialized message. + representation of the deserialized, embedded message, with an + additional field `@type` which contains the type URL. Example: - Protobuf library provides support to pack/unpack Any values in - the form + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - of utility functions or additional generated methods of the Any - type. + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + If the embedded message type is well-known and has a custom JSON - Example 1: Pack and unpack a message in C++. + representation, that representation will be embedded adding a field - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } + `value` which holds the custom JSON in addition to the `@type` - Example 2: Pack and unpack a message in Java. + field. Example (for message [google.protobuf.Duration][]): - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: client state + description: |- + IdentifiedClientState defines a client state with an additional client + identifier field. + ibc.core.client.v1.ConsensusStateWithHeight: + type: object + properties: + height: + title: consensus state height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - Example 3: Pack and unpack a message in Python. + RevisionNumber the same. However some consensus algorithms may choose + to - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... + reset the height in certain conditions e.g. hard forks, state-machine - Example 4: Pack and unpack a message in Go + breaking changes In these cases, the RevisionNumber is incremented so + that - foo := &pb.Foo{...} - any, err := ptypes.MarshalAny(foo) - ... - foo := &pb.Foo{} - if err := ptypes.UnmarshalAny(any, foo); err != nil { - ... - } + height continues to be monitonically increasing even as the + RevisionHeight - The pack methods provided by protobuf library will by default - use + gets reset + consensus_state: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized - 'type.googleapis.com/full.type.name' as the type URL and the - unpack + protocol buffer message. This string must contain at least - methods only use the fully qualified type name after the last - '/' + one "/" character. The last segment of the URL's path must + represent - in the type URL, for example "foo.bar.com/x/y.z" will yield type + the fully qualified name of the type (as in - name "y.z". + `path/google.protobuf.Duration`). The name should be in a + canonical form + (e.g., leading "." is not accepted). - JSON + 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 - The JSON representation of an `Any` value uses the regular + scheme `http`, `https`, or no scheme, one can optionally set up a + type - representation of the deserialized, embedded message, with an + server that maps type URLs to message definitions as follows: - additional field `@type` which contains the type URL. Example: - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + * If no scheme is provided, `https` is assumed. - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + * 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 the embedded message type is well-known and has a custom JSON + Note: this functionality is not currently available in the + official - representation, that representation will be embedded adding a - field + protobuf release, and it is not used for type URLs beginning with - `value` which holds the custom JSON in addition to the `@type` + type.googleapis.com. - 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 + Schemes other than `http`, `https` (or the empty scheme) might be - the timestamps of the valid votes in the block.LastCommit. For - height == 1, + 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 - 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 + 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 handler. 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. - description: tx_responses is the list of queried TxResponses. - pagination: - description: pagination defines a pagination for the response. - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } - was set, its value is undefined otherwise - 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_LEGACY_AMINO_JSON - - SIGN_MODE_EIP_191 - default: SIGN_MODE_UNSPECIFIED - description: >- - SignMode represents a signing mode with its own security - guarantees. + 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 + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... - from SIGN_MODE_DIRECT - - 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 + foo := &pb.Foo{...} + any, err := ptypes.MarshalAny(foo) + ... + foo := &pb.Foo{} + if err := ptypes.UnmarshalAny(any, foo); err != nil { + ... + } - Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum - variant, + The pack methods provided by protobuf library will by default use - but is not implemented on the SDK by default. To enable EIP-191, - you need + 'type.googleapis.com/full.type.name' as the type URL and the unpack - to pass a custom `TxConfig` that has an implementation of + methods only use the fully qualified type name after the last '/' - `SignModeHandler` for EIP-191. The SDK may decide to fully support + in the type URL, for example "foo.bar.com/x/y.z" will yield type - EIP-191 in the future. + name "y.z". - 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. - This is used to ensure that the encoded data takes up a minimal amount - of + JSON - space after proto encoding. + ==== - 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_LEGACY_AMINO_JSON - - SIGN_MODE_EIP_191 - default: SIGN_MODE_UNSPECIFIED - description: >- - SignMode represents a signing mode with its own security guarantees. + 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 - - 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 + additional field `@type` which contains the type URL. Example: + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } - Currently, SIGN_MODE_EIP_191 is registered as a SignMode enum variant, + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - but is not implemented on the SDK by default. To enable EIP-191, you - need + If the embedded message type is well-known and has a custom JSON - to pass a custom `TxConfig` that has an implementation of + representation, that representation will be embedded adding a field - `SignModeHandler` for EIP-191. The SDK may decide to fully support + `value` which holds the custom JSON in addition to the `@type` - EIP-191 in the future. + field. Example (for message [google.protobuf.Duration][]): + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: consensus state + description: >- + ConsensusStateWithHeight defines a consensus state with an additional + height - 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 + field. + ibc.core.client.v1.Params: + type: object + properties: + allowed_clients: + type: array + items: + type: string + description: allowed_clients defines the list of allowed client state types. + description: Params defines the set of IBC light client parameters. + ibc.core.client.v1.QueryClientParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + allowed_clients: + type: array + items: + type: string + description: allowed_clients defines the list of allowed client state types. 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: + QueryClientParamsResponse is the response type for the Query/ClientParams + RPC + + method. + ibc.core.client.v1.QueryClientStateResponse: type: object properties: - public_key: + client_state: type: object properties: type_url: @@ -41763,126 +49735,58 @@ 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: - 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: + title: client state associated with the request identifier + proof: 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. + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved type: object properties: - gas_wanted: + revision_number: type: string format: uint64 - description: >- - GasWanted is the maximum units of work we allow this tx to - perform. - gas_used: + title: the revision that the client is currently on + revision_height: 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 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - length prefixed in order to separate data from multiple message - executions. - 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 + RevisionNumber the same. However some consensus algorithms may choose + to - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + reset the height in certain conditions e.g. hard forks, state-machine - Later, transactions may be queried using these events. - description: >- - Events contains a slice of Event objects that were emitted during - message + breaking changes In these cases, the RevisionNumber is incremented so + that - or handler execution. - description: |- - SimulateResponse is the response type for the - Service.SimulateRPC method. - cosmos.tx.v1beta1.Tx: + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + description: >- + QueryClientStateResponse is the response type for the Query/ClientState + RPC + + method. Besides the client state, it includes a proof and the height from + + which the proof was retrieved. + ibc.core.client.v1.QueryClientStatesResponse: type: object properties: - body: - title: body is the processable content of the transaction - type: object - properties: - messages: - type: array - items: + client_states: + type: array + items: + type: object + properties: + client_id: + type: string + title: client identifier + client_state: type: object properties: type_url: @@ -42051,223 +49955,294 @@ 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 + title: client state + description: >- + IdentifiedClientState defines a client state with an additional + client - signer_infos and Tx's signatures. Each required signer address is - added to + identifier field. + description: list of stored ClientStates of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - the list only the first time it occurs. + 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. - By convention, the first required signer (usually from the first - message) + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + description: >- + QueryClientStatesResponse is the response type for the Query/ClientStates + RPC - is referred to as the primary signer and pays the fee for the - whole + method. + ibc.core.client.v1.QueryClientStatusResponse: + type: object + properties: + status: + type: string + description: >- + QueryClientStatusResponse is the response type for the Query/ClientStatus + RPC - transaction. - memo: + method. It returns the current status of the IBC client. + ibc.core.client.v1.QueryConsensusStateResponse: + type: object + properties: + consensus_state: + type: object + properties: + type_url: type: string description: >- - memo is any arbitrary note/comment to be added to the transaction. + A URL/resource name that uniquely identifies the type of the + serialized - WARNING: in clients, any publicly exposed text should not be - called memo, + protocol buffer message. This string must contain at least - 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 + 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.) + 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 + + 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); + } - 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: >- + consensus state associated with the client identifier at the given + height + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - representation of the deserialized, embedded message, with an + RevisionNumber the same. However some consensus algorithms may choose + to - additional field `@type` which contains the type URL. Example: + reset the height in certain conditions e.g. hard forks, state-machine - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } + breaking changes In these cases, the RevisionNumber is incremented so + that - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } + height continues to be monitonically increasing even as the + RevisionHeight - If the embedded message type is well-known and has a custom JSON + gets reset + title: >- + QueryConsensusStateResponse is the response type for the + Query/ConsensusState - representation, that representation will be embedded adding a - field + RPC method + ibc.core.client.v1.QueryConsensusStatesResponse: + type: object + properties: + consensus_states: + type: array + items: + type: object + properties: + height: + title: consensus state height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - `value` which holds the custom JSON in addition to the `@type` + RevisionNumber the same. However some consensus algorithms may + choose to - field. Example (for message [google.protobuf.Duration][]): + reset the height in certain conditions e.g. hard forks, + state-machine - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: >- - extension_options are arbitrary options that can be added by - chains + breaking changes In these cases, the RevisionNumber is + incremented so that - when the default options are not sufficient. If any of these are - present + height continues to be monitonically increasing even as the + RevisionHeight - and can't be handled, the transaction will be rejected - non_critical_extension_options: - type: array - items: + gets reset + consensus_state: type: object properties: type_url: @@ -42436,673 +50411,212 @@ 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 - - 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 - - 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: - 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. - - - 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: >- - 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 - - 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 - - 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. + title: consensus state 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][]): + ConsensusStateWithHeight defines a consensus state with an + additional height - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: >- - extension_options are arbitrary options that can be added by chains + field. + title: consensus states associated with the identifier + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total - when the default options are not sufficient. If any of these are - present + 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. - 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 + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + title: |- + QueryConsensusStatesResponse is the response type for the + Query/ConsensusStates RPC method + ibc.core.client.v1.QueryUpgradedClientStateResponse: + type: object + properties: + upgraded_client_state: + 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); + 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 - - '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". + 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: >- - extension_options are arbitrary options that can be added by chains + If the embedded message type is well-known and has a custom JSON - when the default options are not sufficient. If any of these are - present + representation, that representation will be embedded adding a field - 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 + `value` which holds the custom JSON in addition to the `@type` - ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and - ResponseDeliverTx. + field. Example (for message [google.protobuf.Duration][]): - 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 + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: client state associated with the request identifier description: |- - ModuleVersion specifies a module and its consensus version. - - Since: cosmos-sdk 0.43 - cosmos.upgrade.v1beta1.Plan: + QueryUpgradedClientStateResponse is the response type for the + Query/UpgradedClientState RPC method. + ibc.core.client.v1.QueryUpgradedConsensusStateResponse: type: object properties: - name: - type: string - description: >- - Sets the name for the upgrade. This name will be used by the upgraded - - version of the software to apply any special "on-upgrade" commands - during - - 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 - - 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 - - has been removed from the SDK. - - 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: + upgraded_consensus_state: type: object properties: type_url: @@ -43261,74 +50775,273 @@ 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: + title: Consensus state associated with the request identifier + description: |- + QueryUpgradedConsensusStateResponse is the response type for the + Query/UpgradedConsensusState RPC method. + ibc.core.commitment.v1.MerklePrefix: type: object properties: - height: + key_prefix: 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.QueryCurrentPlanResponse: + format: byte + title: |- + MerklePrefix is merkle path prefixed to the key. + The constructed key from the Path and the key will be append(Path.KeyPath, + append(Path.KeyPrefix, key...)) + ibc.core.connection.v1.ConnectionEnd: type: object properties: - plan: - description: plan is the current upgrade plan. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the IBC + verison in + + the connection handshake. + description: >- + IBC version which can be utilised to determine encodings or protocols + for + + channels or packets utilising this connection. + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. type: object properties: - name: + client_id: type: string description: >- - Sets the name for the upgrade. This name will be used by the - upgraded + identifies the client on the counterparty chain associated with a + given - version of the software to apply any special "on-upgrade" commands - during + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain associated + with a - the first BeginBlock method after the upgrade is applied. It is - also used + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. - to detect whether a software version can handle a given upgrade. - If no + The constructed key from the Path and the key will be + append(Path.KeyPath, - upgrade handler with this name has been set in the software, it - will be + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: >- + delay period that must pass before a consensus state can be used for - assumed that the software is out-of-date when the upgrade Time or - Height is + packet-verification NOTE: delay period logic is only implemented by + some - reached and the software will exit. - time: + clients. + description: |- + ConnectionEnd defines a stateful object on a chain connected to another + separate one. + NOTE: there must only be 2 defined ConnectionEnds to establish + a connection between two chains. + ibc.core.connection.v1.Counterparty: + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated with a + given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain associated + with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: type: string - format: date-time - description: >- - Deprecated: Time based upgrades have been deprecated. Time based - upgrade logic + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. - has been removed from the SDK. + The constructed key from the Path and the key will be + append(Path.KeyPath, - If this field is not empty, an error will be thrown. - height: + append(Path.KeyPrefix, key...)) + description: >- + Counterparty defines the counterparty chain associated with a connection + end. + ibc.core.connection.v1.IdentifiedConnection: + type: object + properties: + id: + type: string + description: connection identifier. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the IBC + verison in + + the connection handshake. + title: >- + IBC version which can be utilised to determine encodings or protocols + for + + channels or packets utilising this connection + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: type: string - format: int64 - description: |- - The height at which the upgrade must be performed. - Only used if Time is not set. - info: + description: >- + identifies the client on the counterparty chain associated with a + given + + connection. + connection_id: type: string + description: >- + identifies the connection end on the counterparty chain associated + with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte title: >- - Any application specific upgrade info to be included on-chain + MerklePrefix is merkle path prefixed to the key. - such as a git commit that validators could automatically upgrade - to - upgraded_client_state: + The constructed key from the Path and the key will be + append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: delay period associated with this connection. + description: |- + IdentifiedConnection defines a connection with additional connection + identifier field. + ibc.core.connection.v1.QueryClientConnectionsResponse: + type: object + properties: + connection_paths: + type: array + items: + type: string + description: slice of all the connection paths associated with a client. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was generated + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryClientConnectionsResponse is the response type for the + Query/ClientConnections RPC method + ibc.core.connection.v1.QueryConnectionClientStateResponse: + type: object + properties: + identified_client_state: + title: client state associated with the channel + type: object + properties: + client_id: + type: string + title: client identifier + client_state: type: object properties: type_url: @@ -43470,80 +51183,72 @@ definitions: 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: >- - QueryCurrentPlanResponse is the response type for the Query/CurrentPlan - RPC - - 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. + string first_name = 1; + string last_name = 2; + } - 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 + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } - RPC method. + If the embedded message type is well-known and has a custom JSON + representation, that representation will be embedded adding a + field - Since: cosmos-sdk 0.43 - cosmos.upgrade.v1beta1.QueryUpgradedConsensusStateResponse: - type: object - properties: - upgraded_consensus_state: + `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: client state + description: |- + IdentifiedClientState defines a client state with an additional client + identifier field. + proof: type: string format: byte - title: 'Since: cosmos-sdk 0.43' - description: >- - QueryUpgradedConsensusStateResponse is the response type for the - Query/UpgradedConsensusState + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping - RPC method. - cosmos.authz.v1beta1.Grant: + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryConnectionClientStateResponse is the response type for the + Query/ConnectionClientState RPC method + ibc.core.connection.v1.QueryConnectionConsensusStateResponse: type: object properties: - authorization: + consensus_state: type: object properties: type_url: @@ -43702,1333 +51407,2142 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } - expiration: + title: consensus state associated with the channel + client_id: + type: string + title: client ID associated with the consensus state + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + title: |- + QueryConnectionConsensusStateResponse is the response type for the + Query/ConnectionConsensusState RPC method + ibc.core.connection.v1.QueryConnectionResponse: + type: object + properties: + connection: + title: connection associated with the request identifier + type: object + properties: + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the IBC + verison in + + the connection handshake. + description: >- + IBC version which can be utilised to determine encodings or + protocols for + + channels or packets utilising this connection. + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated + with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain + associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be + append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: >- + delay period that must pass before a consensus state can be used + for + + packet-verification NOTE: delay period logic is only implemented + by some + + clients. + description: >- + ConnectionEnd defines a stateful object on a chain connected to + another + + separate one. + + NOTE: there must only be 2 defined ConnectionEnds to establish + + a connection between two chains. + proof: + type: string + format: byte + title: merkle proof of existence + proof_height: + title: height at which the proof was retrieved + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + description: >- + QueryConnectionResponse is the response type for the Query/Connection RPC + + method. Besides the connection end, it includes a proof and the height + from + + which the proof was retrieved. + ibc.core.connection.v1.QueryConnectionsResponse: + type: object + properties: + connections: + type: array + items: + type: object + properties: + id: + type: string + description: connection identifier. + client_id: + type: string + description: client associated with this connection. + versions: + type: array + items: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: >- + Version defines the versioning scheme used to negotiate the + IBC verison in + + the connection handshake. + title: >- + IBC version which can be utilised to determine encodings or + protocols for + + channels or packets utilising this connection + state: + description: current state of the connection end. + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + counterparty: + description: counterparty chain associated with this connection. + type: object + properties: + client_id: + type: string + description: >- + identifies the client on the counterparty chain associated + with a given + + connection. + connection_id: + type: string + description: >- + identifies the connection end on the counterparty chain + associated with a + + given connection. + prefix: + description: commitment merkle prefix of the counterparty chain. + type: object + properties: + key_prefix: + type: string + format: byte + title: >- + MerklePrefix is merkle path prefixed to the key. + + The constructed key from the Path and the key will be + append(Path.KeyPath, + + append(Path.KeyPrefix, key...)) + delay_period: + type: string + format: uint64 + description: delay period associated with this connection. + description: |- + IdentifiedConnection defines a connection with additional connection + identifier field. + description: list of stored connections of the chain. + pagination: + title: pagination response + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + 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. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + height: + title: query block height + type: object + properties: + revision_number: + type: string + format: uint64 + title: the revision that the client is currently on + revision_height: + type: string + format: uint64 + title: the height within the given revision + description: >- + Normally the RevisionHeight is incremented at each height while + keeping + + RevisionNumber the same. However some consensus algorithms may choose + to + + reset the height in certain conditions e.g. hard forks, state-machine + + breaking changes In these cases, the RevisionNumber is incremented so + that + + height continues to be monitonically increasing even as the + RevisionHeight + + gets reset + description: >- + QueryConnectionsResponse is the response type for the Query/Connections + RPC + + method. + ibc.core.connection.v1.State: + type: string + enum: + - STATE_UNINITIALIZED_UNSPECIFIED + - STATE_INIT + - STATE_TRYOPEN + - STATE_OPEN + default: STATE_UNINITIALIZED_UNSPECIFIED + description: |- + State defines if a connection is in one of the following states: + INIT, TRYOPEN, OPEN or UNINITIALIZED. + + - STATE_UNINITIALIZED_UNSPECIFIED: Default State + - STATE_INIT: A connection end has just started the opening handshake. + - STATE_TRYOPEN: A connection end has acknowledged the handshake step on the counterparty + chain. + - STATE_OPEN: A connection end has completed the handshake. + ibc.core.connection.v1.Version: + type: object + properties: + identifier: + type: string + title: unique version identifier + features: + type: array + items: + type: string + title: list of features compatible with the specified identifier + description: |- + Version defines the versioning scheme used to negotiate the IBC verison in + the connection handshake. + secret.compute.v1beta1.AbsoluteTxPosition: + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block (actual transaction + index, or gas consumed) + title: AbsoluteTxPosition can be used to sort contracts + secret.compute.v1beta1.CodeInfoResponse: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + secret.compute.v1beta1.ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: >- + bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: |- + never show this in query results, just use for sorting + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block (actual + transaction index, or gas consumed) + title: ContractInfo stores a WASM contract instance + secret.compute.v1beta1.ContractInfoWithAddress: + type: object + properties: + address: + type: string + format: byte + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: >- + bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: |- + never show this in query results, just use for sorting + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block (actual + transaction index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: >- + ContractInfoWithAddress adds the address (key) to the ContractInfo + representation + secret.compute.v1beta1.QueryCodeResponse: + type: object + properties: + code_info: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + data: + type: string + format: byte + secret.compute.v1beta1.QueryCodesResponse: + type: object + properties: + code_infos: + type: array + items: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + data_hash: + type: string + format: byte + source: + type: string + builder: + type: string + secret.compute.v1beta1.QueryContractInfoResponse: + type: object + properties: + address: + type: string + format: byte + title: address is the address of the contract + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: >- + bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: |- + never show this in query results, just use for sorting + (Note: when using json tag "-" amino refused to serialize it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block (actual + transaction index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: >- + QueryContractInfoResponse is the response type for the Query/ContractInfo + RPC method + secret.compute.v1beta1.QueryContractsByCodeResponse: + type: object + properties: + contract_infos: + type: array + items: + type: object + properties: + address: + type: string + format: byte + ContractInfo: + type: object + properties: + code_id: + type: string + format: uint64 + creator: + type: string + format: byte + label: + type: string + title: >- + bytes admin = 3 [(gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + created: + title: >- + never show this in query results, just use for sorting + + (Note: when using json tag "-" amino refused to serialize + it...) + type: object + properties: + block_height: + type: string + format: int64 + title: BlockHeight is the block the contract was created at + tx_index: + type: string + format: uint64 + title: >- + TxIndex is a monotonic counter within the block (actual + transaction index, or gas consumed) + title: ContractInfo stores a WASM contract instance + title: >- + ContractInfoWithAddress adds the address (key) to the ContractInfo + representation + secret.compute.v1beta1.QuerySmartContractStateResponse: + type: object + properties: + data: + type: string + format: byte + secret.intertx.v1beta1.QueryInterchainAccountFromAddressResponse: + type: object + properties: + interchain_account_address: + type: string + title: >- + QueryInterchainAccountFromAddressResponse the response type for the + Query/InterchainAccountAddress RPC + secret.registration.v1beta1.Key: + type: object + properties: + key: + type: string + format: byte + secret.registration.v1beta1.QueryEncryptedSeedResponse: + type: object + properties: + encrypted_seed: + type: string + format: byte + CodeIdContracts: + type: object + properties: + height: + type: string + result: + type: array + items: + type: object + properties: + code-id: + type: number + creator: + type: string + label: + type: string + address: + type: string + IoExchPubkeyResponse: + type: object + properties: + height: + type: string + result: + type: object + properties: + ioExchPubkey: + type: string + ListContractSingle: + type: object + properties: + code-id: + type: number + creator: type: string - format: date-time - description: |- - Grant gives permissions to execute - the provide method with expiration time. - cosmos.authz.v1beta1.GrantAuthorization: + label: + type: string + address: + type: string + ListCodeReponse: type: object properties: - granter: + height: type: string - grantee: + result: + type: array + items: + type: object + properties: + id: + type: number + creator: + type: string + data_hash: + type: string + source: + type: string + builder: + type: string + ListCodeSingle: + type: object + properties: + id: + type: number + creator: type: string - authorization: + data_hash: + type: string + source: + type: string + builder: + type: string + CodeHash: + type: object + properties: + height: + type: string + result: + type: string + CodeInfo: + type: object + properties: + code_hash: + type: string + creator: + type: string + StoreCodeReq: + type: object + properties: + base_req: type: object properties: - type_url: + from: 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: + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: type: string - format: byte + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false 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" - } - expiration: + Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + wasm_bytes: type: string - format: date-time - description: 'Since: cosmos-sdk 0.45.2' - title: >- - GrantAuthorization extends a grant with both the addresses of the grantee - and granter. - - It is used in genesis.proto and query.proto - cosmos.authz.v1beta1.QueryGranteeGrantsResponse: + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + InstantiateContractReq: type: object properties: - grants: + base_req: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + init_coins: type: array items: type: object properties: - granter: - type: string - grantee: + denom: type: string - authorization: - 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" - } - expiration: + example: stake + amount: type: string - format: date-time - description: 'Since: cosmos-sdk 0.45.2' - 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 to the grantee. - pagination: - description: pagination defines an pagination for the response. + example: '50' + init_msg: + type: string + description: json formatted string + example: '{}' + ExecuteContractReq: + type: object + properties: + base_req: type: object properties: - next_key: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + example: '0' + sequence: type: string - format: uint64 - 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: + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + coins: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + exec_msg: + type: string + example: '{}' + CheckTxResult: type: object properties: - grants: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: type: array items: type: object properties: - granter: + key: type: string - grantee: + value: type: string - authorization: + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - '' + - '' + DeliverTxResult: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - '' + - '' + BroadcastTxCommitResult: + type: object + properties: + check_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: type: object properties: - type_url: + key: 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" - } - expiration: + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - '' + - '' + deliver_tx: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - '' + - '' + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + height: + type: integer + KVPair: + type: object + properties: + key: + type: string + value: + type: string + Msg: + type: string + Address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + ValidatorAddress: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + Coin: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + Hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + TxQuery: + type: object + properties: + hash: + type: string + example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: type: string - format: date-time - description: 'Since: cosmos-sdk 0.45.2' - 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. + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + result: type: object properties: - next_key: + log: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + 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 - description: >- - QueryGranterGrantsResponse is the response type for the - Query/GranterGrants RPC method. - cosmos.authz.v1beta1.QueryGrantsResponse: + example: '200000' + gas_used: + type: string + example: '26354' + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + PaginatedQueryTxs: + type: object + properties: + total_count: + type: number + example: 1 + count: + type: number + example: 1 + page_number: + type: number + example: 1 + page_total: + type: number + example: 1 + limit: + type: number + example: 30 + txs: + type: array + items: + type: object + properties: + hash: + type: string + example: D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656 + height: + type: number + example: 368 + tx: + type: object + properties: + msg: + type: array + items: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: '200000' + gas_used: + type: string + example: '26354' + tags: + type: array + items: + type: object + properties: + key: + type: string + value: + type: string + StdTx: type: object properties: - grants: + msg: type: array items: - type: object - properties: - authorization: + type: string + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: 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 - - 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: + example: stake + 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) - ... - - 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" - } - expiration: - type: string - format: date-time - 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. + example: '50' + memo: + type: string + signature: type: object properties: - next_key: + signature: type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently + example: >- + MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: tendermint/PubKeySecp256k1 + value: + type: string + example: Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH + account_number: + type: string + example: '0' + sequence: + type: string + example: '0' + BlockID: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: total: + type: number + example: 0 + hash: type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - QueryGrantsResponse is the response type for the Query/Authorizations RPC - method. - cosmos.feegrant.v1beta1.Grant: + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + BlockHeader: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + Block: + type: object + properties: + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: '0' + height: + type: string + example: '0' + round: + type: string + example: '0' + timestamp: + type: string + example: '2017-12-30T05:53:09.287+01:00' + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: >- + 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + BlockQuery: 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 and filtered fee allowance. + block_meta: 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. - 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. + header: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + block: 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 and filtered fee allowance. + header: type: object properties: - type_url: + chain_id: 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: + example: cosmoshub-2 + height: + type: number + example: 1 + time: 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.QueryAllowancesResponse: + example: '2017-12-30T05:53:09.287+01:00' + num_txs: + type: number + example: 0 + last_block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + total_txs: + type: number + example: 35 + last_commit_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + data_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + next_validators_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + consensus_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + app_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + last_results_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + evidence_hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + proposer_address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: '0' + height: + type: string + example: '0' + round: + type: string + example: '0' + timestamp: + type: string + example: '2017-12-30T05:53:09.287+01:00' + type: + type: number + example: 2 + block_id: + type: object + properties: + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + signature: + type: string + example: >- + 7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ== + DelegationDelegatorReward: type: object properties: - allowances: + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + reward: type: array items: type: object properties: - granter: + denom: type: string - description: >- - granter is the address of the user granting an allowance of - their funds. - grantee: + example: stake + amount: 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 and filtered 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 - - 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. - 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. + example: '50' + DelegatorTotalRewards: + type: object + properties: + rewards: + type: array + items: + type: object + properties: + validator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + reward: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + total: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + BaseReq: + type: object + properties: + from: + type: string + example: cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: Sent via Cosmos Voyager 🚀 + chain_id: + type: string + example: Cosmos-Hub + account_number: + type: string + example: '0' + sequence: + type: string + example: '1' + gas: + type: string + example: '200000' + gas_adjustment: + type: string + example: '1.2' + fees: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + simulate: + type: boolean + example: false + description: >- + Estimate gas for a transaction (cannot be used in conjunction with + generate_only) + TendermintValidator: + type: object + properties: + address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + pub_key: + type: string + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: '1000' + proposer_priority: + type: string + example: '1000' + TextProposal: + type: object + properties: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: type: object properties: - next_key: + 'yes': type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: + example: '0.0000000000' + abstain: 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. - secret.registration.v1beta1.Key: - type: object - properties: - key: + example: '0.0000000000' + 'no': + type: string + example: '0.0000000000' + no_with_veto: + type: string + example: '0.0000000000' + submit_time: type: string - format: byte - secret.registration.v1beta1.QueryEncryptedSeedResponse: + total_deposit: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + voting_start_time: + type: string + Proposer: type: object properties: - encrypted_seed: + proposal_id: type: string - format: byte - secret.compute.v1beta1.AbsoluteTxPosition: + proposer: + type: string + Deposit: type: object properties: - block_height: + amount: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + proposal_id: type: string - format: int64 - title: BlockHeight is the block the contract was created at - tx_index: + depositor: type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block (actual transaction - index, or gas consumed) - title: AbsoluteTxPosition can be used to sort contracts - secret.compute.v1beta1.CodeInfoResponse: + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + TallyResult: type: object properties: - code_id: + 'yes': type: string - format: uint64 - creator: + example: '0.0000000000' + abstain: type: string - format: byte - data_hash: + example: '0.0000000000' + 'no': type: string - format: byte - source: + example: '0.0000000000' + no_with_veto: type: string - builder: + example: '0.0000000000' + Vote: + type: object + properties: + voter: type: string - secret.compute.v1beta1.ContractInfo: + proposal_id: + type: string + option: + type: string + Validator: type: object properties: - code_id: + operator_address: type: string - format: uint64 - creator: + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + consensus_pubkey: type: string - format: byte - label: + example: >- + cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: type: string - title: >- - bytes admin = 3 [(gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - created: - title: |- - never show this in query results, just use for sorting - (Note: when using json tag "-" amino refused to serialize it...) + delegator_shares: + type: string + description: type: object properties: - block_height: + moniker: type: string - format: int64 - title: BlockHeight is the block the contract was created at - tx_index: + identity: type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block (actual - transaction index, or gas consumed) - title: ContractInfo stores a WASM contract instance - secret.compute.v1beta1.ContractInfoWithAddress: - type: object - properties: - address: + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: type: string - format: byte - ContractInfo: + example: '0' + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: '0' + unbonding_time: + type: string + example: '1970-01-01T00:00:00Z' + commission: type: object properties: - code_id: + rate: type: string - format: uint64 - creator: + example: '0' + max_rate: type: string - format: byte - label: + example: '0' + max_change_rate: type: string - title: >- - bytes admin = 3 [(gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - created: - title: |- - never show this in query results, just use for sorting - (Note: when using json tag "-" amino refused to serialize it...) - type: object - properties: - block_height: - type: string - format: int64 - title: BlockHeight is the block the contract was created at - tx_index: - type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block (actual - transaction index, or gas consumed) - title: ContractInfo stores a WASM contract instance - title: >- - ContractInfoWithAddress adds the address (key) to the ContractInfo - representation - secret.compute.v1beta1.QueryCodeResponse: + example: '0' + update_time: + type: string + example: '1970-01-01T00:00:00Z' + Delegation: type: object properties: - code_info: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: type: object properties: - code_id: - type: string - format: uint64 - creator: - type: string - format: byte - data_hash: - type: string - format: byte - source: + denom: type: string - builder: + example: stake + amount: type: string - data: - type: string - format: byte - secret.compute.v1beta1.QueryCodesResponse: + example: '50' + UnbondingDelegationPair: type: object properties: - code_infos: + delegator_address: + type: string + validator_address: + type: string + entries: type: array items: type: object properties: - code_id: - type: string - format: uint64 - creator: + initial_balance: type: string - format: byte - data_hash: + balance: type: string - format: byte - source: + creation_height: type: string - builder: + min_time: type: string - secret.compute.v1beta1.QueryContractInfoResponse: + UnbondingEntries: type: object properties: - address: + initial_balance: type: string - format: byte - title: address is the address of the contract - ContractInfo: - type: object - properties: - code_id: - type: string - format: uint64 - creator: - type: string - format: byte - label: - type: string - title: >- - bytes admin = 3 [(gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - created: - title: |- - never show this in query results, just use for sorting - (Note: when using json tag "-" amino refused to serialize it...) - type: object - properties: - block_height: - type: string - format: int64 - title: BlockHeight is the block the contract was created at - tx_index: - type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block (actual - transaction index, or gas consumed) - title: ContractInfo stores a WASM contract instance - title: >- - QueryContractInfoResponse is the response type for the Query/ContractInfo - RPC method - secret.compute.v1beta1.QueryContractsByCodeResponse: + balance: + type: string + creation_height: + type: string + min_time: + type: string + UnbondingDelegation: type: object properties: - contract_infos: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + Redelegation: + type: object + properties: + delegator_address: + type: string + validator_src_address: + type: string + validator_dst_address: + type: string + entries: + type: array + items: + $ref: '#/definitions/Redelegation' + RedelegationEntry: + type: object + properties: + creation_height: + type: integer + completion_time: + type: integer + initial_balance: + type: string + balance: + type: string + shares_dst: + type: string + ValidatorDistInfo: + type: object + properties: + operator_address: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + self_bond_rewards: type: array items: type: object properties: - address: + denom: type: string - format: byte - ContractInfo: - type: object - properties: - code_id: - type: string - format: uint64 - creator: - type: string - format: byte - label: - type: string - title: >- - bytes admin = 3 [(gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - created: - title: >- - never show this in query results, just use for sorting - - (Note: when using json tag "-" amino refused to serialize - it...) - type: object - properties: - block_height: - type: string - format: int64 - title: BlockHeight is the block the contract was created at - tx_index: - type: string - format: uint64 - title: >- - TxIndex is a monotonic counter within the block (actual - transaction index, or gas consumed) - title: ContractInfo stores a WASM contract instance - title: >- - ContractInfoWithAddress adds the address (key) to the ContractInfo - representation - secret.compute.v1beta1.QuerySmartContractStateResponse: + example: stake + amount: + type: string + example: '50' + val_commission: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' + PublicKey: type: object properties: - data: + type: type: string - format: byte + value: + type: string + SigningInfo: + type: object + properties: + start_height: + type: string + index_offset: + type: string + jailed_until: + type: string + missed_blocks_counter: + type: string + ParamChange: + type: object + properties: + subspace: + type: string + example: staking + key: + type: string + example: MaxValidators + subkey: + type: string + example: '' + value: + type: object + Supply: + type: object + properties: + total: + type: array + items: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: '50' +securityDefinitions: + kms: + type: basic diff --git a/client/docs/statik/statik.go b/client/docs/statik/statik.go index 6bf146465..4e88646ef 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\xe3\xff\x07\x00\x00\xff\xffPK\x07\x08\x05\xef\x9fw>9\x05\x00\xf8\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\xeb\x96\xdc6\x920\xf8_O\x11S\xbb\xa7Kj\x97\xb2.*\xc9\x96f4;\xa5\x9b\xad\xb6e\xab\xa5\x92{\xa6\xfb\xf4\x97B\x92\xc8L\xba\x98D\x8a\x00\xab*\xe5\xaf\xcf\xd9\xe7\xd8?\xfb\x8a\xfb\x08{\x00\x90L2\x13W\x92u\x91\x85\xf8\xbe3-W\x12@ \x10\x88;\x00z\x81f3\x9c?\x81\xdd\xa3\xd1\xc1\xee\x9d$\x9b\x92'w\x00X\xc2R\xfc\x04\x9e\x13\xba \x14\xde\xbf\xf8\x11\xee\xc3Ox\x86\xa2\x15\xbc{\xf9\xfe\x14P\x16\xc3\xec\xdd\xdb\xe7\xf0=b\xf8\x02\xad &\x11\xbd\x03\x10c\x1a\xe5\xc9\x92%${\x02'\xf2\xdb$c8\x9f\xa2\x08\xc3\x94\xe4@\x19b\x18>\x158O0\xdd\x83Tv\xcar\x94Q\x14\xf1v\xbc\x9bs\x9cS\xd1\xc5\xe1\xe8`tpg\x89\xd8\x9cr\xb4\xf63\x12\xe3q\x85$\xc0\x0c3\xf9\x8f\x8d\x91_gS\x92/\x10\xff\x0f@\x13R0`s\x0c\x11\xc92\x1c1\x1c\x03\xef\xa6lG\x8b\xc5\x02\xe5\xab'p:\xc7\xb0\xcc\xc9\x12\xe7,\xc1\x14\xc8T\xdf\x86\xa1\x19\xad\xc6\x05\xb8\x0f\xdf\xa3\x04\x89\xb9\x96\x7f[\xe6$.\"\xdc\xfa\x06-\x97i\x12 \x94\xf6\x7f\xa3$+\x7f\xca1]\x92\x8c6\xbf\xdd=:8\xd8]\xff\xe7\xc6\xd4~&1\x16D,h\xe3\x13\x1a\xcd\xf1\x025\x1b\x01\xb0\xd5\x12?\x012\xf9\x0dG\xac\xf5\xc3z\x96\xed\x06\xd0Dr\\\xad\xc1\xc6'\xa6\xe6\x1c&E\x92\xc6\xe36\x85\x9a \xb1\xa2,O\xb2\x99\xe2\x83(Mp\xc6\xc6\x19Z\xe0n\xed\xc9b\x91\xb0NMg\xa4S\xb3\xce\xa8R\x9c\x9f\xe3\xbc\xfbT\xb5\x0bdi\xbb\xb1\x87\x9a`^\xda$\xf6\x1e\x8b\xc3\x82d\xc9\x19\xce;\xb5\x05\xc0\x97h\xb1\xe4\xb2\xe8\x1c\xa5I\x8c\x18\xc9\xefs\x8a)\xbe]\xe6\x84\x91\x88\xa4z\xce\x05\xeb\x14\xc5\x17GK\xddO\x0e\xf8B\x13\xe7o5\x9fLR\x12\x9d\x0d5\xc8\xe1\x81\xe6\x1b\xb4\x1cl\"\xaa!2\xcc.H\xae\x99\x86\xb5\xfb\xba\xeb\x19J\xd0\xfd#\xd5V\x9e\xa3,\xc3i79\x92&\x94\xe1l\x8c\xe2\xb87\xe3\x1d>>\x1a\x1d>\xfan\xf4\xf0\xd1\xe8\xf0\xc9\xd1\xa3G\x0f\x1f\xf9n\xc6\x96\x00?\xc5Y\x8c\xf3E\x92\xb1\xaaQO\xfc\x0eF\x87\x0fG\xaa\x05\"l\xae\xdbv-\x8c\x16$\xc7\x904T&\xc9*\xd4\xa8\x017\x85f\xa9\xc0\xbe\xc9\xd8\xe58\xc9b|9\x14\x83\xee\x92lW\xf3U\xbe\x8c\x04\x1f`\xaa\xc5\xc6w4\x16-\x9f\xec\xef\x1f\x8c\xc4\xff\x13<\xb1\xde\xe9\xbb\x0fM\xea\xfb\x15JR\x1c\x03#\xc2\x04Z a\xbcV\xe7\xfbt\x95EI6\x93\xcd\x1b\xd6Mm\xa5\xbc\x97\x1f\x94f\x14\x99\x9a\xcc\x92\x06\xa7\xbd{\xfb\xfc\x8e\x02\x9b\xef1\x83D\x1a:\x02\x91\x84BT\xe49\xceX\xba\x02\xba\xca\xf8H\x17 \x9bKV\x12\xdfT\x1cq\xf56Nc\xa6Wa\xeb\xb4H\xdd\x04\xd9\xd7\x84\x90\x14\xa3\xccqY\xdf\x0b].M\xdd\x0c\xa5\x80\xf3\x9c\xe4|A\x85\xa4\xa7\xfb)b\x982\xfd\xb2\xf2\x85\xe0\xab \xbf\x93\xfa\xc1gU\xafr5N\xd5x\xc1pK!\xba\x1d/0C\xba\xd5\xd0\xc8\x1a\xb3\x9c\x99c\x14\x9b\xed\x8e^\",\x9a\xa3$\x1b\xeb\x8c\"\xf0\x16*\x91p\xb6\xe6\xc5D\xa9\x0dAL(\x99\xcd5\xc6-\xd4\xe3e\xc5b\x82s\xfbx\x87\x9aOX\xa23H\xc1{N\xbbG\x07\x87\xdf\xde?<\xba\xff\xe0\xe0\xf4\xe0\xe1\x93\x87\x0f\x9e\x1c<\x1e\x1d}\xf7\xed7\x07\x87O\x0e\x0et\x12;+\x16cvi\x95\xd6\xae\x13\xd5\xd9G)\xa2l,y\xcf\xbe\x8a\x06V\x01'v\xe10Gtn\xfa\xdd\x91\xbc\xd0\x9c\xdd\xcb\x97\x0f_=8>8>xp\xfc\xfc\xe1\xd1\xf1\xc3\x83\xc3GG\x8f\x9f=|\xf4\xf2\xe0\xc5\x8b\xe7\x0f\xbe{u\xf2\xe2\xd1\xc3\xc3W\x07\xc7\x86\xde\x96(gF\xbc\x1d\x89\x00\xce\x84\xe0\xc0\x08C\xa9\xed#\xc7\xb5\xae\xc0\xba\xe6\x15\xd8W\x02|V\x03\x06\\\x11A\x97!\xf9\xff\xc1C\xd3\x06\x90\x1e\xf3\xd8L\x10'B\x0cE\x80\x181t\x9b\xf0\xa9=Oz\x9b\xb0\xca\xf0%\x1b\xdfN\xd4\"n_d\xb4\xb8UH\xa1\xe5\xf26\xa1#\xf6^\x8ei\x91\xb2[E&|\x9e\xc48\x8b\xf0m\xc2\x89\xeb\x14Bq>\x90\x1b\xd7\xb2n'8\x9a?8\x02\x9cE$\xc61\x94#\xd8\xa7$\xad\xb5\xc3\x18/\xcf\x1e\x1eG\x05\xfamv\xf6\x19\xa3G\x9f\x97\xb3\xb3O\x0f\x1e\xb1\xec\xb7\x8b\xf8\xf3\xf91\x9aF\x0f\xe2#]\x18\xc8\x184\x00W\xad\xeb\xa6q-!'p%\x1e8\x85\x9e\xc0\x16~\x82N\xe3\xa9\x863\x1bpV\n\xda\xa9w\x9b6\x82\xd9P\xb3N\x16\x9c&\x0cn\xc6\x99\x93\x11\x02\xb6\xe5\xab\xc0n\x909Q\x1a\x06\xa0\xb6f\xab\x04Ot\x0d\xc1\x13-\xc1o\xa2\xc1\x13\x0d\x9e\xe8&\xd8W\x02|V\x03\x06\\\x91\xe0\x89\x06O\xd4\x01\xab\xe0\x89\xfa!\x15Sn\xc6\xad\xda%\xd7?rCg_\x99g\x13l\xe2`\x13k\xc1y5`\xc0\x15Y\xe6X\xf2\xbcU\xf6\xebw\x1d\xd8v\x1e\xb8\xaf\xa9\xeb\x8a\xd6\xf6\x99]uIp\xa6\xee\xbagKE\x8f\x04\xe7~\x9b\xce\xbb\xd6A\x97`\x0bGH\xb8\x8a\x91sRd\x06\xe9$\xe1*\x06f\xc9\x02S\x86\x16\x16\xcd\xd6q\xf0N\xc1\x12 b<'\x9c\x9c\xa4F\x8d\x93.\x14%\xc1\xae($8\xee*\xf0\xd8Y\xe0,\xb0\xbc\x16\x03\x06\x14ZkpP&\x12<\x08\x05\x9e\xc4\x02w\xf5\"\xc1\x83]*pV5\x12\\\xd7\x0f\xfc\xd7\x10\x06_G\x9a\xcc2\xc4\x8a\xdcq\x9b9aZc\xf8\x9f\xf7\xads\xfa\xb68}\xfe\xed\xf1_\xd3\xb3\xec\xd3\xff\xfc\xed\xe5\xc5\xec\xdb_\xb3Go\xbe\xfbe\xf1\xed\xab\xe2\xef\x07/\x7f9\x9e\xfcv^\xfc\xf6(\xbf\xf8\xe1pq\xfa\xe1/\xf9\xbb\xe2\xcd\x9b\xbf\x9f\x9f\x9c|:}\xfc\xebo?\xcf\xde\x1e\xbc;\xd9?}\xb1|T\xec?>:\xf9\x94\xff}\xfa\xdf\x7fy\xbf|\xf6\xd7\xa7O\xeb\x81\xfb\xd5\xda\xfd.\xb5\xc1\xbfd\x07\xbaj;$E\x06 \xfe\xcf\x08\xe7\x0c%Y\xa9G\xca\xcf\x87.\xbc[\xa2\x1c-0\xc3y\xeb\xe3${\x02K\xc4\xe6\x8d\xd9\x8a\x13\x01m\\`\x93\x08\xcf\x04\xf2[\xdf\xe4\xf8S\x91\xe48~\x02,/\x9aE\xf2\x9a-ty\x7f+\x08\xdf\xa9>\xb0AK\xba\xc4Q2M\xa2m\xe4B\xb5\xa0\x83'\xe3\x1a\xc8\x089\x9a\nB\x8e\xc6.\xe0\x87T@\x0e&\x84\x13\x11\xc0\x99\x10\xe0n08\xadu\x05\xd65\xaf\xc0\xbe\x12\xe0\xb3\x1a0\xe0\x8a\x84\x1cM\xc8\xd18`\x15r4~H\x85\x1c\x8d\x13^!G\x13r46mw\xabr4\xa1Z\xb0\x06\xebd\xc1i\xc2\xe0f\x9c9\x19!`[\xbe\n\xec\x06\x99\x13\xa5a\x00j\x87j\xc1\xe0\x89\x96\x10<\xd1\xab\xdfnM\x08\x9e\xa8\x06\x9cW\x03\x06\\\x91\xe0\x89\x06O\xd4\x01\xab\xe0\x89\xfa!\x150\xf3\xbe\x18\xb0n\x0c\x14_U\x9db\xa7\x02\xc0\x16b\x80\xb6o3\xbc\xe2r@\x9dN70\xf5z!t\xcd\xd46\x99\xd6\x16\xb3\x08A\x9b\xd0\xb3XZ\x0e\xdb\xb3{\x80`#\x9b>>\xce\x1f\xfd\xf6x\xfepztq\x9c\x1d\xa5\xca>\x97\xc5d|\x86W=f\xe3\"djt#\x92\xd1e19\xfc\x1c\xfd\x16\x17x\xf9\xe9\xe0\xbc8\xfa<;\x9b\x9d\x1d?\xc6St\x90}\xba\xf8\x9c\xc5(\xfb\xf4pq\x1c}\xbbD\x0f\x8ac\xb4\xfc|<;\xca\x1f\xcf\xe8\xf2\xd3\xec\xd1\xecqD\x1f\x9c=\x8e\x8a\xa9r\xacs\xc2\x92l6^\x92\x0b]b\xceoJ\xbb\x87\x07:\xcb\xa8\x0e\x1a-\xf3\x84\xe4 \x1b\x84\x84\x1b\xe3\x0d\"\xba\\\xeb\xac7DC(\xb6\xee[l\xbd%k\x1bE\xd7A\xd6\n\x08\xb2\xb6\x01\x0e\xb3 \xb2\xf6\xead\xed\xf0\xe6\xe9\xb3\xea\xb4Ei\x99f\x84\x01:GI\x8a&\xe9Z\x0eu\x14\xf2\xec\x92\x8bvD\xe7\xdb\x82=\xc6\xcb\x1cG\x88m\x88\xbc\x0dy\x7fz \x93\x95\xf0\x91\xca\xdf\xb7d{\xfb\xb1\x97-\xd4\xdea\x96'\xf8\x1c\x03j\xbe\x0b\x03\x05M\xb2\x19$\x8c\x8a\xbeGe\xcb+\xd4 \xeb\x19l\xa1xz\xb9\xf9\xb3E\x19l\xb1NC\x19<{\xfe\xec\xe5\xd1\xc1\xcb\xef^\x1c?\xfa\xf6\xe1w\xcf\x1e?:y\xf9\xf0\xbb\xef\x1e<\xfb\xf6\xf1\xd1w\x0f\xbf;z\xfc\xe8\xe4\xf9\xc1\xa3\x97\x0f\x0f\x8f\x1f<<~|\xf0\xea\xd9\x8b\xe7'/\x8f\x1e\x9e|{\xf4\xec\xc1\xf3\xe7\xdf>zv\xa7\xc2\xc0W\x97\\\xca\xcb\xdd\x99|\xf9\xe6<\xe1\xb2kcZ\x03)\x0e\xb5\xc7l\xdcUf\x91\xf4\xe2\xe0\xbb\x87\x87\x0f\xbe{\xf1\xf8\xf0\xc1\xe3\xc7\x0f\x1e\x1f>>z\xfc\xf0\xd5\xab\xe3g\x07'\x8f\x0f\x0f\xbe}u\xf8\xea\xe8\xf9\x8b\x97\x07/\x1e|{\xf2\xdd\xb7\xcf_\x1e<:>~yt\xf8\xed\xf3g\xaf\x1e<;~\xbc\xfd\x84\x83Y\xa5ib 5\x86\x0f\x1e}\xb7\xf1#S\x046\x8d*\xcb\xac\xb0\x16TqO=Xt'\xd8\xe2\xc6\x16\xa16\xc5\xc64Q\xafL\xcd\x0cY\x03\xe2Fa\x8b\x16\xa4\xc8\xac\x15e\xb7+\xa6\x1e\xe3\x8c,\xcc\x9f8\xcd\xbd\x82\x9a\xfd(Cg\xaa\x07q\xd6`#\x97\x84.c\xef>T\xaa\xd6\x05^t{M\xc9\x12\xad\xb2.\x89}1\x1c\xe2aN\x84p1\x99\x00\xde\xbc\xfc\xf0\xfc\xf5__\x1c\x1cM\xe9\x8b\xb79\xfa\xee\x0d\x9b\xbc\xa3\xabg\x87\x17\xdfN>\x9d\xbey\xf8\xf0o\xc5\xe1\x83\xef>\xffu\xf2*\xfa\xdb\xe5\xf17\xcf_\xadN^\xcf\xf0\xc3\xbf\xfd\xfcv\xfa\xe3\xeb\xe2\xfc\xf3\xb3\xbf?z\xfcf\xf5\xe9\x07\xfa\xe9\xc5w\xef\x0f__$/\x97\xdf$\x1f&\x8f~}\x1f\xb3t9\xfb\x9f\xa7\x9a\xa1-\x16\xa1\x03!\xc1\x89\x98Pue\xe4\x17'zB\x93\xa6\xacv\xff\xf6\xdf\x16\x93\x1f\xf1\xea=\x8e\x96G\x0f\x1f\x9d\xe9\x8a?A:\x19\xc5\xe0\x98\x9c\x9c\x7f>8\xfeu\xce~\xfc\xcb\xfc\xbb\x93\xe7\xcf\x7f\xfd\x9c\xbe\xfe\x0e\x9d\x12\xfa\xfd\xea 9{\xf5\xdf?\xbe\xfe\xf5\x87\xbf>\xf8\xed\xc779\xa1?\xe8\x84U\x14\xf1\xed7\x96j\xc4\xb6&\xael\xa7O\xf9P\xfc\xa9\xd0'\xf9a\x80\x91d\xfd\xcf\xa0*.%F\x15\xa7\xc5u\x86\xe8\xf8\x02e\xdc&\xed\xd2\xbc\x9d\xc6:\xd0x\n|\x90\x82\x0e1\xc4\xa3\x07\x0f\x8fU#\xd8\x1e\xcc\xeb\xa5\xe2\x8d\xdb\xdce\x93\x1bE\x89\x03\x01\xc0ew*{1;1\xaf+\xef\xa5\xf4f^6\x9c\x18\xd9\xc8\xee\xbd8x'\xeb\xd7\x970\xca\xa3\xf9\xe6k\x95[h)>\xe3.\x11>\xc7\x19\xa3\x83:.\xe2\x11\xa9\x06u\xa4\xe7\xb2\xc0\x94\xa2\x19\x1e\xc9\xb1\x1b?k\x16\xaa\x85\xfc\x86:kz`r\x02@\x8bh\x0e\x88\xc2n{\x9c\xa7\x14g\xf1.\\\xcc\x93h^J\x08\nI\xfbu3\xeejLI\x9a\x92\x0b\xee\xcb\xe1,^\x92$cO`\xf7\xfb\x97\xa7b\xd5\xfe/U\x9f#\xee\xe1b`s\xd4fb\x8c\xa29,H\\\xa4\x18b\x12\x15\x0b\x81\x1e\xf7\x10\xc9E\x85\xed\x08RB\xce\xc4\xd3\xa3\x97\x97\xe3\xf2o\x8b\x18\x92\x8c#\xd3\xea.\"\xb9\xf4\xa1b\x8e\x9c\x0cw\xdc\xa7\xf1\xd9~L\"\xbaO\x978\x828\xc9q\xc4H\x8b\xe6\x0dO\x8ec\xeb\xb5BT\xe8\xb9\xe1V\x883\xb3t\xead\xcf\x92\xb2\xad\xcfuT\xfeS\x1b\xa7\xa7e\xa1\xa0-,u\xf0hyyy\xbe\xab\xa6\x87W\x1fN\x84[\xa2\x19\xd6\xd1\xe5-\x9a\xe1m_MR4\xc9\x18\x9e\xd9\xa2\xb1\xe6\xa1\xd3d\x91hC\xc4o\xd0e\xb2(\x16\xe5\xf0@\xa6R.\xc3\x12\xe7\x9b8\x0f\x86\x10\xbb\x1c-\x92l+\xd6\xab\xeb\xbf\x85oK6\x91LFvK\xd6)\xa3J\xb3\x1c#\xc6\xe7\x92\x03\xfeT\xa0\x14\xd8<\xa1R\x8c\xab\xb1>z\xe8\x8c6\xba\xbc2\xb4SL)\x17\x15\x99;\xe2\xdf \xc5_\xfe\xe6\x1dF9IS`\x97\x14\x16\x88Es.9Z\xf1\x14)q\x1am\x07\x8a\xa8\xc8\xd3\x16\x91\xda\xaf\x93\xfd\xd9\xc2\x16\x9b\xb6\xf4\xa0\x9dq\xa6\xd7Z\xbc=\xba\xd4\x94\x82t\xebQl\xe9\xae\x9d=\xd8,\x16QV\xf4\x9a\xcc\xb7\xab\xcan\x98\xeaS\x1cl5\x17\xcfv\xe0\xf8\x9b\x04sa\x9eqU$\x18\"r\x12Tq\xb9\xf2\x97a,em\xa4N\x82\xcd\x98\x97`\x8dL9-\xa3!\x82'\xc1a\xca\xe08m\xb0\xc5\xf4$8a\x0d\x9e\x01+\x1b5\xc1\x8d\xa2\xe0N\x11 \xaet\x91\xe0\x14\xfd\x93\xe0L\xa5\n<\"\x81\x12\xdc\xc8+\xa1;6\x9a\xd8\xa0\x04}\x84P\x82\xd3\xb0\x0e\xb1<\xe7Eu]N\xa71\xc1u\x06\x12\\$n\x057\x14Q\x94`\x8d+Jp$9x\x90\x1d\xaan\xad_yQ\x1ezG\x1d%X\xa3\x1b\x15t\xc5m\x808\xa4\x04\xd7h\xa4\x04\x0ft\x1d\"\x93\x12\xec\xf1I C\x8e\xad\x8bXJp\xe0W\x17>\xd5\xc60%8\xcd\xc7\x16\xcf\x94\xe0\xd4\x95[lS\x829\xc2)\xc1\x7fP]\xb4S\x82>\xe6Y\xfe\xee\xa4\xde\x1dT\xbb\xc3\xf2JpYd \x0eB\xd0\x99`\xe0.?\x94=\xbaU\x98P\x19\x94\xdc\xf0G\xbb\xc5W\x01\x96\x84\xd6\xbb\xc9'\x82\xfa,'(\x8e\x10\x15Ek\xc9,\xc31\xb0\xcb;\x8a\xa1\x95\x1f\x02#\x80`Z\xa4i\xf3\xdd\xfb\x88d\xb4X\xb8ER\x87\x08\xbaNH\xac\x8aj\xd4\x18\xeb\xa8\xb9\xa1\xdcO\xe7\x98OiQP\x06\x13\xbc\x9e\xe6{\x16\x9f^\x8e\xc4\xcf\xb4X.I\xcep\x0c\x93\x9a\x1c\x0b\x12c\nI\x16\xa5E\xdc\xb6\xf5>\xee\x88p\xc8\xce\xc7\xbb9fE\x9e\x01\x9a2\x9c\xf31\xe4\x19\xb4{{\xf0q\x87\xae\xb2\xa8\xf9\x05\xce\xe1\xf9\x1cGg\xa7\x97\xf7\x005\xa2\x97\xb2C\xd4\xfe<\x17\x11\x16t\x81V\xf7F\x8d/\xb5\xb5/C\xc5:B5E\xa8\xa6\xd8\x00'\x7f\xcaa\xee\x15x\xf8P6rI\xe82v\xa8\xa6\x08\xd5\x14V\x1f\xc7\x89\x9e\xd0\xdb\xafq\xb0H\xfc1\x19\xc0\x8bq\xf5_\x9c\x90\xb3\xfa\x0d.\xdeJ\xff\x91\xb4\n\x94\x03W\xf8\xdb\x83\x1b\x9bXp\xaaq\x11\xf6\xc2\xc6\xcf\xd5|\x15\\\xba\x1es\x8aR\xaa\x1b\xb4S\xac[K\xbd5\xdd\x0e7\xe96\xc5x<\xcb\xb9\xaf\xa4M1h\xba\xedR\xbc\xbf\x99\xd4\xecx\x83\x8a\x9a\x86\xdeI\xa7\xd3\xcb\xb5I\x98d\xb3\xd2\xbfm|=\x90\xe9\x15q\xdbp<\xb0\x01\x16)9\x1a\xeaN\xb7\x93\x80\x15\xc4Hu\xeb?\xd8\xd6\xdb\xe6\xdf\xda\x86\xb59\xe5\xb6\xf6I6\xed\xa6\xc0\xbbVE\x85r\"7 \xa8cN\xe5Ap\xc1|\xe2\xffjV\x8a\xff\x1f\x13\xef\xc1\xc3u\x9ay\xf3\x83\x92\xbd\xe0\xf0@\xfd\x8d`!\xf1\x7f\xbd\x96\xfb>\xec\xaa\x15\x9b\xe2\x87\x18\xa7\xc99\xce\xc3n\x0f\xbb]\xc0\xd7\xb3\xdbU\x17M\xfe\xd1w{\x9f#9\x1d/\xa60\x9f\xb2\xd9\xdcP\xddB\x93\xe2\xfc\x9a\xb4\xe5d\xdbf\xa4r\x80\x12\xd0\x97\xa2\xeb\x8d\xa3i\x8c\x88\xa2\x9f\x93E\x92\x11\xb8Hr\x0cS\x92/\xeajE]\x14P\xd9\xd7\xdd2\x0cHr\xc8\x08\xbb\x07\xd3\x9c,\xe0/\xef\x7f\xf9\x99\x8f2A\x14?:\xbe_\xd9\xaab\xc0\xba;\x8a\xf3\x04\xa5\xc9g\x1c\xc3d\xc5p\x85\xfa- \x8f\xea\x16\xb2\x0c\x832RZ\xe0\x8d\xefB\\\xd1\xb6#C\\\xd1>O \xf6\xd9J\x08qE\xb0\x0f\x12\xe2\x8a!\xae\x18\xe2\x8a.lw\x13qE\xff`\x92T\xc1\x17H\x9c\xed\x880\xa5\xd3\"MW\x10\xe32$\x96\xc5\x90\xe3\xca\xeah\xf4r\xe5z\xd8f\x88\x8a\xb7'\x156\xd1\xfdM[H\x1c\x00ab\x9ek\xa2\x18\xf3\xe6\x0d\xa2,P*\xed\xb9\xc6\xe4{\xdc\xae \xc9*\xdb\x0el\x9d\xbe\xc0\n\x8bRX\x90]\xecSeoJ\xfb\xd4\xcb.\xe5\xb6\x1e7h\xcb\x0f\xbe\x18\xfbT\xae[\xe3\xbb\x9b\xb3Om\xfbB\xa9\xed\xde\x9f?K\xfe\x1b\x1f\xff\xf8\xf6S\xf2\xdb\xff\xfc\x9d\xfc\xf8\xea\xd5\x0f/?\xff\xe5\xbb\xe8\xe8\x87\xb7'\xd3\xf3\xa3\x97\xaf>D\xaf\xe7\x97\x07\xab\xb7hv\xf1r~\xba:8\x7f{\xf2\xcd\xf7\xdf\xcf\x9f\xbf\xa4\xe9\x8f\xff\x8d\x8eO\xa6\x07\xc5\xb3o\x16\xd3\xf7s\xf2\xe6\xf9\xec\xd7\xcf\xf1\xf7\xaf\xf2\xbf\xbf{\xfd\xe2\xcd\xe9\xc9\xc5\xcb\xd9_\xffz\xf1\x17\xf2\xa6\x1cvh\x114\x02Y\xa2Z~\x06IVe\xd5[v&\xf4\xbb'\xab\xcbiboC\xe4DMu0Z\x1e\xdb\xdaS\xa95\x0d\x92\xc9$\x93\xb4\xda\xd1\xb27,\xdaP\xaf\x05]\xfbmi\xbd>\xbb\xa6d\xf5\xc6\xae\xd9\x17.\xc7\xb4\xe6O\x07?\xa9qKC\x16CD\x92\x8cJ\xe7\x84d\xeb\xcd\xc4\x08\xa0\x8c\xb0y\x9dg0l\xa7\xebvL\xfeX;\xcf\xe8n\x95\xcb\xa1\x9b\x95\xa8}\x16zS\xc4\x1e\xd8\xa5H\x85\xf1\xf9\xb4\xef\xb3\xb8j\x07\x8c\xbb\xb5\xe3\x1c\x7f\x1a\xd4\"\xe3<\xd9W\xd7\x95\x0b2{\x8c\xe6\xf9\xa3\xcb\xf9\x9c=\xcc\x17\x9f\xceq\xf6\xe8\xe8\xbb\xec,\xbdL\x8b\xcf\xab\xf3\xef>?\xfe\xed\xd3o\xd1\"Rv\xb5\xb1;%\xadK&\"9\xfc\x88W|\xf2b\xb9\xf8\xa6\x99\xe1\x0c\xe7\x88m\x04\x03\x14=w\x8e)7f\xf7\x1eg\x0c\xce\x13\x04\xcf\xc54\xe1W\xb2B3\x9c\xc3\xff\xf7\xff\xfe?\xff\xb7\xa2\xa5\xf9AS\xf7a\xe5h\xf7\x7f(&\x8a\xef\xbe(Kh\xabT\x0ez8\x8f\xcd\x8e\xcdW$\xa1\xf8\xb7\x82\xb2\x056\xbb\x9aN\x03\x1d\x8e\x8eT\xa3L\xb1\xceh\x0fn\xac\x02|\xc7\xd3\xe4\x89h\xb2(R\xc4\x8c|9!$\xc5H%\x11\x1a\xfd\xab\xcbF\xc1\x10\x82l\xc3K\xca\x12n\xabsn\x13\x11\xdd\x8d\xd0d\x84\xb2\x8c\x88\xd34\x05\xc5\xf1\xe6\xe5Ck\x88H\xf6[\x91\xc9F\xe2\xee\x90J\xbc\x8dI\x96\xae\xeem\xb4\xd2\xd1\xd9\xc4rWu\xb5\x83\x91\xc5\x1c\x96\xdb\x81\xb5\xccl\xe53F\x83\x9d\xd4v\xf8\x91\xf9r\xda:\x18(c\x81\xd5\"\x85h\xa0\x84\xae\x02=D\x03[p-b4D\x03C40D\x03\xe1\x1am`\xe7h`u@:\x97\x8f>\xad[\xf5\x08h4n\xa9\xf2\x88\xfc\x9d\xf2V\xe2\xd0o\xba\x022-c\x18\xf2\xa6B\xe9\xe5\x94-\x86\x89\x01z\xc7\xc6~\xf9\xb1\xf1\xcb@\x9a\xd7x\x9fW'\xdd\xfb\xd5\xd9V6V\xd5\x96\xca\xaeYu\xffw1\xf9$\x13LR\xc6\xac\xb7#U\x8a8\x95\x8c\xe74[\xdfQ\"\xf1\x9c$\x99\xfa3M\x10GI\x8cFL\xaa@\x8c,\xc4\x0f=v\x18\x02\x9ad\xb3\x14\x8b\xad\xa6B\xefv\xef\xb4\x0d\xea\xb8\xc99\xddT;\xb3\x11*\xd8\\\x11\xc2\xf5\x16\x7f\x9b\x89\x8fF\xcc\xaf\xbe\xeb\xd1$\x05O\x8a\x9a/=\xd6\xe6J\xe3\xb1\x8d\xcf\xae9\xfc\xea\xcdr'j\xaa\xf3\x05\xd9\xa2<\x0c(\xff\x95\xc6\x95A\x12j\x0c\xa2\x1eF\xf1\x00f\x8d\xf1=)K[\xa1\xe5M-\x837\xd6\x02\xdf\xf14A\xade1I\x93\xe8v;\x0e\xfd\x8c\xff\x0e\xa6\xb4\x87\xcd\x8b\x1b6/_\xd2$\x9b\xed\xc78\xc53\xf1\xcc\x1b7(\xca\x7f\x9f\xc4q\xfe\xaf\xea\xa7\x84T\xbc\xeee]4\xba\xba\xa3D\xed\x99Lz\x9dD\xd1I\x95\xc4\x98\xc2\x8b\xaa]\xdd\xa6\xa3\xad\xe1/\x80=\xd5\x1eJShPH\xe6-\xd1z\xe2e\x9bM\x8d\xf7^\xd2\xbd\xfc\x8b\x87\xd2\xf3\xd6\x0e\x8e\x06\xc9U'\xc2Kr\x98^\xa57n\n\xa7w\xed\x8d=\xd09\xca\xd5;\xde\xd8\xac,'\xd0\xb7\xfb\x1a\xbd\x16's\xb5^\xf4-\x9b\xaa\x9b\xb9\xda\xae%X\x17\x0d\x14\x93E\xc2\x1a\x9b\xb0\xdaT~u\xc4[\xed\xb7\xf0*\x85\x12\x06\x94\x95\x84\xe5\xa2*M>\x15IU\xb5 n9\xabY\xd5i\xe3y\xd9\\!\xad\x1d\xd2\xda%\x0c`\xfb^_H/\xa4\xb5\xb7 x\x00\xfa\xcfl\x1e\xc0W\x9e\xd6v\xb0\xa6\x8c\x84n\xcd\xed:/Qr0\xe2\xae\x1a\xf1^\x8f6\x9b\xeb :)_\xc3\x16\xb5n\x16\xeb\xb6\xb4\xe7\x8b]zolB\xb3\x1bs5e\x97W\xe5\xf1x\x19^\xa1\xcc\xa0\xd54\xa8\xb5\x16\xf8\x8e\x17\xca\x0cB\x99A\x1bB\x99A\x0d\xd7\xe5\x93\xf4\x8fgp\xbft\x1d6\xa8\xca\x10\xda\xe1\x85\xdd\xe3\x83C}\xd7?\xe2\x15,\x11\xa5\x17$\x8f!\xa1p\x91\x13\xe7\x98\xae6\xab\xe7\x17\xd3\xdd\xff\xbd\xb6\xca\xc4or\xbc?v\x8c\xd70\x9b\x161\x8c\xb3\xf9e\xc9-t\xf9a9\xa5\xed\xc8O\xaf)u\xb0U=\xa2\xd7\x7f-p\xbe\x92\x05*E\x9e\xe3\xac\x19B\x83 f\x17\x18g\xcdH\xb68\xd0\xb1\x1d\xdd\xba\xf5\x91m/;\xaf\x9fk\xd5\xcf\xbf\xd1\x05\xa8\x0dM\xb4\xc1\xe9\x1e&\xc0\x97\xe5\x91\xf4\x12\xde\xf5z\x0d\x14\xa1v\x11\xbdE6\x91\xef\xd4\x8eCb\xcd\x96X\xabi\x15Rl\x02n{\x8a-\xc9\x12\x96\xa0tl\xcd\x99i\xdawm\x17\xe5X\xac\xe2X\xff\x0e\xa5l\xaf\xbb\xfau\x91dc\x96,\x0c#o\xddq\xd9M\xea\xac\xdbw\x120\xe6\x14\x18\xca\x94;\xa6\xda\x01C\xe7\xc3>\x88\xb1\xda\xd90\xfe\x17\x1c\x97\xaa\xac\xda\xa9!!\x16\x12b!!\x16\x12bj%XA\x88\x1c\xea?\x0b \xb1\x90\x10\xbb\"\xc4;\x04\x19\xd6\x10\x12b!!\xd6\x00\x93\x88\x0f 1\x05\x04\xb5\x16\x12b!!\xa6\x82\x90\x10\xab\xe1\xba|\x92ab\xaa\xaa\x08\xc4\x97\x94\x1aS\xc6gC\x92\xac5\x9b\xaf-I\xa6\x8fE\x87\x1b:M\xe7z%\xeb@\x96A\xc8\xc8\x85\x8c\\ _\x94\xf7\x1b2r[\x10B\x97\xfa\xcfBF\xee\x8f\x9e\x91\xa3yT!\x7f#\xf8w\x08l\xaca=\x8d\x98\xb2\x9b[\x83^s\xe8P\x0f\xdb\x12\x87\x07_V\x96.\xdc\x9bkU\x19]\xd5q\xc8\xdf\xb5\xe0Z\x94`\xc8\xdf\x85\xfc]\xc8\xdf\xc15z0\xc3\xe4\xef\x9a! M\xde\xee\xca\x82F\xb5\xd5\xf2UD\x8c<\xe2\x99\xeb4\xd4\x9aD\xc0\xe6\x88\xb5\x12O \xad\xea\xaf\xeb\xa8\xec\x1f%\xa6i\x10j&qF\xca\xf4c\xe7\x13\x0d\xdd\xac\xe0a\xed`i\xa1\xe2\x8c\x16t\xbc,&\x1a\xc1o\x99\x86M\x8f\xd5x\xf2\xb1\x96\xc5\xe4\xf0s\xf4[\\\xe0\xe5\xa7\x83\xf3\xe2\xe8\xf3\xeclvv\xfc\x18O\xd1A\xf6\xe9\xe2s\x16\xa3\xec\xd3\xc3\xc5q\xf4\xed\x12=(\x8e\xd1\xf2\xf3\xf1\xec(\x7f<\xa3\xcbO\xb3G\xb3\xc7\x11}p\xf68*\xa6[\xe3\xfc\x86\x92\x14+CNf\x7f\x982\xc4\n\xc3\xda\xe9Nu0r\x86\xd5\x17tZ\xfc\x9e\xcaw\xedxe\\\x93e\xb4m;g\x1c\x17$K\xce\xf4\xef\x9c[\x15F\x12\xe3\x8c%L\xfbx\xbd\xb5\x83\x0b<\xa1\x89.\xb2\xe1\xd0\x9e\xe2\xa8\xc8\x13\xb6\x1aG$c(\xea\x9e\xab\x8c1CIj1\xce5\xed\xb9\xa0\xb4\x1e\x17\xb2\xef&\x95J\x17]'\x19\xcb\xd1\x98]\x8e\x85\x01\xa1^.3\xf76F9\xd8\xfaq]\xa5r5sX\xf7o>\x16\xe5\xd0\xfb\xe1\xe3o\x0f\xee\x1f\x1c\xde?8<=8x\"\xfe\xff\xdf\xb7\x07\x8c\xc8b\x91Pz5[&\xd7\x06\xe2\xac\xf3\x00\x1b\xa58,\xd0\xe5\xf8:\xc6\x88\xe6(\x9b\xe1+\x1f\xaaX\xc6\x88a\xff2\x806\xb8r@G[u\xdd\xfe\x1a\xcc\xd1P\xff\xd5\x9a\x8d{\xfd\xd7F\xfe\x7f\xd8\xd9t\xb0\xaa\xfcm\xeeF\x85\xca\x1f\xc2\xe0\xf6\x8a\x12\xda\xedggC\xc8\xd5v\xee\xbf\xc6k\xb0\xdb\xcdF\xf4\xcd6\xf3\xd5[\xcc:{\xd9d-\xeble\x93\xad\xa1\xb3\x93\x0d\xc4\xb1\xdb\xc8\xc6\xc6\x06\xfb\xd8\xa8\xea\xcd\x8a\xdeh\x19[4\x96\xd9*\xb646Z\xc4\x96\xb6n\xd6\xb0\xa5\x13\xa3%lhk\xb4\x82\xdd\xf6\xc6\xb6\x11\xe1h\xff\x9a\xad_\xad\xedk\xb7|\xbb\xe2m\xb3y\x1d\xfbu\xb1wM\xd6n\x8f\x0d\xa07\x0c\xad\xf6\x9a\xc5(4[\xb8C\xf4n\xb5m\xfb\x0eb\xb5j=\x06\xb8\x12\x8b\xf6J\xcba7C\xab\x1e\x86PC\xfbUu\x95k4#\x94\xc5\xfc\x9f\x98\x8e\xe0\xd9\nb\xbcS}{5\x12\xe9jmX\xcaP\xce\xacF\x9c\xd6\xf8\x8c\xf1\xe5\x98L\xa7JEgi,\x93\x15\xe3\"cI\xea\xdd\x98\xebX\x1c\x8f')\x89\xce\xa8\xbd\x18`SBxZ\x92\xcbb\x92&\x11\x9c\xe1\x95\xb8\x9f\x88d\xb5 \xb7\xb5?\xfb\x8b\x1f\xa3S\xcb\x89&\xfb\xf6\xb9\xcd\xef\x83h\x07\xa8\xa4\xf9\x96\x1f\xd7\xc2\xf0=\xce\xe2\xd6\x05L\x8c@a\xe9\xe0j.\xa8\xe9$\xc04l\xa3\xf2\xd9\xf5\xae\x82\xd9\xff7\xc8\x85\xad8\xc20\x8e<\x88\xa9\xb5\xe6\xb0\xbb\xbb\x85\xad\\\xe6g\xedK\x18\x15\xf72j\xb1\x1f\xc8,\xba\x92\x0b\x16\x95\xd7\x01\x81AJV\xe0p=\x8e6\xf2\xa5\xbc\x1e\x08l\x13\x01\xebd\xc0tU\x10\xd8\xf1\x02kH\xcfN\x17\xb0\xd1\x06\\\xe6)\xc1>[ \xd6k\x84\xc0m\xee\x158D>+\xb0\x91KB\x97\xb15\xf7\xebu\xbe3\xd3\xe9B\xa0^\xacg\x19\x01\xec8J\xb0U\xbfJ\xb8\x81\xeb\x878\x18\xaf \x02\x17B\x82\x131\xa1\xea\xca\xc8/N\xf4\x84&M\xbd\xaf%\x02\xfb\xd5D\xd0 \x93\x9eW\x14\x81\xe35E\xe0\x8a\x9c\xb5\xd2\xceve\x11\xf4\x18\xc9\xdb\xcc\x0f\xb7\xe6Y\xb7Q\xb85\xcf\xbc\x17\x1d\xd5\x9c]\xc5\xf9\x8e\x17n\xcd\xbbV\xb5\x15n\xcds\x1d\xbd\xa7JrQGV\x84,j\xe8\xe6n\xcd\xdb\xf2k\x81\xe4\xb5S\xb6\xee\xabg\x9cb\xc8\xa4A\xd9g\xc3\xa5/\x9b\xd8B\x00\xee\xc1\x04o\xbd\xed\x18\x9e\xf3\xd3\xce\xe8r\x8c\xcf\x93\x98\xf3\xc5\x18y\xe6\n\xb8\xc8[\xc7\xbc.\x92,&\x17^\x1d,\x92l\\v\xb2\xc4y\x97\x1ebRLR,:\x19\xcbt\xc08.\xf2\x0e\xf92r\x91\xb1d\x81{u\"\xb8f<\xcde\x98j\xdc\xc0\xad_7\x125\xc7>:\xee\xa2\x199\xdf\xe7lB(\xaa\xaap}\x02z\xf5\xf3\x1cU\x1fw\x14\x83\xab\x02yT\xd3\xf0z\x02x\xdf\x93sN\x8e,\xaa&\xa4\x0e\xe1\xb5f\xb1\xa1\x9fk W\x88\x18\xec\xc7\x9dj\"c\xbe<;\x1f!B\x19L0|\xdca\xf8\x92\xed|\xdck\xb5\xfe\xb8S\x8fXf\xebv>\xee\xc1\xc7\x1dJ\xa6\xec\x02\xe5x\\,g9\x8a\xf1\xce\xc7F\xb32\xfdA(\x1b\xd7\x83M\xfe\x98A\xb6\xf0\x8a\x89mv\xe1\x15\x13Uc\x8f\xde\xc3+&[\x10\\Q\xfdg\xb6(\xebW\xfe\x8a KX\xeaj\xaaHh\xce\xc6\xa7]K\xcfz\xb5l9\x8d\x97\xaa\xe44\xa1\xfa\xf3>\x9a.[\x8b\xd2\xed\xa4`\xb7\xe7W\xaa\x82\xcb\x18/ M\xb4\xf5]\x9d\x82m_]\x05\xb9\xb7S\x16\x82\xa9Vn\xe8\xaaKC0\xb5\x05\xd7\xa2\xc1B05\x04SC0\x15\xae\xd1\xfd\xf0\x0e\xa6Vv\xcf\x10/\x8cx\x05I\xe5e\x12u\x90\xe8\x8eb\x9c\x8dOZ\xb7N\x08\xdbq+\x9ez\xf5\xc1\x1b}\xb1\xe69a\xad\xe2\xca\xd6T\xc4\x8f\n\xcbM\xf7\xf6\xb2f\xd1M\xe3\x97\x16\x1b\xd1\xe2P\x7fp\xb5xl]\nhr0j\xf6\x93\xad\xf6\x9a\x010\xba\x0ev\x95\xa8\x8f\x978OH\xbc\x1d\xf6:',\xc9f\xeb\x9fE$\x8cR\\\xfe;\xc7\\\x10\xf2\xff\xea:eoK\xce1\xbc~\xb5\xd5\xaf\xb5S\xa3\x8e\xd0\xc8^\xb5\xf7\xa0\xa9}/\x0f\xc7\xc5\xb7\xad\xc5\x07smm\xbb\xf8M\xd3~\x9ad|h\x94\xa6\xabq\x8ei\x91\x1aj~;{2\xbb+Lw\xcd\x96\xa4\xa3\x97q0:\xa8A]&\x82&\x94!\xd5\xe1 \x03\x8f\xb6\x9b\x91\xeb\x9aXF\xc6\\\xfc\x8f\xcf1\xd3\x04<\x07\x1dR&\x15\xba]i\xc6\x0839\xd36\xd7\xc3\xe0x\x0c`\xe2Y\\\x0e\x07\x12:\xba\x1b6g\xc3o$e\xa8\xac\xd4\x00\xb2\xde\xdfk\xa9\xdc\xec\xa4O\xd2\x16\xd948\xba\x9aJ\xed\x0c\x99L6\xb7\x0eX\xf9\xa4\xcb\xbe_g\x08\xd6\xe7\xd2dgk\x05\xbb\x9d;\xd88\x9e\xd3\xa9\x8f/&\xb1&\xaf\xeb\xd5M\x8c\x1b\xbf\xf2u q\xebP\x92Qq<\xa9n\xd0\xeaJ6\xde\xae\xa6\x0f)4G/%\xa4\xd0\x1a\x10Rh\x12B\n-\x04 \xdb\xe0;^H\xa1\x0d\x93Bk\x9d\xe9z\xcbU <\x17*o\xe3\xbb\xae\xa9\xb6V\xff\x1f\xc4-d\xb0@\x97\xaa\xc3\x86\x12\xbe\xb4\x1cZ\xc8\x9d5\xc1g\x0c\xc5\x16.\xad\xad\xdbALZL\xe8\x12\xe9\xcf]\xf8\xcc\x95\xb6\xee\x86h\x83\xe1`\x8f\xcf\x10o\xd0\xe5\xaf\xbaM%\x81j_\x06\x00\xcf\xb1v\xd5\xbe\xba1\x92\xafX\x0d\xef@\x1b7\xec\x9bb4\xe4OC\xfeT \x0e\xcc\x0cn\xf2\x0e\xac2\x0f:\x8c\x17\xf2\xa7!\x7f\xda\x86\x90?\xad\xe1\xba|\xcf\x1b\xcd\x9fn\x04\x05\x7f\xaf\xfe\xf9:._%\xf0N\xaf\x9a+\xe87\xbf\x81\xc9\n\x92JO^}\xb8N\xb3,e0\xad\x9e{\xe3\xa7\x8e\xf7R\xec\x1eu.\xc8rL\xe3y\x99\x0d\xc6\xac\x9c\xecOs/\xbd\xb7+\xd7\xd5E\xb3d\xe2\\Z\x9a/\xdeW\x9b:\x0e\x19\xb8\x1ej\xcc\x90{\xf3\x91\x10\x96\xf4\x941\xeb6\xe08\xfa|\xdb\x80\x83\xd83m\x03\x0df\xcc\xb1\x19\xc6\xb0\xe4\xd7z\x18\xe3\x9d}\xc4/\xdd\xe1v\xc8\xa4)G\xf0\xd4\x97\xc9Z\xb0\x0f\xae-\xf7\xdb\x11#o\xb5Y5\xbf\xa3@G~1\x15\xaf\x91\xe3\xfa\xcb2\x9e\xb7\xa1m\x83\x0e\xbdA\x1djPO\xce\xa1DO\x9e~\xfd\xe2\ny\xba\x14r\xb4#OW\xcd\xf5<]}\xc1\xcd\xc0-\xd6 \xac\xec\xc1\xcaW[\xd5\xa5\x97\xfe&u\x17\x8aI\x9a`N\x1a\x19\xa5\x8be\x84\xba\xca\xd2\xbbe\xb7\x8cE\xef\x9c\x85\xa7\x8c\xeb\xad\xb7\xfdj[^Hr\x96or\x01#\x1dN\x85\xc7\xf6>nU\x1d\x8b\x86KZ\xf3T\xad\xc7\xd5\nK\x97+\x1aE LU\xac\x1b*`6as\xa7\x86\n\x18\x08\x1505\xac{\x0f\x150[\x10RH\xfa\xcf\xcc\xc6\xccW_\x01c\xb0\xc8,\x96\x9c\xbf5\xd6\xd3\x16\x93\xa0c\x0c\xd3\x1e \xd1,\xdc\xef\xe8\xb5\xa3k\xe7e\x7f\x84\x02\x81V\xd3 \xdd[\xe0;^(\x10\x08\x05\x02m\xa8\xe9\x16\n\x04\xae\xcb4\xef^ \x90\xc4\xdc1\xabb\x11\xedr\x81\xe3\x83C}O?\xe2\x15,\x11\xa5\x17$\x8f!\xa1p\x91\x93f\x88\xbaS\x10\xc6%\xd0\xbc\xff{m9u\xad?(;\xb8\xa3\xc0\xac\xf5A;\xe4\x0c(\x8b\xb5\xa7\x95\xbf\xe6\xf0\x8b\x0bf\xe5\xe3\x1f\xa6\xc3\xde\xfa\xf3\xe2\x1d\xb1,\x8d]\xdb\x8b\x1f\x07\x8f\x96\x97\x97\xe7w\xaa\xa1n\x81\x81\x16,\xed\x06\xf8\x8c\xa1\xb0E\xba\xa6\xe4\xbe \xf7\xac\x8f\xc4W\xbd\xd8y|p\xac\xef\xee\x15)\xb2\x182\xb2!D\xafB\xe2\x9f\x13Vq\xa5\xb7\x88\x177[\x18\xb2\x8a\xf2\xf7\xd6\xdd\x1d\xb7*\xbfx\xc3b\xfd\xaa\xc4\xe0\xd5\xa6 \xc5\xa2\xeae\xa0f\xc7\xf6I\xab\x119}\xd7f\xde;u\xdd\xb2\xd3\xee\xf2Kj\xfdJ\xe4Ak\xcf<\xd6\xb9\xb2YH]Y7\x99\xedp\xf8\xd6\xad\xcb\x92\xdbv>\xc24\xc1i\xbc\xbe\x87f\x85\xa9\xbcQ&#\xdb\x97\xd04\x8b\xe5v>\n#\xf6\xe3NY\x0e\xa8\xbbq\x99/iH\x94mAH\x94\x85D\x99K\xef!Q\xb6\x05!\x94\xaa\xff,$\xca\x8c\x892\x8dUw\xdb\xbc0 :\x83\xd0\x88\xed\x9a\x01V\x98^\xb5 \xee\xa5\x81C\xaa\xa8\xd54\xc8\xb7\x16\xf8\x8e\x17RE!U\xd4\x86\x90*\xaa\xe1\xba\x8c\xd3\xbe\xa9\"\xe1\xee\xdf\xe2<\x91\x88\x1a\xee\xff.\xac\x86\xae \"\xde\xf8\x8e\x02\x9f\xf5\xaf\xba\xc8!\x94y\"\xd5\xcd\xba_s\x9c\xc3\x05\xb3\xea\x81x\xcd\xa5\xc4\xea\xfb\x8c;b\xf7\xc5\xe6\x86\xfc\xad\xe1\xae\x19\x10/S\xb6\xb3(\xe9\x9c\x7fh\xec\xd1\xab\x10#\xe2\xbc\xaf\xb7\xf8\xf8\x1e7\x9fy\xdb\xa5 \xba\x01yl\x18P\xfb\x01F\x96,\x94R\xa6aC|\x8f\x19\xf5\xebp\x04\xaf\xa7\x8d3\x80\x9c\xd6k\xd2.q\x16'\xd9l}\xa6\xean2\xc2\xe5%\xd7\xb0[\x1ejx+\xae\xab\xde\xbd\x07 \x83\x1c\xb3\"\xcf(\xa0\x0c\xf0b\xc9Vr\xf8\xba?\x89\xc6\xa8\xfc\xef\xafU\xbe\xdd\n\xb9\xa09F\xee\xe8w\x9a\x0eAk\x8f\x8e\x0f\xd0\xb7\xfa\xb8\xf8\x00\x1d\x9b\x8f\x88\xf7\x1a\xc0[\xd4\xad[\xf6\x90R\xf5~\xd8o\x1d+\xf7\x90M\xd2x\x99\xd5;\xad\xaer\xd9\xba>X'\x8d\x1cz\x18\x89\x9b\xaf\x16\xe8r\xdc\xbe\x1c\x1f\x8a\x8c\xcb\x1b\x94\xe3fX(C\x19\xa18\"YL\xafB\x88\xdc\x8a\x8d\xb9H\xb2p\x13@\x0b|\xc6P\x85\x0c\xb6\x98\xab\xf3\x06\xff\xee\xd1\xf1\x81\xff\x16\xff\x0f\xc2\xe68\x1fs\xd5\xf0\x9f\xdc\xa3\xc9\x08W\xfa\xcd\x0b\xb9\xb9J\xc1\x94\xb5\xb5\x87\xa3]\xa3\xdd\x95C\xc9\x0f\xa1\xc2\x93l\xd6_\x80H[\xc4,>\\\x1b\xdd\xee}\xaf\xdfSl\x9ec:'iw&<\x18=\xd4\xaa\xb1\x9e\xea\xeb\xc1\x83cM\xc7\xeb\x05\x19/q\x86R\xa6\x08\x139\x0fspx\xbb\xb6\x90\x86\xc5\x86\xda@\xf2*\x92\xfe\xdbG\xf6\xd3C\xfdnu \xb5o\xeb\xd9\x99?\x88\xe25:\xc4\xeb\xd9vf\xe2\xdb\xa8 t\xfc\xd1\x99\x8f\xe3\x84\xd3aR\x88\xf5\x8cq\x8ag\xe2\n\xd6\xfd\xdf\xeb\x7f\x9f\xc4q\xfe\xaf\xfd\x1c_\xa0<.)\xbd\xed\x89\xdd\xdf\xf6\x8c\xaa\xda\xddF7w\x94\xb8\x951\x9e\x93(:\xa9\xaa\x1d\xa6\xf0\xa2jW\xb7\xd1\xf8d\xca\xc5TDu\xbe\xbdx\xfc\x88\xc5\xe7\x0b\xf4\x19\x9d\xc5\x17g\x17G\xc5\xc3o\x8f\x8e\xbe\xc5qQ\xa4\xe8(Z=\xfc\xf6(\x9d\xfa\xee_\xee\xdbs\xc7Z\\\xee\x04%\x8d`\x82R\xb1\x17\xa79Y\x88\xd7\x19J\"$$\xb3\xed\xe7\xaaCZ,8\x15xc\xfe\x9fU\xcf\x18\xe5\x19\x8ea\xb2jv\xc9\xff\x13\x01M\xb2Y\x8a\x1b\x14n\xd3\xaf\xc7V~\xd1`\x91+\xdb\xcc\x1d\xac\xe8\x16K6\xe1&,\xe8\xfaJ\xf0q\x19\xbbR\x7f\xe6d\xe9\xb6(\xe7\x98\xa9\x96\xb0\xc1\xf5\xe7(\xe5X[C\x9aG\x17\xc7\xd9Q\xaa\xecS\x12\xd9<\x19}\n\xd4\x92\x04\xb5R]\x82\x8d\xf6\x12\xac\xa9P'\xdaKp\xf0g$\xd8\x13\xa2]FUx8B\xc2\xdc\x0eV\xffr\x9dE\xb70M-:\xb7\xc3\xd0\x9dt\xac_\xc5\xed\xdf\x126\x8fstQ\xcb\xfe\x1a\x9d]\xda\x90\xfa\x95\xf4\xbb\xa3@\xa4[\x17\x0eb\xffj\nx\xf5\xcfWn\xd4\x96J\x8b\xa2\x9e]eGm|\xe5g*\x86z\xd2POZ\xc2\x17\x95\xb2\x0f\xf5\xa4[\x10\xea\xad\xf4\x9f\x99L\x0b\xf8z\xebIo\x85\x1f\x13\n*[M\xc3\x06o\x81\xefx\xa1\xa02\x14T\xb6\xa1\xa6[(\xa8\xbc.\xeblH\x9f\xf3\xfa+)=c\xc2\xfb\xbf\xd7\xc1/\xf1w9\xe0\x97\x18#\xf6\xa9\xfc\xd3\xce\xa6E\x0c\xe3l~Yr\x8bD~XN\xa9n<\xcc\x94:\x04\x00=\xa2\xdf\xd5\xab,[!\x85;\x8a9W\x1f\xcb8\xf5v\x1b\x19\xc5\xde\x0c[;\x04%<\"\x0dWe\xee]\xed\x11v\xadIb\x11H\x16\x13\xc4v9\xb7\xbd\xdf/8\xb6\xe6\xc6\xb3\xdb\xdf\xabChe\xa6\xa7\xe2\xed\xcdM\xec\xc0\xc4!\xb2VA\x88\xac\xa9Ft\x9f]\x88\xac\xa9\x1a{\xf4\x1e\"k[\x10\x1co\xfdg!\xb2\x16\"k\x83\xaa\xb8\xae\xa2&D\xd6Zp-\x1b\xbb\x90RU5\xf6\xe8=\xa4T\xb7 d.\xf4\x9f\x85\x94j\xa8\xe4\x1fT\xc5u\x155!5\xd9\x82k\xd9\xe0!5\x19R\x93!5 \xd7h\x9d\x0d\xe9u\xdep:\x92;\x8cE\x96\xb0\xd5xIHyK\xa7g\xccF4\x07\xde|\xfbrg\x07\xaf\xd3\xc3\x95\xbc*}\x1e\xc2'\xc30\xd3\xa6\xab\xef\xc1H[\x81\xf6/\x8e\x95,A\x88\xa5xA\x07\xe7c\xdd\xb5\xc4\x86U\x9b\x90\xac\xa0\xbdzXos\x86.\x1d[v\xe4\x08\xae\x80\x92l\xd6\x87\x19\xde\xc8.`A\xe2\"\xc5vV\xe0\xdf\xdfn\x16\xe0D\x19k\x04\x81a\xd9\x92l\x9a\n\xbc\xc7\xc2\xb7\x89\xe6(\x9bi\xad6K\x0f\x0b\xe7\x85\xdfj\xe9\xf9\\\xd6\x8c\xa0T\xa4\xe9\xb1\x1f\x93NR\x12\x9d\xd1\xf1\x12\xe7\xe3\x15F\xae\xcf\x02\xf6d\xd3z\x9a\xde\\\xfa\xbc|\xa7\xae\xeciM0iX\xddr^\xbd\nZ\xa2,+Pz\x7f\x99\x93\xf3D\xc4\xa0{\xd3T\xf6\x08\xeb\x1e\xbf:\xda^ \xba\xd8\x8fH\\n\xfbf\xb6\xa1q\x82\xb0\x8c\xed\xf2\x8f\x812\x92c\xe0M`\x81)E3\x1d\xb9\xfe\x86\xe8\xc2\x9f\\\x9e\xf1\xfc\x066\x1e\x11}\xad\xa9\x15B\xfd!\xd4\x1fB\xfdN\x1d\x87P\xff\xd7\x16 \x84\xaf7\xd4_\x01\xd7\x80\xe3\xc9\x8a\xa9\x96\xdeH\xe1>\x81\xac\xab\xb2 \xbc\xf4_\xc83\xb4\x9a\x06\xe9\xd2\x02\xdf\xf1B\x9e!\xe4\x19\xda\x10\xf2\x0c5\\\x97i\xe8\x9cgx\x86\xe2\xca\xbbZ\xb7\xe8\xe4o\xb6\xbc\xf5\xda\xc1\xfc)\xa1L\xfapI6%\xe5\xaf\xc3\xb8\x93\xb7Bw\xceq2\x9b+\xe4\xa7a\xadrL\x8bT\xdb\xa4\x93d\xd3a\x01v\xae\xd1a\x03\xb7D\x1f\xea\x1c> r\x10\xb9%\xb5\x9fE9F\x8ch\xb6\xac\x04\xeb\xd6\xe2\x10#\x86\xc6sD\xe7\xbd{\xa2\xa4\xc8u\xbb\\\x82S7\x93\"Ic\x9d,\x92\xb0\xd1\xcf:(\xb4\xff;\xff\xbf\xaf_T\x87\x07U\xd1\xa1\xd7\x19e(cI\x1d \x8aH\xc6r\x14\xb1k\x0e\x0f\xb5\x8a\xdb\xab\xf0\x90D\xbf\xf1\xe7\xd6^\x17\"\xe7\xf5\x0bX\x91\x02.P\xc6\x80\x11H\xd6\xd3i4\xd3\xd4\xb5kx\xcb\x10\xafjt\xbf&T\x88\\\x85\xc8U\x88\\I\x08\x91\xab\x1b\xd6\xa5\x7fD\xdf\x12B\xe4*\xc9\x126\x8eH\x92i#W\x9d\xc28_\xe1 \\ \x82\x9e\x86\xa0\x98\xa6\xe3\x16\x8bp\xbb\x06\xe4m\x01\x0c\xc7\xd6\xd0\xe1\xee\xef\xff\xaa\xb0\xb8\x15nM\x08 \xb6\x9a\x06\xb1\xdd\x02\xdf\xf1BH0\x84\x04\xdb\x10B\x825\\\x97\xcd}kB\x82\xdf\xe3FD\x10\xc8\xb4\x9ed\xab\x8f\x95yD\xb9\xe0B\xf9$a9\xdf\xc4z\x0c\x95]U:\x02\xa5\xa4d=@\xea\xa5\xe5\xd2Y(\x1a\x89\xe1\xa4m\x16n\x98\x7f\xb5U\xa7a\xcd\xb7\xd5\xc6I\x93\x89@\xbb\xd4#\xb4\n\xfaq\xf9\xb0D\xd1\xd9~\x91\xf1\xff\xe1z[\xf2\x85z\x07\x95\x8a^o\xd8\x90)\x14L\n\xb6J<\x88j7\x14\xc7\x89\x94\x15u%\x08G\x9e\xcd\x89|\xd1M'\x9e9>r \xd5\xe3\xbd\x94\xa9\x008|\x02o9\xfe\\.\x94SA5\xd1\x93\x0c\x9e\x7f\xf3\x8dAM\xbe\"\x04\xa6\x84\xc0S\x18\x8dF\xff\xae\xfd\x8c#\x83\xb2\x95\xfe\x03\x94\xadF\x1c\x8dW9Y\xdc\x9d\x12rO\xff\xe9h\xa4\xd7\x7f\xc9\x14\xee\xf2\xae>\x88\x89\x9c\x92\xbb\x7f\xe2}\xdd\x83\xdf\x0d2\xdc\xd4\xdf\xbf\xcc\xb4;\xb2\xd0\xee/\xe8\x1c\x0dF\xca\x00\x14J\xe8\xddW\x84\x8c\xa2\x14Qj!\x90D\x917\x92sl4\xd4\xe3\xa0\xa1\\M\xba\x07\x16\xd2\xbd]\xb19\xc9\x0c\xc4\x93X\xbd\"\xe4\xeeh4\xd2k\x83\x9apw\x8d\xdf\x08\xe6\x13d\xedJU\xde\xc9kI\xd4\x17/\xdf?\x7f\xf7\xfa\xed\xe9/\xef\xee\xe9\x94\x04\x94\xc3JF5\x0f,\x876\x93\xf3\xd8B\xce\xef\x89\x9e\x92\x82\x94O\x9e\xc2\x9f\x96\x93\xd1+B~\x1f\x8dF\xff\xd2\x7f\x8c\xb2\xd5\x1e7Cy\x8b\xa54\xa2\xde\xa0\x9c\xceQ\xca\x89l\x9e\x88\x89\x84\x9bX\x18PH\xa6\x1b\x08|\xc8\x16k\x14\x04\x82b\x83\x88\xaf\xfe\xed)dIjdp3^\x1aN\xe6\xce\xad\xa0s%\x8b+G\x03&\xab\xb5\xd9Ui\x8f\x8b$Ma\xa2\xb6zc\xbf\x8d\xef}'\xf9zZ:\\m^\x93\xdc\x90P\xb8\xc0iz\xff,#\x17\xf2U\xd69\xa2\x80 *(#\x0b\xcf\xcd\xd5f\xf9=i\xc0o\xec\x03)<\x1b\xe8p\x06\xd68WH\xb2\xb4z\xb0\x8fb3V|>'i,\x99\\b.\xb7r\x92\xd5\xfb\x03d\x04P\xdd\x95\xdc2\xeaq\x04\n\xa3Z9\xdf\xe5r\xad\"\xe1Vh\xa8\x8a\x98\xfe\xf3\x1f\xff\xbcg\xd8HC\xf0\\{@3\xdb R\xf1.\x0fGG\x87Gt\xc7\xc0B\x9b\x7fa K\xf1\x93:s!\xc2P\xa6\x1cN\x05K4K\xb2\xc6[\x15Mhy\x9d\xeb\x0fe\xe8\xb0\x94\xad\x8d?\x97\xaaE\x95\x97\x91`\xcc\x83\x98\xb3 \x19\xbed\xb6\xe2L\x83\xfbou\xfeK\xf2\xfdo\x9d\xd3_\x8d\xcf7\"\x9f$\xffg\x19\x05C\x94\xcaP\xdf[4\xc3\xefd\x01\xe0H\xfe\xae\xe9\xecS\xfd\x888\xef\x96\x93\x10\xc3\x82P\x06X\xc4\x96D@J\xd1\x94\x11\x864I g\x02\x14I\xc6\x1e\x1d\x9bH\xa0\x8d{\x88\xe1\xc5\xfc\xc5?d\xd1\x02\xd7\x97UT\xb3\x11B\xd3%\x84\x9a$\x925\xa0\xa23\xdd\x0e\xbc@\x14(f{\x900Z\x05k)\x14\x99d\xc0X\xc6\xaf.\x92\x8d3$\xe6`\x89x\xc1\xbdJD\xbe+y\xb5Z\xd6\x8aw\xa5\xd0\xad*\xa2D\x93\xfd\x13\xf5\x06z\xf7\xf6yi\xbfm{\xfd\xea\xd4h\xfdQi\x84\xea\xd3\x9d\x19\x14\x99L_\xe0X\x86\xa1\xaf2\xeb)\x06\xd0\xa5<\x95\xbc\xb5~Bd\xbbA\x921\x88^\xfew\x99\xe3\x97\xc9\x18 Yu\x8fN\xb5\xc8\xaaC\xe6w\xaa\x99\xdd\xee3\xe6\xba\xba\x85NUR\xccX~`\x8d\xbc\xbb\x84\xae\x07/G\xe7\x9f\xf4\xd7\xf7\xa5\x8c\x87\x0f\x92\xee\xf7!\x96k\xaa\xdfN\x13\xe74\x7f\x87$\xbf:w0P\x82\xdf)\xbdoO\xee\xbb\xa4\xf6\x8dT\xf4M\xeb\xbb&\xf5u)\xfd\x01\x12\xfa\x1e\xe9\xfc\xee\xc9|C\xca\xdc5\x91?p\x1a\xdf\x80\x91\x92S;%\xf0\xab\xb8\xab\xa2?M\xfa~\xe0\xe4\xbd>u\xdf5q/\"\x02*\xc4\xd5i\xfba\x93\xf6:\xc7\xcf\x9a\xb0\xd7e\x14u\xc9\xfaaS\xf5\xdd\x13\xf5\x9a\xa4|\xa7\x94\xbc5\xfd\xee\x97|wN\xbd{&\xde}\xd2\xee\xda\xa4\xbb\x1e\x1b\xd7\xe4\xa7[\xc2\xdd3\xdd\xee\x91lWNm\xd8D\xbbnS\xf4H\xb2+\xe3\x14\xda\x14{\xb7\x04\xbb)\x99>|*\xbd?'9\xa7\xd1]\x93\xe8m\x15\xe9~\xbc\xb3\xc3\xe9\xce\x8d\xde\x9a\x87;\xd7\xe3\x87S\x9b-\x08\xa76mL\xb9\x86\x81\x93'\xae\xe9\x93n \x14mg\xe1\xd4f8\xb5\xb9\x86.\xa9\x16mg\xe1\xd4\xe66\x0c\x94v\xe9\x97x\xe9\x90z\x19$\xf92x\xfa\xc5\x9a\x80\xb9\x82\x14\xccU%a\xae \x0d\xe3\x93\x88\xe9\x9a\x8a1\xcap[2f\xc0t\x8ckB\xc63%3xR\xc6\x9e\x96\xe9\x9d\x98 \xa76\xad\x98uK\xd4(\xbb\n\xa76\xbb\xa4llI\x9ba\xd26\x8e\xb9\x08k\xea\xc6#yc==\xe7\x99\xc0 \xa76\xc3\xa9M\x97\xd4\x8e\x95\xaa\xbe\xe9\x1d\xf7\x04O8\xb5\xb9\x01\x03\xa7{\xc2\xa9\xcd&tM\xfe(;\x0b\xa76=RA}\x92A\xca\xee\xc2\xa9Me\x03\xa7\xf4Q8\xb59\\2)\x9c\xda\xec\x9dj\x1a\x86\xe7\x9c\xd3M\xee '\xb7S\x9b\xc8\xfc\xe8s\xf5\xd6s\xf3\xb6\xdc\xeao\xd5\x1b\xb1\\9l\x9eT\xda\x08\x86\xfb<\xbf\xecu0GL\xcd\xf0,\xe4[\xf1\xbb\xc03\xc1\xf2Q\xc855\xd4'o\n6\x97\xad\xeeT\xb8\xdf\xd2\xc37\xcd\xb97a\xe3\xc6cA\x80\xf6m\xc7\x15\x01*=\xb6 q\x91\x0e{\xd7\xf1\x02]\x8e\x17xA\xc6u\xfe\xc4\x90\xb7r\xaa\x98\xd5\xde\xfa\xcb.\xc74\x99\x8d\xc5!\xcd+\x1d\xe33\x1eG\x84\xb2\xf1\x12\xe7\xe3\xc9\x8a\xf5-\x01\xd6\x0e\xc6gs\x8e\xf3d\xba\x92\xe3\xe1\xf8\xe8\xe1\xc3\xc3\xc7\xd75\x1c\xc5\xd1\xf2\xe8\xe1\xa3\xb3\xc3\xe1\x07tH{\xcb\xbd\xe7\x93\xf5.\xf7\xf8\xbb\xb7\xcf7\xfa\x0bI\xef\x90\xf4\xb6F|]\x82\xa6\x10\x92\xde!\xe9\xad\xfd2$\xbd\x05\x84\xa4\xf76\x84\xa4wHz\xeb $\xbdC\xd2[@Hz\x87\xa4wHz\x87\xa4\xb7\x84\x90\xf4\x0eI\xef\x90\xf4\x0eIo\x1d\x84\xa4wHz\x87\xa4wHz7`\x88\x04dHz\x0b\x08I\xef?J\xd2\xdb\x96F\x9e\xa0\xec\xacN#OP\x8a\xb2\x08\xbb\xdd\xef\x98\xa6\xcf\xca\xcf\xeb\xbc\xb2\x08\xcc\xca?\ni\x9b\xa6\x10\x11.\xb38\xa9\x11\xd0$\x9b\xa5\xb8\xba-Q\x9dv^\xf7Z\xfe|k\xf3\xce\x15\xb1nG\n(\xc6\x19Yt\x0e~\xa0\x85\xfa\xfeJ \x96\xe6.\xa1\x87\xe7$Y\xbf5\x8c\x80\x913\x9c\x95a\x03\x89zu\xeb,\x17\\(+\x11\xd2y\xc9?\xffr\xfa\xf2\x89\xd0\xf3\xf2\xbbRa&\"\xa6\xf1:c\xa5(\xa9\xe3HMy\xa2\xecP\x9aW\xea\xc1h2\xcb\x10+rL\xeb\xfa\x0dnL\xce\xc8\x8c\x88\xcd\xbb\xad\x83[\x04\xa9\xd8\xa4J\xe1\xd6\xff]n\x10\x99hH\xb2\xad\xa0Vx\xcdY@x\xcd\xf9\xebz\xcdy\xad\x00\x9c\x8a\x1fT}\xec7u\xd3\xbb\xb7\xcf7'\x11\n\"BA\x84eW^A.a\x80\xf2\xc3DSyX\xeb\x94aK\x10\xc3\xa3\x16]_\x0c\x08\x8fZ\\!q\xed\xcf1\x84G-\x86\xa0bx\xd4\"\x8b\x12\xe5\x98;\xf2\xfa\xb3\x16\x12\xea \xf0.vy\x17\xbb\x96:u 5\xeeO\xe1\xd1\x1e\xb0yA\x9f\xc0!\xf0\xf6|j\x07\xff\xeb\x91\x03\xab\xa24A\xd4\xbc\x8b]d\x8a\x04\x8bd\x91\xe0\xbc\xe3m \x9d\n\xca)\xc8\xd0_\x9aPA\xc6r\xafW\xbfU\x86\xb7\xf3~\xd7~c\x8a\xe5\xb6a\xbd\xac\x8d\xed\x858fE\xc46\xab\xbd\x91\x15\xb5\x96+U\x94\xdcR\xee\xa3$\x92n\x97n\xa5\xed\xa4lh\x96M\xb1Y\x91\xb4\xb9\xcf\x84-\xa1\xedL\xee\xcb\x96q\xd1\x04\xbeg:\xab@w\x19\xc7\x87\xd9\x9c\x8b\xf8\x9b\xdc\xaew\xd7An\xfeK=;m\x7fb\xc77\xf6\xdc\x81fc\xc5 ]\xa6H\x93\xea\xf5\x9f\xa1\x81\xc7\xca\x91\xea\x90a\xa9\xe6\x8a\xd9\x0cS\xee\x08\x96\xc2\x95sZ=Y[g2\\%mG\xcd\x11\x12aq\x0f4\xbb]u\xa0k\xd7\xcc\xc8\xbbB\x877\xf3\xf8\xad#\xa0\"\x02q\x17\xcf\x9e\xc0s\xd1-\x9cp1\xa8\xee\x93\xae\x16\x13\xd2\xdd\x0dsgG9\xd0:\x86\xceq,\xffV\x1d\xe1\xa4sr\x91\x01\xc9\x00_\x96\x87\xb2\xb4\xbd\x89\xd9\x9d\x9c\xfe\xf2\xe6^y\xb67\xd2UL\x82\xcc5\x08\xce\x10U\xaf\x12\x81r\xb9\x8d\xc7\x9bl1\xc8\n\\\xf8\xb5vQ\xec\xc2P\xd9\x1e\x99\xe5\x9c}\x15j?\xa8>\x0d\xd3p\x92\x92L\xdaX\\\xb6V~\x92\xda\xfehxO\x02\x95P\x91\x12*RBE\xca\xaa\x1d\x1ap\x8a\x82\xaa\xba\xd9\xdf\x88g\x84\xba\x94\x10\x1bU\xfe~\x9bb\xa3\xa1\xee\xc3\x1e\x08\x85P\xf7Q\xc2\x15\x13\xd7^\xb1\x10\xea>\x86\xa0b\xa8\xfb\x08u\x1f_A\xdd\xc7FNj\xffw\xf1\x07\xc3\x89\x17\x8f\x84\x94(\x01Y\xc7\x8aZ\x11.}\xfe\xe9KK?\xe9l\xaaN^\x9b5\x89d\xb1n\xac $[\xa8\xd7\x18\xe2uH\x1d\xd9l?pI\x1b9\x98p`u[6\xbf\xf5H\x18YB\xc4 \x8e)\xbb\xa6\x8b\\\x92E\xae\xa9\"\xd7D\x91\x0fe\x86M\x12\xd9SD^ \"k\xd4\x1c|\xd3C\xbd\x92C\x03\xa7\x86\xba%\x86\xfa\xa7\x85\x1c\x92B69!\xc1!!\xe4\xb8\x97m\xb1\x14 \xc3\xa6\x82L\xbb\xdc%\xe4 C'\x81\xba\xa7\x80l\xe4\xeb\x92\xfe1\"\xabI\xfe\xe8S?V>p\x93Y\xc3&}\xdcR>\xc6\x84\x8f\xdf\xbc\xb4\x9c4`\xaa\xc75\xd1\xa3O\xf3\xf8\xcd\xc9+\xc53t\x82\xc7\x94\xde\xf1\x9b\x86\x96\xe5:%v\x04\xf6\x9a\x0e\x1d\xd3:]\x92:V\xf7B\x82\x9d'\xfb\xa5s\x0c\xc9\x1c\xd7X\xf3@\xa1\xe6\x10i\x0e\x91\xe6/'\xd2\xbci\x91\xb4\xd8O\xaa\x00C\x95+\xff{\xb3\x1at\xc0B\\\xaf\x98\x82\xe7;\x0cl\xeb\x19\x82K\xd1\xdf\xc6K\x04\x1bgD\xb2\xb3/\xfba\x86\x1eA\x02\x8a\xb3x\x8c34Iql\xd2|\x7f\x04/\xdf8M \xea\x88`\x1b\xdc4=\xc0{\x9c\xc5/\xe5\x90\xf2N\xe8\xf6>C-\xda\x03e\x88\x15\x86\x1a\x8e\x8b9\x167\xc7\xa2z\xef\xea=;\xde1\xefUm\x81J\xcd4v]y\x1d1Zdxk|\x0d\xa4r\xa3\x14;Q\xd1\x97Z\x91o<\xdf\xd0\x1ci[\x8d\xd7\xa9.\xb9\xfbU\xdb\xa8\xf5PK\xd0\xd7A_o\xc1\x15\xe8k/\xd5G\x97\xe56\x1e\xfb\xdc\"\xd5\xb0\xc0\xdfW\x1d(\xaf\x95\xe2\xdd\x8b\xc4\x8e\xf5~\xa9\xbaC\xd3I\xcb\xad\xc1\xca\x8fn\xad2\x0d\xb7M\x95\xe0\xa2\xcf\x86<\xb79\xf8\xc9\xcdk\xbdm\xaa\xde\x95\xe1\xde\xa96\x84*\xbfP\xe5W\x82Pk[\nAi\xbb\xcd\xde\xbd}\xbe6\xe0dL\xa8\xc87\x19\xa8i\xd3mN\x84K\x1b\xa9\x97v\xa9bw\x06\x13/\x98x\xd7i\xe2]\xe1\xc1h\x85\xea\x1962\x13\xca\x14\xbb\xd6\x80\x852\xc5+$\xae\xbd\xc0.\x94)\x0eA\xc5P\xa6\x18\xca\x14\xbf\x822EZ,\x97\xe9J\x1fA9\xe5\xbc\xf0^|\xd4\n\x98H\x1e\x91\xad[\xc1\x12e<\xa4\xd1\xcb\x9djJ\xb74\x12\xd2$H\x13n\xc2\xa4\x0bq\x90\xdb\x13\x07)\xbd\xd5\x92\xe3\xab\xf8G\xcd\xffu\xbcc\xa3\xa1s\xb8C\x19 \xe8\x10\x03Q\xf4b\x959\x12B\xb4DB\x88\x96\\i\xb4D7\x11\xa1\xa6\x1a\x8a\xa2{}JSgi\xabS\xea?\x86H\xc8\x16}B$\xe4Z#!!\xbe\xe0\xe7\xbc\x85\xf8\xc2\x15\x12\xd7\xee\x19\x87\xf8\xc2\x10T\x0c\xf1\x85\x10_\xf8j\xe2\x0b\xf6\xd3\x8f\xd2\\\xfbe\xda\xae\xcaX\x87\x17\x9a7^\xabK.\xca\x0e\xeeTS\xba\xa5\xf1\x05\x9dW\xde\xc3\xfb2\x84 ,\xc6J\xb8\xdc\xba\x0d~a\x01\x97\xbco\xc9\x95N\xceL\xe9\xbelpr\x05\xe1z\xeb\x12\x82\xefr\x8b|\x97~\x85\xf5W\x94\xba\xb5k(\x8a\xf7\x19\xceb\x9c/\x92\x8c\xad\xdfjHItF\xf7S\xc40ez]\xf5=f?\x89O\x9e\xf1\xefKu]\x9e\xf9\x13\x7f\x07\xd1\x91RM\xb5\xdb\xde\xa9\xe6vK\x95\x95\x98\xc78Q\x94D\xf7PWsD\xe7\x1dT\x0e\xd8\x03\x85K\x94\xb31\xc5l<\xc7(\xc6\nI\x046\xcc\xc1\x8a=\x07C\xa8\x0f\xac\xe2\xab\x02\x97#\xe7zR\x81\x0b\xb9\xc0N\xb2:\x1e\xf7\x16\xe5\x8cb\xf6\x83\xa0\xdc\xf6r\xcb\x8f\x04\xd3\xbe~\xa1\xe2\x92aY\xe4j\xd7\x8f\x9b\xe2\xca\x88|\x05\xe5t\xe5Y;1=q\xd1\xa1e%\x8c';\\\xf0\x02=1\x9b\xe0\xb4\xee\xe0\x16V\x96\x80\x96\xcb\xeb\x1d\xd2n?V\xf0\x9c\x8b\xb6\x8c\x16\x14\"\xb4\x94\xa6\x99\xd4&\xd5\x9f\xf3\"-\x0f\xa7/s\xc2e\xa2\x19ET\xaf\xa7\xe8G\xfcG4GI\xb6g\xba\x1c@:\xcb\xf24|\xdah\x04\xe2HX]\xa9G\xab\x17\xf8%V\x86\x0eK\x07\x1b-\x97)\xf7\xda\x13\x92\xed\x1a\xce\xb0\x808\x11\x83\x81\xe5(\xa3\xf2\x99\xea\x05\x8a\xe6I\xa6(z\x95 \xb0SJ\xee\n\x1c\x96t\x8e\x93\xd9\xdcp\xbf\x86C\x17nr\x8e%\xfa\x8bq=\x87\x89\x11\xc3\xf7y\x7f\x9a/\xc5C\xf0z\xbdV\xc1\x80;\xda,\xc4\xc1u\x82\xe0\"\xcc%8\xe9\xc1\n\x9cf\n\xce\xb3\x05\xbb~\xac?s\xd2\x93\x15\xb8\xf0Q\x05v\x92\x83\x0f\xd9\xc1\x9d\xf4\x8e\xfat\xe3c\xb5^\xad@\xb0lD\x16\x8b\x84\x8d\xaf\xc3\"\x805b|8Y\xd4/\xa5f\xe3\xfe\xa8M\xe0?]\x13z\xe7(Mb\xc4HN\xafi\xc0MzLsqg\x84\x90\xdf@\n\xb6,\xd8\xfao\xcb\x1c\x9fKriz\x13)\x99k\x9fC\xad1\xafi<\xb4\\^\xd3Hb\x7f\x94a\xd4k\x1a\x12\x9f'1\xce\"|M\xc3\xd5\xfc\xb76{\x0c\xf6(\x17\xd4\x84\xe2|\\\x16M_5~-cN\n\xbcV\xb9Jm\x1e\xc9H\xeei\xedx\x97BEj)\x95%\xa3\xbe\x06\x0e\\\xb4\x96][\xb1K+e\xcc\xd74Y/ir\"\xaf\x03\x81\xc1\xcbb>\xbd\xa42\x07$Ra\x93\xd2\xc8\x94\x91LiF\xfeW\x19\xa0\xf8A\xd8w\xdf\x1c*\xab\x86*\x90\xc1\xd7\x8c0y\xae\xeb\x92\xc2\x1c\xe7X\xa4+\x84\x0c\x1b\x01\xfc\x0d\xef\xe6\x18~+(\x034\xcb16O\x97H\xcb[\xdeI6Mr\xca\x8c\xe3\x8b\xdb\\\x16\x18e\xe5\xac$\xea'\xcb\xe5\x0f\x88\xce!&\x98\n\xe4\xcat\x16\xef\x9a\x9a\x144\xbb\xd4<\xce`+\xb0y\xc1-\xfd\x88d\x0c%e\xb0G$m\xa7\xd2(G\x11_\x19Z\xa1\xa1\xcc\xdd\xacA\xa7\x1d*\xb1re\xfd\x9f\xb7/\xc7\x1f~\xfe\xf1\xe7_\xfe\xf6s\x8f\x1e\xde\xbe{\xf9\xeb/\xa7/\xfb\xf5\xf0\xfc\x977o^\x9f\xf6\xea\xe3\x97\xb7\xbf\xbc?\xf9\xc9\xb1\x8b*'\xd3\x93\x1e\xee\xf2\xbe\x0d\xef\x93Y\x86\xe37tv\xbaZbY\xd6\xc2\xd7^\xdc\xe7'~r\xee\xa9\xcc\xa5T\x91\x92\xda\xf40J\xeb\x0d\xd0\xae\xe9\x13\xf8\x950c\x84d\x03\xf4\xeb\xf2\x04\xde\n\x83\x07\xa5n\xdd\xd9\xa2\x1am\xe8\xb0q|z\xf8\xf0\xf0q\x97\xa6= \x0d\xfd\x88\xcd\x81\xe2hy\xf4\xf0\xd1\xd9\xe1\x97\x88~\x1f\x8b\xecm1I\x93\xe8G\xbcj\xc5\xf8\xce\xf0j\xe3\xea\xfe\x0e]\x17\x14\xcbK\xbc\x1ba\xbf_k\xd9\xe4\xd9\xa1o9n\x1bz\xadO\x1f\xbf\xbe\x8e\x16/\xf3\x84\xe4 \xeb\xbc\xa5\xaf\x15\xf7\nk\x1fd;J\x9e\xae2\xa7\xa3H\xefA\xcc\xce[\xb4\xa30\xefHP\xe8AT\xe8'\xc6{\x10\x17\xfa\x10\x18\xfa\n\xf0\x9bC\xbc\xbb\xe8\xbe2\xc1=\xa0\xd8\xee#\xb4{\xacI7\xa1\x07C\x88\xebk\xc7\xba\xdba\x95\n:\xa2\xeb\x87*\xf7\xceH6vO\x8dyb\xe5\x87\xcdd\xf5\x19e,\xc9\xf0\xd8\xcfO\xf2\xf3\x8f<\xfc\"o9\xef/\xdd\xbd\x95\xa5\xe7\nH\xe8 \x06\xbdU\xa37\xb1\xa0\x13\xc1\xa0\xab\"\xecD8\xe8F<\xe8\xae\xf6\xae\x17\xcd.J\xee\n\xd4\xdb \x8a\xad\x9b\xa4\xedDo?\xb9&\xa1\x87\x02\xbb\x06\x1c\xbb)+O\xc4\xa6\x93kV]\xe4\xc8\x1dzRg\x8c\xdd0r\xc8\x89k\xf2\xdc\x9a\x0e\xd1\xb6\x11\xe7\xf3\x10i\xfb\xc9A\xa7\x97H7z\x90\xef\x92n<{\x18\xde#-\xc1d\xe5\x85\xf7Hm\xdc\xb9\x86\x13\xf8\xf0\xee\xa7\xfd\x1cSR\xe4\x11\x16\xef\x8b\xca\xedRd\xc9\xa7\x02\xa7+\xe0{\x88%\xd3\xeayh&o?\xd4v(\xdfh\xc8\x13\x94&\x9f\xb1\xf2\xbd_ \xe2i\xdf\x88\xa40)\xa6S\x9cW\x8b6\x92OO\xc8\xb9\xc1\xa2\xa0\xf5\x9e\x06\xa4\xb7IR\x8c(\xd3\x8fE2\x0c;\xfb;\x10\xcdQ\x8e\"\x86\xf3\x91x\xd7\x98\xfbN@\xf1l\x81\xd7\x8f\xaf\x7fx\xf7\xd3.\xdd|\x06\xb5\x0d\x02\xa9\xfaN&\xfd\xa8\xbc\xbbi\x91\xa6+\xf8T\xa0\x94S0\x96\xf4\xad\xdey\xe7\x94\xbc\x8b($\x99\xbe\x93\x8f\x1c\x95\xfd\x19!\xb3\x14\x8f\x04\xcd&\xc5t\xf4\xa2\x90\x8f\x9b~\xbc'g\"\xba\x95\xcf\xcd\xc3\x04o> \xdf\x04\x04\x11\xcaH\x96D(\x15{H?\xf2]<\x9a\x8d\xf68i\xc5u\x0b;\xa3\x1d.\xbd\xc4\x93$Q\x84\x97\x0c\xc7\xf7\xd4\x0fGKx\x9d\xc1\x92\x13;\x89\xf0\x1e0\x8c\x16\x14\nZ N\x0eys\xd52I9\xa6\x8c\x08bL\x92\x0c\xe5z\xd3U\xbc\x82\xb2ZbZ?\xb4\xbf\xd2\x0f-e\x1d$\xe2\xc5\xf7\x826\xaf\xdcd\xf8R,\xf5I\xb6\x1a\xc1\x0f\xe4\x02\x9f\xe3|\xcfh\x96|x\xf7Se\xf6\xf0\xae\xb8\x9c\xd6~+$(\x86\x8fs\xc6\x96\x1f\xf7\xe4\xff\xd2\x8f{@r\xc8H\xf9\xeb\x9e\xe0\xc6\x08e@\xc4\xee\xe4\x14\xd1w\x88\x19\x14\xcb\xf2\xceQ\xc3\xb88?\xc7\xb9$\xcd\x02-\xa9d-\x819#\xf5\xc5\xa3\"\xfe\x97\xc8\x17S\x90>L7%iJ.\xe8\x13\xc3\xda\xfe\x19^O\xd73\xe2l\xb1\xcc W\xb6q=ia\x12PZ,pl\xb8\xe0\xf4\xcf\\9\xfdpz\xfa\x16\xbe\x7fyZ\xbdQ\xf3\xe1\xddOr\x8f\xad\xc4\x83\xe3z\xcb\xe1\x1f\x9b\xdb\xe2t\xb5\xc4\xff\xfc\xc7?\xb5\x0d\xca\x87\x9a9?H~+\xd5\x88X\xa1eN\xe2\"\xc2\x802\xa9\xc2\xf4\xf5k\x7f\x86\x93\xf5\xbd T<\xca\x838\xcdp\xcc\xc9\x1d\xa1\x88\xcb\x16B\xce\x8a%\x94'\x11a\x82\xa8\xa1\xba\x90\xd8.R\xf9\xf0\xee'\x81\xe3\x1c\x9d\x0b\x16\\4\xf6P,7\x11\xaa\xa6\xc4\xff}N\x92\x18PfJ\xb0H\x04\x85\xf8\xc8\xf1\x94\xe4x\xaf\xea\x80\xf7\x8bX2I\xd2\x84\xad \xc38\x16l4\x11'{\x05\xab\x99\xea$I\xc6\xc5l6\xc3\xa2\x91\xd8\xb3#\xb8\xfb\x81\xe2\xea\xea$N%\xce\x9e\\fI\xfeD\x19\x9a\x99f?\xc91:\xe32\xa8\xecxtO\xcfQ?\x13\x86\x9f\x00\xe3:dZd\x91\xdca|\x1e\xa5\xec\x8a\x8a<\xc7\x19KW\x8d\xe8\xb7A\\\x8a7\x93\xa6\xd3$JPj\xd1e\x93b\n9\xe6\x9a\x08\xef\x89\xdbd\x12V\x0dZP\x1cK+\xaf\xda\x97\xda\xae&x\x96d\x19\x9f\xecE\xc2\xe6\x06\xe5\xb2Z\xe2\x91\xe4\x7f\xb4L\xe8(\"\x0b\x934~/v*\x05\xc2\xe6RPd\x9bR\n\xee\x96\xef\xe1\xe3\xc5\x92\xad\xca\xad}O\xaf\x04\x93\xd9\x9c\xc1\xc4 \x94\xc4\xa4E\x9a Y,S\xcc\x95\xac\xd80@\x978J\xa6I\x04\x14/P\xc6\x92HS*z\x05\x8f\xaao\x82\xab\x95\xf4\x86\x8b\xa3 \x06$\xbd\x81\x86\x81\xb3e\xc7T7\x07M\xc8\xb9\x9e\xa7K\x12\x94[A\xf9\x08\x9b\x03f\x1fO\xb2\xd5\xc7\xb5\xcb\x832@\xf9$a9\xdf\xc4z\x0c\x95]U:\x02\xa5\xa4d=@\xea\xa5\xe5\xd2Y(\x1a\x89\xe1\xa4m\x16n\x98\x7f\xb5U\xa7a\xcd\xb7\xd5\xc6I\x93\x89@\xbb\xd4#\x14h\xb1\\\x92\\h\xf0%\x8a\xce\xf6\x8b\x8c\xff\x0f\xd7\xdb\x92/\xd4;\xa8T\xf4z\xc3\x86L\xa1`R\xb0U\xe2\x81r\xc1\x8a\xe28\x91\xb2\x02f8\xc39b\x02y\xeehU\x97A)\xfb\xe3\xf8\xc8%T\x8f\xf7\xf2\x12q\xe6\x87\xc3'\xf0\x96\xe3\xcf\xe5B9\x15\xd4\xbc\x11\xfc\xf97\xdf\x18\xd4\xe4+B`J\x08<\x85\xd1h\xf4\xef\xda\xcf82([\xe9?@\xd9j\xc4\xd1x\x95\x93\xc5\xdd)!\xf7\xf4\x9f\x8eFz\xfd\x97L\xe1.\xef\xea\x83\x98\xc8)\xb9\xfb'\xde\xd7=\xf8\xdd \xc3M\xfd\xfd\xcbL\xbb#\x0b\xed\xfe\x82\xce\xd1`\xc4\x83\xa7\xc26\xe4\xa3\x0c@\xa1\x84\xde}E\xc8(J\x11\xa5\x16\x02I\x14y#9\xc7FC=\x0e\x1a\xca\xd5\xa4{`!\xdd\xdb\x15\x9b\x93\xcc@<\x89\xd5+B\xee\x8eF#\xbd6\xa8 w\xd7\xf8\x8d`>A\xd6\xaeT\xe5\x9d\xbc\x96D}\xf1\xf2\xfd\xf3w\xaf\xdf\x9e\xfe\xf2\xee\x9e)L\xb6fT\xf3\xc0rh39\x8f-\xe4\xfc\x9e\x18\xee\x88\xe3\xa4|\xf2\x14\xfe\xb4\x9c\x8c^\x11\xf2\xfbh4\xfa\x97\xfec\x94\xad\xf6\xb8\x19\xca[,\xa5\x11\xf5\x06\xe5t\x8eRNd\xf3DL$\xdc\xc4\xc2\x80B2\xdd@\xe0C\xb6X\xa3 \x10\x14\x1bD|\xf5oO!KR#\x83\x9b\xf1\xd2p2wn\x05\x9d+Y\\9\x1a0Y\xad\xcd\xaeJ{\xc8\xb77\xd5Vo\x19%\xe3f\x89z\xa8]\x85I\xb5\xcf\xfd\xf7\x91\xf8\x81\x9b\xab\xbb\x80\x1a\xda\x8ek\xc2\xf2\xd6@e\x87\x92C\xd4\x83\xd5\xaa%KW\x95_\xb9\x15,\xa8\xcdd@S\x86U1B \"\x8e\xb1\xbb\xbf\xab\x1e\xaa\xd4\x89\x15\xca\xc2\xdb\x05\\r\xf4\xce\x94\x90\xd1\x04\xe5b\xb2\x97\xfb\xab\xd1\xe7\x1dIE\xe1{)\xfb\xd3\xbb\xa2\x02\xd5\x1d\xde\x07W\x87\xcaO\xfe\xf2\xfe\x97\x9f\xd5\xbf<}\xfa\xf4\xa9\x9e\x07x\xbbu\xccE\xda\x91\x84\x8b\x83\xd2\x08\x92~]Aq\x15_\x9d\x15)\xd2\xdch\xbd\xdd\x0do\x12\xe3\xb5\xd9\xb2\x07x1\xc1q\xbc6`\xf6\xa49\xae\xea\x0ei\xa27\x0d\x93b*\x1c\xd9\x8f\xff\xc5I\xf7\xb1\x0c&\xb4\"\xd5\xd5\xe2\xa87H)~\x9e\x18\x1c\x10\x14\x9dq\x19\xb4v\x88\xa7I\x8a\xf5z\xa3\x92YoqNIf\xdc\xb6e$N<\x19;\x16+\xfc\x14\x0e\xf5=\xd7\x0dDaB\xf9\xfd\x91\xbf\x06\x030b\xb5#h\xb9\xf3\x04vT\xbb\xb6M\x86\x91\x9c\xe5\xce\x9e\xa9?1\xbf\x9f\xd1\x82\xf7\xf9\x1fr\n\xffil\xc0\xe7\xb7\xf1\xbd\xef$_OK\x87\xab\xcdk\x92\x1b\x12\n\x178M\xef\x9fe\xe4\"\x13rf\x8e( \x88\n\xca\xc8\xc2ss\xb5Y~O\x1a\xf0\x1b\xfb\xa0z\xb8\xb8F\x873\xb0\xc6\xb9B\x92\xa5\xd5\x83}\x14\x9b\xb1\xe2\xf39I\xe3\xf2\x16Z\x81\xb9\xdc\xcaIV\xef\x0f\x90\x11@uWr\xcb\xa8\xc7\x11(\x8cj\xe5|\x97\xcb\xb5\x8a\x84[\xa1\xa1*b\xfa\xcf\x7f\xfc\xf3\x9ea#\x0d\xc1s\xed\x01\xcdl'H\xc5\xbb<\x1c\x1d\x1d\x1e\xd1\x1d\x03\x0b\xc9\xffeh\xd6H\x1a\xdc\x87\xf78?O\"N\xbd\xfd\x88\xd0\x05\xa1\xfb\x13D\xf1>\xab+\xf3\xf6\xcf\x0f'\x98\xa1\xc3}\x91\xfd\xa2\xfb\xbf\xcbj\x9e\x7f\xc9Nf\xebC\x97\xb4X,P\xbez\x02\xdfc\x99lz\xb6\x92OU\xc3\xa7\x02\xe7 \xa6e\xfe\x8c\x93y\x96\x9c\xe3\xac\xac\x0b\xaad\x16Yb9\xe3\xd7\xf1v\x1f\xe57U\xda\xa91\x85\xdd\xa3\x83\x83]}\xee\nh\x11E\x98\xd2i\x91^e\xd2J_\x10\xa4\xed\x0c\xac\x89\x1c}\x15\x8a5za\x89]8\x15\xf8\x181\x07+\xf6`/\xe4aN\x05<.\x85;\xd7\xf1\xa2\xbfSa\x8e\xb1 Gs\x11z\x1f\x16\xb9\xda\xf5\xb3\xdeV\xef{/\xbd\x15'p\xc2\x0b\xdcn\x95wZwh\xac\xbd\xf5\xd2u\xeb\x9d\xf0C\x0f\xe9\x12\xc7\x93\xe0vw;\xb4\xefb7M\xb5uK\xbb\xeb\xad\xeb\xae\xf7\xab\xb7\xefK7t\xe8{\x93\xba\xef\x9d\xe9\xf6\xdb\xd1\x1d\x96\xf4\xda*\\\xcd\xf7\x95{\x0dc+%r\xbcm|\xc0\x1dm\xaf\xbat\x9a \xb8\x08s Nz\xb0\x02\xa7\x99\x82\xf3l\xc1\xae\x1f\xeb\xcf\x9c\xf4d\x05.|T\x81\x9d\xe4\xe0Cvp'\xbd\xa3>\xdd\xf8\xd8\\\xe8\xea~\xef\xb5\xd3\x8c\x9cf\xe2\x7fk\xb5\xc3\xfd\xd4C\xa1\xe7|\xbd\xf1P\x03n\xd2\xc3z\xd1\xb3\xf1\xe2f\xbf+\x9a\x87\x9a\x83\xeb\x05\xcbC\x8dg\xbf\x1ey\xa8\x91<.7\x1ejH\xc7\xab\x89\x87\x1a\xce\xefba\xf7+\x84\x87\xc1\xafe\xccYo\xf4\xf5\xb9\xa5\x97\xcb\x94+\xf3\x02\xd8\xa5\x952\x83\x1c\x1c\xb0*\x18+\x81\xc1\xcbb>\xbd,\xcb\xc1\xaa\xd0\x9502en@\x9a\x91\xff% ?\x92A\x88o\x0e\x8do-\xff,\xdeQ\x16\x05ni\xca\x89\x06s\x9ccQ\xde#d\xd8\x08\xe0ox7\xc7\xf0[A\x19\xa0Y\x8e\xb1y\xbae=\x13\xc99\x9f\x88\x00\xa3q|Q\xf8\xb8\xc0(+g%Q?Y.\x7f@t\x0e1\xc1\xb2\x98\xa4\xac\xaa\xe6]S\x93\x82f\x97\x9a\xba\n\xdb\x19\x80\x17\xdc\xd2o\x85\xa7\xcbJha\x94\xa32i\xde,\xee\xd6\x17/\xe9\xb4\x83\xf9Y\xbe\x01x\xde\xfe\xee\xdf\x80\x8co\xb5)\xed\xf8J\x88\xab'\x15\xc7\xe2U|\xfb$$8b\x01\x1e\x98@\xf52\xbfF,\xb5\xc1\x03\x01\xf0D\x02\xaa\xee\x9d\xbet\x16EMp;OTAx\x99\xbf\x84\xf02\x7f\x03\xc2\xcb\xfcNm\xbc\xee\xca\xf7s\x9b%\x98\xce\x85\xa8\xc1\x1e\"i\x83\xa7\xac\x83\x0e\xf2\x0e\x9c=\xfb5tX>p5\xc96\xc1+\xec\xd2\x86\x0e\xd4\x83\x8e\x14\xe4\xe0\x18\xa0iC\x17\xbe\xab\xc0\x7fKT\xe0\xbb\xe0\xd0}\xd1\xa1\xeb\xc2{\x06}\xda\xe0\x14\x02j\x83\xf3Q\xcc\n:\x10\xc45\x9e\xda\x06\xef\x93\xaa\x15\xf4\xc0\xd0y\xa9\xc2\xcb\xfc~\x14\xebb\x82|\xd1/\xf3\x0b\xcb~\xe2\xb2\x00\x9e\xf2\xdaWN\x07\xcb~\x03\x82e\x1f,{;\x04\xcb\xde\xf65\x04\xcb\xdeO\x07J\x08\x96\xbd\x16\xfc\xb7D\x05\xbe\x0b\x0e\xdd\x17\x1d\xba.|\xb0\xec+\x08\x96\xbd\x04\x7fy\x1b,\xfbm\xb8n\xcb\xfe\x16\xde\x0c\xb9\xe6\xd9\xdb\x81\x8f\x97\xe8\xe9\x88\x89\xab\xc8\xf1\xe5\xcf\x17U\x82\x883i\xdf[*\xeb\x85)\xcdj`\x17\x84\xf75M\x93H\xdcT\xc9\xb9\xd6\xc2s\xe2\xfe\xca\xb1\xbc\x9fr\x8c\xc4\xe5\x997\x9d\xb6j\xcc`\xecPd*\xc1\x03\x17\xf0\xc4\x07J\xd1\x88cO\xab\xca\x13'\xe8\x80\x17Xj\x90\xd5\xd0\x011\xe8\x88\x1c\xb8T1\xab\xc1\xb7\xb6Y\x0d\x1d\xe7\n=\xe6\x0bn\xd5\xd1j\xf0\x14X\x9bP 0k%\xb5\x1a\xac\xf5\xd5j\xb8I\xa4}E\xf0&\xb8\xd5m{w\xdb\xae\xf3\xde\xa8\xe6\xf6\xee\xcd\xb1\xfa[\x0d\xae5\xe1\xde\x1d\xb7j\xc8\xbd+\xc5\xd5\xe0[?\xae\x06{U\xb9\x1a:3\xb2_D\xa7\x82\xce\xc3\xf9\xdaLM0\xd7\xb0\xaba\x00D]M\xaa68V\xc1\xab\xe1\x86d\x7f\x97x\x01\xf4#2\xf8\xbbVm\xe8\x118\xaa\xa0\x07\xb5\xa1'\xc5\xa1k@\xa9\x82.\x0e\xf6&t\xdf\x91\x15te\x1c\xe8\xcf<\xd0\x97\x81z\x05\xa0*\xe8\x10\x88\xaa\xc0\xfd\xec\x81\x1az\xd0\xaf\x07\xdd\xfcO/\xa8\xc1\xe1L\x83\x1anb\xda\xce'\n\xd4p\x13(\xdb\xabn\xf5\xe0z\x14\xc3\xbbc\xd3\xd1\x0d5\xf8\x1d\xe8P\xc3M\x90\xdf\xf5H\x88\x1an\x02c\xfb\xa1\x125\xdc\x04\xae\x1e\xc7R\xd4p\x13H;\x1elQ\xc3M \xecw4F\x0d\xee\x07f\xd4p\xfd\xf3\xee\xe3\x9d[O\xe8x\xf5\xe6q\x9aG\x0d\xa6Wz\xd4\xd0\xd1\"\xeej \x7fA>\xa8W\xb5A\x05}\x8ct\xfflX\x05\xc1\xf9t\x81\x8e\xe2ABp>;\xf3u\x05\xdd\xb7b\x05]\x19\x07\xfa3\x0f\xf4e\xa0\x9bv>]^xR\x83\xa4\x9c\xebk\xaaM\xb0\x9emSC\xaf\x8d\xd2o\x9bx\xbd'\xa5\x86\xde\x8c\xe6WQ\xda\x86\xae/R\xa9\xa1\xe3;Uj\xe8\xf8z\x95\x1a\xfc\xdf\xb4RC\xaf\x97\xae\xd4\xd0\xdd\x0b\x970\xd4\xabXj\xf0z+K\x0d\x9d\xab\x97\xda\xd0{\x9f\xf4\x16\xc7\x1e5\x1a\xdb0\x18\xfa\xdd\x92\x0e\x12\xbc\xcb\xa1\xda0\xd8\x1c:-A\x1f\xbfK\x82\xeb\xeb`\x1d\xbaN2@\xc67\xc3\xd4\xd0gN\x0e\xef\x8by\xf5\xa7~\x8b\xac~u\xcc\xab/\xdd\x0be:X\xcb\x08\x8a\x9d\xdd\xbd\x0ez\xbf\x8b\xb6\xf7{K\xbe\x82nVP\x07\x0b\xa8\x03\x15$t\xa1\x85\x84\xcer\xbc\x97\x00\xe9!<\xbc\xdf\xa2\xaf\xa03q\xa1\x17\x81\xa1\xeb\x1b\xf5\x15\xf4\"4\xf4#6t\x7f\xbb\xbe\x82\x9bE\xbf\x8fEv\x05o\xdbW0\xc8\x1b\xf7\x15\xf8\x96\xe3\xb6\xa1\xd7\xfa\xf4\xf1\xeb\x97\xdd\xdf\xc0\xaf\xe0\x06p\xaf\xb0\xf6A\xb6\xa3\xe4\xe9*s:\x8a\xf4\x1e\xc4\xec\xbcE;\n\xf3\x8e\x04\x85\x1eD\x85~b\xbc\x07q\xa1\x0f\x81\xa1\xaf\x00\xbf9\xc4\xbb\x8b\xee+\x13\xdc\x03\x8a\xed>B\xbb\xc7\x9at\x13z0\x84\xb8\xbev\xac\xbb\x1dV\xa9\xa0#\xba~\xa8r\xef\x8cdc\xf7\xd4\x98'V~\xd8LV\x9fQ\xc6\x92\x0c\x8f\xfd\xfc$?\xff\xc8\xc3/\xf2\x96\xf3\xfe\xd2\xdd[Yz\xae\x80\x84\x0eb\xd0[5z\x13\x0b:\x11\x0c\xba*\xc2N\x84\x83n\xc4\x83\xeej\xefz\xd1\xec\xa2\xe4\xae@\xbd\x0d\xa2\xd8\xbaI\xdaN\xf4\xf6\x93k\x12z(\xb0k\xc0\xb1\x9b\xb2\xf2D\xcc\x13%\x9f(yGL\\#\xe0\xbe\xc1\xd5\x9f\xb8B}.\xce\x0d\x9e\x88c\x83}O3\x96\x97\x946\xce\xd7\"\xc6\xf0b)N22\x02\x8b\x84\xa6\x18\xc5\x80\xe4\x99Ek\x7f\xf2L\xa3*\xa2\xda(\x15V\x13\xde*\xe8\xedB\xddfp8\xad\xa6\x0b7Y*i\xe48\xb6\xda\x02\x97\xea\x18{\x1d\x8c\x95l\xe0D:p*Fp\" \xb8k\x0d\xaf\x1a\x14\xa7\x99\x82\xf3l\x01\x9c+H\xdc\xd6\xb3\x02\x17\x06\xaa\xc0Nr\xf0!;\xb8\x93\xde\xb3z\xc3\xa9N\xc3\xa5\"\xc3\xc5\xaa\xb6\xda\xd2\x8e\xac\xe0\xca\x08^5\x12\x1e\x8b\xe1V\xf7\xd0\xb5\xc2\xa1c-C\xc7\xaa\x05\xff\xfa\x84^\x95\x08\xee\x16\xe4P\xd5\x05^u\x04\xde\x15\x03\x1e\\\xe3\xb1\x81\x1d-\x99\x0e\x83\xbbY0\xce\xd9\xfa\x0e\x18X\xa6\xefc:\xb9f\xd5E\x8e\xdc\xa1'u\xc6\xd8\x0d#\x87\x9c\xb8&\xcf\xad\xe9\x10m\x1bqm\xfc\xccxm>:\xf8\xae|/\x90\x93J\xbe\n[\xfe7_B\xbe8\x8a\xcd\xf4\xd7\x02\xe7\xab\xfd\xad'\x10\xdf\xbd}^\xbe\xd9\xbbF\xa8\x12\n\x8d\x1e\xdao\x17fPd\xf8r\x89#>i\x9c\xe7$\xbf\xca'\x0c\xc5\x00\xdb\xcck`\xd7\x88\xc4\nn7[\x08&K\xaf\xbcm\xcf\x0b\x87\x183\x94\xa4\n\x99cR\xaeZ\xa5jQ\xa66%\xca\x9b\x8f\x8b\\kF9l}\xb7\x9d\x03p\x02\x1f\xde\xfd\xb4\x9fcJ\x8a<*_y\x16[\xa6\xc8\x92O\x05NW\xc0\xf7\x11K\xa6 n<\x11l(\x0c\x91\xef4T/\x18\x1b\x9e\n\xce #\x11IaRL\xa7\xb8~1u$\x9f\x9f\x90s\x83EA\xeb}\x0dHo\x97\xa4\x18Q\xa6\x1f\x8bd\x18v\xf6w \x9a\xa3\x1cE\x0c\xe7#\xf1\x98\xb3x\xaf\x9a\xe2\xd9\x02g\xb5\xf0\xfa\xf0\xee\xa7]\nK\xa4yd\x99\x83@\xaa\xbe\x97I?*S<\xa5-\xe8[\x0e%(y\x17QH4/7s\xf8\xc8Q\xd1>\xea\xfa\xf1\x9e\x9c\x89\xe8\x96\xceI\x91\xc60\xe1\xc2W\xdb\x1f\x82\x08e$K\"\x94\x8a=\xa4\x1f\xf9.\x1e\xcdF{\x9c\xb4\xe2\xca\x85\x9d\xd1\x0e\x97_\xe2Y\x92(\xc2K\x86\xe3{#\xcd\xeb\xda\x1c^g\xb0\xe4\xc4N\"\xbc\x07\x0c\xa3\x05\x85\x82\x16\x88\x93C\xde^\xb5LR\x8e\xa9|u\x17&I\x86r\xbd\xf9*^BY-q\xf9$ \x9b\xe3\x95~h)\xeb a\xdc\xdd.h\xf3\xdaM\x86/\xc5R\x9fd\xab\x11\xfc@.\xf09\xce\xf7\x8c\xa6\xc9\x87w?U\xa6O\xf9>\xba~`!A1|\x9c3\xb6\xfc\xb8'\xff\x97~\xdc\x03\x92CF\xca_\xf7\x047F(\x03\xb2\x94\xcfr\xa7\xfais5T,\xcb{G\x0d\xe3\xe2\xfc\\\xbc\xcb\x8e\x18,\xd0\x92J\xd6\x12\x983R_>*b\x80\x89|5\x05\xe9CuS\x92\xa6\xe4\x82>1\xac\xed\x9f\xe1\xf5t=#\xce\x16\xd5s\xf8\xf5\xa4\x85Y@i\xb1\xc0\xb1\xe1\x92\xd3?s\xe5\xf4\xc3\xe9\xe9[\xf8\xfe\xe5i\xf5N\xcd\x87w?\xc9=&\xde~7X\x0f[\x8f+\x9f\xae\x96\xf8\x9f\xff\xf8\xa7\xb6\x01\x94\xef\xb3'Y\xc9o\xa5\x1a\x11+\xb4\xccI\\D\x18P&U\x98\xbe\x86\xed\xcfp\xb2\xbe\x1b\x84\x8a\x87y\x10\xa7\x19\x8e9\xb9#\x14q\xd9B\xc8Y\xb1\x84\xf24\"L\x105T\x18\x12\xdbe*\xe2\xbd|\x92\xc3\x1c\x9d\x0b\x16\\4\xf6P,7\x11\xaa\xa6\xc4\xff}N\x92\x18PfJ\xb2H\x04\x85\xf8\xc8\xf1\x94\xe4x\xaf\xea\x80\xf7\x8bX2I\xd2\x84\xad \xc38\x16l4\x11\xa7{\x05\xab\x99j%I\xc6\xc5l6\xc3\xa2\x91\xd8\xb3#\xb8\xfb\x81\xe2\xea\xfa$N%\xce\x9e\\fI\xfeD\x19\x9a\x99f?\xc91:\xe32\xa8\xecxtO\xcfQ?\x13\x86\x9f\x00\xe3:dZd\x91\xdca|\x1e\xa5\xec\x8a\x8a<\xc7\x19KW\x8d\x08\xb8A\\\x8aw\x93\xa6\xd3$JPj\xd1e\x93b\n9\xe6\x9a\x08\xef\x89\x1be\x12V\x0dZP\x1cK;\xaf\xda\x97\xda\xae&x\x96d\x19\x9f\xacx\xe8_\x8f\xd8\xf6\xd3\xdf&i\xfc^\xecT\n\x84\xcd\xa5\xa0\xc86\xa5\x14\xdc\x95v(\xe0\xc5\x92\xad\xca\xad}O\xaf\x04\x859:1\x08%1i\x91*H\x16\xcb\x14/\xea\x07\xde\xe9\x12G\xc94\x89\x80\xe2\x05\xcaX\x12i\xcaE\xc5^\xeda\x029x=\xaeV\xd2\x1b.\x8e&\x18\x90\xf4\x08\x1a\x06\xce\x96\x1dS\xdd\x1e4!\xe7z\x9e.IPn\x05\xe5Cl\x0e\x98}<\xc9V\x1f\xd7n\x0f\xca\x00\xe5\x93\x84\xe5|\x13\xeb1TvU\xe9\x08\x94\x92\x92\xf5\x00\xa9\x97\x96Kg\xa1h$\x86\x93\xb6Y\xb8a\xfe\xd5V\x9d\x865\xdfV\x1b'M&\x02\xedR\x8fP\xa0\xc5rIr\xa1\xc1\x97(:\xdb/2\xfe?\\oK\xbeP\xef\xa0R\xd1\xeb\x0d\x1b2\x85\x82I\xc1V\x89\x07\xca\x05+\x8a\xe3D\xca\n\x98\xe1\x0c\xe7\x88 \xe4\xb9\xa3U]\x08\xa5\xec\x8f\xe3#\x97P=\xde\xcbK\xc4\x99\x1f\x0e\x9f\xc0[\x8e?\x97\x0b\xe5TP\xf3V\xf0\xe7\xdf|cP\x93\xaf\x08\x81)!\xf0\x14F\xa3\xd1\xbfk?\xe3\xc8\xa0l\xa5\xff\x00e\xab\x11G\xe3UN\x16w\xa7\x84\xdc\xd3\x7f:\x1a\xe9\xf5_2\x85\xbb\xbc\xab\x0fb\"\xa7\xe4\xee\x9fx_\xf7\xe0w\x83\x0c7\xf5\xf7/3\xed\x8e,\xb4\xfb\x0b:G\x83\x11\x0f\x9e\n\xdb\x90\x8f2\x00\x85\x12z\xf7\x15!\xa3(E\x94Z\x08$Q\xe4\x8d\xe4\x1c\x1b\x0d\xf58h(W\x93\xee\x81\x85toWlN2\x03\xf1$V\xaf\x08\xb9;\x1a\x8d\xf4\xda\xa0&\xdc]\xe37\x82\xf9\x04Y\xbbR\x95w\xf2Z\x12\xf5\xc5\xcb\xf7\xcf\xdf\xbd~{\xfa\xcb\xbb{\xa6P\xd9\x9aQ\xcd\x03\xcb\xa1\xcd\xe4<\xb6\x90\xf3{b\xb8'\x8e\x93\xf2\xc9S\xf8\xd3r2zE\xc8\xef\xa3\xd1\xe8_\xfa\x8fQ\xb6\xda\xe3f(o\xb1\x94F\xd4\x1b\x94\xd39J9\x91\xcd\x131\x91p\x13\x0b\x03\n\xc9t\x03\x81\x0f\xd9b\x8d\x82@Pl\x10\xf1\xd5\xbf=\x85,I\x8d\x0cn\xc6K\xc3\xc9\xdc\xb9\x15t\xaedq\xe5h\xc0d\xb56\xbb*\xed!\xdf\xdfT[\xbde\x94\x8c\x9b%\xea\xa1v\x15&\xd5>\xf7\xdfG\xe2\x07n\xae\xee\x02jh;\xae \xcb\x9b\x03\x95\x1dJ\x0eQ\x0fV\xab\x96,]U~\xe5V\xb0\xa06\x93\x01M\x19VE %\x888\xc6\xee\xfe\xaez\xa8R'V(\x0bo\x17p\xc9\xd1;SBF\x13\x94\x8b\xc9^\xee\xafF\x9fw$\x15\x85\xef\xa5\xecO\xef\x8a\nTwx\x1f\\\x1d*?\xf9\xcb\xfb_~V\xff\xf2\xf4\xe9\xd3\xa7z\x1e\xe0\xed\xd61\x17iG\x12.\x0eJ#H\xfau\x05\xc5U\x84uV\xa4Hs\xab\xf5v7\xbcI\x8c\xd7f\xcb\x1e\xe0\xc5\x04\xc7\xf1\xda\x80\xd9\x93\xe6\xb8\xaa;\xa4\x89\xde4L\x8a\xa9pd?\xfe\x17'\xdd\xc72\x98\xd0\x8aVW\x8b\xa3\xde \xa5\xf8ybp@Pt\xc6e\xd0\xda!\x9e&)\xd6\xeb\x8dJf\xbd\xc59%\x99q\xdb\x96\x918\xf1l\xecX\xac\xf0S8\xd4\xf7\\7\x10\xc5 \xe5\xf7G\xfe\x1a\x0c\xc0\x88\xd5\x8e\xa0\xe5\xce\x13\xd8Q\xed\xda6\x19Fr\x96;{\xa6\xfe\xc4\xfc~F\x0b\xde\xe7\x7f\xc8)\xfc\xa7\xb1\x01\x9f\xdf\xc6\xf7\xbe\x93|=-\x1d\xae6\xafInH(\\\xe04\xbd\x7f\x96\x91\x8bL\xc8\x999\xa2\x80 *(#\x0b\xcf\xcd\xd5f\xf9=i\xc0o\xec\x83\xea\xf1\xe2\x1a\x1d\xce\xc0\x1a\xe7\nI\x96V\x0f\xf6Ql\xc6\x8a\xcf\xe7$\x8d\xcb\x9bh\x05\xe6r+'Y\xbd?@F\x00\xd5]\xc9-\xa3\x1eG\xa00\xaa\x95\xf3].\xd7*\x12n\x85\x86\xaa\x88\xe9?\xff\xf1\xcf{\x86\x8d4\x04\xcf\xb5\x074\xb3\x9d \x15\xef\xf2pttxDw\x0c,$\xffw\x89r\xb4\xc0\x0c7\xebm\xef\x0b\xc9\xfb\xa4\xac\xd5it\x91dO6C\xd99\xfeT$9\x8e\x9f\x00\xcb\x8b&\xd15\x0e\xb5\xaa\xf2\x82\xa1Yk\xf4\xf78?O\"\xde\xd9~D\xe8\x82\xd0\xfd \xa2x\x9f\xd5\x15\x82\xfb\xe7\x87\x13\xcc\xd0\xe1~Fb\xc5L\x97\xf9\xdb\xee\xa6\xfc\xf0\xd6&\x01\xe5\xab\x10\xba7e\x8c\x91\x07\xd3\x13 \xa6G\xe8\xd8\x0dd\x99,g\xb4\xad\x11\x16\xcb\x8bn\x16\xec\xc0\x01Cp\xc8\x85\x81\x0b\xaa\x12\\b*\x15\xf8\xe6\xc5\x8c\x9d\xa9\x83#\x06_a\xe8\xfc\x18\xd8sd\xd0!Of\x9e\x00bs\xe7\\\x19\x0c\x95/\x83\x8e93c\x87\x9c\xb8\xcey3\xe8\x9f;\x03\xef\xfc\x99\xb1\xab2\xae\xef\x95C\x83\xa1\xf3h\xe0\x99K\x03\xdf|\x9a\x99\xb3\xeb\\\x9bkN\x0d\x86\xce\xab\x81[n\x0d\x86\xcc\xafA\xef\x1c\x1bt\xcb\xb3\xc1P\xb96\xe8\x94o3o\x07Dql\xcf\xb9\xc1\xd5\xe4\xdd\xe0\nsop5\xf97\xf0\xcc\xc1A\xb7<\x9cM\x04\xbb\xe5\xe2`\xd8|\x1cx\xe4\xe4\xc0?/\x07\x1drs\x0e\"\xf3\x9eC~\x0e\x86\xc8\xd1\x81-O\x07\xee\xe6\x99C\xbe\x0e<\xad8\xef\xbc\x9d\xb17\x91\xd3s\xc8\xdd\x81\x07\x96\x03\xe6\xf0\xc0+\x8f\x07C\xe7\xf2\xa0c>\xcf\xccW\xd4\x9e\xd3\x83\xeey=m\x7f|D[n\x0f\x06\xcb\xef\x81{\x9a\n\\\xf2|\xe0\x97\xeb\x03[p\xbec\xce\x0f\x1c\xfa5\xc4\xff\x06\xca\xffA'\xe2\xba\xe7\x01\xc1a\x96\x1d\xf2\x81\xd05'\x08f\xaa\x0e\x97\x1b\x04\xf7\xfc 8\xe6\x08\xc19O\x08nT\xf7\xcf\x17\x82W\xce\x10\x8cyC\x18*w\x08\xbe\xf9C\xe8\x99C\x04\x07\xf2z\xe4\x12\xe1*\xf2\x89\xe0\x82\xa3a'\x0c\x97[\x04\x97\xfc\"\xf4\xc81j;\xe4\x1f\x9a\xf2\x8c0t\xae\x11\xac\xf9F\xe8\x9as\xd4\xf6&}T\xb3\xbb\xee\x90{\x04c\x8a\x04\x8c9H\xe8\x94\x87\xd4ve\xccOB\xd7\x1c\xa5\xb67i\x07\x1a\xa2f\xc3\xe5*\xc1)_ \x1dr\x96\xe0\x97\xb7\x84.\xb9K\xf0\xce_\x82E\xdbZrJ\xe0\x91Wr\xcdeB\x97|&\xf8\xe64\xc1<\xf1.\xb9Mmg\x8d\xcc\xa1\xeb\x96q\xcbq\x1a7D63\xe79a\xd8\\'\xd8\xf2\x9d`\xceyj\xdbt\xcd\x85\xc2\x80\xbc\xeb\x91\x13\x05\xaf\xbc(4r\xa3m8',\xc9f\xe3%\xb9\xd0]\x98\xec\x14\x99\xb0?\xea\xbf\xcc\xc9\x92P\x9c\x8f\x97yB\xf2\x84Y2b\xbdFk\xdfNZ%\x14\x95w\x93*\x93\xb3\x15,\xd1,\xc9\xc4Zl#\xdb\x1ac\xfd\xa1\x8csc\x11\xa3h\xfc\xb5\x1aN\x95\x8f\x95\xc0L\x89@\xcbU\xcd\xf8\x92\xe9s\x8cVzZ#J\xe5\xe5\xb0\xff[\x17\x9f\xa9\xc6\xaf\x08\xcc\xffY\x86c\x11\xa52\xfe\xfc\x16\xcd\xf0;yK\xebH\xfe\xae\xe9\xecS\x81\xf3\x95\xe8\x86w\xcbi\x88aA(\x03,\x82\x9a\"\x1a\xaah\xca\x08C\x9a\xec\xa73\x01\x0cw\xc9\xdb\xde\xdb\x17\xc3\x8b\xf9\x8b\x7fd\xc5b\"\xa3e\xd5\xd1\x96\xc69\n]<\xa5I\xa2\x88\x14\x19\x1b\x8b\xcet\xa2\xe7\x02Q\xa0\x98\xedA\xc2h\x95E\xa0Pd\x92\x01c\x19(\xbdHh{M\xad\xe7p\xb7\x0b\x11\x9c\x8e\xe4ntT\x1f\xd0mv\x14^>\xdf\xfc5\x9c\xcf\x0d\xe7s\xd7\x10\xce\xe7\x86\xf3\xb9k\x18\xb4\xae\xc0\xa7\xa6\xc0\xab\x9e \x9c\xcf\xed[;\xd0\xa1n`\x90\x9a\x01\xffz\x81p>\xb7O}\x80Om@\x87\xba\x80p>7\x9c\xcf\x0d\xe7s]\xf3\xfa\x83\xe6\xf4\xbb\xe4\xf3\xc3\xf9\\\xddg\xd6\xbc\xbdG\xce\xde\xe5\xf4\xa9O\xae>\x9c\xcf\x0d\xe7s]\xf2\xee\xe1|\xae\x80>\xb9\xf5p>W\xd5\x935\x7f\xde5w\xae\xd5\x0d\xe1|\xee6\x84\xf3\xb9\x1dr\xde\xf6|\xb7o\xae\xdb#\xcf\xed\x9d\xe3\xf6\xcbo\x87\xf3\xb9~9\xecp>\xb7\x86\xaf\xf2|\xae\xe9\xe5\xf3u\xd6tt\x86\x9bZ\xb0\xe5Ln$#\xcb\xec#*Eh\x8eY\x91g\"\xa8T\xa6\xd5\xcaDQ\x9d\xaa\x14\xa1\xa0\xd9F\xccD\xe4\x1e\xf9\xb67\xa7\x1fG\xf0\x0bWx$\x13\xbe\"\x99N)f\xdc\xfdj\xa3\x0b\x8dP\xf6Fn9\xc9\x9e\xc8\xb1\x1a\x7f[?\xe6>Ei+i\xa7 \x12(\x03\x03\n\"J\xfctt\xdcp\xca\xcb\xc9\x08Rf\xc5\x02\xe7IT\xfdM\xec\xb6\x08e|>\xff?{\xef\xfe\x1c7r\xa4\x8b\xfe\xae\xbf\"\xc3\xe7Fh\x1c!\x89~\xac\xcf9;'|#4\x92l\xf3z<\xd2\x8a\x9aql\xdc\xb8\xd1\x06\xbb\x8bMX\xdd\x00\x17\xa8&\xa9\x9d\xdd\xff\xfdF\xbd\x80\x02\xba\x1eY\x85j\x8a#e\xfe`k\xd8@\xa2*Q\xa8\xd7\xf7\xe5WjW\xe4\x9a5&\xf0\x87f\xd8\x88\x9aM?\xcf\xa5\xb7\x1d\xeb\xfb1\x84j\xeb\xe6\xd0\x8bP\x7fd\x89\xf1\x9c\xba?qpg\x90\xb0#\xbc\xbbz_c\xa3+\xaf\x1dh\x08\x1e\xa4XmR\xda-X\x83\xae\x87\xdd\x0c\xbcT[\x12\xf6\x9f\xce\xaf`\xc7\xae\xb8\xde\xfd\xaa\xb9\xea\x0e\xcd\xa4Q\xee\xaf\xaa\x0fD=D\xc4\xf9\xf2\x13\xb0j}\x0d\xd5\xcd\xcdg\x8c\xa2\x8dw\x8f\xf7\x87bi\xdd!\"*[h\x0b\xbc;0\x10\xff\xa8\x9bM\xbd\xae8\x1b\x90\x16\x1dAy\xa1nH\xb6\xbb\xbaY\xef\x0e\x9b\xd9\x94\xb0RO\x19\xa0\xae\xd9\x1b\x93\xc0\xa9\xb5\x03+\xban\x8b\xf31\xeb\\~<\xefgokV\x059\x8b\xeeX\xaf!n\xf9y\x8d\xdf\xa3\xf8\xe4^\xe8\xaf\xa9\xde6m7\xdb\xbf6_\xe3\xf4\x11*2K_\xec\\\xd0\xdb\xf1\x02;v\xcb\xba\xc9\xad\xa1\x97\xa7\xaf\x9e\xbf\xb8\xda\xe2Kt\xcc\xfd%L\xfc\x88g\xb0F\"{m\xb7a\xdd|\x03\xcb}\x9cq\xd1h\x94\x92\x9a\xf8Y))\xfc\xb7\xf2\xe5\x11\x9bp\xb2)\x8c\xdc\xc4\x84\xca\x04\x15\x87\n\xb6\xf5-k@y\xf6)O\xb8|>1\x91 \xed c\xfc30(H{\"`\xa9\x9c\x8f\xa03\xf7\xc6\x7f`\x1f\xac4\xf7\x03\xe2\xfc\x0f\xc8\xe0\x80\x84+@\xda\x13\xb9\xbc\x10H\xe6\x86\x04]\x91\xf6\x04iO\xe4\xf2G \x8fC\x02\xa5x$\x90\xc5% \x7f\x0e\xa4=\x91\xc6-\x81D~ \xe4qLb]0\x8eg\x02e\xb9&\x90\xc07\x81t\xce d\xf0N\x10]&iO(K\xe6\xa4\x04\xbd\x91\xf6\x04iO\xcc\xac\x0cw\x05\xf0\x14\x0c\xc0pX \x8d\xc7\x021\xe09\x93\xcf\x02\x08\xbf\xa4=\x11\xb0,\xbe\x0b\x90\xf6\x84\xb6,.\x0c$\xf1a\x80\xb4'0<\x198\x05W\x060e$\xed\x89\xb2<\x1a\x88ri \x97O\xe3\xf5F\xda\x138\xfe\x8d\xd7\x1biO y9\x90\xcc\xcd\x01\xd2\x9epZ\x0eo\xc7\xeb\x8c\xb4'\x8c\x91\xf6\x84\xc3H{\x82\xb4'\x9c\x17Dw\x94H{\xe2+\xd2\x9epQ\x11H}b\xb4@k\"\xf5 \xc7\xed\xa4>\x91\xc0@ \xf5 R\x9f\x18\xad(\xb3 \x85U\x90\xc4( \xf5\x89\xa5\xec\x81\x0c\xe6@\x11\xd6@:c\x80\xd4'\x960\x04R\xd8\x01\x19\xcc\x00R\x9f \xf5 R\x9f\xc0\"\xfbEQ\xfd\x1cD\x9f\xd4'|\x97E\x91\xfb\x04\xd4\x1e\xa3\xad\x90\x82\xd6\x93\xfa\x04\xa9O`\x90wR\x9f\x90\xb6\x04]'\xf5 \x97\xa7(\x82\x9e\x8b\x9e{\xc7\x06R\x9f86R\x9f\xc8@\xbd\xe3\x88w*\xda\x9d\x80t'\xa3\xdci\x087\xa9O\xa4\xa1\xd8\xa4>1\x18\xa9Oh3)\xcd\xd7v\xfe+\xe8\x0c\xe1\xd9V\xf6\x98 \xcc\xbbCB\x1a|4\x0b\x9e\xf4. \x1eE\xd2\xbb8ap\xe3J\x0d\xa4wQ\"\x8a\xa4wAz\x17_\xaa\xde\xc5\xa6\x16\x1f\xc6\xe5ADb\x10\xbbX\xb7\xfb\xfd\xa1\xa9\xf9\xa7\xd5M\xdbjP\xde%r\xf1\xca\\\xf7\xaemw\x83\xb4\x85B\x1e\xf5/ <\xc0\xba\xad\x9b\xde\xa9i1q\xf1\xc4\xd4\xf1\x91*Y\x8c\xd1\xb0\x8d\x7f\x06\xc2\xc4\x865\xed>\x1b*\xa8\xf6\xe2\xe3\xce\xbc\x1d\xb3Q\xff\x9a\xad_\xb5\xb5\xc5q\x03\xde~d\x8d\xdegW\xa57=\x91\x98\xe9\x8b?\xad\xeb}\xe5&\xad\xab\xe2\xfav\x9c\x7fx\xfb\xe1\xcd\xb7r\xcd\xac\xae\xd3\x8b\xcfZ\xe2\x03\xaf\xd9ZO\xcb\x07L\xc6\x9e\x9b;\x1d\xaa\xad\n\xf7\xc3\xfaz\xdbT\xfc\xd0\xb1~\xf8\x12\xc5 \xb5m\xb7\xad\x9c\x08\x1f\xafg\xa7\xf4?\xf11\x98\xa0L\xbf\x91\xa7\xfd\xf4+q\xdc}\x14lI\x9d\x9a|A\xf9\x04\xac\xe9\x878\xbb\x84XX\xda\x88\x85\x15\xeaWN\x00`\xceG\xb0\x7f\xd3\xe3ap\xfc\xda\xb0\x1d\xdbJi\xa0\xb3\x9f\x87\x7f\xaf\xb4@\xcf\x7f\x9fu\xec\xae\xea6\xbd\x7f\\\xb3\xd6o\xaf\xd5\xedu\xdb|\x10S\xa1\xf7\xea\xd6\xc9X\xa7\xe6H\xda)T\xebuwP\xbdB%'\xaf\x83\xab\x81A\xec\x1c\x08\xdd\x0f\xd2W>\xda\x11q\x12J\xdb>G\xfb\x1d\x02\xbcZ\xaa\xc5\xa4\xaa\x15\xbe\xdd]7e\xde\x1a*\x8b\xd4SY\xac\xb6\xca\x82\x13\x01e\xd1\xda*\x0bO\n\x94\xa1\\a&\x08\xca\x92\xa7 \xc1@\xc8 Dd\xb2\xa0,k\xca\x10\xf0\xa77\xfaB\x13\x07e\xe9\xd3\x87\xf0\xce\x92\xb1\xb1\xf3xm\xba;\xd5\x81\x8c{\x9e\xaa\xaf\x1a\x1b\x95\xd3O{%\xc3\xae]<\xed\xcd\xbf\xc5\x0bP\xdfDd\x82cz\xc1\xe1\x8d\xeevz\x1e\xe2\xe8\x1d\x87\x07\xcd\x9dz8\xfa\x9f\xa3O\xa1\x89\xf6`Y_\xcdg\x9ah\xab1\xd9DErt\x0e{\xd9\xbc\xa7\x0d20\xdb>\xfa\xd4\xe4\xd4\xc3=L\xe7O\xbb=\xf3\x0b\x9apk\xa3 \xf7\x03O\xb8Cx\xcb\xd1\\\xda\xd7\x14\x8f.\x9c|\x8a\xc3\xafF3\x13x\xab\xd3\xb9\xae\xa6\x83\xc1B<\xe7\x84\x8b\x87\xb3\x9f\x8ff\x9b\x015\xd8\xf1+O\\@\x8c\xe3od\xd1@\xeb\x85\xe3\x9fc\x9f\x1f\x8d\xed\x83\xfd\x92\xc6\xf6\xf9\x1c36\xbf\xb4>\x1e\x87\xb7\xd80_p\x84\xa7\xc1}f4\xb8\xd3\xe0\x9e=\xb8\x8f%?\x1a\x89}%?\xbapR\xf2\xe1\xd7S\x97\xfc\x14\xd3\x92\xb9\x1az`\x16\xd2vC\xa6\xf5t\x1e2\xfa\x98m\x04\x84\xe6\x1e\xb6\xb7'&\x16\x8ft\xf6q\"\xc9x\xcfW\x18\x1f\xe3\xad\x80;\x1bbo\xbf\x041\xf2\x98\x11\xcd\xf9\xcd_\xcd7R\xf0\xe3\x9c\xfd\x12\x17\x8ft\x93\xf6Ec\x9d6\x1a\xebh\xac{T#\x86XFl\xba\xean\n\x96\x04\xc7\x8d\xbf\xeb[^\xea\xda\x9a\xc1\xc3\xb8\x1a\xc2\x902|\xcc\x9c>1\xd1y\xa4c\x88;l\xb6\xe1\x07\x85\xb9\xaf\xcc\xc6\x95\xd6\xd3\xcf\xe2]\xa0\xbb\x9f7\x0b\xea\xf3\xb5Q\x9fO}\xfe\xc3\xf6\xf9W\xed\xa1\xd9\xc8>v\xc5\xab\xfb\x07\xee\xd2\xff4<\xfcCu\xff\xc4\xd4\xf8\x91\xf6\xe3Cx&\x7f|\xf8\xae[\xb4\xe3\xe1\x9d\xa5\x8f)\xd4\xf3'\xbew\xea\xf9\xbf\xc8\x9e?\xab\xb7\x94\xc3E`\xe2\xfbN\xfe>\xf4\x89\xea\xf2!\x7f\xd2\xf2\x08\xfbvs\xd81\xf7D\xd7\xbaN9\xd4W=\xda\xae\xd1\x0e\x8bm\x93\xc2\xe8`\xd8\xdd\xde8\xfa\x9a\x18M\xc32Z\xb0\x01\x86\x9b\xdf\xc8Mw\xf6\xe0\x10oA\x97U\xcfV\x83\xcah\x88\xea\x15s\xd46\x87\xbe\x88\xa7\xc9h\xb2bMu\xb9cAO\xf3\xa4\x87\xd1z\xb6\xee\x18_\xb9&\x02nW\xdeB\x1d{\n\xd2\xeapC\x94\x9b\xc3\xac\xbe\x0b\xd4\x80\xa4\x87 \xfdi\xbe\x7f\xf7j\xe6\x8f\x86\x1f\x1a~~!\xc3\xcf\xb8\xcf\xebb\x13\xc8,\x9c\xba\xefk#*\xec\x1a\xa1\x86\x9d\xd6W\xc3\xc5\xc3pU\xad\xd7\x87\xfda'\x95}F_\xf2;\xaa\"dd\x87[}\xd9\xa3\x1d\xb4\xe6\xd1\xb2mR +\x14\xf6\xe0\xa5\xfe\\kI\xbe\x11\x0b\xea\xd8\x9a\xd5\xb7\xccA|\\8\x88\xf9\n\x0b\x91\xcf\nb\xfc\xe2\xc8\xe7\x05\xd1\xd2)\x8b2\x8b\x11_J\x8c%\x0187q$EY2c\"Py,\x9b8\x8b9\xe1\xf5\x86d\x12\xa71(|\xb2\xdc\xb2\x93r|\xea\xa8q\xd8\xe5\xeb\xcc\xd5\x1d\x8dk\xc2\xe1\x16\x1a\x93g\xbf\xd2\x98|\x8219\xb4\x19\xf8UP\x06\"\xf3\x8b\xf6\xc0{^\xc9\x04\xe5U4%j\xf8\xb2\xdf\x8ew\xcd\xb9\x8c\x86\x84%\xb7\n\x8fB\x13\x9eh\x1c\xbb}b\xa2\xf4H'\x1c\x11*c\xd6\xbc\xc0\xeb\x13hR07\x9a\x14\xcc,mR\x00\xa8\x10\x86>{+\xb5\xc8\xeaJ\x1cN\xbe94\xcf\xcd\x0eG\xf3k\xd3\xc8]\x15\x99\xadM\xa0\x96\xb3\x80\xa6\xafo\x99\xd2a\xa8\xd6\x1f\x9f)\xed\xe9\x1ez\x19>\xe8\xab\xa6v\x9e\xe2\xbb\xbef\xeb\x8f\xe9\xf9\xd4\x81*G'F3\x7f\x0e\xed\xf4\xd9<\xc9\x11V\xdaC\xd7F\x13&\x9a0=\xaa S\xbf\xab\xfak\x86\x99$]\xa8+\x87\x99\x91\xbc\x13\xd8\xad\xea,\xaf\xf0\xfb/\xda\xd1\x13\x13\x80G:\x17\x9aD\xc6\xb6\xcf\xf1i\x8do\xee\x86uu\x1bI\xe3F}$\x81\x03\x9f\xae\xe4\x99\x1f\xbe\x8d\x9c\xe8S\xe2C0\xccZ\xc3\x1b\xd1\x8a\xec\xc1\xd7\x1e0\xad\x86\xe6\xd1\xf6\xd5\xe7*\xd5\xbd\x9c}\xd4k\xa9\xc3\xc5\xaf\xb5\x92W\xcf\xdbN\x9e\xcb\xe5\xb9[\x9eUS\xf7\xf2\x90\x04s\xfa\xc3n-7\x19\xa1\xba\x11o\xa6\xab\xe5\xbf\xf7F\x9b\xaa\xe7\xf2(\x03\xa779\x11sN\x04\xd4T`L\xe00'\x92T\x1d\x1b\xc0\x92F\xab\xc4V\xba\xd6\xd7\x9e3>\xda\xb5<\x03!\x96\xba\xac\xdb\xf04iT\xff\x0d\xb7%\xb8\xe4\x148\x85\x9fY\xf2\\\x93 F\xd1\xcdG:\x05\x8eN\x81\xcb:\x05.\xb2\x81\xa8\xc7\xaa\xe8$9\xbe{h\x86O\x9a\nk\xa3\xa90M\x85\xb3\xa7\xc2c\xc9{^u\xf2\x14\xd7#\xe1\xdc\xd04dv\xd7\xa4\x12\xe6H\xaf\xe1\"\xad\xc9;\xd6e\xfe\xb1\xeb!u^\xbfT\x9d\xc3\xa3\x17\x1a\x91\xf3TB\x8c'\xa8\xb8Vx|\xa4\xd5&\xbd\xe2\xb40\x92^\xf1 \x83\x1bo\xa3\xa4W\\\"\x8a\xa4WLz\xc5_\x86^\xf1|\xd7\x8e\xdd\xd6\x1b\xd6\xac\xd9\xb0cg\xfe\xe0\xdf\x93{\xb9\xdb\xbd\xd1\x17\x8d\xcc\xa8\xdd\x0e\xcc\x9d\xce\xfd7\xeb\xa6'\xa6\x1e\x8ft\xebm\x1a\x01\xdb~\x91sy\xdc\x8e\x18\xd0A\xcet\x90\xb3\xf7J:\xc8Y\x1a\x1d\xe4|lt\x903\x1d\xe4\xec3:\xc8\x99\x0er\x96F\x079\xfb\xdb4\x1d\xe4\xac\x8c\x0er\xa6\x83\x9c\xe9 git\x90\xb34:\xc8Y\x1a\x1d\xe4\xac\x8c\x0er\xa6\x83\x9c\xe9 g:\xc8yn\xd8Cu\xe9 git\x90\xf3\x97r\x90\xf3h\x93\x15\xa2\xc1/445\x05g\x8e\xd6\xd7D\xb1\x94F\x14\xcb/\x94b\xe9NI\xb2\xe0\xc8|v\xa5\x0d\x84\xbe\x7f\xf7j^ \xe2Y\x12\xcf2\xba1\x89\xd9\xdb\x03\xc2f \x9b\xf5^I\xd8\xac4\xc2f\x8f\x8d\xb0Y\xc2f}F\xd8,a\xb3\xd2\x08\x9b%l\x96\xb0Y\xc2f\x95\x116K\xd8,a\xb3\x84\xcd\xfa\x8c\xb0Y\xc2f \x9b%l\xd6\xb2\x128\x19a\xb3\xd2\x08\x9b\xfdR\xb0\xd9\x90\xdc\x01\xa5\x90\xa7\xe5\xe7R\n\xf9 \x83\x1bO~\xa6\x14\xf2\x12Q\xa4\x14rJ!\xff\xcaR\xc8\xcf~6\xffZ]W\xfd\xf5\x7f\xfbS\xca\x8f\xf2\xc9\x07\x0e\x93\x04d\xa0m\xc6\xbf\x08W\xce\x14\xf3/%\xbf<\x8b\x1f\xc5\x83T\x84\xe8.\x0b\x9e\x8fB\xf1i@<\x1a\x86O\x04\xe1S x/\x00\xef/\x0d\x16\x08\xc5\x81\xef\x89\xd0{\x02\xf0\xee\xacZY\xd0\xdd\xf7Q,\x00\xdc\x9d\xfb\x14^\xb8=\x0fl\x0f\x01\xeb\xe5a\xf5\xe5- \x0d\xa9c\x01\xf5\xe9\x10\x89H\xecL\xca\xea\xd4y\x9c3\xe0\xc0\x18\x9d\x95\xa1\x8dr8)\x87s4\xca\xe1\xa4\x1c\xce\xd1r\xc0\x16\xaf3\xca\xe1<\xb6B\xc0\xcb2\xe8%\x03|)\x02\xbf\x14\x07`\xa2\x10\xcc @\x98S\xc10'\x00bR\xa0\x98\\0&\xd8\x87\xc7\xe0\x98\x82\x80\x0c\x16\x92I\x04e\x8a\xc32q`f14C9\x9c\xd1\x92\xe5A5NW\x94\xc3\x99\x03\xda\xc4`\x9b2\xc0\x0d\x12\x8d\x88\x827 \xf0M4\x97.\x11\xc2\xa1\x1cN\xca\xe1\xc4\x80;\xd1\xa8\xa6\x02\xda\xc1\xe6\xd5n\xf7 \xd7\xaf\xd8\x97\"z\x15yy\xd1>\xe5?\x0emw\xf0|\xaf\xd1\x97\x13\xdddG\xbe=\xdd\xeanX\xb7\x163\xd2\xad\xdaL\x96I\xda=\xaf>2\x89C\x0d\x83\x90b\xcb\xf8\x90A\x9ds.1+\xdfk[\xb7M_o\x98\xf8@\xe4\x96\xbe\xab\x19\xf0\xeb\x8e\xf5\xa2\xfd<\x92\xd8\x88\x16\xdb\x995\xeb\xbf\xb3^F\xa2W \xf0\xd6\xf7yS\xf5\x1eD\x05\xe0\xb5\xde\x05\xd1\xad\xfa7/\xfe\xe0\xba\xf2\x96\xf1v\xf5\xc8j\xafV\xf8\xed\x15\xfc\xc4t\x1b\x90\xdf\xf4\x07\xd9D\xd4\x7f\xca\xc9Z\x00\xcc\xb7\x83\xe4o\x19\xa2\xf2l\xf3b\x1e\xaa\xdf\x9e\xfd~\x1a*\x04\xf1KM\x18Sh_z\xa6\xfa\xfe\xdd\xab\x99?\"}\x11\xe9\xab\xd8l\x87H_D\xfar\x1b\x91\xbe\xa4\x11\xe9\xeb\xd8\x88\xf4E\xa4/\x9f\x11\xe9\x8bH_\xd2\x88\xf4E\xa4/\"}\x11\xe9K\x19\x91\xbe\x88\xf4E\xa4/\"}\xf9\x8cH_D\xfa\"\xd2\x17\x91\xbe,+A\xc0!\xd2\x974\"}}\x0d\xa4/\x8b\x01e\xf9 \xad$\xad;\x06\xbcY\xbd6\x0bq\xe6\xad>\x11\xfc\xaa\xed\x9e\x19\x01z\xa5\x15?q\xf6+\xc5\x03\xf8\xd5\xb3ix\x7f%aj\xf1\x83Xh\xfdJ#\xef\xbf*H\"Kb\x8bi\xe0O\xdf\xe0\xa4\x88\x99K\xa6,\xb1\xe1\xaf\x83\xe6\xf3\xb6\xbee\x0d\xf4\xbc\xe2\x87\xdeI\x14\x1b<=1\x95z\xa4D\xb1YTl\xe3\x9f\x01\xff2\xc5Y\xd5\x1e\xc49i\xff'p\xa6\xbcD\x04\xfc\xcc\xa2H5\x00Q\x15@\xc0y\x80\xab\x0f \xb7\x85\x8c\xa5B{Ag\xee\xfd\x9d\xc0r\xa74\xc4\x07q\x98\x0f2\xa0\xbep\x05\x8c\xb06\x06\xee\x83R\x90\x1fd\xc2~A\x87\"\xb8h\xe8\x0f\x96\xc3\x7f\x90\x0c\x01\x06]\x8d\xe2\xdbx\x18\x10JC\x81\x90\x08\x07B*$\x18n\xd9\x03\\\x88\x85\x05\xa144\x088x\x10JB\x84\xb0\x18&\x84<\xa8\x10J\xc1\x85\x90\x05\x19\x86?\x073\x05\x89}7'\x81\x0e\xe1\x84\xf0!\x9c\x06B\x84D\x18\x11\xf2\xa0\xc4X\x17\x8c\x83\x13\xa1,\xa4\x08 \xb0\"\xa4C\x8b\x90\x01/\"\xba\xcc_# F(\x013B\x0cj\x04\xfc\xf4\x0c\x019B\xe2,.\x19z\x0cz\x93\xb0$\x02~\x84\x84R\x16\x84!! \x8a\x84\xd2p$dB\x92\xe1v\xd5\xc7aI\xc8\x87&\xbd\xfe\xc4\x13c\xf0$\x14\x83(\x01\x8f\xb4\x01\x06\xaa\x844\xb8\x12b\xf8B&l \x08\xbf\x81-\xccB\x10&d\x05\x17\x0fe\x02\xa2\x96\x19\x90&\xe4\xc2\x9a\x10\x8ej9x\x13\xf0\x10' aN@C\x9d\x80\x8bz:\xe4 I\xb0'\x04\xa1O(\x05\x7fB*\x04\n\x0baP@\x847\x01\x0e\x85S@\xa2\x80)c\xe0K(\x07\x8f\x02\x06\"\x85\x050\xa9\xd7\xa1\xb80\x04\x95Bi\xb8\x14\xa2\x90)\xe4\xc2\xa6^oj\x8d\x1a^\xae#\xe0S\x08\xa2<\x10\x84Q!\x0bJ\xf5\xba\nB\xac\x90\x0b\xb3z\xbd\x05$\xd8\x95\x95\x83[\x01\x05\xb9B\x06\xec\ni\xd0+\xe4\xc0\xaf\x90\x0c\xc1Bd\xb4\x8d\xc0b\x90\x00\x8da\xe1X\xc8\x81d!\x15\x96\x85p\xc5s\xe0Y\xaf3\x0b\xfc\xc4~28\x986\xf8A4\xdb0T\x0be\xe1Z\x88A\xb6\x10\x86m\xbd\xf7\xe4\xc2\xb9P\xb0\xed&\xc0\xba\x90\x04\xed\xc2\x91\x90\xbc1\x05-.\x80\xc0X\xe3\xcb\xe6\x05\x89\x94\xbe{\xff\xf6\xdd\xdb\x8b\x97\xdf\xaf.>\xbc\xfc\xf0\xe3\xc5\xea\xc7\x1f.\xde\xbdyu\xfe\xa7\xf37\xaf\x13\xeez\xfd\xe6\xdd\xdb\x8b\xf3\x0f\xabwo\xde\x9f\xbfM\xb9\xf1\xa7\xb7\x1f\xce\x7f\xf8s\xfa}\xef^^\\$\x95\xf0\xfd\x9b\xff\xe7\xcd\xab\x0fI\xb7\xfc\xe9\xe5\xf9\xf7\xde\x1bL\xcaeF\x00\xb1\xbb*\x06;\xbe\x90m@\xbeI\xb9\xf6W\x1f\xa7\xde\x0b\x92\xbf1\xc9P\xf6w=cz\xbb\xbf \x06\x9bB\xb0\x9a\x93\xd1\xf6L\xe6\xbd\x95\xe6\xed\xc3J\xed\x10\xadE/\xb4\x92\xce|\xdd\xc7]\xd5C\xcf\xf83\xa8yo\x18B=\x1c\x1a\xd5\x007\x8a\x04qW\xf7\xd3w\x8a\xd1\x082,\\\x94L\x90\xcb\xc3\xd9\xc8]~\xff\xee\xd5\xbc\x02$\x1cD\xc2A\xd1a\x023\x04@\x06\xbbX\xb5]\x12\x0eB0\x89\x8b\xb0\x88s\x18\xc4$\x1cT\x90-\x9c\xc2\x14Nb \x93p\xd0RFp\x06\x1b\xb8\x08\x138\x9d\x05L\xc2AKX\xbf)\x8c\xdf\x0c\xb6/ \x07\x91p\x10 \x07a\xd9\xbaE\x99\xba9,]\x12\x0e\xf2]\x16e\xe3&0q1\xb28)\x0c\\\x12\x0e\"\xe1 \x0c\x9b\x96\x84\x83\xa4-a\xcc\x92p\x90\xcbS\x94\x15\x9b\xcb\x88\xf5\x8e\x0d$\x1ctl$\x1c\x94\xc1d\x8d\xb3XS\x19\xac \xec\xd5d\xe6j\x1ak\x95\x84\x83\xd2\x98\xa9$\x1c4\x18 \x07i\x1b\x84\x83\x8c\xde\x8a\"/Y\xbe&\xab\xc9\x19\x0e9\xbbk\x02\xc0\x8e,( \xc7\x1aTj>OzX\xda\xe1\xe7\xa3\x1a:\xa9{\x9f\x89R\x88,\xcb)\xa9\x83N\xba\xe0\xc3S\x04C\xb4\xc0\x87\xa5\x02\x1e\xd3\xff\xea\xe6[\x85\xc8[\x7f\x1b5\xb1\xae\xaa]\x1f\x11\xc5\x02'\xfd\x1bO\xf9\x8e},\x91\x8b\xfd\xd4n\x14\x9d\x1bI\xe1F\xd0\xb6\x93\xa8\xda\xa6C\xbcm\xf9d\xbfk\xd2\x0d\xca\x1f'\xfd\x8f\xfaK\xb5\xd9t\xac\xef\x0d>o\xf7z\xa3\xa7\x02\xef\xd5\x14Rw4\xad\xb7\xa0\xc3\x05\xb3\xceR\x1d}\xa6\x8b\xcbz\xb8\xea\xda\xfd\x83\x94x\xa4\xe5\xbc\xf8\xc8>\xf9\x8a=\x1bf4\xbf\xa5\xd2S\xf5\x8e\xf1C\xd7H\xf0B\x1374!a \xc3H\xc8a;\xdb\x9b\x9750\xbd\xa2\x9f\xe0\xf2\x02\xde\x8a\x85\x95R\xb7\x83\xf6\xea\xaag\x1c\xda\x0e\xa6\xc5\x05\x0b2\xed\x19/\x1c-\xcf\x06\xb4#\x88\xaa|\xbe8\xce6\x7fued(e2A\xbd6\x7f\x93}\x92\x16\xf6S\xbb\xef\xd7\xac1\x81?4\x03\xe01\x1b\xbe\xcf\xa5\xb7\x9dh\xf3C\x08\x15Dp\xe8E\xa8?\xb2\xc4xN\xdd\x9f8\xb83\xd2\x91#\xbc\xbbz_c\xa3+\xaf5|\x1d\x1f\x17I\x81av\x0bVkN\xf1\xeb\xc4\xdb\x8d\xda\xfa\xb6\xfft~\x05;v\xc55\xcaRs5\xed63\x1f\x89\xe3\xa9\x0fD=D\xc4\xf9\xf2\x13\xb0j}\x0d\xd5\xcd\xcdg\x8c\xa2\xcd\xa8\x1a\xef\x0f\xc5\xd2\xbaCDT\xb6\xd0V\xea@\x82\xf8G\xddl\xeau\xc5\xd9\x80\xe8\x9bS\xfe\xc4\x85\xba!\xd9\xee\xeaf\xbd;lf[\x0f\x95z\xca@\xa9\x98\xbd1I\xd0\xb1\x90>y\xb0\x9eM*\x9c8\xfb\xf1|>\xb3\x9dUA\xee\xd6t\xac\xd7T*\xf9y\x8d\xdf\xa3\xf8\xe4^\xe8\xaf\xa9\xde6m7\xc3I\xcd\xd78}\x84\x8a\xcc\xd2\x17{\xd9\xb6;f\xd1x\x1d/\xb0c\xb7\xac\x9b\xdc\x1azy\xfa\xea\xf9\x8b\xab-F^\xc7\xdc_\xc2\xc4\x8fx\x06k$\x83\xa4\xed6\xac\x9b\x03%\x17u\xb3f\xdf\x82\x92\xf8|\xdeo>\xc2o^\xfc\xcb\xef\x8bF#KW\xf4\xec\xe7\x9bQ\xbd2t\x10\xb5\x99\x10\x1a\x91\xd1\x9b\x91W+\x19e\xa3\xc8\x97\xb9\xf4\xfc\xb5y\xdbN\x95\xd1'\xa6\x8e\x8f\\d\xd4G\x95\xcb\xa2\xe0Z\xc1>\x15 5(\x12\x1a,:D\x8b\x0f\x08\xd2\x1e\xa2\x0e\x80\x04~\x95eQ\xf7\x02\xfe\x92dA\x8b\xd2\xf7\xa2\x04\xbe\xd2\x14><\x89\xaf\x10\x8d/\x8f\xc8\x17p\x97(\x04\xba\x90\xccW\x9a\xce\x97H\xe8+L\xe9K#\xf5%\xd2\xfaBm8C\xfa\xb3(\xb5\x0fE\xee+H\xef[J\xf0\xcb\xa2\xf8\x15\"\xf9\xe5\xd0\xfc\x02\xce\xd0R\x9f'\xa0\xfa\x9d\x8e\xecw\x12\xba_\x1a\xe1\xaf8\xe5\x0fK\xfa+J\xfb\xc3\x13\xff\x92\xa9\x7f\xe9\xe4\xbfhW\x88\x13\xf5\\L\x00\x8c\nz\xa2&T\x08\x1a`\xca\xac+\x99\n\x18\x1a\x04\xd12\x9e\xb8\xf2\x15$\x04\xa6P\x02\x0b\x93\x02\xf3h\x81\xa1\x16\x84\x92\xee\xcc\xa4\x06z\xbcq\x94lg\x19z \x9a\xe3\x86\xa0\x08&\x91\x04c\xaaw9D\xc1\x98O/a\xa0\x10]0=\x98x\xca`\xacn\x19\xb4\xc1L\xe2`\x88xQ\x8c<\x88\xa6\x0f\xe2\x08\x84X\n!\"\xca\xe94\xc2\x14\"aX\x88\xb3\x08\x990\x91N\xb8\x8cP\x18\x0bh\x02\xa9\xf0\x04\xb4\xc2h\xe9\xbc-\xbd\x1c\xb9\x10A/\xcc'\x18z\xdc\xf1\xa8\xe0fQ\x92a\x8cf\x98I4\xf4\xf8\x8a\x0bm\"\xc8\x86a\x91\xcd\x90\xc4fi\xcaaq\xd2\xa1\x9fvX\x92x\x88\xa1\x1e\xa6\x93\x0f\x93\xe8\x87\x19\x04\xc4T\nbD63\\:,)\x0cKD\xcc\xa0\"&\x92\x11\x03\xd5\xcd!$z\\!\x842sH\x89\x81&\x1f\x17\xc9,HL\x8c\nd\x9e\x82\x9cX\xaa-&\x10\x14S(\x8an\xf9\xcb\x90\xf8et\xfd\x1e\x12\xbe\xc4s\xa0B\xf7\xa0D/SxQ\xa1\xbb\x82\x82\x97H\xaeT\xe8\x86\x80\xd8e\x12\x7fjz#f\xe7\xa1\x94\xcc\xe5\xa8$\xe4kf\x0f\xcb5\x0d=\xf7\xa1X\xa7\xa3E\xa4#?\x13\x13u\xb4\xe4\xf2\x9d\x92\x9d:ZD\xd6\xf2\xe1\x19\xab\xa3\xe1$-\x1f\x96\xc5:\x9a_\xce\x12+f\xc9\x97\xe3\xea\x11\x19\xcb\xe8\x18\x82\x90\xb0D\xf8\x08\xcbW\"\x1c\xe0\xa4+\xa3\x8ep\xddqI\xd1\xca\xb1K>\xfe-*X\x19\xad\x0fN\xce\x0e#UY\xe4Q\x08\x91J\x1e\x10\x84\x82\x98@e\xf4{\xc0|\x11\x08i\xcah0\x00%K\x89p\x83k\x90\xc9\x82\x94\x08\xd9\xc9\xb2\xa2\x93H\xc9\xc9\x1c\xc1I\xa4\xdcd4\xd8\x98\x06\x8c\x12\x9a,\xf0\xa4\xf8k/'0\xe9\xee\x81\x12\x94\xf8PB|3\xe9\xbd\x99\xbf\xf7\xef^\x91\xf0\x1e\x90\xf0^\xb1\xfe0\x8b\xbdG\xc2{\x18\xce^\x11\xc6^\x0e_\x8f\x84\xf7\n\xb2\xf4R8zI\x0c=\x12\xde[\xca\xcb\xcb`\xe5\x15\xe1\xe4\xa53\xf2Hxo \x13/\x85\x87W\x98\x85\x87\xe3\xe0\x15d\xe0a\xf9w\x8e\xadu\x12\xde\x9b\x1a\x82q\x87\x9d%%\xb3\xedHx\x0f\xc5\xb1\xcba\xd8\x91\xf0\x9e\xef\xb2(\xab.\x81S\x87\x91\x95K\xe1\xd3\x91\xf0\x1e \xefaXs$\xbc'm O\x8e\x84\xf7\\\x9e\xa2\xcc\xb8\\^\x9cwl \xe1\xbdc#\xe1\xbd\x0c\xfe[\x9c\xfd\x96\xca}K`\xbe%\xf3\xde\xd2Xo$\xbc\x97\xc6s#\xe1\xbd\xc1N\xc1m+\xd1\xe6\x12xmxV[\x92\xf0^m\xf7\xdc\xd3\x13\xce\xc6K&\x80\x98\xda\xed\x87z3\x17\xd9\xb3{\xa4Z\x1e\x916\xe9\x06G \x0c\xde\x1dr\x85^\n(c\x9ci\xac\\\xfbqId\xbc\xd6W\x0c\x12\x19\x95T\xbc\xd1\x7f\x94\xf0__7\xdb\xddq\xdd'\xfa\x18\xc6\xcd\x13\x13\x80G\xaa\x8f1\x0d\x88m\xfc3 ZQa\x8d\xa4\x1d\x9d\xc0 o\x83JY\xf6c\xc2t\x84P\xf0\x94\xd1\xc9\xa0\x88\x0d\xb5d\"F\xb4\xf0_\xd0\xc9\xa0\x98 \xeanh\x8c\xa0\xa1\xaa\x98/@=G\xfcy\xad\xb4\xa9\x8c\xa0\xa0\xe7\xc8Fy%\xafo=s{\x1f\xfd\x8a\xce\xd6\x94Fgk~Ugk\x9aI@\n\xa3g6q0F\x8c\x1em\xc4\xe8!F\xcfh\xc4\xe8!F\xcfh\xc4\xe8\xe1\xc4\xe8q\x1b1z\x8c\x11\xa3\x87\x18=\xc4\xe8A\xce\x92\x88\xd13\x181zl#F\x0f1z\x1cF\x8c\x1e\xe75\xc4\xe8!F\x8f\xc7\x88\xd1C\x8c\x1eb\xf4\x10\xa3\xc7\xb2\x12\xec\nb\xf4H#F\x0f1z\x1e/\xa3\x87\x0ei\xcb=\x01\x8b\x0ei;ap\xe3m\x94\x0ei+\x11E:\xa4\x8d\x0ei\xfbj\x0fi\x1b\xa8\xa8g?\x0fd\xc4\xc0\xc9mV,\x0d\xa7\xcb\x10T5\x1d\xd5\x1c\xb1Z7\xea\x0b\x14\xadQ\x9d\xe3b\x1e{\xfez\x9c\x92\xe8\xab_n6]\x88\xbf\xaa\x7fz\xec\xf4U\x1f{#\x8b\x04\x16%\xa1F!\x88(\x0d*B?\x8d< D\xc3\xe4\x11\xe2)\xe9}9-\x91f\x8a \x93\x96\xa5\x92\"\x89\xa4\xe94\xd2x\x80\nSH\x83\x04\xd2l\xed,]\xc8\x0c\xa2\xdd\xcc\x1b\xf1\xec\xb4\x11\xcf\xaeL\xcfB<;\xe2\xd9\xb9\x8dxv\xd2\x88gwl\xc4\xb3#\x9e\x9d\xcf\x88gG<;i\xc4\xb3#\x9e\x1d\xf1\xec\x88g\xa7\x8cxv\xc4\xb3#\x9e\x1d\xf1\xec|F<;\xe2\xd9\x11\xcf\x8exv\x96\x95\xe0<\x11\xcfN\x1a\xf1\xec\x88g\xf7K\xe0\xd9\x0d\xc0\xb3\xaf\xfc\xc3\x05\xb3\xf3\x07\x15\x06\xa8\x91=\xd6\xc3U\xd7\xee'\xf5\xe8\x0bV\xa4\x04\xbdB\x9e\x1a\xe6\xe7S\xd8g\x8e\x19\"\x85\x1c(\xe4\x06\xfa\xf4\xdc\xb9\xdb\x963'I\xc2r\xf2\xc4\xd4\xf2\x91\x12%\xacpL\xfe\x9cO\x93\x08\x9ct\x17\xd9;\n\x9ep\x17\xb9\xd7\x7f\xb2]\xe4\xc6\xf8\x89vA\x07\xf1\xed\xa2R\xa7\xd8ec\xe0V\x01Rp\xf0\x0f\x0e\x80\x84Ppm\x84\x82\x13\n>\x1a\xa1\xe0\x84\x82\x8fF(8'\x14\xdcm\x84\x82\x1b#\x14\x9cPpB\xc1\x91\xb3$B\xc1\x07#\x14\xdc6B\xc1 \x05w\x18\xa1\xe0\xcek\x08\x05'\x14\xdcc\x84\x82\x13\nN(8\xa1\xe0\x96\x95@$ \x05\x97F(8\xa1\xe0\x8f\x17\x05/\x81*\xdf\xb6\xdc\xa0).T\xf9'\xf1\xf3\x80'\xcb\x8b\x15\x96\xbc\xadoYsT\xdb \x98,\xef}b\xea\xfbHad\xab\xfe\xb6\xf1\xcf\x80^E\xd3\xf4\x93vo\x02'\x96\x88:\xe7\x9f\x13\xa5\xb6\xdf}\xb7c\xf6_@%awl]q\xf1 \xbc\xeb\xd8\x95\x98\xa6)\xd0\xe1\x1f\xea\x01\xfd?\xa0nz\xce\xaa\x8d\x86\xb6\xae\xbc3+\x18$BD\xff\xa8\x1b\xab\xbf\xaf\x92\xcb\xa1\x8d\x9aB\xd6W\xf0\x8f\x1dk\xbe\xd1\xcf\xfc5\xfc\xf1\x8f\xf0\xdb\x7f\xe8\xe9i\xc5ue\xc5\x10\xe2uw\xc7\xe4\x96\xdeo_\xc0y\x03\xd5.\xb0\xdd\xa96\x11\xd7U\xcf\xfagz\xabUNpf\xf26\xde\xfb\x7fz\xfb\xe1\xcd\xea\xed\xbb\x0f\xe7o\x7fX\xfd\xf8\xc3\xc5\xbb7\xaf\xce\xfft\xfe\xe6\xb5ou\x10}\x93\x00\xac9\x04t\x0d\x9e\xfb\x9e\x88\xbc\xe3\xdf\xdf\\ \xaf|\xf9\xdd\xc5\x87\x97\xe7? \xaf\xfe\xe1-\xfa\xc2\xd5\xdf\xcf?\xfce\xf5\xd3\x9b\x0f\xbe[\x0c \xa9\xaa\xba\xb5\x84?\xa1\xc7qVZ\xf8kU\x86h(\xca\xc2\xcdEYz\xa3q\xdd\x17j:\xae\xebc\x0d\xc8uO\xa0\x19\xb9/\x8f6&eYMj\xbc\x19\xd7\x7f*\x13C\xec[\xd5E1)tVq=1Q\xfb\xed\xa2\xa77\xadUQu\"\x0e\xd5\xb0>\xd2y\xac\x11>r\xa7\xff\xc5{\x03a\xb1\x8a\x9a\xf6y{c\x177\xb0\xe5\xe1z\xdc\xbf\xbf\xb9\xf8v\xfe\x07\xcb\xfd'=y\xc9s\xae\x1b\xd7\xb7\xae?NTD\x14\x0dl\xc1\x93~x\xfb\xed\xec\xbf'1Z\xe4yl\xbd\xf3g\x8c\xbfL\x9f&\xe1\x8c[\xc6\xd1\xcfUCa\x81\xce\x06\xff\x15\xfc]>\x92m\xac/a\xac\xc3\xa1\xa9%kA\x16_4\x7f\xf1\x8f\x80\xb3\xfefWG\x0eT\x8cjq\xd9\xa6\x8f\x86{\xea\xbe\xe9\xa9\xe3.L\xc5EU\xadJ\xaaw\xd3LXx\xb1\xcf\xf6\xa5r\xb2n\x9b\xbe\xee\xcd)\xb0\x03=\xf4\xfc\xf53\xd5\x87\x88y\xe23\xb3W\xe7\x0f\x9e\xafaL*\xa3\xd6\x0e\xe6\x04:\xe1OM\xd4T'u\x04e\xd2\xf9\x8a\xd2\xe8|\xc5\xaf\xea|E\xb9dN\xe1\xba\xaa\xf5\xf9\xfbw\xaff\xde\x88\xebJ\\\xd7\xe88\x8b\x19l\x80\xb8\xae\xc4u\xf5^I\\Wi\xc4u=6\xe2\xba\x12\xd7\xd5g\xc4u%\xae\xab4\xe2\xba\x12\xd7\x95\xb8\xae\xc4uUF\\W\xe2\xba\x12\xd7\x95\xb8\xae>#\xae+q]\x89\xebJ\\W\xcbJ\xf0\x0e\x89\xeb*\x8d\xb8\xae\xc4u}\xbc\\W\xe7q]t\xb2\"\xc4\xc3H'+\x9e0\xb8\xf16J'+\x96\x88\"\x9d\xacH'+~\xbd'+J\x86\xd4\xd9\xcf\x92\x8f\x158RQr\xba\xec\\\x8d\x8d\xe3\xec\xc4v\xcc\xda8\x7f\xfdLq\xbc\xbc\x87&\xfe4R\xbe\x1eu\x06\x87\x8f\x92\x91\xc5\xe9\x8a\xe6aDq\x85(\xab)\x90\x81\x11q\x1e\xe2sc\xf0\x80\xec\xcc\x0b\xa8}\x80\x14.\xef\xa2h\xd6\x056\xe7bY\xc6ER\xbeE\xb4Q\x84\xc8\xf3\xa9\xa4y,Y>\x85$\x8f$\xc7'\x92\xe23\xc8\xf0\xc1\xec\n\x1e\xc9\xadx\x88\xe3@\xe39\x15\xd1\xc6\xa0,\x9eO\x91\xda0\\w\xc5r)R\x1a\x89\xeb\x8eH\x1eEb\x83Q\x96\xd1l\xc6[1\xbd\xa0\xb2\xc2\xf9\x13\xd9\xd9\x13\x0f\x9a;q\xc2\xcc\x89\x87\xca\x9b8U\xd6\xc4\x83\xe7L\xc43&\x10] \xb6\xc5\x17\xcc\x95\x88fJDg\xd6\xa3\xa5fI\xc4\xab\xbb8C\xa2d~\x84\xab \xa9\xe0\xa9Lp\"\x82\x13\x11\xdc\xf9{\xa1\x0e\x84\x88\xe0D\x04w\x1b\x11\xc1\xa5\x11\x11\xfc\xd8\x88\x08NDp\x9f\x11\x11\x9c\x88\xe0\xd2\x88\x08NDp\"\x82\x13\x11\\\x19\x11\xc1\x89\x08NDp\"\x82\xfb\x8c\x88\xe0D\x04'\"8\x11\xc1-+A\xca%\"\xb84\"\x82\x13\x11\xfc\x97@\x04\x97\xf0\x9b\xaf\xec\xf2\xc7I\xa9\xe5\x1f\xf4y\xbf\x03vv\xf3\x19\x0e\xfb\xdd\xd7\x0d\x1f(\x7fU\xd3\x1c\xaa\xddJ\xceT\xfa\x91\xf6\xe2\xa2\xf7\xbd\x94\x97\xbe\x1b\xae4\xdbS \x1c\x8a^T\xf9\x82\xd1\x97\x1a\xe9\x9c\xcc\xbe\xb9\xb3'\xa6\x9e\x8f\x94\xe5\xe7\x89\x93m\xc1]\x9e\xe0\xfeN|\xff\xe4\xe8\xf1\x06\x92\x8d\xbe\x03\x87\xb3\xc9[Q\x16\xca]\xd0\x80\xf0\xfc\x8d\xa1\xc0a\x97\xa3\xb3\xa3\x86D\xa7\xe3j#\xa08\xb4Kz\x82=\xd6\xa4\xbe\xb2n\xaev\x96$\xa4\xab\x8f<7\x97hZ\xb8\xfb#\x1d\x1c\x05:\xc8\xc1\x93\xfe\xf1\xd1\xf6\x8c\xb3\xa8\xd8V\xa8G\x1c\xc3\xe5\xe9\xf4<\xf1t\xb8rs]\x86X\xe7\xf7i\xe3\x8b\x7f\xff\xee\xd5|\xcaF}\x1b\xf5m\x8f\xbco\x93S\xf5\xc0\xe4\xef\x9d\xfc}\xd2\xab\xa9\xc4 \x99\x0bw5|\x8a\xe3\x94\xdf\xd9\xab\xfd\xadn\xb8r\xa5\x7f}\xb4\xdd\x9a\x1d\x10\xdb\xa6+\x14\x15\x95\xa9\xf0\xaf \x80Y\x9d\xec\xdb\xcdaWV\xf6WD{\xb5aM\xeb\xa1oG\x1b\x8c\xe6\x8dH\xab4^\xbb~\x7fl\xe3\xb5\x1al\xd0#\xb6\xb5\x8a\xd7\x0d\xdd\xa4fV#\xabe\x18\xad\x14\xc5\\\x0dU\xcft\"I\xcd{\xe8\x0f\x97\xfdM%\x99f\xe3>\xddG\xf6\xc99\xba\xff\x82Fv\xcc\xc0>\x19\xd7\xcdi\x01C\xc4\x8a\x0e\xe8&\xccY\xbdm\xae\xfe\x7f\xa0\x0d{\xef\xcc\xea\x88\xa9\x13\x06\xea\x84\xdd\xb7?\xb6N8\x04Y\x98\x8f\xd4\xd7\x02\x87\xbe\xd2\xee7T\x97*&\xd7\xe3\xf1\x16c\xaf{5\xa5\xee\xe6\xa4\xfb\xcfjh\n\x1b\xd0\xa6\xf9\xc8>M\x8a(\xfe\xdb )C\xc94\x12o\xeaT\xb4\x94\xb1\x91\xae\xdfU\xfdu\xddl\xd1c\xddl\x80;^\x87\x19\x8f\xfau\xe8\xfb'\x83\xd7\x85\xbe\xe4\x174\x88y\xbf\xe3\xbc1\xa8\xde6l\xb3\xd2\xf3\xff\xbb\xba\xd9\xb4w\x89\xa3\x831\xab\xdbrN\xfe\xf7u\xb3\xd2\x8f\x13\xeb\x8c\"\xcf\xf20g7\xed]\xc3\xeb=[\xfd\xb3\xaaw\xab\x8d\x06:\xb3\x9e%\x1b\xd1\xeaJ&\x8a\xb4\xcdj\xd3\x1e.wL\xd6#\xcb]\xb4\xe8G\xcfS59\xc5\xc3\xe2\x08\xd4\xb0\x01\xa4q\xf8\xa3\xafl\xe0\x8d_\xaaN\xce|r\xae\xd7\xef\xd8\x11\xf1\x1d\xb3s\x9a\xb5\xdd\xf0G\x9aU\x1c\xc5\x87f\x15\xc5g\x15\xc9\x03\x9e\xe8T\xeaf\xbb\xaa\x9b\xab60\xee]\xa8\xcb\xce\xc5U\xc3\xe8\xa7\xef\x95\xda;rY\xb7\xdb\xa9L\x80\x8a\xb7\x9d\x19\xd8\xa6C\x9f\xe5F\xff\xfeh\x07>Q\xab\xc7\xd1\xd04\x97#\xbb\xa5\xf4\xbc\xea\xf8\xea:\x98\x81\x1fu\x12\x1fk!\xd0\xb9\x8e\xf6\x17\xa5hSq\xcd\x84\x1a\x1a\x8cI\xb1\x9e\xba\xad\xf9'\xc7\x0e\xae\x1a'\xe5\xc3\xf4\"\x035\x9b2\x16:5v\xc1\xca\x9cNy\xa5S^\xb1\xa7\xbc\x02\xea\x1b\xb4E\xa7U\xad&l\xfa\xba\x81\xed\xfbw\xaf\xc6\x15\xb6^\x15\xf6pw\xcd:W#\xf2\xcc5\xd6m\xa7|HY\x8eNU~ \xbe\x8bAGn\x1b\xd8\x91q\x86\xc3\xdcq\xd1\xee\xc7r\x07\x13\xb8:v\xc3db\xecwU7\xbc\xa4H6\xc84,\xb2e\xfa\xf2A\xa6\xb9h\xc1\xcd\x0b{u\x85\xda\xc2p99\x9b,\xf5\xbc\x1c\xb3\xe1\x8f\xb4\xafq\x14\x1f\xda\xd7(\xbe\xaf\x11L\xf0 \x9d\xfc(\x10\x02\xbe\xd1\x99t\xf2\xcb\x067\xae\xf0N:\xf9%\xa2H:\xf9\xa4\x93\xffe\xea\xe4\x87\xb7\xe8\xcf~^\xb7M\xbf\xd2[\xc2\x01\x8d|{\xc5k\xc3\xd5\xf3e\xa6b`\xad\xa5d\x97r\xaa=\xf96\xee\x9f\x98J?\xd2}\xfb\xdbj\xb7\xb2CVt\x81\x1c\xdc\x8a\x8fLm\xe2\xdb\xf0\xd1\xb9Q|\xfb'\xb6\xbc,\xba\xfd\x1e\xd8|\x8fo\xbd\x17\xa8l|\xf9 \xe5\xb7\xdc\xc3\x1b\xee\x99\xdb\xed~\xb5\xb5\x94\xcd\xf6\xa2[\xed\xf8\x8d\xf6\xf86;\xfa]\x87\xb7\xd8q\xef\xbb\xe0\xf6:js=\xb6\xb5\x1e\xdfX\xc7\xd5+oS\x1d\xda\x83O!6gK\xbd\xe4\x86z\xeavz\xc2f:\xba\xc1-\xed\\Jm\xa2\x97\xdbBGn\xa0\xc7\xabWv\xf3\x1c\xb3u\x8e\xdf8w\x16x>\xf2\xfbv\xd6\xf5\xee \xdb\x88;\xe4\xd4\xc7\xe1l:\x19R\x86\xdd}+\xb2\xf9F{o\xb4\xf7\xe6\xfc\xfd1\xed\xbd\xd9\x8b\x11_+\xb4\xaf1_\x84\xf9\xcf\x81\xad<\xfbF-_'\x16)\xe9\xb9T\xd1\x1dV[\x1b\xb6c[9\x80\xf5g?\xeb\xffh;Y\xfe\xc0j\xcb\xea\x12^\x9b{^\x8f\x9e\xc6\x8c\x18\xb9\xbb2\xfe]&\xc3\xa8%\xd8\xf0\xac\xc1\x93\x0e\x923\x03\xc6\xf5\x14}\xdd\xa3]\x99\x8d\x15_9\xcah\xecs|vc\xc9\xc2\x9f\xce\xe2\x13\x95\xa6\x0d*@\xea\x02\xdc\xe7\n\xa8\x91\xdc\xbev\xf6|\xf3A^\xb2\xf5\xf5\xef\x7f\xf7\x9c5\xa2K\xde\x0c\xdfg\xe0H\x03a\\J\xc4i\x97n\x06\x04\xa8NIM\x15>S\xad\x8f\x9e\xbf\xbc\xd6\x83K\x7f\xad\xfb\xeb\xaa\x0b\xb5\x85\xbc\xaa*\xafz\x1ef\xbf\x00)\"\xad~\xec\xd8\x9a\xd5\xb7l\xe3+\x1b6vc\xdf2\xa7c\x8bE\xb0^\x8e\xb6\x1fY\xd3\xc35\xdbI\xf5I/u\x08\xa0Z\xcb\xa9\xb2^d\x048;w\x8dR\xb2l\x1b\xabui\xf5p\xa9\x9f\xdf\xaek\x89\xb8\x0e\xeba\x9f\xab\xdbVi\x05\xb4wj\x03\xb6m\x02D\xb5\xc8+\xbd\xacvU\xe3K\x9c+\xd8Axs\xed\x95\xa1\xdaL\xb5\x17\x91^\xe8\x06\xdbJ^\xb5\xb5}\xbe\x92l\x10Z,[U\xc7\xeco\x8b\x17X5\xbap!]\xf6\x1f\xde~x\xf3\xadT\xb8T\xd7\x0e\x073\x8a\xdb\xcf\x1b\xb3w5(\xa8\xf7\xc1F\xa0\x15\xf6\xf4\xdc\xd9\xff\xb9\xd6\xdb\xa6\xe2\x07\xf5\xfd\xa8\xf9\x85h\x84\xdbv\xdbJ\xf9\xba\\\x0e\xd2\xf8\x11\xd9\xcb\x02\xb9R\xaev\x12\xdbj\xed\x0f\x8d\xdd\xaf\xe5B\xf2\xdas\xb0K\xcd-mswmtK\x9d\xcb \xea\xcea\xd8\x08\xdb\xb7\x1d\x83\xfePs\x83E8\x9d\xadw\x12\x80\x1b\x06\xec\x9c\x95\xa4k\xe0\x1f[\xccn7\xeb\xc6\xfa\xa7# \xca\xef\xed\xf8;\x0d\x91\xa2&\x85\xb40\x97\xa9\xa2\x86\x05\xc5L\x16n\x8euh\xfe\x1e2\x91\xac\x88d\x85%Y\x85(\x0cz\xcf\xc0\xb5\x12\x88\xe6D\xbb\x1c\x9d9W.$\x99\xa7\x8d\xf6\x1d\xcaL\x17\xe8l5:[\xcdmt\xb6\x9a4:[\xed\xd8\xe8l5:[\xcdgt\xb6\x1a\x9d\xad&\x8d\xceV\xf3\xb7i:[M\x19\x9d\xadFg\xab\xd1\xd9j\xd2\xe8l5it\xb6\x9a4:[M\x19\x9d\xadFg\xab\xd1\xd9jt\xb6\xda\xdc\xb0\xe7\\\xd1\xd9j\xd2\xe8l\xb5\xaf\xe1l\xb5)\x9d\xc8r5YLN\xaf\x9a@\xae\xc3O\xc7\x8c@\x87b\xe9\x02\x1a \xa5\x0b\xe7\xe6bR\xba\xf0 \x83\x1bOt\xa5t\xe1\x12Q\xa4taJ\x17\xfeB\xd3\x85\xdd\xfc\xf5\xb6;\xa6\xaf\x9fu\xcc\"Y)\xa7.2\xfb{\xfb\xb2\x81\xba>\xb9y\xcc\x1c\x0e\x91\xd4'\x8e\x9e\x98\xda?Rv\xba]\xbf\xc7\xc6O\xb7\xcbvr\x02\xea\xd7\xcdP\xef\xbb\xf5g\xaa\xb9\xb3\x0c\xa6\xf6c\xba\xa5\xdd\x16\x82\xfe4\xc1F}\x91\xe3\x0c\x1b\x13\x84M\xcf?{\x10\xac2,\x08\xc2\x86\xf5\xdc\x0c\x98\xf8H\xb0\x86w\xc1\xaf$\xdc\x0d\x8c\xe6\xed\x10FC|\xb7\xca0_\xaf\xb2u\xc7T7\x16\xd6\xfc\x1d\x0d\xf9\"\x95\xc5SgmKy\xf9\xcaf\xa5\x87\xc9\x82Q\xffm\xc8\xe9F\xf8\xb3\xdb\n\xf0\xb6\xfd\x087\xbb\xd9A\x13.[\xb7b\x91/\x0b\xe2\x17\xc3\xb7-+\x881M\xd9\xd12\x029\xad\xc1\xfch\xf3{\xa5|\x10\xa2\"\x8d6 \xe2\xe88\x16DI\xff\xa9v\xabH\xf2\xc4hIAL\x0f\xc9\xac<\x93\x90\xe8\xdf\x0c}\x1e\xe1M\xce\x89'\x91\x91\x1a\x1f\xfe\xc4\x1bc\x8a\x8a/\xba\xb8\xcf\x1e\x91\xb1(Cn\xe6^/J\x10w[\xdd\xebsKK@e\x1a\xc8\x0fY\x02'\x08Ov\x18\xc3\xe1K\xab\xa3=\x07}\xd3\xf0\xee\x93\x95\xaa2yu\x88\x1e\x18\x14O\xa1c;v[5\x1c\xf6\x8cW\x9b\x8aW\xa1\xf2NJ\xab\xc7\x15\xb5\xfa\x90kF\xab\x00\xfaG\x9f3l\xb5\xdfO\xbfTk\xcf\x7fW\xf7\\e\x9c\xdeT\x1d\xaf\xd7\x12\xb0\xf0\xb9\x19&MO\xed\xa9\x7f\xb3\x95\xa9_\x81\xec\xad\xab\xae\xddO\x9e`\xe6!c\xf3\x90\xfb\x04\xa8\"\x8ccw$9+2`\xc7\x07\xeb\xc8@\x8d\x1a\xa4q\x03\xf4d\x9d!\xca\xedI\x041\x86z4\xa0\x1f\x0f4?\x98\x19\xcd\x0fh~`\x8c\xe6\x07s\xa3\xf9\xc1i\xe7\x07\xa8\x96\x8fz\xc7\xf8z\x1f\xd5\xd9\x9f\x99\xea\xe7\xc2\xbbBg%\xafB\x1dHT\x01\x8bC\x9a\x92\xae\x1aph'\xb2\xea\xa4\xd5\xd0\xf3\x03\xf9\xac\xb8H\xda\x95\x0f\x84o:\x1dS\xf1q\xfa\xd31\xeb\xcdT\xc6]\xf8!3iq\xd4\xd0\xf1\xf2F\x8a\xd2m\xa5Q\xba\xed\x17\x9an{T\x1d \xbdL0\x8d\xbc<\xdb)\xbe\xe2\x95\xf9\x1a\xbf\x02\xca\xb7=\n\x10\xe5\xdbb\x06)\xa0|[\xca\xb7\xf5^I\xf9\xb6\xd2(\xdf\xf6\xd8(\xdf\x96\xf2m}F\xf9\xb6\x94o+\x8d\xf2m)\xdf\x96\xf2m)\xdfV\x19\xe5\xdbR\xbe-\xe5\xdbR\xbe\xad\xcf(\xdf\x96\xf2m)\xdf\xd6\xfd\x81P\xbe\xed\x91as\x1f)\xdfV\x1a\xe5\xdbR\xbe\xed\xe3\xcc\xb7\xed\xbb\xf5j*\xc0\xef+\xf7\xf1\x95\x93\xb2\x8f\xfc\x11\xab\xec\x03E\x83I\xe6\xe1\xbc\x06\xa9\xb9W\x9e:lz\x8e\xac\xc3\xf1\x95Iu\x98\xca\x8c\x17\xac\x01e=c\xa2EY\xcf\xcaN\x1c\xdcx\xbe.e=\x97\x88\"e=S\xd63e=\x1f\x9a\xcbV\xd6fe\xd1n\x94s\xecQ^?\x1a\x17\xbe3\xbd\x86g\x1c\x9d\xee58\x93\xe9\xd2c \x8ffb\xa69\xb9\x8f\xf9r\x95@\xdf\xf0h3\xaa\xc7\xc0?\xb2t\xeai\x0b $\xb9\"0(\x0c\x8c\x03\xaegF\xf3\x9a\x83\x88\xf1\xe0\xce\x8b\xac\xe1N\xdc*X\xc3\xf4S\xb6\x825\xfcr2~\x92\xd2m\x10/D\x19>\xcd\x06\xfb\x02\x95\xcd\xd3kjwb\xcd\xf8uG\xfc\xe12j\x92\xb2i\x92c\x84\xcb\xa2I\x8c\xd3,{\xa6v$\xce\xa0\x83\x84\xcb\x98I\xca\x96A\x07)\xad\xda\xa1\x0c\x19}\x16\x9c\xbe$\xc0zR&\x86\x99\xcda\xa7H5\xfa\xcc:\x10\xcb!T0>g\x10\x02\x95\x9fT\xa5\xc0[\xc7\x17\xcc1E\x98%\xb44\xd6<%\x9a\xce\x92\x96\xca\xb2 \xa5\xb9\xbafG\xa1tWL\x9d\x1d\xb5\x85\x9e\xb7\x9d\x9e\x90\xc94W\xb1\x14\xde1;\x95\xd5\xe9j,^ \xb7U\x1een\x93\x14\x04\x08\xbf\x01\x80\xb0\x10A\x08\xb2\x82\x8b'\n\x01\xa2\x96\x19\x84!\xc8%\x0dA8\xaa\xe5\xc8C\x80'\x10\x01\x92D\x04h\"\x11\xe0\xa2\x9eN(\x82$R\x11\x04\x89EP\x8a\\\x04\xa9\x04#XH2\x02Dx\x13\xc8Fp\n\xc2\x11`\xca\x18\xf8\x12\xca\x91\x8f\x00C@\x82\x05$$\xafC.\x93\x95\xfdD$(MF\x82(! rII^oj\x8d\x1a^\xae#\xc8I\x10\xe4P@\x90\xa4\x04YD%\xaf\xab \x81 rIL^oj\x1e\x18\xd85+Gf\x02\x14\xa1 2HM\x90Fl\x82\x1cr\x13$\x13\x9c 2\xdaFH'\x90@<\xc1\x92\x9d \x87\xf0\x04\xa9\xa4'\x08W<\x87\xfc\xe4ufQ\x8b\xb0\x9f\x0c\x8e\x04\x15\xfc \x9am\x98\x08\x05e\xc9P\x10#DA\x98\x14\xe5\xbd'\x97,\x05\x05\xdbn\x02i\n\x92\x88S`\x91\xa7\xa6\xf6\xcf\xaa\xde\xb1M\x18\x9d\x9ac\xe1S\xc3\xae\xe1\xd5\x93\xc0\xa8\x0f\xdc]3\xbd\x93c\xebn\x88\x16~\xc9X\xa3\xaf\xf6\xbf\xe1\xae\xddKY\x0f\xb6\x81\x9eW\xfc\xd0\xab\xed\xee#\x85\x0ee\xea\x12_-\xb15\xd0\x0f\xaa\xe7\x9a\xaf\xea\xef\xde\xdb\xbeQ\xe5\x1c\x05\xeb\xf4\xbf$\xbc\xe1\xbe\x05\xb1\x17\xc4\x9a\xc3\xde?C\x7f\x0e\xdf\xbd\xfd\xe1\xf5\xea\xe2\xc3\xcb\x0f?^\xac~\xfc\xe1\xe2\xdd\x9bW\xe7\x7f:\x7f\xf3\x1a}\x87\xf8\xaf\xc4\xcb\xcf\x7f\xf83\xf2\xfa\xa0s#\xe5\x90T\x05%\xd3\xf3\x00\xe0\xb2\xd6\x03R\xcd\x18,\xc2\xa0\xdcg\x97\xbf}S7\xeb\x9d\x7f\xe0\xef\xd9\xee\xea\xf9\xa8\x98\xe3i\x04#QB\x9d\xfd\xfb\x00U\x9b?r\xc4\xcd%_G\xff\xb1\xee\xfb\x83\xc2\x14\xfcC\x91\x85\xaa\x8f^=\x9b\xa3v\xe9\x16W`\xb8nF\xe9\x1c\xff\xceY\xb7\xef\xc1}\x8e\xebh\x11\x95\xbab\xb8\xfd\xbem\xea\x8f\xcc\xa1\x142\x1a\xe2\x05CB\x8c`|\xaau$\xfa\xf5a_5\xcf;Vm$\xadK\xce\xe8b1\x02L\x9c@3\x00\xb8\x97\x01\x01\xa7\xa9\xa3y\xac-\x93e\xf0\xcd\xf1\xc7\xbe\xde6\x15?t\x0c\xbea\xf7\xe1E\xf2\x8f\xef\xdaNr4\xff\xca>]V=\xf3v\xde\x00w\xec\xb2\xafy\x89\xdd\xfeI\x8d\xb5[g\x8d\xcco\xbb\xba\xf9\x18\xeaz\xd6\x87\xae\xe6\x9fVr\xad\xb2\x0ej\x16\xe6\x940\xf2N\xe6\x8fw\xd6\x84\xed\xabz\x17\x05\xc9\x8d+\xd0\xae\xfcu\xf6\x8a\xda\x8c\x96SU\xed\xd6\x0c\x04\n\x96\x1a*\xa1\x7fu\x97j\x14P\x0d+G\"\x8a\x85Q\x8b\xc4\xbe\xa1y\xb1\xcc\xdby\x06\xf5\xd5\xf8\xe33\xd9\xa3\xea+\x02d\x1a\xa3(Y\xf7G\xd3\xbb\xed\xc1R\xac\x8b\x85($\x1b\x99\x10\xa0\x98Tdz\x90\xa4\x18d D\xfb\xba\x19\x04#\xbd\xee\xa6\x13I\xde\x1a\xed@\x16\x0b\xd0\xba\xdd\xef\xeb\xbe\xc7\x0e\x9a\xe3\xe5\x93\x81\xd1\xfa\xf3\x98Sq\xe2!o|\xe6\xaa\xabxXb\x15\xfbV\xc0\xe1wRQ\xad]i]\x14\xf4\xa5\x1c(J\xc1\x00\x83+\x05U\xb9\xdeE\x0c{\xa8x\x012f\xa0\xcb\x14\xdb\x92G|\x10\xc6RB\x0b\xfa\xf1f\xe9c5\x1b\xf9\xe7\xf5u\xd5m\xe5\x9c0\xeaf\x9c\x0d>\x03\x99\xcau%\xe9[aMP\x80}u\xbf\xfa\xcc\x010E\x98\xb4\xab}u_\xef\x0f\xfbyD\xa2\xceT\xef8~\xf9\xeb\xaa\x01v\xcb:\x1d\xca\xe4\xd8(\xbe\xc9c\x08\x91U\x12g\xa46U\x1dU\x90\x95\xb9 \x1d\xabzvD\xd3\xb5\"\xad\x82\x14u\x15\x0f\xe2\xe1F\x8c\x0eQ\x81bd\xe0\xb0#\x0e$\x06\xd8*\xa5\xf9\x0e%\xc4 \xff\xe0\xfa*\xef\"4;\xf5\xa66\xee\xb8\xec\xebf%\x16\xaa\x96\xb8\xfe\x82Q\x18[O\xc7S\x8f\xb6[\x9e\xf6r\x05\x0d\x1b\xb6\xdeU\xf3\x94\x90\x993\xd9\xe2\xf4\xd5\xc6\xa1\xab\xbe\x98\xf2\x0d)\x00\xd6\xb2i(\xd43\xe0\xedVmhI\x18\x81\x9b\xdc\x19\xa7\xabjo\xe5\xd8\xb8\xb7\x16\x7f\xb2\xaa+&\x02f\xf5\xads\xed\xeb\x0e\xd8\xbdz\x81\xeae\xcb\xa9C\xddx\x06\xef\x8b]\xd5_\x8b\xa1\xcb\xe4\x9a\xf8\xc8\xc1\x95\x08\xab\xfa\xf24:5y\xcc3E)\x94\x0c\xb7\xb6\xeb|\x03\xdb\xba\xda\xad\x0f\xbb\x01\x94\xb9:\x88\x15\x96\xfb\x81\x87\xc6>YA\xc4\xae=p\xa8\xb9\xcc\xc5h\xb6\xd0\xde\xcau\xea\xb0\x85\x00\x7f\xbff\x8d\xaa\xaa\xbb\x02\xddtC\xc6\xfd\xd4\xe9\xb4\xf4\xd9\xac\x8b\xa9{1\xd6ojnh_\x95\xd5|\x9c\xfe\xee\xae\xdb\x9e\x8diR\xee\x87\xda\xaf\xb1\xee'\x04K\xabE\xc8\xaa\x8dUpz\xda\xd4\x03\x02\xab\xb6\xd1%K\xd0\xfd\xd4\xc9\xfb{\x01?\xb52\xac7\xed\x1d\xebLj\xa3y]l#QUo\xb35\xfb\xad\xb2\n\xee\xa7\xed\x0f;^\xdf\xecjU\xb8\xe9\xb3\x8fn\x98|uV\xe6\xceD~\xdb~3\xfdS\x95\xd5#U\xa0\xbdG%\x90(\xb34\x12e\xfeBE\x99\x8f\xde\xa8\xcc\xbfs\xa4\xaa\x05\xa5\x98\x1d[{J{\xd9\x95bG\x8a\xcb\xdaHq\xb9\xccD/5qL5[R\\F$\x89\xf1\x12 b9\xc9a\xa4\xb8\\0\x11,% ,)\x01\x8c\x14\x97\x97&{e$z\x15I\xf2JO\xf0\"\xc5\xe5% ])\xc9\\\x19\x89\\\xa4\xb8L\x8a\xcb\x91YRrb\x16).\xa3\x92\xb0r\x12\xb0Hq\xd9wY4\xd1*!\xc9\n\xa3'\x9c\x92\\E\x8a\xcb\xa4\xb8\x8cI\x94\"\xc5eiK\x92\xa1Hq\xd9\xe5)\x9a\xf0\x94\x9b\xec\xe4\x1d\x1bHq\xf9\xd8Hq9#I)\x9e\xa0\x94\x9a\x9c\x94\x90\x98\x94\x9c\x94\x94\x96\x90D\x8a\xcbiIG\xa4\xb8<\x18).k#\xc5eR\\&\xc5\xe5\xf1o\xd9\xc1\x8dk\x05\x93\xe2r\x89(\x92\xe22).\x93\xe2\xf2\xc8\xa6:\xfby\xf8\xb7\xfaM=\"Y\x82yP`\xb6\xcf\xcfw\x8b/\x8f\x97\x0c\xfen\xaaz\x18\xe3'\x1a\xcc\xc7\x0f\xd2W=~\xede\x1f\x9f#\x8b(\x86SP\x8e\"\x13\x98\xad\xfd\xd2\xda\xc9\xe9\xca\xc98\xdd\xe4`4!\x1aQ@\x90]\x10\x11\x05tT!\x97\xf2\x12\xf0\x97\xa4\x94\\\x94\xf6\x12%\xbe\x94\xa6\xbe\xe0\xc9/\x85\xe8/y\x04\x98\x80\xbbDm\xe4\x85$\x98\xd24\x98D\"La*L\x1a\x19&\x91\x0e\x13j\xc3\x03Q\x06K\x88)L\x89A\x91b\n\xd2b\x96\x12c\xb2\xa81\x85\xc819\xf4\x98\x803\xb4\xfa\xf1 (2\xa7#\xc9\x9c\x84&\x93F\x94)N\x95\xc1\x92e\x8a\xd2e\xf0\x84\x99d\xcaL:i&\xda\x15\xe2t\x8e\x17\x13g\xa2\x1a\xc7\xa8 \x15\x82>\x932\xebJ\xa6\xd0\x84\x06A\xb4\xb21\xae|\x05\x894)T\x9a\xc2d\x9a<:M\xa8\x05\xa1\xd4\x8c3)5\x1eo\x1c\xa5d\\\x86V\x83\xe6\x86 \xa85I\xe4\x9a\x98\x10h\x0e\xc1&\xe6\xd3\x0b\xb4\x15\xa2\xd9\xa4\x07\x13O\xb5\x89\xd5-\x83n\x93I\xb8 \x01\x96\xc5H7h\xda\x0d\x8ex\x83\xa5\xde \xa2\x9cN\xbfI!\xe0\x84\xb5\x89\x8b\x90p\x12i8\xcb\x888\xb1\x80&\x90qN@\xc7\x89\x96\xce\xdb\xd2\xcb\x91r\x10\xb4\x9c|b\x8e\xc7\x1d\x8fj\x10\x17%\xe7\xc4\xe89\x99\x04\x1d\x8f\xaf\xb8\xf60\x82\xa4\x13\xd6\x1d\x0e\xa9\x0e\x97\xa6\xea\x14'\xeb\xf8\xe9:% ;\x18\xcaN:i'\x89\xb6\x93A\xdcI\xa5\xeeD\x94\x84\xc3\xa5\xc3\x92)\xb0\x04\x9e\x0c\nO\"\x89'P\xdd\x1c\"\x8f\xc7\x15B;8\x87\xcc\x13h\xf2q\xdd\xe0\x82\x84\x9e\xa8f\xf0)H=\xa5\xdab\x02\xb1'\x85\xda\xe3V\x04\x0e\xe9\x01s'Nk\x1bn\xdd\x9b\xa3\x04,\x15\x7f=\xfe\xb0:\xc0!\x15`\\\xc9\xb3\x14\x80\x93\xf5\x7f\xa3\xfb$!\xed\xdfT\xe5\xdf$\xdd\xdf4\xd5_\xb4\xe6o\x86\xe2oH\xef7\x1a?\xdc\xcb^\xaa\xf4\x8b\xd1\xf9\xc5\xa9\xfc\x16\xaaP)}_\xbc\xba\xaf]\xaeE\x05\x1f\xaeZ\xa4\xeb\x1b\x91\xed\xe3\xcbQ\xe5\xa8\x9eo\xf4U\x02:*PP\xc97*h\x18W\xf1-\\\xb3\xc2\xfa\xbdh\xf5\xde\xa8voz=\x97\xea\xf6\xe2U{\xd3\xcb\x16|\x07\xc5\xf4z\xb1j\xbdQ\xad\xde\xf4\nf\xeb\xf4\xe2Tz\xa3\x05\x8a+\xf4\xe2\xdeGIu\xde%\xda\xbc\x18e^tP\xc2\x1a\x89\xa9\x81IQ\xe4\xc5\x8c\x12\x80\xd6\xe3\x8d\xa9\xf1Nj\xb2\\\x8b\xb7\xc0@\x85W\xe1\xc5\xbd\x05HW\xe0U*\xbb\x01\x7f\x8b\xf4w\xa31\x02T\x9c\x00\xa5\xbc\x1bm\xf0\xc6\xf0\xc1\x04\xb4\xe6\xae\xad\xa9\x1bq\x88V\x95\xc5\xe9\xed\x9e\xa8\xda)J\xbb\xaa/\x8b8,\xa1\xb3\x9b\xa4\xb2{\xc2\xc0\xa0\xf4u\x07\xfd\xdc\x88\xc3\xa8\xban44(\xed\\T8pc\x02$\x05\xad\xb0fn@1\x17\xad\x97\x1b\x8d\x05\xaev\x05\x95r\xd1:\xb9\xf1\x92\xe5i\xe4j\xf5S\x87?\xbfBnI}\\\xa4:n\xb26\xae\xad\x83\xeb\xae\x9c_\x19\xb7\xac..F\x15\xb7\xac&.B\x117K\x0f\xd7h\xdf\xba\xfcE\xd5p\xf3\xb4p\xf5\xfe\xa2\xc3\x9f_ \x17\xad\x83;\xf9\xa6\xb0\xca\x9e\x83\xb0\xe7\x12UO\x12\xf54F\xa2\x9e$\xea9\x1a\x89z\x92\xa8\xe7hE3\x19R\xf2\x18\x92\xb2\x18H\xd4si\xeeBF\xe6B\x91\xbc\x85\xf4\xac\x05\x12\xf5\\\x92\xad\x90\x92\xabP8S\x81\xa3\xf2\x14\nf)`s\x14xZ\x86Bj~\x02\x89zN,9#\x81D=Qy\x089Y\x08$\xea\xe9\xbb,\x9ay\x90\x90w\x80\x91\xacL\xc99 QO\x12\xf5\xc4d\x16\x90\xa8\xa7\xb4%\xb9\x04$\xea\xe9\xf2\x14\xcd\x1e\xc8\xcd\x1d\xf0\x8e\x0d$\xeayl$\xea\x99\x91#\x10\xcf\x10H\xcd\x0fH\xc8\x0eH\xce\x0dH\xcb\x0c Q\xcf\xb4\\\x00\x12\xf5\x1c\xec\x14\xfc\xff\x12m.\x81\xfb\x8fg\xfe\x7f\xa9\xa2\x9eS53_\x99\xa7WM\xca<\xc2\x9d'.s\xaa\x9e\xdbu\xdd\xf3\xb6\xab\xd7\xd5nU7W\xed\xd9\xcf\x8a\xe1\x17\x10l\xfb\xcbp\xc7ys\xd5\x0e\nm\xa2\x96\xa3\xb3\xb9L\x9b\xf2j\xea9\x11c\x9b\xfa{b\xaa\xfcH\x85\xd8D\x15\x8f'\xf2\x93\xa2\x88K&/\x7f\x1e\x16\xad\xe8\xe8\x8a\xcch\xde\xb2A\x14\x9a\xbbf\xd5\xc6\xc7\x14\x0f\xba\x85\xa8kaz\x874@\xcaQ\x87c^V}\xbd\x86\xcb]\xbb\xfe(\xeb\xed\xbf>V&@\x95K\x98|Z!\x06\x15\xe2\x18Pe\xd5\xcd\xcd\xc3>\x12\xb3\xed\xa6\xec\x95\x11\xbd\x83uu\xc3\x0f\xdd\xc0\x085\x7f\xee\x0e;\xa6\x92\x1bn\xbaV|?\xe1\"V\xc3\xfbTx\x98\xf8\x8f\xf5uU7\xcf\x02kJ\xadN* \x96b\xf4\x1en\x82M\xc5+\x11\x97\xc3Z\x95M/TT\xa9\x02\x0e\xcd\xf6\xe5\x08p<\xf5\x1c\x1b\xac\xac\xe7\x92\xa9\xd3UM\xafF\xf3}\xb5\xbe\xae\x1b\x8f\xc6\x8a\xa4c\xd5\xcd\xaa\xf6d\xab\x01\xee\x95\x86\xc8\xdd\x80s\x81!y\x03< EN\xce\x97\xe5\x0b\x0cGG\xf5\x007\x1d\xbb}\xe0\x0e\xe0\xba\xea\xaf\x0b\x7f\x8cA\xbd 9\xd7\xe1\xab\x9e\xf1U\xa8\xdb5\x86\xaa)\xa0k+,p\xd2\xf1\xe4\xb2 Qen\x98fg,\x1erH ;\xe0C?4\xb4wU\xc7{\xc6\xff\"\xdf@\xa8\xe9JV&_\x85\x8b\x8c**\xaa\x88\xbax\xe2qL\xee\xd0\xab\x8fAt{\x9e{\xc4O\x0fT\xbcQ\xae\xf7\x81\x1e8\x8f\xc7U\xd7\xeeM?\x0e\xed\x81\xdf\x1c\xf8\xf8\xb7\xb1\xef\xf0x\x93Z\xf8\x0f^\x87QE\xf6a\x9eW\xdd\xdc<\xd0\x93\xe4\xf7\xa1\x99\x00\x0f\xf4Hv[oX\xb3f\x0f\xf4\xb8\xa1\xfd\x8d\xd3\x9f\xc0\xb0$z\xe0\xb6g\x11qd(V\xbe\xc9\xa4N\xf5d\x93U\xc40M\x92[\x8a\xf0\x815\x1b\xd6\xed\xeb\x86\xebNE\x0d?\xae\x19\xcdm\xb5\xebY0\xcb\xccM\x1c\x84\x10y\x10p\xa3\x19f\x1c\xc3\xc9P+C\xc5:e\x86\x9c$L\x1d\xf4c\xb3\xe3\xd3\xe5\xa9\x95\xe1D\xaa\x95!\xa2\x0f\xc87\x00\xda]X\xb6z\xbc\x0e\xf1\x06 \xf1-@\x06\xcd3\xea\x90;\xf1\xfe\xd0JA\x19\x9a\xf6\x19\xf54\xd2Bc\xf4Oc\xa94\xd0\xa8\xc3\x9b\x8a_\xa3\xe9\xa0\xc6\\HO2-\xd4\x18\x9e\x1e\x1aue\xd3G\x13h\xa2\xc6\x16\xd2E\x8d\xa5\xd1F\xa3\xee4\xa5-\x89>j,\x95F\x1aux\xd5vItRcI\xb4\xd2\xa8\xb7\x1c\x89le(\x9ai\xd4\xcb\x94\x86\x8a\xa1\x9b\x1a+F;\x1d\x1d.\xa1\x9f\x1a\xcb\xa0\xa1\x1a+BG5\x86\xa7\xa5F]Mh\xabqz\xaa\xb1\x13\xd0T\x8d\x9d\x8a\xaej\xec\x04\xb4Uc)\xf4Uch\x1ak\xd4\x93Ms\x95\xed;Ng5\x96Dk\x8dz\x93\xfd\x04\x96\xdej\x8c\xa7\xd1\\\x8d\xa5\xd2]\xa3\x0eSD\xb9\x95-\xa6\xbf\x1a\x8b\x08t+K\x98:F\x97K\xa3\xa5\xce2\x93h\xb2Qo\xdc\xd0h\x11tYc)%N\xa4\xcf\x06}Mg\xb3\x08\x1a\xad\xb1$:m\xd0ST\xf2[Y\x0e\xe56\xde>Q\xf2\xdf\xcar(\xb81\x87\x1c%\x05\xae\xac\x0c%\xd7\x18\x92]j,J\xd15\x96@\xd55\x16\xd1\xe8\x95\x96C\xdd5\x86\xf1\x1f\x94\xf9,F\xe95\x96\x17|<\xc5\xd7\x18\xa6\xe6\x19\x94_cY\xd4_c\x91\x88\x97\xa3\x02\x1bCR\x82\x8da\xa8\xc1\xd6\xb5\x08\x8a\xb01\xe4[I\xa7\x0c\x1b\xc3S\x87\x8d\x85D\xc9\x95\x15\xa1\x12\x1bK\xa2\x14\x1b[B-6\x86 }\x02\xd5\xd8Xq\xca\xb11Ty#_R:\x159\xe8\xee\xf2S\x9c\x92l,\x87\x9a\x1cth\xd8\x00aqse9T\xe5\xa0Cn\xf6\xdc\x02B\xe7\xcaR\xa9\xcbAg#\xad\x19\xb1\xdd\x81\xa02\x1b\x0b\xe9/+\x0b\xc9\xa0+K\xa78\x07\xddE\x84\xd2\xcdEx\x1at\xa4\x81X\x14\xe9\x80h\xba\xb2TZt\xd0\xd9\x8f\xef\xbf\x7f\x81\xa0G\x1bK\xa5I\x1bK\xa0K\x1bK\xa6M\xcfnD\xd2\xa7\x8d\xc5f\x01QakeX\x8a+\x96V=\xf8M\xa5W\x0f7\xa6\xd0\xac\x8dE\x82\x91C\xbb\x0e:D\x08\xb1+\xcb\xa1aG?\xa6\xb8(\xbb\xb2tZv\xb4\x17\x8f\x08\xb4+\x0b\xd0\xb4\x83\xf7\xe5R\xb8\x8d\x95l\xef \x94\xee\xc15\x9a\xdam\xcc?A\n \xbc+S\xfb?!\x99we)\xfb#9\x92\xef\xe1\x96\xd0\xb5{\xb4\xf0\xbb\xb2\x90\xfc\xbb\xb2\x94\x1aeI\xc1+K\x16\x84W\x86\xdc\x97\x0b\x89\xc3+K\x95\x88w\xdf\x15\x14\x8a\xf7\xdf\xe2\x97\x8bw\xdd\x13}H\x86t\xbc\xb2\x90\x80\xbc\xbe\x02\x17\xef\x94F\xb3TR^\x19FX^\x19N^^\xd9 \xaa[Jp^\x19^v^\x99]\xd2b\x15\x1a\xae]$D\xaf\x0c\xa1b[\x9c?\x12\x15\xa8W\x86l\x0c\x90\x18?((Y\xaf\x0c\x15C\x8c|\xbd\xb2\x13\xd6;Q\xd0>\xea\xef\x1bv\xff\x02/k\xaf,*n\xaf,7\nK\x85\xee\x95\xe1\xe5\xee\x95\xe5\x96\x16\xf1\xce\x8a \xe0O\xdd\xc5d\xf0\x95E\xc5\xf0\x95\xe5V?[\x18_\x19N\x1e_\x19\xb2\x88X:{\xca[L\x97\xcd\x0f\xba\xab\xf8\"\xf1|e\x18 }e\x89\x81\x8b\xe5\x85@v\xf0\xb0\xd2\xfaAw\xbaO\xcf\x11\xd8W\x16\x93\xd9W6\xa9\xe1r\xb1}e\x85\x87a\xbc\xfc\xbe\xb2\x94\xb7\x06\xe9R\xfcQ\x7f\xca\xc9\"A~e\xc88BB,\x01%\xd1\xaf\x0c\xf9A\x19K\x0d;\xa0E\xfbQ\xae,a\x7f\x9c\x1a\xfbh8\x01\x7fe\x0f\x10\x94\x14I\x7f\x94C\xd5\x0bG\x84\xfdQ\x9e\xd2b\x8a>\x02@\xd9\x03\x85\x16u(\x00\xca\x9b98 ~4\x00\xca\x1d.\xb8\xa8C\x04\x94%\x044eT\x84\x8c\xe0\xa7\x1e.\x10uxW\xf5\xa1#\x06\x94\xa1\x0f\x1aP\x86\x8cWJ\xdd\x0b\x1e=08\xc4\x1d@\xa0\x0c[\xd6\xbc\xc3\x08\xbc\xeeFI\xfa \xd1:\xfd`\x02\xaf+u`\x01\xf6x\x02e\xc9\x87\x14\xf8\x9f>\x1e^\x10>\xaa@Y\xd6\x81\x05\xe1\xaa\xa3\x8e-P\x96zx\x81\xd7\x91\xd5\xa6\x11G\x18(\xcb:\xc8\xc0_\x82z`\x02\xf0\xf0q\x06\xca\xf2\x0e5\x08V\x86m\x02G\x1b(\xcb;\xe0\xe0\xe8k\x95\xc2'Sm\x91\xe1p\x83\xbaO8\xdf`\xa6w\xf2\xfe\xdd\xaby\xd9\xe9\xa8\x83\xe9\x12\x9b\x8e:p\x18vlI\xcd\x81S\x0d\x98\x8e:@\xe4\xb6\xb9(A\xc99m\xf8\\6:\xea\xc0Xj\x8eZp\xcb3%7-)'\x8d\x8e:X\x9ak\x96\x91cV$\xb7\x0c\x9fSFG\x1d\x94\xc8\x19K\xc9\x15C\xe7\x88\xd1Q\x07t\xd4\x01z\x96\x94\x94\xc3\xa5\x96Kt\xd4\x01\x1duP*\xaf\n\x99\xd2\x13\xcd\xa3J\xc8\x9f\xc2\x08\xf9\xa7\xe4K\xd1Q\x07t\xd4\x01&\x8f\x89\x8e:\x90\xb6$\x1f\x89\x8e:py\x8a\xe6\x15\xe5\xe4\x13\xd1Q\x07\xb6!\xf2\x83\xe8\xa8\x03:\xea`bt\xd4AZ\xce\x0d\x1du0\x18\x1du\xa0\xcd\x1c\x1bpD\xfb\x9b,\"\xa7\xb4\xc1\x91\x00\xa8\xff>\x1c\x10\xc0\x8f%\xe4\xedni\xe1\x81\x01\xe0\xa1G\xa6\x1e$ \xe3\xa0\xefp\x1d\x1b\xf0n\x88\xd3\xe4\xc8\x00\xed\xc6\xc1\x95\x9b\x1c\x12p\xa1.\x93N\xccJ\xf3\xd1\x9e\x11`\x87\xc2\xb6Ia\xd4E\xfak\x94\xbb\xe9rf5\x04I\x8e\x82u\x0f\xfbvs\xd89v$\xbc\xe5\x82(\x9e\x85a\x89F\xb7s&\x95\x99\xd195gCQ;\xf5g'W\xfa!\"\xe6\xbe\xba\xb7\xe4|C\xa5\n\x89X\xc7\x99\xbe\x93\x82O\x1fj\nn\xc8M\x03Boi%\xfb\x8a\xce\x1a\xde\x05\xf1\xc3\xa2\xe5\xf6n\x8dYE\xb1j\x03\xe6Or\xaaY\xcb=\xc7\xe1ex\xc8\x00\xfc\x10]\xe6\xaf\x11\xa0\x1f\x94\x00\xfe \x06\xfe\x01~z\x86\x00\x01!q\x16\x97\x0c\x06\x06\xbdI\xa0\x10\x01\x08BB)\x0b\x02\x83\x90\x04\x0eBi\x80\x102A\xc2p\xbb\xea\xe3@!\xe4\x83\x85^\x7f\xe2\x891\xc0\x10\x8a\x81\x86\x80\xc7\xbe\x00\x03\x1eB\x1a\x80\x08\xb1\x1d\xffL \x11\x10~\x03\x9b\x8a\x85@E\xc8\n.\x1e\\\x04D-3@F\xc8\x05\x1a!\x1c\xd5r\x80#\xe0AG@\x02\x8f\x80\x06\x1f\x01\x17\xf5t\x10\x12\x92\x80H\x08\x82\x91P\n\x90\x84TP\x12\x16\x02\x93\x80\x08o\x02@ \xa7\x00)\x01S\xc6\xc0\x97P\x0e\xb0\x04\x0ch \x0b\x80K\xafCqa\x08\xbc\x84\xd2\x00&DAL\xc8\x052\xbd\xde\xd4\x1a5\xbc\\G\x00\x9a\x10\xc4] \x08lB\x16\xb8\xe9u\x15\x04=!\x17\xf8\xf4zS\xf3\xc0\xd0\xd1\x99\xc5\x00P@\x81\xa0\x90\x01\x84B\x1a\x18\n9\x80($\x83\xa2\x10\x19m#@\x15$\x80UX\x80\x14r@RH\x05J!\\\xf1\x1c\xc0\xd4\xeb\xcc\x82#\xb1\x9f\x0c\x0e8\x0d~\x10\xf2t\xf7\x00x\ne\x01T\x88\x81\xa8\x10\x06R\xbd\xf7\xe4\x02\xacP\xb0\xed&\x00\xad\x90\x04\xb6\x82\x05\xb8N\xed\x9fU\xbdc\x9b0:u\xd9\xb6;\xe6\xdd:\xc6\xae\xe1\xd5\x934\x16\xb7\x81\xbbk\xa6wr\xec\x83xE\x0b\xbfd\xac\xd1W\xfb\xdfp\xd7\xee\x87\x93h%l\xab\xb6\xbb\x9d:\xae\xa0/\xf1\xd5\x12[\x03\xfd\xa0\xf9Q\xd6\xfa\xef\xde\xdb\xbeQ\xe5<\x1b\x94z\xf5\xbf$\xbc\xe1\xbe\x05\xb1\x17\xc4\x9a\x83G\x96\x16$\x8e\xfe\xdd\xdb\x1f^\xaf.>\xbc\xfc\xf0\xe3\xc5\xea\xc7\x1f.\xde\xbdyu\xfe\xa7\xf37\xaf\xd1w\x88\xffJ\xbc\xfc\xfc\x87?#\xaf\x0f:7\xe9\x9fIU\x08\xe5\xaf\xa2\xe2\x89m\x04\xeaA\xba\x19\xeb\xf9\xc6x\x00\xb5\xfc\xed\x9b\xbaY\xef\xfc\x03\x7f\xcfvW\xcfG\x19fO#\x18N\xc2^\xa9\x93\x96\x1f\xa0j\xf3G\x8e\xb8y\xcb\xab\xddx\x80u\x7fP\x98\x82\x7f(\xb2\x8fy\xb7\x8e\xf4\xf6Tt,\xdd\xe2\n\x0c\xd7M0\x7f\xfb\xef\x9cu\xfb\x1e\xdc'E\x8f6T \xfc\x85.\xc6\xed\xf7mS\x7fd\x8e\xec\xe2\xd1\x10/\x18\x12b\x04\xe3S\xadc\xef\xaf\x0f\xfb\xaay\xde\xb1JiQ\xcb\x19],F\x80\x89\x13h\x06\x00\xf72 \xe04u4\x8f\x1d+9&(\x8e?\xf6\xf5\xb6\xa9\xf8\xa1c\xf0\x0d\xbb\x0f/\x92\x7f|\xd7v\\\x8c2\x7fe\x9f.\xab\x9ey;o\x80;v\xd9\xd7\xbc\xc4n\xff\xa4\xc6\xda\xad\xb3F\xe6\xb7]\xdd|\x0cu=\xebCW\xf3O+\xb9VY\xf3\xd2%\x8c\xbc\x93\xf9\xe3\x9d5a\xfb\xaa\xdeEAr\xe3\n\xb4+\x7f\x9d\xbd\x89\xf0\xa3\xe5TU\xbb5\x03\x81\x82\xa5\x86J\xe8_\xdd\xa5\x1a\x8fYPg\x84,\xe8\xda\xe3\xaa\xfa\xf874/\x96y;\xcf\xa0\xb6\xce|x&{T}E\x80L\xa3\xe6\xfa\x12\xda\x9cO\xef\xb6\x87&|\x86\x04\xeel\x8b\xa4\x00m*\xce\x9e\x0b_\xc5\x82\xa4\x8e\xc5\xf0\x87h_7\xea\xe8\x8cPS\x9eN$y+\xa1\xed\x1d\xe3,\x16\xa0u\xbb\xdf\xd7}\x8f\x1d4\xc7\xcb'\x03\xa3\xf5\xe7\xe3\x93[\xe6Vh\xc8\x1b\x9f\xb9\xea*\x1e\xba\x12\xffV\xc0\xe1wRQI=\xa9v\xd6EA_\xca\x81\xa2\x14\x0c0\xf8\xbac\x15W\xeb]\xc4\xb0\x87\x8a\x17 c\x06\xbaL\xb1-y\xc4\x07a,%\xb4\xa0\x1fo\x96>V\xb3\x91\x7f^_W\xddV\xce \xa3n\xc6\xd9\xe03\x90\xf4\xef+I\xdf\x9a\x9fv1\xb7}u\xbf\xfa\xcc\x010E\x98\xb4+s\xc4\xcc,\"Qg\xaaw\x1c\xbf\xfcu\xd5\x00\xbbe\x9d\x0eerl\x14\xdf\xe41\x84\xc8*\x893R\x9b\xaa\x0e\xe8C\x18\xab\x1b\xf1\xb5\xf5\xec\x88\xa6kEZ\x05)\xea*\x1e\xc4\xc3\x8d\x18\x1d\x82#\x0d\xe0\x03\x87\x1dq 1\xc0V)\xcdw(!\x06\xf9\x07\xd7Wy\x17\xa1\xd9\xa97\xb5q\xc7e_7+\xb1P]\x8d\x0b\xd5\x05\xa30\xb6\x9e\x8e\xa7\x1em\xb7<\xed\xe5\n\x1a6l\xbd\xab\xba\xc0\x1e\xd1\xbend\x8b\xd3W\x1b\x87\xae\xfab\xca7\xa4\x00X\xcb\xa6\xa1P\xcf\x80\xb7[\xb5\xa1%a\x04 \x01\x88U\xb3\xd3U\xb5o\x0f\x03I\xd8\xbd\xb5\xf8\x93U]1\x110\xabo\x9d\x9fWw\xc0\xee\xd5\x0bT/[N\x1d\xea\xc63x_\xec\xaa\xfeZ\x0c]F\xbe\xc3G\x0e\xaeDX\xd5\x97\xa7\xd1\xa9\xc9c\x9e)J\xa1d\xb8\xb5]\xe7\x1b\xd8\xd6\xd5n}\xd8\x0d\xa0\xcc\xd5A\xac\xb0\xdc\x0f<4\xe3\x9b\xe9e\xec\xda\x03\x87\x9a\xcb\xdc\x8bf\x0b\xed\xad\\\xa7\x0e[\x08\xf0\xf7k\xd6\xa8\xaa\xba+\xd0M7d\xdcO\x9dNK\x9f\xcd\xba\x98\xba\x17c\xfd\xa6\xe6\x86\xf6UY\xcd\xc7\xe9\xef\xee\xba\xed\xad\x03\xa8\xdc\x0f\xb5_c\xddO\x08\x96V\x8b\x90U\x1b\xab\xe0\xf4\xb4\xa9\x07\x04Vm\xa3K\x96\xa0\xfb\xa9\x93\xf7\xf7\x02~jeXo\xda;\xa6F\x9dK6\xbc.\xb6\x91\xa8\xaa\xb7\xd9\x9a\xfdVY\x05\xf7\xd3\xf6\x87\x1d\xafov\xb5*\xdc\xf4\xd9G7L\xbe:+9g\xe4y\xe9\xf3\xf4T\x12\xcf\x06\xfc\xc7\xb7\xddT[}j\xd6q/5y\xccx\xe1T\xa1o\xfc\xb3n\xf7\xae\x14\x1de\xc1y]D\xb2\x8f\xdd\xf3\x957\x1b$\xda\x91F\xb9\x7f\xbc\xe6;\xf6-\xfc\x97\xaf\x875\xcf7\x9d\xaa\xf8\xa7&\xceV}\xafv\xf5\xdeU[\xf6\x9e\xfd\xc7\x81\xf5\xfc\x85\xfa\xdd\xe3l<\xd6R\xb8\x15!d\xb0o{\x0eL\xd2O%o\xd5q\xabl_\x0b\x03p\xf0\xafwu\x08\xbc\x83\x8c\xda\xcb\xac\xcd\xa6\xe6xh\x9c\xe9\x1a-\x19\x1d\x1f\xf3\xcd\x0e\xd1Z|\xb8+\xf5\xd1x.\xbf\xab\xc4\x90\xc5\x9fA\xcd{\xc3\xf7\xeee\xcf\xa7\xa0\x10\xb9wpW\xf7\xd3w\xea\xab\x88L\x90\x1b\xf3\xd1\xb0j\x8bG\x19l\xc6F\x05\xc6\xe1\x07\x12`\x9c\xfdJ\x02\x8c\xb89\x12d\xe4\x84\xa9\xc6J\x02\x8c\x88\xfc/^\"\xf7+'\xef\x8b\x04\x18\x0b\xe6x\xa5\xe4w%\xe5v\x91\x00\xe3\xd2<\xae\x8c\x1c\xae\"\xf9[\xe9\xb9[$\xc0\xb8$W+%O+#G\x8b\x04\x18I\x80\x91\x04\x18\xb19VE\xf3\xabrr\xabH\x80\xd1wY4\x87*!\x7f\n#/\x98\x927E\x02\x8c$\xc0\x88\xc9\x81\"\x01FiK\xf2\x9cH\x80\xd1\xe5)\x9a\xcb\x94\x9b\xc7\xe4\x1d\x1bH\x80\xf1\xd8H\x801#\xff(\x9e{\x94\x9aw\x94\x90s\x94\x9co\x94\x96kD\x02\x8ci\xf9D$\xc08\xd8W)\xc08\x12\xff\xc6I\xcfs\xd9\xf3~{\x9c\xd92YD\xea|\x18\xd6T\x97;\xb5\xf1\xa2 A\x116\x0b\xce\x952\x8b\x8a7\xe7\xd2Y\x049\xa2|\xab\xee\xb5\xfe\xd6\xb1\xff8\xd4\x1d\xdb|\x0bW\xd5n\x82\x8d9W\xea\xa6\xc8#\x92\xfb\xe2#\xfb\xe4+\xfa\x0c!\xd5\x90h\xa5{\xfd\x8e\xf1C\xd7(\x89?\x85\xf5ilk\xc0O\xe5\xee\xd5v\xb6\xcd#k *\x1a\xc6D_\xc0[1F\xb7\x8d\\\xde\xb6WW=\x93\xbc\xf2iq\xc1\xda}\xef\x19/\x1c-\xcf^\x86#\x88\xaa|\xbe8\xce\xf6\x11ted(\x9b\xc3\x9eu\xf5\xda\xfcMv\x10\x9ap\xa06r\xaeYc\x02\x7fh\x86\xbd\xb3\xd9\x8c\xf9\\z\xdb\xb1\xbe\x1fC\xa8v\x9b\x0e\xbd\x08\xf5G\x96\x18\xcf\xa9\xfb\x13\x07w\x86S;\xc2\xbb\xab\xf756\xba\xf2Z\x03\xdd\xfb\xe0k\xb5\xafj\xb7`\xcdf8\xecfx\xab\xdaE\xb1\xfft~\x05;v\xc5\xf5\x86]\xcdU\x0fn\xe6\xb9rKX} \xea!\"\xce\x97\x9f\x80U\xebk\xa8nn>c\x14m\x10~\xbc?\x14K\xeb\x0e\x11Q\xd9B[\xe0\xdd\x81\x81\xf8G\xddl\xea\xb5\xe4UipHGP^\xa8\x1b\x92\xed\xaen\xd6\xbb\xc3f6\x8b\xad\xd4S\x06tn\xf6\xc6$\xd6km\x1a\x8bns\xc2C\x998\xfb\xf1\xbc\x9f\xbd\xadY\x15\xe4\xc4\xbfc\xbdF\xe5\xe5\xe75~\x8f\xe2\x93{\xa1\xbf\xa6z\xdb\xb4s\xe2\x9c\xf9\x1a\xa7\x8fP\x91Y\xfab\xe7\xf9\xa3\x8e\x17\xd8\xb1[\xd6Mn\x0d\xbd<}\xf5\xfc\xc5\xd5\x16\x89\xa3c\xee/a\xe2G<\x83I\x92=\xb4\xdd\x86u\xf3=\xb7\x8b\xbaY\xb3oA)\x11?\xef7\x1f\xe17/\xfe\xe5\xf7E\xa3\x91/\x7f|\xf6\xf3\xf0o)t\xfb\xdf\xcaMP\x0fy\x90C\xb6\xc8n\xcdU+\x9b\x9e\x1a\x9b\xc7\x1f\xb4P\xaey\xf9n9\xe4'\xa6\xce\x8f]\x0d\xd9G\xc3\xc8\xa2q\xe14\x8d\xa3\x80\x02fG\xbe\xb4\x9aq\xba\x961N\xc98\x18M\x88F\x14\x10\x1c\x15DD\x01\x1dU\xc8e\xaa\x04\xfc%i\x17\x17e\xabD\xf9*\xa5\x19+x\xceJ!\xd6J\x1eo%\xe0.Q\xadx!w\xa54{%\x91\xbfR\x98\xc1\x92\xc6aId\xb1\x84\xda\xf0\xc0o\xc1\xf2X\n3YP\\\x96\x82l\x96\xa5|\x96,FK!NK\x0e\xab%\xe0\x0c\xadG|\x02f\xcb\xe9\xb8-'a\xb7\xa4\xf1[\x8a3\\\xb0\x1c\x97\xa2,\x17<\xcf%\x99\xe9\x92\xceu\x89v\x858\xe5\xe1\xc5|\x97\xa8\xea0jB\x85`\xbd\xa4\xcc\xba\x92\x99/\xa1A\x10\xad5\x8c+_A\xfeK\n\x03\xa60\x07&\x8f\x05\x13jA(}\xe1L&\x8c\xc7\x1bGi\x0b\x97a\xc3\xa0)\x1d\x08FL\x12'&&\xcd\x99\xc3\x8b\x89\xf9\xf4\xe2c\x85\xd81\xe9\xc1\xc43dbu\xcb`\xc9d\xf2dB8c1\xae\x0c\x9a-\x83\xe3\xcb`\x193\x88(\xa7\xb3fRx3a\xb5\xe0\"\xdc\x99D\xf6\xcc2\xfeL,\xa0 \x1c\x9a\x13\xb0h\xa2\xa5\xf3\xb6\xf4r\\\x1a\x04\x9b&\x9fO\xe3q\xc7\xa3\xaa\xc0E951VM&\xaf\xc6\xe3+\xae\x06\x8c\xe0\xd6\x84\x95\x80C:\xc0\xa5\x196\xc596~\x96MI\x9e\x0d\x86i\x93\xce\xb5Ib\xdbd\xf0mR\x197\x11m\xdfp\xe9\xb0\x1c\x08,\xef&\x83y\x93\xc8\xbd T7\x87\x7f\xe3q\x85P\xf3\xcd\xe1\xe0\x04\x9a|\\\xc9\xb7 \x0f'\xaa\xe2{\n.N\xa9\xb6\x98\xc0\xc7Ia\xe4\xb85zC\n\xbd\xdc\x89\xaf\xda\x86[\xf7\xe6h\xf3J\x0d^\x8f?\xac2oH\x97\x17W\xf2,M\xdedE\xde\xe8>IH\x8d7U\x8b7I\x897M\x87\x17\xad\xc2\x9b\xa1\xc1\x1bR\xe0\x8d\xc6\x0f\xf7\xb2\x97j\xefb\x94wq\xba\xbb\x85*TJq\x17\xaf\xb7k\x97kQ\xc1\x87\xab\x16)\xedF\x84\xf4\xf8rT9\xaa\xb0\x1b}\x95\x80\x8e\n\x14\xd4\xd6\x8dJ\x0c\xc6uu\x0b\xd7\xac\xb0\xa2.ZO7\xaa\xa6\x9b^\xcf\xa5J\xbax\x1d\xdd\xf4\xb2\x05\xdfA1\x05]\xac~nT=7\xbd\x82\xd9\xca\xb98\xdd\xdch\x81\xe2\x9a\xb9\xb8\xf7QR/w\x89Z.F+\x17\x1d\x94\xb0jaj`R4r1\xa3\x04\xa0\x15rc\xfa\xb8\x93\x9a,W\xc7-0P\xe1uqqo\x01\xd25q\x95\xeem\xc0\xdf\"E\xdch\x8c\x00\x15'@i\xe1F\x1b\xbc1|0\x01\xad\x82k\xab\xdcF\x1c\xa2u^q\n\xb8'\xaav\x8a\xf6\xad\xea\xcb\"\x0eK(\xdf&\xe9\xde\x9e00(\xc5\xdbA\xd16\xe20\xaaw\x1b\x0d\x0dJ\xcd\x16\x15\x0e\xdc\x98\x00IA+\xacb\x1b\xd0\xb0E+\xd8Fc\x81\xab]A\xedZ\xb4rm\xbcdy\xaa\xb5Z\x8f\xd4\xe1\xcf\xafY[R\xb1\x16\xa9W\x9b\xacVk+\xd3\xba+\xe7\xd7\xaa-\xabT\x8b\xd1\xa9-\xabR\x8b\xd0\xa8\xcdR\xa85j\xb4.\x7fQ}\xdavc\xdf2\x0e\xd7:pm\xa3\xb7Wu\x06\xcb\xb5\x98c^~\x82\x80\x12V\xb5\x96\xda\x9fZ\xcf\xd3?\n\xb6w\x8dZa\xb5\x8d\xd5\xba\xf4\xae\xb6\xc4u\xdau]\x0d\x04\x92\x10vqk33\xda+\xe1\xd1\xff\xdc\xc8+\xbd\xacvU\xb3\x8el \x17\xe8 \x9a\xd6\x9b\x93\x05\xd86\xa3h/\x0b\xdd`[\xc9\xab\xb6n,\x9e\x96l\x10#\xb7\xa7i\xf7F\x1bV\xbc\xc0\xaa\xd1\x85\x0b\xe1\x05?\xbc\xfd\xf0\xe6[\xb9\xf2\xd2\xfc\x1d\xb5\x84\xa9\xe5.\xf3y\xc3\xf5\xe4n\xd8\xd9\xef\x83\x8d@\xcf\xfc4o\xc5\xff\xb9\x9a\x14\x90~\x98L\x88F\xb8m\xb7\xad\x9cV\xe5\xee\x93\x8f\x1f\x91\xcd\xbe\x11O\xb8\xadvR\x17\xba\xb5?4v\xbff7Jx\xda\xe9\xae\xe6\xd6\x9e\xbb\xbb6\xba\xa5\xce\xa7\xb9\xbas\xd0\xb1\xeba\xdfv\x0c\xfaC\xcd\x8d\x8e\xaf\xd3\xd9z'\xc5\xab\x87\x01{\x1e\x06:\xc3Z\x1a\x9da\xfd\xc5\x9da}\xf4.\xa7\\:k\xe2\x1d\xa5\xd5\xb9\x1c\x9d9W\x05\xc4\xb0SF\x0c\xbb2\x8331\xec\x88a\xe76b\xd8I#\x86\xdd\xb1\x11\xc3\x8e\x18v>#\x86\x1d1\xec\xa4\x11\xc3\x8e\x18v\xc4\xb0#\x86\x9d2b\xd8\x11\xc3\x8e\x18v\xc4\xb0\xf3\x191\xec\x88aG\x0c;b\xd8YV\x82\xedD\x0c;i\xc4\xb0#\x86\xddcb\xd8\xd1\xc1\xd6\xb9\xa7\x06\xd3\xc1\xd6'\x0cn\xfcHf:\xd8\xbaD\x14\xe9`k:\xd8\xfa\xab?\xd8\xda\xa6\x86\x9f\xfd<%\xde\x06N\xbd\xb6\xa8`h\x86\xf8\xc8\x92\x84\x9b\xaav\x13\xc6_\xcfU\xb6~I4q\x1fm#\x8b\n\x16#{\x07]C\xd4=\xa4\xd1\xbc\x11@\x07\x0e-0W\xa6\x12\xbc#\xd0d\x94\xde\x9d@\xee.\\\xd7tZw\xa4\xaeQRw\x8c\xd2\x9d^\xc1\xe5tn\\\xbcJR\xb9qD\xeet\x1a\xb7\xa6k{\xfcaH\xdc\xc1\x17\x18$p\x17\xf9\xe8\x83\xd4mD\xdb\x88\xd1\xb6\xa3.pm\xa14a\xbb$]\x1bE\xd6N\xa7j\xc7\x03\x93O\xd3\x86\xda\xd5b\xc2$\xed\x82\x14\xed0A;\\q9\xbdq\xd7<$\x0fy4\x9706\xb2W\xc7R\x10}u\xf6+\xd1Wc\xcdr4\xa2\xaf\x12}\xd5mD_\x95F\xf4\xd5c#\xfa*\xd1W}F\xf4U\xa2\xafJ#\xfa*\xd1W\x89\xbeJ\xf4UeD_%\xfa*\xd1W\x89\xbe\xea3\xa2\xaf\x12}\x95\xe8\xabD_\xb5\xac\x04\x95\x90\xe8\xab\xd2\x88\xbeJ\xf4\xd5\xc7I_\x9d\xd2)|e\x9e^5;Z\xde0sN\\\xe6\x87b.\x9d\x8d\xe7$\xcf\x894.:\x93\xc5\xec\xfd\xd1\xdc\xe8\xa08\x0dN\x11\x1c\xa7\xc1\xa1\x97\xeb\xe4x\x92\xbe\xec\xd1\x92\x9eT\x00N\xc1s\x8a\x11s\xa2[U\x98\xbd\x9e\xc2\xc4\xa3 \xe9\x08I8*T\xaf\xa2$\xa3 ?\x855\xbc\x0bb\xae>\x9c\x17BX/\xc4\x1a\x91\xb2\x18\xe6+L\x1d\x9c\xdd6\xc1\x83\xec\x95E\x83\xaf,~\xa8\xbd2\xdc\xabR6+\xa5y]\xfa\xbf\xcc\x91\xf5\xd6A\xecAo\xbcm?\xc2\xcd\xaeZ;\xb7A\x95\xe9\xb3\xdd\xc53\xc3\xe7\x17'\xc7%~\x86qbl\xa6%5\xb194\xf5\xfdx\xa2=.0\xa3\xab\xc0\x8e\x88:\xab}\x15\x91\xce\x04|`R*;{\xfadX\xd6T7}I\x00\xe2\x04\xdd\xc5o\x0e;\x85\x9fi2\x1eT\x1c\x15\x82\x13U=P\xa7\xd42bC\xea\x18T\xdf4\xbc\xfb42\xc9\x1ak\x18\x8f\x1c\x98/\xb7\xf0;\xb6c\xb7U\xc3a\xcfx\xb5\xa9x\x85 8\xeaNR1\xca\xed\xaf\xd8\xe6M\xea\x8brh`\xaeIJ\xcf[y$\xf4n'\x17\xf5\xd0\xd7\xcdvgM\xed\x9e\xbav\xfb\xc7\x82\x89\xffw\xb2$\xc5\xc76x\x1b':b\xf1\xd1\xc8\xcf\xf1\xb9\xa4\xc1\xb3\x0d\xec\xea\x9e\x9f\x92\xd7\xe5\xba\xfd\xcc5\x8b\x9a]H|/m\xc4\xf7\"\xbe\xd7h\xc4\xf7\"\xbe\xd7h\xc4\xf7\xe2\xc4\xf7r\x1b\xf1\xbd\x8c\x11\xdf\x8b\xf8^\xc4\xf7B\xce\x92\x88\xef5\x18\xf1\xbdl#\xbe\x17\xf1\xbd\x1cF|/\xe75\xc4\xf7\"\xbe\x97\xc7\x88\xefE|/\xe2{\x11\xdf\xcb\xb2\x12\xdc\x1b\xe2{I#\xbe\x17\xf1\xbd\x88\xef\xb5\xac\xcc%\xf9^.JW\xef\xe7tY\xeb\xff\xe1\x0c3\x07X\xd8;\xd8]\x96\x7f9`\x0e\x8e\x8e\x981\xee\xd3\x8e]\x8f\xd17\xc2\x9dF&\x15 \xc6\xef\xfd\xd4\xb2\x1b\xd6\x89\xc2\xb9\x16\xa0\xa2\xd6\"\xb8\x0fT\xe7?W\xfd\x8f\xfdX1}\x0em{%_r\xb5\xe6\x8aC\xb0n\x1b\x0d.O]\xa9\x1e%\xd2\xa0\xf4\xe0P\xf7\xf6Pa\xc0\x8b\xd34\x9dM\xc5\xab\x85\x01\xf4\xe2X\xb8&\xf3\xba\xe2\x95\x9c\xea5\x9fdi\xc6\xae\xf6\xaa\x93\xc7\xf4\xaa\x95\x93D\x99\x9b\xcd\xce\x03\x14\x81\xe9\xa1\xdaF\x8eO\x7f\xfb\xf1\xe2C\x00\x06\xdc\xb1f\xcb\xaf\xe1\xa6cW\xf5\xbd\xfa>e\xd7-z\xfb\x9e\x89\xc5\x0cg\xaa4\xaa\x10\x87\x1d\xafov>\xe0\xcc\x94q(\x82\x139\xdc\xb5\xdb\xccH\xe3\x02\xf9}\xbb\x9d\xee\xde\xec\xda\xed\xa4O\xca\x8d\xa7\xe3\x02v\xcb\x1a\xfe\x88u\x84\xa5\x1b\xef\xaf\x88\x90\x0b\xab8\xef\xea\xcb\x03\x0f\xe7\x9c\xc4\xaa\xab,\x92\x03\x03\xb8\xaa+\xc3\x04@\x99\x97`l\x1b*\x16\xc6\xa2\x1f\xfdhA\x9c|\xb4S=\xben6\xec\x1e\xfb\xf8\xf9\xdc\xd2e\xb8\xaf\xd0\xd8\x1b\xf1\x85\xbc4-H\xade5\xa7\xfd#\xfb\xf4\\-\x80n\xaa\xba\x0b\xed\xc3\x08\x9b\x9fb_5\xea\xebC\xe5\x07\x04\x8a)\x0b\xa8\x86\xe1^\xac\xbb\x0cq\x086\xec\x96\xedD\x0b\x93\xab\xc0\x8as\xb90\x1bv\x8d\xbd\x0e\xed\xae\x86\x07\x10'\xb3\x0d\xf2\x1d\xdb\xd6\xcdw\xbbv\xfd\xf1\xd9\xf0\xb77\xcdf\xf6\x97W\xd7l\xfd\xf1\xc3\xbd\xff#m6\xc3\xb5\xaf\xd9\xae\xbee\xdd\x87\xfb\x00r\xf8}\xc5Y\xf7\xcc\x9e\xc3\xf6\xb0\xaf>\x899\xbe\xca%\xdd\xe8-\x01~\xcdz\xa6;:w\xacq\x91\x96q\xee-:\x04\xf4\xbbz-7\x19\xd4+P_\xbcf\x10\xde\xb1\x8e\x01\xdb\xd7\x9c{\xd9L\x9b\x83\xe2\xa0\xaa\x8e\xdcW\xd3\xb1\x7f\xf7\xf5\xe4\xa1\x9d,\x18\xe6\xea6y\x9c[\xd9\x10j7\xd8-\xee{\xc1\xba\xdbz\xcd^\x0c>\x88\x1d\xae\x8c\xd8\xe1\xc4\x0e\x1f\x8d\xd8\xe1\xc4\x0e\x1f\x8d\xd8\xe1\x9c\xd8\xe1n#v\xb81b\x87\x13;\x9c\xd8\xe1\xc8Y\x12\xb1\xc3\x07#v\xb8m\xc4\x0e'v\xb8\xc3\x88\x1d\xee\xbc\x86\xd8\xe1\xc4\x0e\xf7\x18\xb1\xc3\x89\x1dN\xecpb\x87[V\x82\xa9K\xecpi\xc4\x0e\xff\x1a\xd8\xe1\x97\xed\xc6\x1e\xfb\xea\xe6\xe8O^\x06\xb7\x0b\xfb\xf9\xbf:v\xf5-<\xfd\x1fg\xd6\xc6\xa1f\xc1\xbd\xe0\xf7/4\x0bn\x84\xa6\x94x\xd3S\xedc\xce\xa3\xd3H\x96\x9bI\xc7\xef\xf5\xb5.\x05\xdb?3\xfe\xe1\xbeW\x08\xdf\x15\xe3\xebk\xd1\xc9\xdf\xf7\x92\xe9j\xc3\xb7\x13\x82\x9cu\x93\xfe\xf9a8r\xc8\xa0Y\xc53\xb0\xe0\xd3'c)\x08\xd0\x9b\x18\x01z\xb8\x0d! @\x8f\x00=\xef\x95\x04\xe8I#@\xef\xd8\x08\xd0#@\xcfg\x04\xe8\x11\xa0'\x8d\x00=\x02\xf4\x08\xd0#@O\x19\x01z\x04\xe8\x11\xa0G\x80\x9e\xcf\x08\xd0#@\x8f\x00=\x02\xf4,+\x01\xae\x10\xa0'\x8d\x00\xbd\xaf\x01\xd0S)s\x96\x8b\xc9\"R\xfdj\xb2\xc9vu\xaf\xf6\xbc-I y\xc5\xd1\x8a4G#c\x0e\x978\x80\x12\xcf\x02~\xdd\xeevL\x16\xe7Oz\xf9.S\xc0\x8f\xeaJ2Qi\x1a<$\x13u\xc2\xe0\xc6\x05\x8eH&\xaaD\x14I&\x8ad\xa2~\x992Qc4d V\x97\xfe!\xebw\xb3\xcd\xde\xe7\xf0\xf6\xfd\xeb7\xefW\xdf\xfd\xfb\xea\xc7\x1f.\xde\xbdyu\xfe\xa7\xf37\xaf\xbfu\xfeu\xd8X\xd6'!\xaa\xc9c\xdfv|\xac<\xbc\x15\xff\xf7\xdd'\xf3\xc1\xcb\xbe\xe4\xe5\xc5+\x15\xb9\xba\x87uut\xe4\x9eU\x86\x97\x17\xaf\xbe\x9d\xfc\xd7x\xf6\xe24\xca^\x0f\xaf\xdfL\\\x88\xff\x1c|\xcc_\xd5\xc2\x97p\xd4\xd7\xb0\xe6\xb0\x9f\xceC\xdc\xe1\xf5]\xf2\xf2\xe2\x95\xef'Q\x8f\xc9KU\xac\x9c\x90{?\xe9\xc9\xa3\x0f\xf6]\xd7V\x9bu\xd5\xf3\x0f\xf7pi\xfem\xcf\xe1\x9c\xe4&\xeb.\xfd\xf3\xc3\x90\x9bx:y\x88\xdf\x0f\x07i\xfb\xa88YjK\xa1c\x89\xa3P\xd2U\xf4\x18b}\xe2\xe1\x87k\x06\x97\xbbv\xfdQ?\xcfq-\xbf\xbf\xae\xfa\xeb\xcc\x82L^\x89x\x98={\x17~]\xfb\x07\xebv\xc3\xfa\x9b\xcaw\x8cl\xf4\xa1\xbanb\xad+\xdd\x18\xe9 x\xd5n\\\xab67\x9b\x0b\xa2\x8c.@Ez\x12\x82A\"C<\xd3\x89\xa2\xe5\x8bl\xcd\x1f$f\x05b\x12\xdd?3\xfb\xd0\x8e\xdb\xba\xeanuj\xb5)\xf1\xde\xdb\x03\xbf9\x0c3\x0eKC\xe6i\x0f\xbbv\xbbe\x1d|\xd3Uw\xfaa\xbf~\x01\x7f\xf3j$\xf9!\xdc\xa6m\x9eo\xc4Rs_7u\xcf\xeb\xb5\xab\xc6\xbbv\xfb\x88\xd5\xa8\xf6\xfdv\x15\x95#\x8a7Ke\xf1\xc6 !\xb11e\xd1F\x00\x11\x91/e\xb1\xe0*\xfb<\xdaW\xd2e\xe4\x1ad \x94\xe1\xe4\xc0\x94\xe1\x02\xa3\x0c\x11\x1ee\xe8 )\xc3\x87J\x19J,LYB\xd4\x94!\xb5\xc0\x94%z\xc7\xf5WS\x1b\x85\xb9\xac#\xbb\x87\x17\x0cw]us\xc3:\xb1N\xe9b:c\xca\xb8>C\xb9j6z\xd5Zu\x01V\x8am\xaa\xa2=\xd4M\xcfY\xb5\x91\xcb\xeb\xeaN\xf5\xf2\x01\xa8*\xb9\xe6\x17\xf29\x8a\x91nj\xcd\x9a\x89\x08UR\xc5%\x19R\xf4\xfb\xc3w\x11\xab\xaf\xa1\xd0~d\x9f\xceF\x014M\xa6\x14\x8b\xa8Y(\"\xee\xb0\x81J S\xbaZW\xd0\x9dV\xf22\x9a]}\xbb\x8f4\x8a\xa0\xea\"$T\xe6\xe5w\xaf\xce\xff\xa6\xb6\xa1\xbfo\xb7c3\x171>\xac\xf9\xa1c\xa6\x92R\xd4\xb7Qzy\x01N\x1d\xbf\x97>\x87\xbd\xed]\xbbu\x97\x11WB\xec\xfcAt\x06\x1b5u\x10\x93\x04\xb73\xd4\x1c\xc1\xad\xe8\x0b\x98\x0eg\xba\x08\x19\x115K\xf2\xce\x94\x10W\x96b\x8a\xbd\xc8)\xea\xcb\x89Zm\xa7\x92^\x0c\x1b\xf0x\xddf[!\x99\xdd\xac\x82\x1a5]\xb8\xfc\x14+&\xf7L\xae\xa2\x83f|\x98\xe4\x91<\x08D\x14\x00\xfd]@n6D\xc0\xdf\x11!.\xd4\x07\x15\xcd\x88\x88\xe6D\x94\xce\x8a\xc0\xe7E\x14\xca\x8c\xc8\xcb\x8d\x08\xb8\x13\x01EgG,\xce\x8f(\x9d!\x91\x98#Q8K\"-O\"1S\"\xd4\x86\x87\x1c\nl\xaeD\xe1l T\xbeD\xc1\x8c\x89\xa59\x13YY\x13\x85\xf2&r2'\x02\xcedNE\x13\xff\xf8\x97\x17\x7f\x90\xff\xff\x87\xa3\xbb\xe3m\xe5\xc3\xfd\xc0\xe2\x8eP\xa5:\xb6c\xb7U\xc3\x81\xdf\xab\x13\x82\xdd\x0by\x13\x0b \xcd\xb9\xea\xc3\xabmo\x91\xde\xd4\x9a]\x0b9\xa8\xa3{{5q\xdd\xb0u\xbb\x99\x9f(\x1d\xca/\x05;\xd5b\xc9\xf9\x8dv\x9e\x07\x9d\xdfHr\xaf\xd1\xa9B\xfc;S\x96Ep\"\xb9W\x0c\xad\xa9\x08\xa9)\x87\xd2Dr\xaf\x05\x89L)4\xa6$\x12\x13\xc9\xbd.\xa5.e\x10\x97\x8a\xd0\x96\xd2IK$\xf7\xba\x84\xac\x94BU*LT\xc2\xd1\x94\n\x92\x94\xb0\x14%\xc7\xee#\xc9\xbdN\x0d\xb1G\x82\x9d%%\x13\x92H\xee\x15EC\xca!!\x91\xdc\xab\xef\xb2(\xf1(\x81v\x84\x113M\xa1\x1c\x91\xdc+\xc9\xbdb\x88E$\xf7*m \x95\x88\xe4^]\x9e\xa2\xe4\xa1\\\xea\x90wl \xb9\xd7c#\xb9\xd7\x0c\x8aP\x9c \x94J\x0fJ \x07%S\x83\xd2\x88A$\xf7\x9aF\x05\"\xb9\xd7\xc1NA\xff)\xd1\xe6\x12\xa8?x\xe2\x0fF\xee\xb5\xf0\xf9\x8d^\x10#\xa8\xd6%5 \x92\xa0\x97\xc8J}\xb2\x126\x0f\x180\xb4\xea.\x94\x8e\xbe\x0f K\x9e\xb2\x1c\x0b\xc2){\x0e\xdf\xbd\x7f\xfb\xf2\xf5\xab\x97\x17\x1fV\x7f{\xfb\xfa\x8dW\x1c\xces\xf9w\xdf\xbf}\xf5W\xcc\x85\x17\xff\xfe\xc3+\xccu/\x9d\x17\x0e*s \xa5\x8d\xef5\x0c\xf0\xe3\xdf\xda\x0d\xb34\x05\xe5\xce\xfd ;'\xa2\xed\xc11A\x02\xbbGh&\xbc\x7f\xf7j\xc03]m?\x14\xf5o\xe1?Y\xd7j\x06\x89\xfc\xf8\xc5\xf3\xa5J\xa0\xa7\xdfr\xbf\x94\xa3X\xc9\xbfZ\xe03\xb7\xb4\xf5$*%\x9e#uYT\xbf\xb6\x93\xe2\xb4wU\xcd{\x0f\x94 \xc7\xf8{\xbd\x8b\xba\x96\xf44\xae\xa4)+\xcd[C\x15W\xbc\xf1\xa3\xd2\x8a?\x16-l\x05\x9ak2J\xa0\x8cX\xb5\x98\xb0\xe2\n\xfb\xd2Y\xda\x97Y\xc5Ub\x9e\xae=\x9fz/\x19\x84\x9c\xcd\x8b\x15n\xd4\x13X^Jp\x8c\xa8\xbc\xfaO\x9e\x04\xcak'\xf36l7o\xf5\x97\xd4cm\xcfd\xf38\xfbY1\x16\xff[\xdd\xea9\xe5V2\x86\xfe^\xf3\xeb\x0f\xf7\xfdp\xd2\xadn`jOO\x13\x18\x80\xdf\x0f{\xae\x938=u\xd2:\xfe\xf0\xe2w\xe6p\xd9\xf9\x19\xb9\xf6#\xf5%\x0f#%\x89?'\xd7.\"\x9d\x95+\x8d\xc8\x13D\x9e\x18\x8d\xc8\x13D\x9e\x18\x8d\xc8\x13\x9c\xc8\x13n#\xf2\x841\"O\x10y\x82\xc8\x13\xc8Y\x12\x91'\x06#\xf2\x84mD\x9e \xf2\x84\xc3\x88<\xe1\xbc\x86\xc8\x13D\x9e\xf0\x18\x91'\x88\xdc[T\x17~/\xbeQ\xfb\xe0\xcb9a\xe5\x81O<\xc5\xd3TF}\x10\"\xa7\x109\x85\xc8)\xda\x88\x9cB\xe4\x94\xd1\x88\x9c\xc2\x89\x9c\xe26\"\xa7\x18#r\n\x91S\x88\x9c\x82\x9c%\x119e0\"\xa7\xd8F\xe4\x14\"\xa78\x8c\xc8)\xcek\x88\x9cB\xe4\x14\x8f\x119\x85\xc8)DN!r\x8ae%\x88\x02DN\x91F\xe4\x94\xaf\x82\x9cR\xf5v\x175\xa5\xa6T\xfd\xf5\x80\x93\xdf\xab\xff4d\x94g\xc0\x1a\x95\xf1-[\xd85\xbb\xd7\x1fqA\x96J\x1c\xd4;\xdcl\xbbj\xc3\x06dO\x1e\xb2\xc16\xab\x9b]\xd5\x9c\xfd,j\x18\x80\xf8^\xaa\x8b\xdf\xed\xaaF\x1fL!jb\xce\x1f\xda}\x02\xed\x0d\xf4S@x\x15s\x88\x9a\xf72zN$\xd0\xf2\xfa\xc4T\xf9!\xf0@\x9e\x8e\xba)\xb2Q\x12\xe4\xe5\xa3\x0d\x19\x0bP\x9b\x14\x99I\xff\xad\xe2\xfaS\x17\xbf\xc8\xb8\xdeU\xbd \xf8tD\x0b\xefj\xfc\x9bh\x8cV\xccs\x8eB\x90>\xce\xec\xe6\xf0\xfe\xdd\xab\xf9\xf7Ng#\x10\x82\x1a\xdd>\xc4\xec\xc0\x01!\xa8\x84\xa0z\xaf$\x04U\x1a!\xa8\xc7F\x08*!\xa8>#\x04\x95\x10Ti\x84\xa0\x12\x82J\x08*!\xa8\xca\x08A%\x04\x95\x10TBP}F\x08*!\xa8\x84\xa0\x12\x82jY 4\x8b\x10Ti\x84\xa0~\x0d\x08\xaa\xf8_\xcb\xc1d )\xbfD\x8dD\xd9\x9b\xd0\x06Y\x94\xc8\x97\x81T\xc5\x10qB\xf4\xf4\xdft\x82\xa5\x0f;\xd5{4\x12;\xf5\x83\xa6\xaf\xd4U\x13\xd0T53\xf9\xf7 V\xea\xc4G-\x07OL\xa5\x1e)>:F\xc2\xb6IQ\xe4\x0b\xac\xe3!\x18\xcd[\x0e\x88BT\xb2\xbd9\xdbjt_\x06\xb3\xb1\x01p\xc1\xb8\xd5V5Xj\xea\xa31\"\xf9\x93\xe9\xb5\xe4n\x93g\xea\x07\xf6\xcd^HJoO\x0e\x9b\x18\xed\x15\xbf\xd3Y\xc7\xe2#Q\xabC\xb9qS\xed\xe0Wm\xf3\\;\xf4}\xb3\xebv\xbf\xaf\x9aM\x0f\x9b\x83\x0cF\xa0hr\xf0\x81\xef\xd8\xb6n\xa4\x92\xbb\x9e\x1e\x8e\xd3\xbe\xe1M\xd6\x1ehz4\x95\x11^\xedz }xk\xcb[\xd80\xce\xd6\x1c\xee\xae\x99\xdc\x14\xac\xc6*\x9bP\xac\xab\x06\xae\xabf\xb3cP\xc1\xb6\xbee\xbe\x8d\xd2\xe1\xc5H\\\xc0\xf7LS \xe5\xb2S\xdbL|x\x95b|\xbbd\xac\x91\xa8\x87#\xb9{4S\xd0g\x83\xa4\x81\x7f#R\x83\x10c\xde\xffP\xcb\xba\x87\xf6\xc0\x9f\xb7W\xcf7\x15g*a\xde\x8a\xb5\xc7\xdf\x87Zt\x9e\x1d\xfc\xc5P\n|\x0f\xeeX\xb5\xbe\x16\xc3\xa8Z\"\x8c\xcf\x95\x05f\xf75w\xbdB^g\x7fYf\xbfS\xd4\xe6\xb9\xf0\xb3\xe0\xfb{-\xe6\x06\xeb\x8a\x8b\x0e^\xd6X\x02\x18&4\xbd\x02\"\xe4\xcb\xda\x0cW\xbe\x90Wz\x1cN\xee\x87]\xbb\xad\xd7\xbe\xc0\x0d\xed\xa0c\xfb\xf6\x96m\xe0\xaak\xf72\x84\x17\xaf\xff\xea\xdd\xab\x90\x93\xa9\xba\xd7sm\xbd\xf1.\xf7\xb2\x9f\x0d\x90\xce\xd0[\xf0\xeb\xae\xbdst\x89~&\n\xa4\xbc\x017#\x05\"\x9a5\xa3}\x18\xf5w&\xf4\x14\x13\xbe\xbd\xde\x8e\xbea\x9dx\xa4\xbf3x\xab\x97\x97\x1b\xb1\x9a\x97\xefQ\x07f&\x02a\xacn\xae\xda\xcc\xba\xf3\x9a\xefX\xa0E\xc9\xfd\xb5\x116\x1bQ\x80\xa1kk\xaeZ\x8d3i\xf1\x0d\x1f\xcc\xd46\xcf\xd7\xd7\x95\x1f5\xef\x0f\xebkE\x06\xdb\xd6\\\x1fE\xa3\xbe\x7f\xb9{_\xf1\xb6\xeba-\xc1\xf2\xea\xc0\xdb}\xc5\xebu\x00\x865\x05\xe4\xad\xe3\x023\xaa\xac\xd4).\xab\x9eW<\xf8\x01{I!\xb11\x17\x10\xc4\x10\xc4{\x02t\x1f\x00\xb9\xf4\x90\x80\xbf#\x84 \xb0aV\x96\"\x12%\x89\x94\xa6\x89\xe0\x89\"\x85\xa8\"yd\x91\x80;yt\x13\x96.\xb2\x980R\x9a2\x92H\x1a)L\x1bI#\x8e$RGBmx \x95`\xc9#\x85\xe9#(\x02IA\n\xc9R\x12I\x16\x8d\xa4\x10\x91$\x87J\x12p\xa6\xe6XQ2\xc9I\xe8$\xa7#\x94\x9c\x84R\x92F*)N+\xc1\x12K\x8aRK\xf0\xe4\x92dzI:\xc1$\xda\x15\xfe\x1aA1)@2\x89\xd0L\x90\x13*\x04\xd5$e\xd6\x95L7 \x0d\x82\x97\xed-C\x10N\xb0\xe5+H:I\xa1\x9d\x14&\x9e\xe4QOB-\xa8\x8f\x93O\xb2\xe9'\x1eo\xe2i1\x02J)\n\n\x9aG\x81\xa0\xa1$\x11Q\"\xb8q\x16\x19%\xe6\xd3\x0bJ\x15\xa2\xa4\xa4\x07\x13OK\x89\xd5-\x83\x9a\x92IN \x81{\xc5\x08*h\x8a\n\x8e\xa4\x82\xa5\xa9 \xa2\x9cNUI!\xab\x84\xe8*\x85\x08+\x89\x94\x95e\xa4\x95X@\x13\x88+'\xa0\xaeDK\xe7m\xe9\xe5\x08,\x08\nK>\x89\xc5\xe3Nn:\x06h,\x85\x89,1*K&\x99\xc5\xe3K\xad\x0cC\x8bc\x04\xa1%\x84\xba\x87H-\xe5i-\xc5\x89-~jKIr\x0b\x86\xde\x92NpI\xa2\xb8d\x90\\Ri.A\xa2K\x98v\x80'\x1e`\xc9.\x19t\x97D\xc2K\xa0\xba9\xa4\x17\x8f+\x8bP\x82\xfb$p\xc4\x97@\x93o\xb6a\xeaKQ\xf2K\x84\xfer\x1a\x02L\xa9\xb6\x98@\x82I\xa1\xc1\x8cD\x18e\x88\x94l\x8b\xe6\x91\x9f\x92m\x93M(%\x9bR\xb2\x9d\xbfSJ\xb6e\x94\x92M)\xd9\xa3\x15\xc5\xd6R\x90\xb5$\\\x8dR\xb2\x97\xa2i\x19XZ\x11$-\x1dG\xa3\x94\xec%\xf8Y\nzV\x18;\xc3!g\x05q3,j\xe6\x98\x10SJ\xf6\xd4\x108\x19v\x96\x94\x8c\x91QJ6\n\x19\xcb\xc1\xc5(%\xdbwY\x14\x0bK@\xc20 \xc7)(\x18\xa5dSJ6\x06\xeb\xa2\x94liK\xd0-J\xc9vy\x8a\xe2Y\xb9h\x96wl\xa0\x94\xecc\xa3\x94\xec\x0c\xd4*\x8eY\xa5\"V xU2Z\x95\x86UQJv\x1a:E)\xd9\x83\x9d\x02\x91*\xd1\xe6\x12\xd0(<\x16e\x06\xea\xd4\xf4\xe6}\xbb9\xec\xd8J\xef\xbd\xf4\xfe\x0c\xe7\xbf\xc9\x0b\x7f\xd2\xd7M\x92\x9cwu/7M\x95/\xb3\x8f\xd3\xabT9\x99\x83d\xfa\xad\xc9\xaa\xf5\xa9\xfb\x00\\s\x1a\xeb$=z\xfat}\xc5\xa3\xcd\x90v\x06\xd56\xfe\x19@#\x7f\x9a4j\xb7D\xa7\xd4\xcd\xd2\xf5uU\x9d\xf7\xe8\xea/x\xa6\xe7\x88\xee\xa9\xe9\x82\xad\xc5\xbbl\xfaC?\xcf\x9d\x0e\x96\x12\x93\x029i{\xc3\xd6\x8c\xe8ku\x83W\x9by\xfdq\x11<\xeb\x85\xe8\xc1\xcf\xca\xe2[<\xb3v&\xf7\xd4\xe7_\xa3\xdaF\xd5\xd9\xcd\xac\xee\xc6R:\x1c\x1aO\xd3y\x06\x02\xd7\x9e~\x9f\xf9\xd0\xf6\xec;\x9f]\xf3\xfe\xdd\xab\x01\xdd\x9e\xff\x16 *\x81\xe0\xb3_ \x04\x8f5\xec\xd1\x08\x04'\x10\xdcm\x04\x82K#\x10\xfc\xd8\x08\x04'\x10\xdcg\x04\x82\x13\x08.\x8d@p\x02\xc1 \x04'\x10\\\x19\x81\xe0\x04\x82\x13\x08N \xb8\xcf\x08\x04'\x10\x9c@p\x02\xc1-+\x01H\x12\x08.\x8d@\xf0/\x05\x04\x0f\xe9\x92k\xcc\xac \xc8\x93\xcfp@\xeb\x0e\x85\xb0\xa9\x9ej\xd0'\xaf\xc6\xc5\xba\x03g<\xc6%-X\x1c\xbeg\xd5\xad\xe8\x08\xe4^\x8c\xdaT8\x12 \xb8b\\K\xae\x8a\xb1/\x01m\x07\xad\x96\xfe\x1f\x9a\x03`l\x94K\xbf\xaav\xbd]\\\xc7\x86A*\xa1`\xd4 5\x15W2\xa4g?\xcb\xceN)\xc9\x06\x8e\x9f\xb6\x96\xf1?jW\xaf\x8c\xa7\x0b\xe1h\xaa\xaf>DW>D}\xb3\xf2#\x95{pc\x1b\x96\xdd\x02\xef\x0e\xbdX\xb3~d]\xc3v\x83\x92w\xc3\xee\xf9\x145\xae{\x90\xa2\xae/\xe0\\\xbb\x93s\x10{'\xa7\xe7m'\xbe\x7f\xa5\xe3,g\x17Z%w\xea\xe1I\xac:\xef\xdf\xbdR*\xb8j1o\xf6\x83vl[\xad?\xe9\xcaZ\x83\xb4D~\xba\x9b\xb5h\x8a\xa3\xdc14\xed\x9d\xaa\xfc\xf9w\xafd'X\xf3\x1eD\xa7\xd8\xb1\x9b]\xb5\x96;K\xa3\x93o\xe4v\xd6\xb7gg\xdb\x9a_\x1f.\xe5\xb7\xa9\xdfg}\xb9~\xbem\xcf.w\xed\xe5\xd9\xef\xd6\xff\xfb\x7f\xff\xa6\xfa\xdd\xef\xd8\xbf^\xfd\xebz\xfd\xbf\xfep\xf5?\x7fw\xf9\x87\xdf\xfd\xafu\xf5\xaf\xffRU\xff\xeb\x0fk\xf6\xdb\xdf\xfe\xe6\x7f\xfe\xe67\xbf=\x93\x1f\xb4\xb8\xf5l\xddv\xecL\xc9\xcf\x9e\xdd\xfe\xf6L6=\xf5\xbd\xff\x8f\xef\xff\xf0/fB>\xe1v\xb8\xe3\xa2\xaf|\xb4\x1c\x0f_;O\x02T#\xfbo\x9a\xda\x10!\xca(C\x80\xf4\xee@\xe7\x83\xf5\x9e\x177\xbb\xd6\x06\xed\xcd\xdf\x08\x8d\x9f\xfdJh|\xac\x05\x8fFh<\xa1\xf1n#4^\x1a\xa1\xf1\xc7Fh<\xa1\xf1>#4\x9e\xd0xi\x84\xc6\x13\x1aOh<\xa1\xf1\xca\x08\x8d'4\x9e\xd0xB\xe3}Fh<\xa1\xf1\x84\xc6\x13\x1aoY d\x94\xd0xi\x84\xc6\x7f\x0dh\xbc\x85 [~Bh\xfc\x11\xd2:\x9e0-\x01\xd7\xe1( \xf5\xc1b\xb8\x0f\xf2 ?(\x05\xfbA\x16\xf4\x17\xfe\x1c\xb0\xe7\xba\x9e\x04\x02\x84\x13\xc2\x80p\x1a(\x10\x12\xe1@\xc8\x83\x04c]0\x0e\x16\x84\xb2\xd0 $\xc0\x83\x90\x0e\x11B\x06L\x88\xe82q\xa7\xbd\x16\x80\x0b!\x06\x19\x02~z\x86\x80\x0e!q\x16\x97\x0c!\x06\xbd\xe1\xcf~\xc5\x97\xb2 \x9c\x08I\x90\"\x94\x86\x15!\x13Z\x0c\xb7+\xd49\xb0\xd9\x10\xa3\xd7\x1fG\x9d\x05[\nj\x04\xb2O\xfe\xb4\xc0`#\x89n[\xe9\x1cXO\xcb\x18\x9fo\xb0|\xf1O\xbd\xe7[\xf5\xbd\xda\xe4~Wm\xd9{E\x03x\xa1~\xf78S \xfd\xdc\xe4\x84\xdf\x88>w\xdf\xf6\x1c\x98\xdc9\x95[\xae\x8e[y\xcb+\x0f\xc4\x8a\x0e@@\xe3\\\x87\xc0\xbb\x0f&\x1f/\xeb/\xff\xd1\x1c\xf6\x97jK\xce\xa4\xf2Xy#\xbeM\x1b;D\xeb\xf6\xd0\xf0\x95t\xe6\xeb\xdf\xee\xaa\x1ez\xc6\x9f\xc94s\x0dU\xf4\x92@!\x1a\xe0F\xed\xc6\xde\xd5\xfd\xf4\x9d\"r\x94\x15\x9d ?'\xf9\xe5\xf4\xc3\xa4\xe4cm\x94|L\xc9\xc7\xa3Q\xf21%\x1f\x8fV\x94\xa9\x90\xc2RHb(P\xf2\xf1R6B\x06\x13\xa1\x08\x0b!\x9d\x81@\xc9\xc7K\x18\x07)l\x83\x0c\xa6\x01%\x1fS\xf21%\x1fc\x99\x02EY\x029\x0c\x01J>\xf6]\x16e\x02$\xb0\x000\xa9\xb5)\xe8?%\x1fS\xf21\x06\xc9\xa7\xe4ciK\xd0zJ>vy\x8a\"\xf2\xb9h\xbcwl\xa0\xe4\xe3c\xa3\xe4\xe3\x0c\x14=\x8e\xa0\xa7\xa2\xe7 \xc8y2j\x9e\x86\x98S\xf2q\x1a*N\xc9\xc7\x83Q\xf2\xb16\x93|\xac\x81W\xcb\xc7b\xb5\xec\xb9sv\x1a\xe7\xfb~\xbb\xe2\x1a\xf4\xb0\xee -\x82\xdf\xea\xdd\xd3g\x93\x9b\x9f\xc1\xdd5k\x14\x94'\x1b\xb4B@\xe50\xabq\xec}\xc5\xd7\xd7\xf3\x86\xbd\xadoY#<\x1d-\xc8\x0b\xd6r\x84\xb0_|d\x9f|\xf5\x9c!\xc3\x1a\n\xae\xf4\x10\xd7\xc9\xccg\xb9\xe9\xa71N\x0d\xe4\x0d\xb8\xb1\xdc\xaa\xdb\xce\xf6\xb4d\x0d\x940{\x08\x0b~\x01oE\xa4\xdaF\xae\xe5\xdb\xab\xab\x9eq\xb1<\x9e\x16\x17,\xa8\xa1g\xbcp\xb4<\x1b7\x8e \xaa\xf2!\xdb\x8b\xae\x8c\x0ces\xd8\xb3\xae^\x9b\xbf\xc9\xdep]5\xa2>j\xd7J\xb4!\x1d\xf8C3l\x14\xce\x96\x07\xe7\xd2\xdb\x8e\xf5\xfd\x18B\xb5\xb5v\xe8E\xa8?\xb2\xc4xN\xdd\x9f8\xb83|\xde\x11\xde]\xbd\xaf\xb1\xd1\x95\xd7\x1at\xdb\x07\xdb\xabMd\xbb\x05k,\xfc\xb0\x9b\x81\xcbj\xcb\xc8\xfe\xd3\xf9\x15\xec\xd8\x15\xd7\xbb\x93\xb5V\xb17\x93z\xb9\xff\xad>\x10\xf5\x10\x11\xe7\xcbO\xc0\xaa\xf55T77\x9f1\x8a6\xf9`\xbc?\x14K\xeb\x0e\xa9\xd0\xc0d\xfdxw` \xfeQ7\x9bz=\x9c\x0d0FP^\xa8\x1b\x92\xed\xaen\xd6\xbb\xc3f6e\xaf\xd4S\x06(r\xf6\xc6$\xb0m\xed\x90\x8b\xa1\xd5\"\xe0\xcc:\x97\x1f\xcf\xfb\xd9\xdb\x9aUAv\xbf\x1d\xeb5\x05A~^\xe3\xf7(>\xb9\x17\xfak\xaa\xb7\xcdL\x8f\x02\x86\xafq\xfa\x08\x15\x99\xa5/\xf6\xb2mw\xcc\xca\x16v\xbc\xc0\x8e\xdd\xb2nrk\xe8\xe5\xe9\xab\xe7/\xae\xb6\xc8+\x1ds\x7f \x13?\xe2\x19\xac\x91\xc8k\xdbmX7\xdf`\x8c\x9e\xb9\xbf<\x1a9\x92\x1dgz\x9ap\xf6\xb3\xfeG\xe0d\x8c?\xab+\x14CF\x07\xc3\xe6\x9d\xfdC\xfe2U\xf6\x10\x1f\xb5\xf6l^\xfd\xe4m\xb8\x8f\x16\xf8\xc3\x8b\xdf\x99\xc3\x05\x8e\xb5>L \x9e\x98\x18\x91\xe4G\x94\xa0\xa2g\x9a\xd9\xe0\x8c~\x85\xd9\xf7\x93\xe4\x08I\x8e\x90\xe4H\xc0\x16\x92w \x99\xc0\x13tE\x92#$9\x92K\xf2\x81<\xa2\x0f\x94\"\xfb@\x16\xe1'\xfc9\x90\xe4H\x1a\x01\x08\x12I@\x90G\x04\x8au\xc182\x10\x94%\x04A\x02)\x08\xd2\x89A\x90A\x0eBt\x99$9\xa2,\x998\x14\xf4F\x92#$92\xb32\x04#\xc0\xf3d\x00C4\x824\xb2\x11\xc4\xd8\x01\x99\xa4#@\xf8%\xc9\x91\x80e\x91\x92\x80$G\xb4e\x11\x96 \x89\xb4\x04$9\x82!3\xc1)\x08M\x80)#I\x8e\x94%;A\x94\xf0\x04\xb9\xa4'\xaf7\x92\x1c\xc1\x91\xa4\xbc\xdeHr\x04I\x9e\x82d\x02\x15\x90\xe4\x88\xd3r\xc8U^g$9b\x8c$G\x1c\xf6\x98$G\xa2\x08\xa8ma%\x86c\xfc\x15\xd8=g\xcd\xa6\x87JAx\xaac\xbfl\xf9\xb5lt\xd5f\xd3\xb1\xbe\xf7$\xe7\xe81\xc4h\x87\x88\xafn\x90\nq\xdep>\xd0\x03D\x13\x16\xcb\xe7\xbe\xee\xd5\xcb\x94w[\x87\xf1\x1f\xdd?\x89\x89f~\x85TM\xa6\x07E\x90v\x89\xdb\x03i\x97|u\xda%\x86\x1e\x91/a2\xe5y\x90\x82\x896R0!\x05\x93\xd1H\xc1\x84\x14LF+J|H!=$\x11\x1eH\xc1d)\xb9!\x83\xd8P\x84\xd4\x90Nh \x05\x93%\x04\x86\x14\xf2B\x06q\x81\x14LH\xc1\x84\x14L\xb0\xc4\x83\xa2\xa4\x83\x1c\xc2\x01)\x98\xf8.\x8b\x12\x0b\x12H\x05\x18}\x8e\x142\x01)\x98\x90\x82 \x86\x18@\n&\xd2\x96\x80\xff\xa4`\xe2\xf2\x14\x05\xf8s\xc1}\xef\xd8@\n&\xc7F\n&\x19\xa0|\x1c\x90O\x05\xe3\x13\x80\xf8d\x10>\x0d\x80'\x05\x934\x90\x9d\x14L\x06#\x05\x13ma\x91\x91\xd9^\xf6\x98\xc5\xcc\xbbC4W\x9f\xc47\xf2\x94\x0dH|\xe3\x84\xc1\x8d\xcbF\x90\xf8F\x89(\x92\xf8\x06\x89o|u\xe2\x1b\x9d\x11\xdf\xe8\xa2\xe2\x1b\xddL|#$\xbd\xf1l\xe0J\x0d\x1a\x1c]1\x0d\x8e\x8e48\xe6\x16\xa3X\x90\x06\xc7\xf15\x88$O\x0c,a,\x95Z\x12t\xe6\xc6\x17\x02\xdbm\xa5)&\x10\xa7\x99@\x06\xd5$\\\x01\xd2\xe0\xc8\xa5\x9f@2\x05%\xe8\x8a48H\x83#\x97\xa6\x02yT\x15(EW\x81,\xcaJ\xf8s \x0d\x8e4\n\x0b$\xd2X \x8f\xca\x12\xeb\x82qt\x16(Ki\x81\x04Z\x0b\xa4S[ \x83\xde\x82\xe82I\x83CY2\xf5%\xe8\x8d48H\x83cfe(2\x80gz\x00\x86*\x03it\x19\x88\xe1\xdb\x99\xb4\x19@\xf8%\x0d\x8e\x80e\xd1j\x8048\xb4eQn \x89v\x03\xa4\xc1\x81\xa1\xe3\xc0)(9\x80)#ip\x94\xa5\xeb@\x94\xb2\x03\xb9\xb4\x1d\xaf7\xd2\xe0\xc0\xd1|\xbc\xdeH\x83\x03I\xff\x81d\n\x10\x90\x06\x87\xd3r\xe8A^g\xa4\xc1a\x8c48\x1cF\x1a\x1c\xbfx\x0d\x8e\xcbOV\xe1\x8e\xb6\x83I\x83C\x1aip|\x85\x1a\x1c]\x19\x0d\x8e\x8e48\xa6F\x1a\x1c\xa4\xc11\x1aip\x90\x06\xc7hE\x89\x0f)\xa4\x87$\xc2\x03ip,%7d\x10\x1b\x8a\x90\x1a\xd2 \x0d\xa4\xc1\xb1\x84\xc0\x90B^\xc8 .\x90\x06\x07ip\x90\x06\x07\x96xP\x94t\x90C8 \x0d\x0e\xdfeQbA\x02\xa9\x00\xa30\x91B& \x0d\x0e\xd2\xe0\xc0\x10\x03H\x83C\xda\x12\xf0\x9f48\\\x9e\xa2\x00\x7f.\xb8\xef\x1d\x1bH\x83\xe3\xd8H\x83#\x03\x94\x8f\x03\xf2\xa9`|\x02\x10\x9f\x0c\xc2\xa7\x01\xf0\xa4\xc1\x91\x06\xb2\x93\x06\xc7`\xa4\xc1\xa1m\xaa\xc1a/\xf0H\x83\x8348H\x83\x8348\xf2\xa2H\x1a\x1c\xa4\xc1\xf1ejp\\1&\x07\xcbA\x86C\xe27U\xb3f\xa3\x02\x87\xf9\x17\x0bhq\xbc4\xb7\x0d:\x1cW\x8cyN&\xf2\x90\xa4&\x92\x1a\x83\xbf'\xa6\xd6\x8fTNc\x88W\x84\xd15\\\xa7F\xaf\xf1?M\x8c\xc4\xe7i\x05\xc8\xc3 [\xc4\xeb\n\xcamDq\x04\xccF\xfc\xf0\x0c3\x8ch*\x9f\xe9\xa3\x0e=\xd3\xb5\x94\xac\xd4f\x8c\x83\xc7\x9d\xba\xaf\xee\xe0\xea\xd0l\x9c\xf0HP\x03\xa4h\xa5X\xa8R\x97L\xd4\xc8\xbcLo\x16\xff\xf8\xde\xe5\xa2]\xa1P\xc2\xc1\xd3\xde_\xc5@\x1b\x03\x7f;\xd3\x93\xa1\xaa\xf9$\x9euY\xf5\xf5Z\xae\x9e\xae\xea\x1dg\x9dhq\x8c\x8d\x97\xbb\x17\xdc\xc1\xc6\x06\xd1\x06\x07\x08\n\x0f\xe2%\x01\xfaEA.\x91'\xe0/I\xef\xa4(\x99'J\xe7)M\xe8\xc1Sz\n\x91z\xf2h=\x01w\x89\n'\x0b\xa9=\xa5\xc9=\x89\xf4\x9e\xc2\x04\x9f4\x8aO\"\xc9'\xd4\x8634M\x8a\x12}PT\x9f\x82d\x9f\xa5t\x9f,\xc2O!\xcaO\x0e\xe9'\xe0\x0c\xadar\x02\xe2\xcf\xe9\xa8?'!\xff\xa4\xd1\x7f\x8a\x13\x80\xb0\x14\xa0\xa2$ <\x0d(\x99\x08\x94N\x05\x8av\x858\xb5\x92\xc5t\xa0\xa8R jB\x85 \x05\xa5\xcc\xba\x92\x89A\xa1A\x10\xa5O\x12J\xa1\x90I\x02r\xfd\xce\xdbn\xdc\xa6\xfa\xebO\x17\xe2\xbf\xc5\xe7&:\x8fn3M@\x12\xd3\x19\x873=\x98N~A\xa4=\x0cK\xd8\xfc\x94\x87qUM\xe9\x0e\xda(\xdd\x81\xd2\x1dF\xa3t\x07Jw\x18\xad\xe8j(e-\x94\xb4\x12\xa2t\x87\xa5\xeb\x9f\x8c\xd5O\x91\xb5O\xfa\xca\x87\xd2\x1d\x96\xacxR\xd6;\x85W;\xb8\xb5N\xc1\x95\x0ev\x9d\x93\xb8\xcaI]\xe3P\xba\xc3\xc4\x92W5\x94\xee@\xe9\x0e@\xe9\x0e\xa3Q\xba\x03\xa5;P\xba\x03\xa5;\xf8\x8c\xd2\x1d(\xdd\x81\xd2\x1d(\xdd\xc1\xb2\x12\xd4sJw\x90F\xe9\x0e_g\xbaCh\x15\x99\xcb\xd0\x1b\xb8x\x13oG\xa4\xb5b\x99\x16\x9at\x97T\xab$\x8a\xde\xa4j\x13g1b\xde\xc2:\xe6\x93r\xfb$.\xeex(\x9e\xdcF7\x94\xdb^\xce\x04t\x84\xc2\xec\xdbG\x7f\x9a\xdd\x18\x99\xc7\x81\xe0\x05)\xb6\xa8\xdd+\xcc\x06\x10,\xf8\x8c\xbd\x0e\xe3T\xdb\xe5\x07\xee\xa5V/\xe9{\xf6\xfa\xca\"\xddFi\xb7\xf8\xba\xa4qr\xe3n|\xcb\xa9H\xdb\x05D\xfb\x05\x04\n\x0d\xb87\x0d \x11\x82\x0cD:\xe8\xcc\xbd-\x19X\xa5\x97F\xa6!\x8eNC\x06B\x1d\xae\x00\x9dT\x98\x8bZC2r\x1dtE'\x15f\xb1z\x0b#\xda\x80C\xb5\xa1$\xb2\x0d\x8b\xd1m\xc8C\xb8\xa1\x14\xca\x0dYHw\xf8s\xc0\xb2|O\x82x\xc3 Qo8\x0d\xf2\x0d\x89\xe87\xe4!\xe0\xb1.\x18\x87\x82CY$\x1c\x12\xd0pHG\xc4!\x03\x15Gt\x998\xeeo\x01t\x1cb\x089\xe0\xa7g\x08\xa4\x1c\x12gq\xc9\x88y\xd0\x1b\x8e \x1c\x93S/\xca\x06v\xf3\x81\xc1\x9b\x87g\xf5\x9e\xe2?\x9f\xf6\x89\x19\x9ftf\x804:3\xe0\xab:3`\xdc\x81*\xc0\x9e\xa7\xd3\x02\x06#\xfa|\x99\xed\xa9\xd4\xcd\n\xb3!\xe1u\x88\xdd\xa8(\xbaIA\xf4y\xa2\xcf\x8fVt\xf3!e\xe3!i\xd3\x81\xe8\xf3K7\x1826\x17\x8al,\xa4o*\x10}~\xc9&B\xca\x06B\xc6\xe6\x01\xd1\xe7\x89>O\xf4y\xa2\xcfs\xa2\xcf\x8f\x86!\x87\x13}\xde\xf7\x1b\xd1\xe7\x9d\xd7\x10}\x9e\xe8\xf3\x1e#\xfa<\xd1\xe7\x89>O\xf4y\xcbJP\x99\x89>/\x8d\xe8\xf3_\x0f}\xde\x8e\xe4B~7\x9d\x16\x90+\xc5N\xa7\x05\x9c0\xb8q\x9d{:-\xa0D\x14\xe9\xb4\x00:-\xe0\x0b;-\xa0c\xdb\xba\xe7jd\x1e\xb2\x92X\xb3\xee>\xddp\xb6y\xde3\xb69\xfb\xf9\xe6p)\x86\xa3@f\xd2{\x9d\x8e$\xa7o\xe6n\x10w\xab\x94$P\xcf\x91\x99\x10M\xbb\x91\xb4\xa8\x9b\xc3\xe5\xae^[\xfd\xe7$S\xe9\x8d\xf1r\xc1\x866\xf4h\x93\x95\x86*\xafD\x95\x93x\x16\x9e!\x928,\xb3_\x89\xc3r\x02\xf8'4y\xd6\x1f\xbd\xe5l\xf1\xe4\xd9Y\x86\xb4\xae\xc9\xfe\xe3\xf3\x81\x95\x18\xeb\x92\xc4\xfco\xc0\x1cm\x17\xfa\xa6I\xcf\xf3\xde\xfa\xfd\xafC\x00\x1em\xdf\xe3\xa4fR\x873\xb9\x81:\x1c\xcf\xef\x0f\xdd\xe1\xa4}\xec\xfc>\xf3\x13\xe7]\xd5\xf4\x95B3\xf5M\x93O\xfc\xc3=}\xd8\xf4a\xcfo\xa2\x0f\x1b0w\xa7}\xd8\xebv\x7fs\xe0l\xf8\xa6\xc7\xb7\xe9\xfa\xa2\xe5m\x92\xdc\xb8n\x1b\xdeUk._\xbfXv>__W\xb5s\xc0~%\xae\xd0?<\xda\xafYTcU7W\xed#iD\xaa<\x8e\xb5\x8a\xb2\x84V\x10HlXw\xac\xe2\xae\xcf]Y\xc2C\xbc\x9c\xa5M\xc5\xab\xd5u\xd5_\x9f\xf2!\x8a\x0c\x9e\xfd\x84\xcbC\xbd\xdb$jGP\xb7=\xfb\x95\xbam\x1c \x0e(\x89\x81\x92\x18\xbcWR\x12\x834Jb86Jb\xa0$\x06\x9fQ\x12\x03%1H\xa3$\x06Jb\xa0$\x06JbPFI\x0c\x94\xc4@I\x0c\x94\xc4\xe03Jb\xa0$\x06Jb\xa0$\x06\xcbJ\x10\xca)\x89A\x1a%1|)I\x0cI\xe8\xe9\xd9\xcf\x1a\xbb\x0b\xf015\x8e:\xae\xca'p\xaa\xbe\xfa\x08D\xd5\x7f\x7f\xfc\x18\xaa\x0f\xd0\xc9\x12\xb8\x0b\"\xa1\xd1\x1d\x89(\n\x1a\xc4@\xd1\xee=\xdb\x1d\x11\xf4s\xa9\xfb\x10\xee\x19\xf1\x1d\xc4<\x03\xf7\x8a\x1a%a|D{\x19\x8d\xf0S\xc2OG#\xfc\x94\xf0\xd3\xd1\x08?\xe5\x84\x9f\xba\x8d\xf0Sc\x84\x9f\x12~J\xf8)r\x96D\xf8\xe9`\x84\x9f\xdaF\xf8)\xe1\xa7\x0e#\xfc\xd4y\x0d\xe1\xa7\x84\x9fz\x8c\xf0S\xc2O ?%\xfc\xd4\xb2\x12X\x16\xe1\xa7\xd2\x08?\xfdR\xf0\xd3\x90\x8e\x85\x86\xf7,\x1f\x05u,&\xa8_&\x8a{f\xb0\xd9>\x86\xe7\x9a\x0b\xf5\xaf3\xfcV;\xf9\xee\xd3/\x03\xcaU\xc5}L)\xb1\xfa(\xeaSn\xae\x98\xb7t\xee\x04\xb1\x95Ej\x01\x88\x9a@\x0c\xd6V\x86\xa8\x11` ne\x91d_H\x7f`\xf0\xf4\xc2]u\xc9J\x9cd\x1d;|M\x99(J\x0f\xd5f_7\xf0G\xf8=\xfc\xbf\xdfl\xdbm+\xfb\xb5\x17\xeb\xaa\xe7\xe2a\xbf\x86?\x06}\xfcj[\xf3\xeb\xc3\xa5\xec\x18\x95\xd8\xd7\xd9\xa8\xf9u\xa6\x96\x13/\xd7\xeb\x97\xaa\x19\xfe\xea\xff\xf3\xcf\x0fd\xa8]BS\xa3\xe1\xaa\xd5\xb0[\xd6A\x7f\xdd\xde\xa9\xdd\xe1\xba\xd1G\xe4\xe9-\xfag\xf0\xcfC/\x97\x07A8\x08$W\xa0\xe3\"\xd2\xc1\x8b\xbeQ;\xd1R\x06N)+\xfeSL\xb5x\xb5\x85_=\xff\x15T\xfb\xbai\xa1cW\x07u\xb0_\xf8\x81ff\n5\x0f\xae\xc3Q\x9f\x14 ?+a\x97\xbbv\xfdqu\xcd\xea\xed5\x0f_\x89n\x850E\xef\x03\x9f\x992\xdc\xeb\x15\xf6\x9d(\xec_dY\x8d\xa8\xa3,\xff\x00\xfeIZ\xd0]\xe4\xb4e\x18[]\xecpt~\xbf\xaa\x9b\x0d\xbb?Ad\"=\x902|h>\xdc\x9f\x8b\x82*!\xd1}\xdb\xb4\xbcm$W\xea\xd0\x88\x95\xe5\xff\xcf\xde\xffn\xb7q#\x8b\xa2\xf8\xf7y\x8a:\xfe\xfd\xd6\xc8\xde\xa3\xd0\x96\xff%\xf69\xdek+\xb2\x9ch\x12\xdb\x1aKN\xce\xecY94H\x82dGd7\xdd\x7f$\xd33\xb3\xd6}\x8e\xfb\xe5\xbe\xe2}\x84\xbb\x00t7\xbb\x1b\x05\xa0\xd0\xddT<\x99\xae\xb5\xd7\x1eGl\x14\x80B\xa1\xaaPU(\x88\xc3M~N\x94\x14s\xe2\xbb\xcb\xa6i\xc6V\xd5\xf23 I!\xc3T\x0b\x96\x08z\xcb\xe8\x9f\x89Y\xf3\xb1W\xd5\x84z\xdbT\x8c\xf0\xe7\xe3\x8b\xd7\xbb\x15\x0b\xc2$e\xe1\x14\x13\x90v\nT\x91\xff\x1c\xa4\xcb\\\xde\x08\xf5\xa7\xd8#\xd7\x83p\xf7\x8ao\xef\xd9\x0c\xd1\xda0\xeb\x86s\xf9\xfd\x90\x87\xd3\xf8u\xc8\xc3\xa1\xc5q`\xc8\xc3\x19\xf2p\x8c_\x0ey8\x12\x86<\x1c\x1d\x86<\x9c!\x0f\xc7\x04C\x1e\xce\x90\x87#a\xc8\xc3\x19\xf2p\x86<\x9c!\x0fG\xc1\x90\x873\xe4\xe1\x0cy8C\x1e\x8e \x86<\x9c!\x0fg\xc8\xc3\x19\xf2p*\xd0GN\xc4\x90\x87#a\xc8\xc3\x19\xf2pr\xb8\xed<\x1c\x15\xbf\xba\xff\xf7<\xe4\xe5\xac\xa8@\xc9\xc09\x0b\xe7E\xe0\xfa\x8bM\xbf1\xa6\xbaX=\x17V\x9fE\x1et,\x82\x87A=\x96\x98\xeb\xb1\x06\xfd\n\xb0\xa7\xc5\x18\xe7\x07\xceh\xd5\xbfrm\x07K\x82\x8b\x13\xb5+\x06\xde-\x9d\xa5\x8fD\x16k\n\x8bk\xf8~i+\xae\xd4\x14\xcf\xa4\x94\x9d\x07\xc9\x80\xcf\x92\x8ebeep\xb23\x90\x93O\x9c\x1c\x02\xe4\x84\x93|1\xc8y$\xee<\x11w\x86\x88\xd7\xf0\x1dY!.f\x82^3A\xba\xe4\x80t\xcd\xfe0\xcdT\xea\xae*\xd6\xe2\xa5\xe1b!\x0bM\xa3\x8c\xbby\x84\x9d\xe6$\x92\xfb\xb5\xb1\xbd;?\xc9\xcf\x8a\xe5\xb7C\xbaG\xe3\xd7!\xdd\x83\x16.\x80!\xddcH\xf70~9\xa4{H\x18\xd2=t\x18\xd2=\x86t\x0f\x13\x0c\xe9\x1eC\xba\x87\x84!\xddcH\xf7\x18\xd2=\x86t\x0f\x05C\xba\xc7\x90\xee1\xa4{\x0c\xe9\x1e&\x18\xd2=\x86t\x8f!\xddcH\xf7\xa8@\x1f\xa1\xf7!\xddC\xc2\x90\xee\xf1\xef\x90\xee\x91\x07\xfe+8j\xa7HZ\x9a\x80X\x8e\x8fy\xf6F\x01=f\x8dT\x0e\xe3\x1drF\xee'k\x16\xa7]2G.\x04\x82\"\xb2v\x91\xb2\xf4\x8b/\xdf2\xbc\xd2\x90\xc3\x10.D\x9a\x0f\xe1\xc2!\\8\x84\x0b\x0b\x18\xc2\x85C\xb8P\x83!\\8\x84\x0b\x9b0\x84\x0bQ\x18\xc2\x85(P\xad\xa4!\\X\xc2\x10.\xac\xc2\x10.\x1c\xc2\x85\x08\x0c\xe1B\xf4\x9b!\\8\x84\x0b\x0d0\x84\x0b\x87p\xe1\x10.\x1c\xc2\x85\x15\xe8#t3\x84\x0b%\x0c\xe1\xc2!\\H\x0c\x17VZ\xef'J\xb8\x1b\xaf\x8cJ\x8eg,e\x8dN\x9b\xe1\xca]\xafs\xb6J\xdau\x8b\x07'\x13>\xcd\xe2 \xdd\xbe\xdc\xf9F\xc5GWEXG\xe1\x9f\xb0$\x98\xfeaV\xff\xe6$\x9a\xf1\xb3\xd9I\xfd\xdd\x89\xb4\x19\xf8\xd1C=\xcd[\xa7\xc8\x14\x94\xd7\xb0\xf9I=\x06\xa5\xc5\x9e\xb4\xae\x15\x98bM\xd3h\xc6\xbf\xd2ou+,a\xb6\x9e4<\x05\x86k\xdaF?\x0cz\xf3\xda\xf8\xb5\xe1.}\xe3\xfb\xb3\xe8\xf4\xd3ty\x9eM\xae\xf8\xb6\xb8~\xb9\x7f\xba7H\x8a\x134\xa8\x0c\x0d\x0b\xa1\x96\xfd\xfc\x18$\xbb0u\x10.V\xf4\x19hK\x86,\x96\xb6L\xc84\x1bK\x83|\xa1-\x07:\x89\x19\x7f\xc7oi\x0d\xfa\xe5\xfd=\xb2\xbd\x90f\xe3%K\x96\xe4\x16*\xf2J\xfe|\x92\x05\xab\x19w\x0d\xa8X O\x0e\xeb\x81\xb9\x10\x02 _5'\x8d|\xa2M\xb4\xf1\x8d\x98\xde\xf7e?\x84\xc9\xb5f\xbeZ\x97\xbb\xf2\x1a\x84.e\xe9\x0c'1\\d\xbdH\xa3\x98\xab\xed\xf6\x91\xdc\xf5\x84%|\x1c\x17\x0d\xd0FxC\x01\xf38Z\xd79\xcc\xc8\x8f\xf9I\xf29\xa8\xea\x15G\x8bgl\x19?\xfd\xb4\\\xa6O\xe2\xf5\xc7k\x1e>}\xf8Mx\xb5\xfa\xb4\xca>o\xaf\xbf\xf9\xfc\xec\xd7\x8f\xbfN\xd7\xd3\x1a\x8a\x9a\x95r\xc1\xc3\x19\x8fw\xd6I\x0c?\xf0\xad\x98L\x9e\x9b\x10\x95\x0eZ`\xd5\x02\x01\x15\x8ck\xbe\x8e|G\x7f\xc1\xc3\x14\xae\x03\x06'r\x1a\xf0S\xb4e\x0b\x1e\xc3\xff\xfb\xff\xfc\xdf\xffW\xa5\xc5t\xc9\x82P+\x86\xe2F\xaf\xb0~\xf5}6\xa9\xfc\xce\xa6\xb26\xc2X\xed1_\x94\x07\x0f\x0e*?$\xfcc\xc6\xc3\xa6\x1c!`9\xaabY\xb0\xc4\x1b\xc1\xc3\x07\x02\x1aX\xc6l\xf6k\x96\xa4k\x1e\xa6\xde\x08\x8fF\x0f\xab\xd8\xe6\xbc)\xbe1\x95\x00\xa6t\x1c\x83j\x00G\x1a\xce\x8c\x87\xcd-\xa0\xc08\x01\x05\xe54\x92\x94]\xe9\x87\x1a\xb6\x16+\xde\x05\xef\xc1\x93\xfa\xba\x07\xebl\xc5Rt\xdd'Q\xb4\xe2,\xc4\xc9\xdc\xb4\xa4]!\xa7\xd3$\x0d\xd6b\xd7-X\"]H\xb5\xdd\x07w\xa7,\x0c#\x19$\x93\x81\xbf \x14'\x8a_\xf3\x18\x0b\xe6=)\xb6\xf18\nW\xdb\xc2\x9dy\xc3\x92\xf5X\x16\xd6\xb1J\xcc\xca<\x8e\xaf??x\xfc\xd32\xfd\xe1\xcf\xcbo\x8eON~\xfa\xbc:\xfb\x86]F\xc9w\xdb\x07\xc1\xd5\xab\xff\xfd\xc3\xd9O\xdf\xff\xe5\xd1\xaf?\xbc\x8e\xa3\xe4{aB\xca\x9a\x1fi\xc0R^Xa\x83T\x1d\xa4\xea U\x07\xa9Z]\xf7\xdf\x97T\x0d\xc2 \x1dO\xa3 \xd4\xa4j\xbf\xe7*ty-K`YV|I)\xb8*K)\xe7\xbdN\x16\x0e]R[\"Y\xb6L\xf9\x8fR>3\xaa\x9d\x83\xbf\xffS\xf4r\xfa\x89O\xb3A\x95\x0c\xaa\x04A9\xa8\x92A\x95\xfc\xeeT\xc9\xbf\xa1\x16\xe1\x9f\xf8\x94\xa0E\x9a\xaa\xe1d\xc9\xa7W\x97\x9f\xdeU\\J\x04\xadP\xbf\x0b\xa3\x1a\xd4\xef\xc0\xd4\xaf\x0d!C\x11\xbb[,\xb1\x1d\x8d\xf8\xea\x86\x85\xa9\xeb\xbb\xa0VN\x16\xe9n\x15\xd9)S\x0f\xbc\xec\x83a4\x97\xbbe\x89\xd1\xa4R\xed\xebb-\xab\x8b\x02\x0f\xaa\x0b\x00\x95\xb0\x95\xa0\x80\xf8\x7fM\xfa\xc3\x93\x07\x0f\x1e\xe8\xe4\x86\xa3\x07\xbb\xbfK\xf2\xca\xff\x8f\x92\xeb+88h\xfe\xc7K\xbe\n\xaey<\xb0\xd6\xef\x87\xb5\x9eT\x17\xe07d\xado\xe3\x88\xcd\xa6,I/?\x9dD\xebu\x90\xfa\xb2\x98\x90y\xe3\xf4SsQH6\xad~\x0d\x10c\x1a@oN\x1a\x16E\xe7W\x1bZ\x8com\xdf\x07Z\xa5m\xc30j|l\xf9\xae\xbe@`\xe0i\xe8\xd9\x92Bx\x1cl|\x0e\xb6\xdc|\xb4U\x83\xe7A\x13\xa9\x80\xf1>\xe8\xfc\x0f\xa6=\x00\x96}\x00\xd8^\x00\x94\xdc\xb5=\xd1\xf8\xc3L\x89\xdd\x81\xbb\x07\xee&r\xf7\x93\xe6\xa2~\xc1\xdc\xed\x0cRV\x0c\xdc\xd3\xd3'\xaf\x1e=~\xf0\xf8\xc1\xa3\xc7'O\x1e>~\xf2\xe0\xe8\xe9\xc3g\xdf>yz\xfa\xe0\xe5\xcb\x93G\xdf\xbc:~\xf9\xf4\xc9\xd1\xab\x07E5q<\xee\xbac\xb8\x1f~:gA~\xba&\xe8\x98\xda\x82\"\x03m,^\xe3\x8b\xd7\x85\x1d\xdf\xf8\xfbq5\xe3A\xc3Z;yM\xf8t\xf9\xe8!\xf0P\xac\xf2\xac\x96u\xd5\xf4\xb5\xcc\xf8\xe6\xea\xc9\xe3i\xc6~]\\}\xe6\xec\xe9\xe7\xcd\xe2\xea\xe3\xa3\xa7i\xf8\xeb\xcd\xec\xf3\xf5c6\x9f>\x9a=\xfc\xfa\x0f\x00?\xb1U0ci\x14\xefe\x1c\xd7l%\xa8x\xf4\xf4\xd3\x96\xaf7|\xbd\xd9<{\xf8\xe9\xd9r\xfb\xf9\xf3\xb3\x9bx1\x7f\xf68~\xfa\xeb\xb3\xe5\x93\xf9\xc3\x9b\xc7\xe1\xc3\x95\x0ct\x07!yA\x1a\xe75;\xefT\xcfh\xcd\xd3\x99\xbde~\"k\x86\xfc\x11\xd3\xca\x87A/?\xc9D0\xf2d}\xf6\xc9\xcb\x07\xdf<9z\xf4\xcd\xcbgG\x8f\x9e={\xf4\xec\xe8\xd9\xc3gO^\xbdz\xfc\xed\x83\xe3gG\x0f\xbe~u\xf4\xea\xe1\xc9\xcb\xd3\x07/\x1f}}\xfc\xcd\xd7'\xa7\x0f\x9e>~|\xfa\xf0\xe8\xeb\x93o_=\xfa\xf6\xf1\xb3\xa7O\x9eZ\xf7O#W\xa5\xec\xf4\xd1\xd3o\xf2?\xb6TT\xb5\x93.\xb4\x93\xd2\x9a\\\x9dsT\xf9!\xd2\xdc,\xcb5\xdf\x17\xd8\xe5\xb8\xc9\x95c\x9a\x0f\x98\xe6\x04v\xed\x03\x0e\x0d\x046o\x15\xb8t\x91\x02\x87\xd7\n\xac\x9e+\xf0\xec\xa3\xe1\xc1\"{k\x93`\x11\xb24\x8b\xbb/\xb5\x01\x13\xb8&RN\x01\xbd1\xf9\xfa\xf4\xfd\xc9\xd9_^>x8O^\x9e\xc7\xec\x9b\xd7\xe9\xe4]\xb2\xfd\xf6\xe8\xe6\xeb\xc9\xc7\xcb\xd7O\x9e\xfc\x9c\x1d=\xfa\xe6\xf3_&\xaf\xa6?\x7fz\xfc\xa7\x93W\xdb\xe3\xb3\x05\x7f\xf2\xf3\x9b\xf3\xf9\x0fg\xd9\xf5\xe7o\xff\xfb\xe9\xb3\xd7\xdb\x8f\xdf'\x1f_~sqtv\x13\x9cn\xfe\x14\xbc\x9f<\xfd\xe9b\x96\xae6\x8b\xbf6_z\xd9d\x931j}Xy\xc9\xceI\xb2)\xba~\xce\x05.i\x93J\x07\xfe:\x08\xd3\xfb\xe7\xd9\xe4\x07\xbe\xbd\xe0\xd3\xcd\xc3'O\xaf\x8e\x90v\x96K\xb8\xf4\x1e=c\xf4U\xb0\xb9\xe0\xc15\x08\x83+\x1e\x8c\xeexh\x81\xb1C\xd2(\xd5r\xb6\x9b\xee\xc8P]\xce\x7f\xd3\xa9\xc1\x8e\xea\xe9\xa3'\x8f\xab\x98~\x7f\x06\xfd9[\x04!K\xf9L\x1a\x05\x97\x9fjv\x98\xd5.H\xa3\x94\xad\xc6S\xcc\xa01i\xeab\xbb\xb5j\xb4a\x0b\xaem\n\x8f\xa6r\xbc\xbe-W\xc1: \x8f\xf4QqBI?%\xcd6\xfd:\xe9\xbc\xd2m\xfb\xb7\xcf\xf2A\xa0\x8fI\xa1$j\x0ccg\xb1\xe5m\xb47\x9dZ\xee\x14\xcd\x92S`\xb3\x7f,\x16\x90c\x8bi\x16^\xb5Mk\xbb \xb5\xf9\x148\xd5\x0f\xc5 2Q\x01\xec\x94\x00\xf7\xcc\x14\xb8\xe6\xa7\xc0j\x1d*p\xce\xb6\x00\x82\xa5\xa8\xc0N\x1e\x05\xfe\xbd6lG\x05\xba\x05\xa9\xc0\x8a\xdeb\x03:\x89\xef\"\xbb\x157\xb8F\xa6\xc0nk*\xb8e\x8bS\x81\xd1\xeeT@\xe0[\x17\xf9\xa0@c\xe1 \x02\x05\xa1\xb5U\xaa\xc0Z \x06Z\x8c\xa1\x83\x9d\xaa\xc0e\xad* \x0c\xcbb\xb9*0\xdb\xaf\n\xba\xf4\xd1\xb4h\x15\xb4TB\x9a\x8d\xab\xc0:>\x93\xbdKhj\xb7}\x15\xe0\x16\xb0\x02:\xf2\xa65\x9c\xb7\xd7l\xe2\xfc\xef\xdd\x94\xaee\xbb\xba7\xabE\x188'\x0c\xee}\xd6\xc0p\x91\xce.s\x0bF\x1b\xbb>V$\xaf\x82d\x1c\xd6\x06\\\xb3=P\x82\xe1D\xa2fSa\xaa\xd2\xb4\xa0}\x1eu\xfe\x15r\x9c\xea\xba\x1dA\x80\xe8Z\x8f%\xb2\xfa\x94l\xc7UM+\xdf\xa2.F5\xb0\x91\x07\xcc\x1c\x80\xebX\xeb\"\xf9\xebS\xc3\xee\xa6\xf5\xd2Rc~\x11\x89\x95\x12\x8b|\x91\xf7\xec%Y^\xf9\xf8\xff=\xc2\x10\xb23\x16\xa7\xdaI\x99\xb4I\x1a\x87\xf9]k\xe4\xe0Y\x8e\xae\x1a@\xd4O\xd0n\xfay\xcc.\x7f\xf6\x98\x95\xd79 \x84\xd6\x13y\xed\xc4V\x91\xaee6\xf9\xaa(\x07\xed\x177)\xb6E\x1a\xac\xcd\xd1\xc3F\x9b\x83\x87\x0f\x8e\xbe\xfe\xea\xe8\xe1W\x8f\x1e\\>x\xf2\xfc\xc9\xa3\xe7\x0f\x9e\x8d\x1e~\xf3\xf5\x9f\x1e\x1c=\xdf\x19\x1ea\xb6\x1e#>\x10\xd3@\x8au\x91\x05T\xd4C\xd5:\x15Hl\xb1\xe7U-;\xaf\xf3-\xb4\x94u:\x0f\x83\x8d\x8f\xc1\xc4\xcb`\xf0\x08QE\x9a'\x05\x94\xe3\xcfc}\x1f=\xa9.\xf0T\xa6Y\xb9\xef\x08\xb7\x1f \xedBv{\xfc\xd7E\xe8:\xd9g/!\xff\x94\x8eo\xa7\xabi\x14&\x84\xcc\x88\x12\x1e\x8f]U)\x14Ps$@\xd7\x1e\xf4|\x0d\x01y=\xe3V\xa2Y\xcau_\xd9|T\x15sl\xb3\xf1m\xff\xa0P\xc5d%\xbc\xac\xe8l\xb4 \xde\x0c:\\\xc4\xd1\xf58\x18\xbc\xebn\x13\xa7j\xea\xd6\xf5:\x90\xc6B\xd3\xef\x80\xe9x \x0d\xb0\xba\xa0\x06}\x0f\xed\xd4\xe9-j\xc0\x02\x10;\x00l\x83\x07\xa7\xf3\xc2`\x13\x80\xcb.\x00\x9bm\x00F\xea\x80\x8bB\xd0\x91J\x88\xad\x00$>y\xf4\xa4\xc9(\xa8\xdd\x00$\xaen1pCU\x9b\xbd\xf4eT\xf2{\xeb\xd1n[\xec\xad[\x93\x9d\xb1\xb7\x0eu\x9bco]Y\xec\x8f\xbd\xf5i\xb0E\xf6\xd6\x9f\xd9.\xb1v\xe9c\x9f@W\x1b\x050;\x05\xda\xa9\x14\xc4f\x01\x97\xc4\xc4m\x17\xc0\xec\x17 \xe3\xea\x9aXP\xc3_pMwL\x15\xb9\xdc\xcab\x1at\x7f\xad\xe9\xefL\xf7\xab\x07[\xd6\x01\xee*\xd9o\x1c\xa1\xd4m\xb8\xa8R`\x9d\xfd\x0eC\x10\xce\xb8\x96\xa0\xe2l_5\xaa\x91\x88\x1c\x9e<\x03\x1d\xb1\xc6Q\x16v\x0b\xf2!H\xc59\"I\xd9\x1a\x91^\x1e\x88\xc9\x07\x8b\n^c\x7f\xc6\x9dP\xf6\xd7|!\xcf$l\x14Xw\xadk\xdf\xda6\x98\x93@\xd0q\x93\xed\xc0 \x90\x148&\x08\x84I\x82]D\xe5\x1f\xb8\x04\x95\x02\xab\xb8R`\xa3)\xd0\xe8\n\xbd\xd0\x96\x90\x95\xe3f\x7fC\xc6\xcc\xd7\xd9\xe5\xc9\xd7\x8f\xff\xb2\xba\n?\xfe\xf5\xe7\xd3\x9b\xc5\xd7?\x85O_\x7f\xf3v\xfd\xf5\xab\xec\xbf\x1f\x9c\xbe}<\xf9\xf5:\xfb\xf5i|\xf3\xfd\xd1\xfa\xf2\xfd\x9f\xe3w\xd9\xeb\xd7\xff}}|\xfc\xf1\xf2\xd9O\xbf\xbeY\x9c?xw|\xff\xf2\xe5\xe6iv\xff\xd9\xc3\xe3\x8f\xf1\x7f\xcf\xff\xf7\x9f/6\xdf\xfe\xe5\xc5\x8b\xc2\xed\xe1w\xd3C\xed\x905\xd7\xafD\x93\xb4y\xd3ublnF\x01F7\n\xb8\x88\xedp\xa7\x80E\xe6Z\x99\x16u\xad\x00`\xee\x15 \x8f\xd1O\x1a\xa2\xae\x16 \x0f\xbc\xb9\xc7,n\x17p\x89\n\xbb\x90\xf8\x8d\x0c\x8d\x02,\x12\xd0)\xff\xdc\xd2\xcf!\xfbH\x92\xcf)\xf7\xecR\xcfIE\xe8\x81\x92\x06\x97\x0d\xb8\xe6\x88\xbbn\xc0\xe9\xbe\x01\xd7\xc4\xbaN\xc8X\xa0x\xcf\xfdZ\xfd+\xb0\xef\xde\xdd.\x1e\xd8\xf7\x10l\xee\x1e\xd8w\xe7\xb8\xeb\x07\xf6\xdd\xad\xc3\x0d\x04\xfb\xee\xdf\xe2\x12\x82}\xf7mw\x0f\x81\xab{_7\x11\xe8Z\xdf\xdfU\x04&w\x11\xb8\xb4\x86]c\x18\\G\xe0\"\x02\x80\xcd\x85\x04&7\x12x\xe1\xad\xa2\x1d|0\xb5\xa6\xbf#\x1fL\x83\x05\x07K~\xb0\xe4+0X\xf2\xf8\x8f\x84\x8d\x0e\xae\xcd\x0e\x83%\xbf\x17y?X\xf2\xbf\xd1\x10\x06K\xfe\xf6\xfb\x1f,\xf9\xc1\x92w\xe2\xad\xa25d\xd9x\x05\xda\xb4>\xf5`1\xf4\x84\x19\x0d\x1eC;Ks\xb0\x81\xea0\xd8@\x05\x98\x82\xd0`\xe1b\xd8cY$R`\x1a(\xd4!\x04\xa8\x81\x82\xa7z\x981\\\xbd5\x07\xab\xa1\xa7\x1e\x8c\x81k\xe8\xa9\x03k\x10\x1b|;\xf1:\xf4)\x90\xf8\xad}[w[\xd9\xb7\x1e\xd8\x06Gp\x1b\xdc\\\x0b\x04\xce\x05\xe7\x86&\x11\x11z\xd8\xd4;\xb0\x06\xbd\x816q N\x1e\xdcb3\xff\xc8\xbd\x9c\x058E\xa8\x02\x17\xdd\x81N{\xe8\x8d\xfe\xb7URb\x8fA\xf2\x97|\xc5\x17\xf2\xd1\xe2\xfc_Q\xfc\x8e\xdf\xb08\xdfG\x1a\xf3\xe8lb\x91\xe7\xe8\xf4}L\xe3\x86I\xec]\xd3\x12de\x83\xddt\xc0\xa0\xf3\xbaV#\xfa\x92\x9e/(\xd7\xf1R\xecT\xb5\x98 y5\xe3\xea\xf7\xb0'r9M\x00\xcbt}\xd8GA\x1fL\xa4\xa0\xc9J\n\xccF\x94\xc1\x84\xea`\x91[\xaa\x069e\x8d\x85\xe9\x14\xd8\xaa\x03\xd1\xb1W\xea\x04\xa0\x05\xc7\xfae\xa5/i\xe7}\xcb\x12\xaf\xe7Z\xeb\x0f:\xa1\x1d5}\x02\x9e\x0f9\xf5\xf9\x88\x93\xb3\xe8Ce\xb4\x84\x87\x9b|\xefzk\x8f5\x99\xea \xd8\xd1\xec\xacc\xbd\x86\x80\xa3e\xf9(S\xad\x84\x88\xa3Q\xbd\x1e\x8d\xe9\x11&W\xcf\xbb\xc7\x97\xea\x0f/\xfd\xdew\x14\xa0\x8f))\x04\xcd\x87\x94\xca\xb6\xf5G\x94\xcc\x0f(\xf5\xfax\x92\xf6p\xd2%/jq\x94u\xbe\xc9\x82\xe1\xcb4\xa4\xb4\n'v\xae\xad\xd1\xba\xecv\x1a\x85\xc9&\x9b\x1c}\x9e\xfe:\xcb\xf8\xe6\xe3\x83\xeb\xec\xe1\xe7\xc5\xd5\xe2\xea\xf13>g\x0f\xc2\x8f7\x9f\xc3\x19\x0b?>Y?\x9e~\xbda\x8f\xb2\xc7l\xf3\xf9\xf1\xe2a\xfcl\x91l>.\x9e.\x9eM\x93GW\xcf\xa6\xd9<\xc7~\x1d\xa5A\xb8\x18o\xa2\x1b\x0f!pT\xd9\x93\xa5\xa7w\x13\x07Q\x1c\xa4\xe4 \x96X.\xf9\xa7\xf4\\b)\xb4\x1da\x8d7y\x03D\x04\xd6\xdfeH\x83te\x17RUF\xb0}Wv)\x7f#}\x99\xa4,\xcd\xec\x8c8\x0fB\x81\x92\xadV\xdbq\x87\xba\xb8\x07[\x9e\x1c\xd4E\x85QPT\xa4\xf9\xe8A U\xaf\x03\x9b$)\x0b\xd0\xfbO\xad\xf0\x1d\x84Q\x7f\x83\x0b\xa3\xb1\x90\x1e\xe3k\x9e\xd2\x8al\xbb\x90&\xd9d\x1d\xa4cg\x19\x13\x15\x0e\x9d\xf1M\x94\xe8\xf7\x95~\xdfZ$\x17\x13I\xcab\x07\xa1\xcesy\xd0\xc7NF6\x95EJ\xbd\xac.\x0c\xa1c\xfc-\x85\xdf\xf7:R\x89\x9d3y\xe4\xd2 \x1d\x94(=@w)\x84\xa3\xe7\xb3Z\x0dy\xe8PE\x98T\xd0d`\x0b\x1cu\xb9\xd7\x02\x01.\xeb<\x11\xfd\x14\x15\xe6\x1f\x81p\xd7Q\xea\xb0\x04\xa8<\x14\xd9U\xaa\xbf]'\xfe\xfb\x0b\xf6\x94\xedr\x1c6\xd9\xe4\xcb\xb3\xf4~e\xc1J\x7f^\xb0~\x0c\xc0\xed\x95\x86A\x15]q\xfd=\xd3\x86\xf4\xc8}h\xe3d\xc9b\xfd\xc4E5\xbfH\x96\xcf:\n\x83+bE\xbc`\xc6\xc3\xb4f\xa3Z>\xbe\xe1\x93$\xc0_\xa1\xd5\xbeM\xf84\x13\xc6\xefx\x1a\x85)\x9b\xa2\x01i\xad\xd1\x8c\xa7,X%\xceo'Q8\x1b\xe3\xa5\xd9\xcc2\xe0\xa0\xda8\x08\xd3\x98\x8d\xd3O\xaa\xda\xbe\xbe\xbf\x9bO\x99\x95x\x8a\xa8B\x16\n<\xc2\x04h;\x8e\x1d\x06\xa7\x9dU;$<\xfb\xfa\xc1W\x0f\x8e\xbezpt\xf9\xe0\xc1s\xf9\x7f\xff]\xa0\x94q\xd9\xa4uA\xa1\xd8\xf0\xc4\xb0\xdd~\xacZ\xa2k\xf6i\xdc\x0f\x96\xe9\x92\x85\x0b\xde\x03\xb2l3\x13\xc7\xe8V\xa5{L\xb4\xde\x059\xc8\xa2z'\x01(\xb2\xda/\x06B\x90)\x13\xb6b\x88o\x8a\xc4\x16\x88\xc9\xe6\xa6]\xd3\\3\x97\xbf\xb5\xae\x802\xd4\xde\x17[eGx\xaf\xe7\xde\xf6I|\x1e\xa6q\xb0o\x1fZ\x10\x06i\xc0Vcm\x19\xab\xd8\x10B\xfa~?\x8d\xb9\xa4\xae&\xd4\x1c\xed\xd6A\x88\xec0\xadA\xb9\x8e\xa7U\xa2\x11\x16\xd08\x7f:\xab\xd7\xbe1\xce\x13\xf9V\x9f\x9biV_\x98X\xb8e\xa2\xd5U\xa6\x89j\xbb\xaf\xde\xf1\xd9\xed\xd1+\x89\xa7\x9e-fIJj\xd1n\xff\xff\xffc>\x7f\x0e\x07\xff\xbf\xfb3>\x97\xeb\x14\x85\xc9\xfd*E\x0e\x1a\x14\x12;\x86~\xef\xdck\xa9\xa6\x91\x10\xb6\xf2s\xfb\x8a\xc1\x1e\x98J\xe9.Am\xe3g\xe5\xb9\xe8e\x90\xa4g\xe5\x8b\xb2\x042|\xe1\xe7\xa3\x84\xaf\xe6ci\x8e\xdeJ\x94\xfcKs\xbd\\\xcb\xc7\xaeL\x16\xeb\xefw\xee\xe7\xd9d\x15L\x7f\xe0\xf4\xed,?\xb1\xf1\xae\xfd\xbd\xda\x8b`\x11\x06\xe1\xc2k\xeb(\xc7&A=\xcaT\xc9q4\x9f'\xdc\xfe\xa1:n\x8f\xb30\x0d\xb4\x18~C\xe1& \x9f\xa9[X\x89\xe9\x80V\xb68g1[\x9f\xc8\xd3\x02}r\xd9$\xd90z\xa8V0\xc1\xee\x07\x0fO\xc6k\xf6\xa9\x94^\xc9\xaes\x0f\x0c\x07\x07\xb6%.gy\x91m6+\x0f\x86\xfa\xf7J\xa4P2z\xc4\xb2t9\xba>\x9a\xf0\x94\x1d\x8d$\xdf\xd0-Pq&]\xf3u$\x0e\xa61\x9b\xa62,\xb5\xac\xd9s\xac\xd2;\xde\xf1d\x13\x85 ]V\xe4i!\xc6\x9d\xa7\x00\xdf\x05\xe2\xd3q\x16\xa3\xcf* \x8ckN-\x10p\x0c\xef\xdf\xfdx?\xe6I\x94\xc5\xd3\"\xc7f\xc9R\xc8\xc2\xe0c\xc6W\xdb\xdc\x997\x0frb\x89~ \x9a\x8b\x7f7P%<\x0e\xd8*\xf8\xccg\x7fh\xfc\xb2\x89\xa34\x9aF+\x98d\xf39\x8fa\xcd\x93\x84-\xf8\x08.\x97A\x92\x8f\x19\xd6Y\x92\x82\xf4\xeb\x05!\xb0\x14V\x9c%i\x13S\x14r\xb8s\xff\x0e\x94\xfbE\xe0\xe0\xf2\x8e\n$|\xb1\xe6a\x9a\x0fN\xcc\xeb \x81\x0d\x13\x0b\x99%i\x03Q\xcc71Ox\xa8\xf5 \x9a\xce\xb3\xd5j\x0b\x1f3\xb6\x12\xf3\x9e)\xaa\xe4h\xe5\xfc\xef\xb2\x04\x82\xb0\xd9\xf4\x83\xe8\xec\xfe\"\x8a\x16+>\x92s\x9ed\xf3\xd1\xcb,\x96V\xf3\x87{j\xac\x12Y\xb2\x8c\xb2\xd5\x0c&\x1c\xc4d\x1bx\xa6,\x8c\xc2`\xcaV\x92\x99\x9b\xbd\xdc\xe5\xa3\xc5\xe8P\x90G\x9c\x0e\xe1\xce\xe8\x0e\x04 \x84Q*\x98\x8aoR>\xbb7\xfaC\xb3\xd1Y\x08\x1bA\xb0`\xca\x0f!\xe5b\x07dI\xc6\xc44\xd5\xcd\x8bM\xb0\x12cI#9\xc9I\x10\xb2x\x0bl\xb5\x92\xf3m\xe6*J\x06I\x97|\xdb\xec\x86\x7f\xda\xf0i\nA\ni\x04Y\"g'\xf0\x89e\xe5\x9f\xe4\xd2\x1c\x87\xdb\x11|\x1f\xdd\xf0k\x1e\x1f\xca\xfd\xf6\xfe\xdd\x8f \xdc,\x83\xe9\xb2\x81M \x10l\xd6\xe4\xb3\xe9\x92\xaf9|X\xa6\xe9\xe6\xc3\xa1\xfa\xdf\xe4\xc3!D1\x84Q\xfe\xeb\xa1\xe4\x94)\x0b\xf3\xf0\x88\x9ci\xc2S\xc86\x1a\xb9\xc5\x0c\xb5>x|\xcdc5\xd15\xdb$j\xd9\xe5H\xd3\xa8\xe0_\xa8\x1c\xb3@f\xe7\xacV\xd1M\xf2\\\xa3\xfe\x7f\xc0\xd9|76\xb1\\\x9b8\xba\x0ef|V\x0e_\xfc\x91%I\xb6\xe6\xb3\x91\xde\xfc8\x84\xef//\xcf\xe1\xbb\xd3K\x88\xc2\x82\xbd\xd5\x96\xd9\x06|5\x03\x06\x7fk2\xde\xe5v\xc3\x7f\xf9\xdb/\x0dd\xb9\xce\x17+\x93\xaf\xb2\x92\x98\x92~\x9b8\x9aeS\x0e,\x04\x1e\xc7Q<\xd2G\xb2\xd9\xac\x82)\xcb\xe7\x1cs\xc1#\xd1\x0d\x9f \xb2L\xd9T\xec\xc5(\xba\xca6\xf9Sm LX\xc2g\xf9\xa0\xb5\xa1\xbc\x7f\xf7\xa3\xecw\xc9\xae\xe5R\xaf+\xdc8S\xec\xc8\x8aa\x8a\x7f_G\xc1\x0cX\xa8_\x03R\x9d\xca\x0d\x16\xf3y\x14\xf3\xc3\xa2\x99\xc0\xc6\xd2`\x12\xac\x82t\x0b!\xe73\xb9\x84\x13\x0eR\x00\xc4\xd7|\xa6a\x8bBP\x9eb\xf9\xa9\xdc\x01#\xb8\xfb>\xe1\xc5\xc5E1_\xc1\x10b/+\x8e`![\xe8\xf3\x9b\xc4\\\xdax\x05\xba\xd1\xbd\xe6\xda\xbe\x89R\xfe\x1cR!\x07\xe7y\xd2\x16\x93#\xcd\xf7\xf44\x8bc\x1e\xa6\xab-\xb0k\x16\xac\xd8dUl\xaa\xa6d\x9c\xcf\x83i\xc0V\xa8\xec\x9dds\x88\xb9\x90\xa8\xfc\x10X8\x13;4\xef@f\x8dI\xb5Wr\xf8\x84/\x82P\xd8\xf6*}\x0c\xd9.#\xc5kl\x13$\xa3i\xb4\xd6\xe5\xcd\x85\xe4\xf4\x04\xa2t\xa9\xb6Q\xd8\xdc\xafp7W\xb5|\xbdI\xb7\xf9\xd6\xb8\x07kq4\x80\x89\xb6!\xe50\xc5p \x10F\x98\x10\xf4\x92 !\xd9\xf0i0\x0f\xa6\x90\xf05\x0b\xd3`\x9aT\x99\x16yB\xca\xa8(\x0b\xcbA\x18?\xb5\x1f\xec\x1a\xf4\xb5\xd8\x84\x13\x0eL\xb9y*jP\xd3{\xb9\na\x93\xe8\x9a\x17\x03\xd7\xd8O\xd2\xf7\x0f\xee\xbe?\x1c\x87\xdb\x0f\x85\xc2L\xc4\x96e\xf1$Hc\xc1\xf4\x961\x14\xb2\x8b\xad\xa2\xda\xfc%mY\x95\xecB\xc2H\x01\xa8\xc60\xd1\x0d\x80j?\x85N\xaf\xb1\xc2y\xc1|\xab`\"\x07\x96\xcb\xbd\x04\x92l\xb3\x89b\xa9'6lzu?\x0b\xc5\xff\x08\xed\xa0\xd6,\xd1\xb9\xbc\xa9\x0c\xa39d\xa9\xda\xd6\xc5\xd6\x91\xf9\xc2l6\x0b\xd4>*\xf3\x1d\xc5\xf0\xd2e4K\x8a\x81\x8b~\x14\xa1\xab\x18O\x95\x85\x0fG\xc2L\x9c^\xc9\x9d\x92\x0f\x8c\x95\x84\x0bB8\xf9\xd3\x9f4!\xfd*\x8a`\x1eE\xf0\x02F\xa3\xd1\xffl\xfc(\xbac\xe1\xb6\xf9g\x16nG\xa2\xa3Wq\xb4\xbe;\x8f\xa2{\xcd\x0fF\xa3\xa6\x04\x0e\xe6pW4{/\x87u\x19\xdd\xfd\xa3hw\x0f\xfe\xae\xc9\x1e\xbd\xed?\xb1\xb9>t\xcc\xf5\xcf\xec\x9a\xb5\x9a,\xbc\x90\xba^`\xf4\x9c[\x90\xdc}\x15E\xa3\xe9\x8a% :5\xd5\xb5\xf8T\x8d\xb8\xf2y\xb3\x97\xda\x9c\xcbI?rL\xfa|\x9b.\xa3P\x9b\xb6\xea\xf7U\x14\xdd\x1d\x8dF\xf7\xf4\xc5TS\xbe\x8b\xfc\"\x97Y\x92\x81B\x05\xd1\xe0L\x11\xe1\xe5\xe9\xc5\xc9\xbb\xb3\xf3\xcb\xb7\xef\xee5\x8f\xaa\n\xb1b\x04\x0c\xb5B\x8eM\xff\xb1c\xfa\xdfE\xcd\x99\xcb\xa9?\x7f\x01\x7f\xdcLF\xaf\xa2\xe8\xef\xa3\xd1\xe8\x9f\xcdOX\xb8=\x14f\x83\xf8n\xa3\x94\xe6k\x16'K\xb6\x12D\xc1\x06\xa8O\xbe\xd9\x8f\xd6I0ot\xf1>\\\xef:\x91C\x90\xcc&\xbf\xfa\x1f/ \x0cV\x08\x03a=\xd78\xe5R\x1e\x0b\xa7W\xa5\xdc(\x0c6\x98lw*\xb5\x90j7\xc1j%~\x98\xf19\xcbVR\xa7V\x91\x1d *\xf3\xbe8c\x8c\xe4\x0f\xc2\x888\x10\xf6c)]\x85\xe4\x15k#\xfe\xa0\xd6\xa7\x8a\xae\x14e\xe1j[\xd8\xc8\xda\x91\xa54O\x80\xcdS\xae4\xad<%\x1d\xdc?\xa8\"\xcb\x0d\xf4\xa2[e\x91\xe7\x9e\x0e\xb83\x8f\xa2\xd1\x84\xc5r\xc0\x9f\xeeoG\x9f\xef\xa8\xb9*\x9b\xb3i8\xcb\xee\xee\x88\xaf\x84X\xad\xfc\xf0\xe7\x8b\xb7o\xaa\xff\xfd\xe2\xc5\x8b\x17Mj\x8bov\xa72\xa5\xdb#\xb1\x15rE\xa7\xac\xd6,\xc9\xb5P\xcc\x17\xd9\x8a\xc5U,zc\xf1\xe1\x8c\xef\x94\xd4!\xf0\xf5\x84\xcff;uu\x98\xeb\xbd\xdaY\xae\xa2@\xe6r\xa2\x1f\xfeKL\xf5\x83:\xa4\xecTn\x95p\xa3bs=\xd7\x0c06\xbd\x12\xfbjg\x9e\xcf\x83\x15o\xca\xa9b\xf7\x9d\xf38\x89B\x84e\xf3S\xf2<\x88\x93t,)\xfd\x02\x8e\x9aX\xca\xcfd\xd1\x86\xfc\xab\x87v\x99\x08\x80\xf4vG\xce\xf8\xces\xb8\x83\xf1n}*#5\xe6;\x87:\x169\xda7l-0\xfd/5\xb4\xffD>\x13\xa3m|e\x1b\xf2\xd9<7\x1c\xebk\xa9\xd6\"H\xe0\x86\xafV_]\x85\xd1M(w\xd1\x92%\xc0`\x9a%i\xb4\xd6X\xb1\xce4\x87\xca\xe0ip\x92\xda\xde\x95\x0e\x05\x83\x84\x0b`\x8a=\xaa\xe8>H6-8e\x19\xadf\x8aM*\xbd\xcb\x13\x7f\xcea\x90\x9f\xb7s\x06\xabb\x92\xa8K\xae\x82\xbbb_\x16\x13\xd5\x8ez\x85\x8f\xe1\x97\xbf\xfdrOc\xc0\xf6\xab[G\x8e-\xb0\x9c\xae@t4zx\xf40\xb9\xa3-\x1b\x18mX\xcc\x7f&VO\xed\xee\xfc\xbf\xe5\x92\x16N9\xd9\xe2~\xde\x04\xde\x9d\x9f\xe4\x98\x94@\xa4\xf8\xe9\x92\xb6\x8e\xba=\x07\xd1R\xd4\xa5g\xf5F\xdb\x0f%\xbd:\xf6l\xae\xbd>\x9d{=\xba\xf7,\x0e\xbeN.\xbe\xfe\x9c|.7_KG_\xdf\xae>\x8b\xb3\xafow\x9f\xd1\xe1\xd7\xd9\xe5\xa7\xe1c\xa8\xd3\xafo\xb7_g\xc7_\xef\xae\xbfN\xce\xbf\xfe\xdd\x7f=:\x00\xfbv\x01\xf6\xe8\x04\xa4\xb8\x01{t\x04\x9a]\x81\xdd\x9c\x81\x1a2\xcc9Ht\x0fvu\x10j\xe8t\x87ak\x97\xa1\xe1\xddy\x8b*6:\x0e\xddZ\xba\xa5\xf3P\x17\\\x853\xb1\xe1>\xb4\x8f\xa0g\x17\"\xe6D\xec\xc5\x8d\xd8\xb3#Qw%vv&\xd6p\xa5\x9ac\xb1\x9bk\xd1\xe1o3\xba\x17 \x0eF\xd4\x13\xe2\xe1d\xc4\xdb\xff\x13\x9f{+W#u\xf2.w\xa3}\xa6N\x97\xa3\x97\xd3Q?bwt<:\\\x8f6\xe7\xa3\xdd\xfdh\xa4\n\xd5\x05\xe9vB\xean\xc8N\x8eH\x92+\xb2\x8d3\x12'\x85\xd3!\xd9\x9bK\xd2\xd0\x7f\x83\x93zuL\xf6\xee\x9a\xec\xd99\xd9\xaf{\xd2\xe2\xa0\xd4]\x94\xba\x93\xb2/7e\x8f\x8e\xca\xbe]\x95Tg%\xc1]IvX\xd2\\\x96\x88\xd3\x12sl\xd1][v\xc7%\xd9uIr^j\x83\xef\xd3\x81\xd9\xbb\x0b\xb3O'f\x9fn\xccn\xeb\xedte\xba\x9d\x99\x85;S\x80*wRz\x07\xe5QX.\xe9\xa7 I%a\xf3_\xf2\x16\x1b\xb6\x08\xc2\xca\xa5\x14hZ\xe6\xbb\x0f\x1a\xa9\x89\xe5\x9fsQX\xb8Fw\xaa\x02\xf55\xe2\x9eFY\xa2\xbe\x96'\x0c\xad2\"\xf2\xe9\xff\xa3y\xa0)\xf0\x17~\\\xf1\xcf\xfc\xa4\xcd\x92D\xb9 \xce\xd9\x82\xbf\xe3\x1f3\x9e\xa4#\xf5{\x03\xc9\xc7\x8c\x8b\xd3\xfe\x92Kt\x82\x04\x1c\xd6Q\x92\x02\x97\xe7Zy\x08\xae4AJ}:'T\xcb4\xcd\xdb\xa8)ig4\x89^\xceG\xfeC\xd5\xf1\x122\xbb\xf0pT\x8e\xe3\xf3F\xdb\xeaTU\x190\x89\xa4\xc9\xd97,\x81\x84\xa7\x87\x10\xa4I\xe1\xa0I \x0b\x15#\xcc\xd4\x19\xf9&\xc8\xcbE\xb9\xbd\xe9I\x0bwz\x82\xf8\xd3\x8bq^\x04\xe1\xb4\xbc\x93\xf2U2\xbb\x82\x07\xa3\xc7\x8fl\xeev\x95d\xeb\xedl\xdfT\xb2\xa7\xb5\xa9n\xac\x89\xbb\xb9\x12\xdd\xa5\xec*\xf0\xd8\x1b\xd6\\lh\xc5Ux^v\x07\\\xe6\x1c\xedvH\x9d\xf9\xda\xfd\xa0Er\xb7}\x11\xd7X\x01\xe11\n\xab\xe7\xa9\xdf\xef\xceO\xf4\x90\xd1\x84%|$%O%\x97\xbf\xdc\xbdd\x0ev\xdf\xc1@ejmv5\xa9\x9a\x0bS\x96\xcb\x85\x98\xa7Y\x1c\xaa:oj|\xb96(%\xaf\x14\xb7\x8b \xac\xe0\x90\xd3\x12J\xc9.SG\xf0V\x18\xedQ(\xfd2\xea\xee\x0dD\xb1\x18Bum\xcb\xa0F\xc2\xd3b\xa3\x11.\xea\x18\xd9\xc5<\xf7|\x08r\xfaa\xb6\xe6q0-\xfe&m\x9c)\x0b\xcb\xbaw7K\x1e\x16\xc4\xca\xc2R&W\x0fTg\x12\xd5\x8a'\xc9n\xd6\xca\xf3\x98%\x82:W\xdcF\x82|\xe2\x15|u\x12\xb4\xbe|as\xd1I\xa4\x05k\x9b\x14\x90R\xb0U\xce\xc87B\xb6\xaa\xc5\x1e\x95[m\xf7\x87\xb39\xac\xf8<\xcd\xfd\xabA\xaa\x8c\xc4\xe2\xa8(=\xef\x8a\xe9T\x07\x82\x14\x93-p6]\x02\xdbl\x8ayW\xf4Zs\xf6\xcd\xda\x87\xe6yV\x90\x88\xd9\xca\x15\x8e \x8d3.\x140\x04\xe1,\x98\xb2\x94\x97\xb1\xa8|v\xf2Cm]\x82p\xba\xcaf\xb5\xa3\x1fS=\x94\x01\xbe\x06%e\xf8\xb6\xa2\xc8\x85\xd8\xa8[^\xef\xcf\x92\x1a\xed\x1a\x03\x96\xa7]!z\xf84-\x98q\xc7\xbd\x82AG9\xfb\x05\x8b0\x8a\xf3O\xea\xdb\xbc\x8a^\xd1\xa0 q\xcc\xafy\x9ch\x17r\xe8\xe4\xcd\x114I\x1bT\x8c\x98\x98\x1b\xf8H`\xe5\xf2\"zug\xc63\x1e\xd7]\x9cF#\xc1\xb4\xc3\x8bS\xc0E\xb4.\xc4\xacn\xe1\xbf\x8a\"H\xa25\x1f\x97\xaa\x1e=EVDuu\xe1\xaa\x07Ie\xbb7\x0d\xd7j\xc3\xa0\xd8J\xe5!)\x08a!\xb4E\x9c\x7f\x91\x0fY]\x13*eH\x8ej\xd7\xaf8\xee<'\xa8\x16O\xebH7\xde\xe9\n\x063\xd8;\x1b\xeb\x1e\x86:*\x1fh\xd2\x11\x1b\xba\x97Qn4\xc3w\xf8:X\xe0\x0dV\xaaX#&^\xca?)\x99\xe9f\xc9\xd5\xe91G4\x8db\xf5\x91<\xa17xO:\x03\xa4\xc6\xab\xce\xaa\xdc\x88\xf5M\x95\xf7\xa4\xed\xaa\x98o\xb8\x0cd|\xcb\xe2\x92d\xe6}\x95\xa3\x91\xeb\xdb\xdcR\xcd\x13\xf6q\xe8q_T\xcbzA\xf9\xc2,\xd7z\xcaq\xc1\xb3[\xfa\xc9ki\x9f\xd1\x82g\xb0`\xeeTB\xeeJ\xeb\xac\x95]\x96J\x05[3|\xe6\x9d\xa9\xd21GE.r\x9d(5\xf5\xd91/E\xba\xc9k\xd8\xab\xc8;\xe6\xa2 \xb9'\xfde\x9dt\xc87\xe91\xd3\xa4e\x8eI\x9f\xd9%\xbd\xe4\x95\xf4\x97Q\xd2K.\x89=\x8b\xa4}\xfe\x08\x9a/\xd2%SD\xcb\x0cI]9!\xdd\xb2A\x1a\xd9\x1f-\xf2>\xec\x95.\x14\xb8\x0f\xee5\xdd\xd42\xb3\x03\xbd\x16\x96\x969\x1dx\x7f}\xe4qTK\xc5\x97\x19\x1c\x1ds7\xbagm\xd4TM\xc7\x1c\x8d\x9c\x8c\x05\xb6\xb6\x19\x19\xc6t\x04$\x0b\xc3\x9a\x7fQ\x0f\xf7\xd2r.\xeam\xfe\xd9\x9c\x8bw\x86\x85k2\xb6\xac\n|\xfc\xd6L\nb\x0e\xc5.\\\xd6!o\xc2\x981\x81\xe7J\x98\xb2$\xb4YR2#l9\x11\xd5l\x88\x96y\x10\x8e\x0c\x08\xbf\xdc\x87F\xd6\x81-\xdf\xa1\x87L\x87Fo\xe5J\xf7\x96\xd7\xd0cFCo\xb9\x0c}e1\xa0\xf9\x0b\xd5\x80p5g\xa1{\xb6B/y\n\xfde(\xb8s\x13\xacY \x84|\x04W&B-\x8c_\xc7N\x8dC\x9b\xf3\x0e\x08\x19\x07\x8e\\\x83rx}\xe5\x17\xf4\x98Y\xd0ONA?\xd9\x04\xedV\xce\x9aA`\xcb\x1d\x90n\x92x3\x1d-X\xcao\xd8v\x14ga\x1a\xac\xf9\xe8T\x9c\x80\xc8\xde\x12\xbe\xfb\x1ap\x1bu\x1a\xcd\x1cu\x16wVl\x10\xa6\x8f\x8a'Js\nZqkE\xb4\xd3\xe1\x1aT\x0d\xfaq\x17)h\xef4\xd2P\x0d\xd7\xa0\xda\xb9\x98\x10j\x0d\xd7\xa0\xfc\x1dR\n:\xb8\xa5\n\x04\xbd9\xa7\x14\xb4tQ\x95\xa3\xe9\xcdQ\xa5\xa0\x17w\x95\x82\xfe\x9cV\nzq])\x18\xaeAi\x9fus|i\xe8\x86kP\xc35\xa8\xe1\x1a\x94\xf6\xc3p\x0d\xaa\x02\xc35\xa8\xe1\x1a\xd4p\x0d\xaa\x8e\xaeG\xa7\xa1\x82\xde\\\x87\n\xfar *\x18\xaeA\x0d\xd7\xa0\x9c\xee\xc8\x1c\x8f\xdb)\x99\x7f8\\\x83\xfa\xb7\xba\x06U\xe66\x86WeV\xe3K\x1eF\xeb\xf7\xa1\xc7\xdb\xb0\x8dr\xfe\xe8\xe1\xa2f\xb9\xcb\x06\xbbUU\x0b\x92\xef\x9c\xaa\xefj\x11\\\xf30\xff:\x0b\x83Tz\x91 ci\xb4\xbeWh\x17\xfei\x13\x85\xc8\x03\xf7\x16\x97))i\xbb\xc0[\x1d\xa6|\xf8[\x0c\xee\xe8\xc1\xeew\xc9\xa1Q\xc8\x95\xe7\xae\x82!fA\xae2&,\xe1c5\x0d\x99\x07\xad2o\xc5\xbf\xb9\xd0#\x95\xb9\x96\xc4?H\xd4\xbc\xab\x08\x8frR\xbc\x80\xa3\xffSv\xbf\xc3]\xfdT\xba\xdbr)[\xed^\x9c\x0c\x04\xf9v\xfe%\xf9\x1c\x908\xb3\x95]\x8b\x8f\x0e\xc4G\xd5\xa7\xf2\x9a\xe7\xe3\xb2\xff\x17\xf0T\xec\xd2,y\x0eG Z\x89\xe1=\xf8?O\x1b\xcb\xc4V\x01K\xbc\x9fBBY\xa9\xb8\xb5\xa70\xaa\x8b\x05\xab \x91\xe3\xce\x99\xa8\xf8\xad\xb89Ra$\x89\x06\xcf\xfd\xdcQ\xa0\xb2\xe6L\xe0\xcc\xa6i\xf3\xd8\xc7\x14\xd2\xea\x16(\x12\x96\xb3\x9c\x88\xf9\xd2\x07S\xf5\x0c\xe8\xc8\xb0\xe1^\xf3\x94\xcdX\xca<\xf6[bz\x04\xb4\xe1\xed\x0f\xa3\xf5X\x8c\xa6\x1d\xdd\xc9\x1e\x7f\xdf\xf7<\\\x8e\x84N\xf2A\xc3VgD\x05\xba\xd4P\x80\xcb\x0e\x05\xb8\x04Q\xe0\x9aQwi\xa2\xa0\xa3L\xc1)\xadw\xe3!i\x14t\x947\x1a>%\x7f\x0c^9_\xd9\xa3@\x93@\n\xb0\xfd\xa0@\xdb\x15\xd5\x06(_\xf7 \x99\x14\x98oSu\x92R\x05r\x9a\xac\xaa\xcd\xa9\"K\x9a\x1b\xb3\x98aUw\x89\xe9\xe5}\xc34*\xef\xb1 \xce\xf01\x14j;I4n\xf6-\xff\xa6X\xed\xee.B%~\xd9\x91Ire\xc13\x15|/\xe0A\xc9\"\xb3 \xd9\xac\x98\xebR\x86yY\xf2\xf6\xe5\x1d\xa7\\de\x8b\x05OR>\xcb\x87(\x17\xa7\x1c\xa6\xde\\]0\x98\xae\x021\xbfbhB\xe0\xf9\x8c\xeb\x00\xbf\xc3s\xd0\\\xd1\x03)I\xab\x17qkaC\xc1\x05p\x97/\x9e\xc3\x89D\x04\xc7bK\x15X\x92\xedz\x12\xb5O\xf9W\xcdwW\xe2D_\xf9\xdf\x8a\xf0^\xb2\x14'\x86(\x04\xfe\xa9\x88\\\xc8\xd1\x1c_\xbe}}O\xc5c+\x08\xa7\xf5\xb3d\xce\x03\x89<\x95\xabNr\x12w\xbc\xeeT\xe8j\xc2\xde\xcb[0\x8a \xe0\xf9\xe0T\xc2\xc3\xd9\x98\x87l\x82\xbcQ\xfe[jvmH\xd5\xef\x9b\x17\xdd\xecJ\xf3\x82\x87\xb3S\x85N\x05/\x85\x14\x81R\xdf\xb1\x1a\x0d\xf2\xa7\xd8\xe1\xee\xcd\x92\xcb\x10\x0c\xd3'\x01AR\xd7$\x02\x81h\xbd\x93\x01\xca\xaf4\xb6Q\xb7:\x89\xda\xf0i\x0fR\x89E\xd7\x1f\xa4\xaa\xb1\x82*\x01\xb0Z}\xab\x1e\xc8\xf4\xbf~\x9f\xbf\xac\xf9E\x99|^\xaf\xb4\xd9\x94\xdf\x89\xe2\x02Ed\x96K\x8e\xdc\xec\xa8\xe95\x16\xced\x08Hv\xdc\xf0\xd8\xbey{y\xfa\\:\xc0\xd4\xcf\xb9\xb7)\x90A\xa3\xb30\xcd}\x05e\xa0\xad\xe60P>\xc1:'\x05\x8b\x90\xa5Y\xcc\x13y\xcf+\x88\x95\x03s\x11-\"yX\xdf)\xd3\xda\xd4\x8a\x85*\xc4`\xf9\xdf\xd1\\e0\xc8\xe4\x83 ,5\xc1P~\x84v\xa3\x11\xfcn5\xca\xb1\x0c\xe5G\xca\xf2#\xba\xec\x01BY\x86J\xb3\x1c\xdb\xbb\xf3\x93b\x90H\xa1\x86\xa6\xc8\xcb\x1b\xb7\x15wMiG\xe2dD\x88\x19V\x9d\xfcD\xbdYx\xf5 \xba\xfa\x15\\4\xb1e\xe1\x94\xc6\x92Q\xb8$ob+\xfb\xae\xb3\x864\xe5\x0b\xcb\xcb\x9bA\xd65\xf7\n\xda\x08o\xd8\x9c\xbd{\xf1\x0d.\x170\xe8`0\x1d2\x0d\xba\x18,\xfa\x18L:\x19l\xa2\xachgw^@\x07\x97\x0c\x8a\x0cq\xe3\xee\xc0\xe4\x9a\x01\xb0\xbbg\xc0\xe1\xa2\x01\xe2L\xfbr\xd5@;w\x0d\x8a\xc7\xea\x16\xde\x81\xb7\xdb\x06:\xbanP\x84\xa5\xfb\xd8\xe0\xbe\x81\xd6.\x1c0\xbbq\xc0\xb2\xc7\x14\x18\xdc9\xe0\xde\x1f\xbd\xb9u\xc0a\xddB\x1f\xee\x1d\xf0v\xf1\x00\xf4\xec\xe6\x01\xcd\xd5\x036*\xdbwe\x17\xb7O\x03U\x85\xeb\x1e\xd4XKs\xff\x00y\xbc\xda\x12vt\x05\x81\xc3\x1d\x04\x9aK\x08\xc8cu\xba\x86\x00\xfaq\x0f\x01\xe2\"\x02\xf205\x16\xe8\xec.j\xe0\x93\xc9\xfc\xd3f\xfa\x01\xddm\x04v\xd7\x11Xy\xc4\xdf\x85\x04\x98\x1b\xc9j\x99\xa1\x16\x93\xd5>\xab\xb6\xbe_k\xeei\xc7\xcb\xb6Igkm\xef\xee\x0b\x83]g\xe5Q\x83mg\xd3<\xd6 \x02j\xe1\xd9m<\x8b\x95\xe7\xd4c\xaem\xb6\xfb\xaaG[\xcfa\xed\xd9\xed=\xb7\xc5\xe7\xb6\xf9\xa8\xb3\xee\xd3\xee\xeb\xcf\xf2#\xdb~-\xad\xbf6\xf6\x9fk\xa0$\x0b\xb0\x8b\x0dh\xb5\x02]v\xa0\xd5\x12$\xec\xa1^\xadA\x971\x01}Y\x84ml\xc2=X\x85\x98]h\xa5\xb9k\xef\xf6h\x1dZ\xecC\x83\x85H\x1f9\xb2\xb0=\xd8\x89nK\x11\xb3\x15\xe9\xa3&\xd9\x8b\xfdY\x8c\xb8\xcdH\x1f.\xc2\x1e\xed-G\x0dU%\xf0\x88\xd9\x8e~\xd6\xa3\xd3~\xb4\xf3O;\x1b\x12\xb5\"\xb5\xaejT,\xcc\xb1\xdd\x15\x151-\xc5h\x10\x84J\xf7\n\x81\"\xf7|\x1e\xb4\x88\xf9\"HR\x1e\xd7\xab\xdf\x88.\x87P\xc6\x10\xca\xb8\xc5P\x06~\x16\xf1<\x07%-\x0fB=UO\xf7\xe0f\x1bR\x06v\xed\xf4\xb4\x01 \xc8\xfd>\xd3\x07\xa0<\x125S\x08\x00K#P\x9f\xdbR \xc08\xb9\xda\xb4Z\xa5\x14X\xf7C\xa3\xd8z\x15\xb3\xbe\x19\xcaz\xe3\x9f\xee\x8b>\xaa\xec)G`e\xfe\x8bMN\x96!\x8d\x01\xd3\xdf=\xc4\x02\xfb\x8e\x06R\xe3\x81\xda\xd4\x9ai\x0cI\xb1\xf4CBC\x0e\x83\x15P\x83\xdb\xb6\x02\x8c\xb2\xa8\xc6S\xf5\xb2\xce\xca\x94\xceb)\nsd\x85@,\x06*\xf6\xa5zv\xe5 A\xb8\xde.\x1f\xb3\xcdf\xb5};\xf7\x16\x8bM\x11\xe4\xc1\xe6\x88\xac3\xb0\xc4\x90\xed\x80\xb1Qc\xc9(\xe9\x0eE\x1b\xbf|\x87K\xb1\x1dTSo\xfeHd\xb3Ai~yJ3\x17\xa5j\x81Je\xa9\xfe+\xf7\x91H\xe5\x987p\xea\xc6\x1auZ(\xcaJk\x87/\xc2C\xc6\x0c\xaa\xf4__\x956\x07j\x92I\x14\x01Xi\x96c\xd3\x0e\xd1\x06IX9\xc1\x91\x85_C0!\xab\xe4\x9b\xd6]2`\xc7\x03\xe5\xee\x00\xa9\xd0\xd5N\x8d\xd5\x17F\x8a\xe9\x0ba\xd7\xe3\xbcq\xb3\xa1\xf2 >\xeb\x8e\"\xb7?aK\x11\xb3U2\xa6<\x9c\xf1x\x1d\x84iI\xd1\xefx\xfa\xed*\x9a^}\xbb\xfd\x9e\x07\x8be\xea\xadZ'\xa2\xf58\xd0\x98\x87$\x18\x97,Yz\xca\x90\x86P\xdc\xb08\x1d'<\x1d/9\x9b\xf1\x18C\x86\xf8l\xcc\x1e\x1bD\xacA\x89\xc9\x14p\xb5\x05[\xf5)\x82m\x9a@\x90\xff\xe7,N\x13\x9e~/g\xfc\x87\xc6\x8fr5\xcf^VW\xa7\xdd\xd2\xf4C\xcf\xbc\x90\x1aB\x015\\\xe5y\x97\xc3\x94\x9es\x03\xa5Z\xe5\x044&_\x05+\xfd\xc1\xae\xb2\x14\xb0\xcdf?\xa8]N5\x0e\xec:\x16h\xd5~V\xd2Zl\xfb\xc6\xb7\xe2O=w/k&\xb24\x8a\x93\x9e\x117\xe75\x8fe^\x01\x17r \xa2,\xddd\xe9\xeeo\x9b\x98_\xa3\xe2S\x9e\xbc\xf66\xc6R\xa2\xf7\x8c\x97m6=c\x94\xfc\x97\x1f\xcdzF\xcd\xaf\x83\x19\x0f\xa7\xbcg\xb4\xe5\xfa\xef\xd4&b\x7f\x08A\x14%<\x1e\xb3\xd9,\xe6\x891g\xd1\xb7\xff\x9a\x92W\x1b\xbe\xe6\xa2\xd8yZ\xa390\xb8,\x0d\xf7|\xf3)\xe9Z\x0b\xae\xd5.\xf3@;k-\xfdd\x9c!\x9e8fL\x1as\x08F\xeb\xc2\xb8-\xa0\xcbO\x89J\xe8(\x8a^IcB\x9d~\x94\xd9\xf0_\x8aP#u\xaa\xf9\xd3\x11Ro\xb18\x89\xc9r\xdb\xab\x95\x98<\xc8\xe7\nY\xcc\x95\xdc\x19\x01\xfc\xcc\x0fb\x0e\xbffI\nl\x11s.\xec\x1fc\xa9c\x95\xc3(\xcb\x8a\xa1\xfd\xc9,\x995ga>z5\xc4\xe3\xcd\xe6{\x96,a\x16qU\xa27\x7f\xe4Ut\x92p1,\xf4R\xc2Kav\xd5\xaa\xbf\xc9\x07}\xe7\xcabby}\xd3\x1c\xd7\xacf\xe4U\xd0\x15\xbb\xab3\xeb\xe0\x88\xa0\x1b\xff\x18M\x04\x97\x810\xcb\x94q\xc9\xc7\xd7Q\xca\xc7\xe6\xc1)p\x1a$\xee\x1e\x05\xc8\xbe\x98\xf9wRG@\xec\x0c\nt\xd6/\x9c;\xb1\n<\xcc\x0c9\xd4U\xf8\n.\xce\xbe{s\xfar\xfc\xfa\xe2\xbb\xf1\xe5_\xcfO\xc7\xef\xdf\xfc\xf0\xe6\xed\xcfoZ\xb4<\x7fw\xfa\xd3\xdb\xcb\xd3v-O\xde\xbe~}v\xd9\xaa\xed\xdb\xf3\xb7\x17\xc7?:\x9a\xe6\xf9\n\xcf[\xce\xd7-\xc6\xeap\x11,B>{\x9d,.\xf3\x1a\x81\xaa\x84\xbd\xcc\xa0\x95?U\xcb\xa6\xe2\x02\xa8\x0e\xa5fC\x85Q\x03\x8ck\xf3\x1c~\x8aR\xe4\xd1\x00\x12\x06E\xe7\xe7p.\xf5([\xd9\xd1\x98\x0eeu\xf0`h\x8a\x81\xaf \x8e\xb2\x10\xcd\xb7\xa9\x02\xedT\xa1\xa0\xd2u\xf9\x18 \x0e\xe6\x13^\x1d\x88\xb2\x03<\xe4\x078\x0f8;\xf0 ;\xb84|\x13H\xa7\xc6:xP\x03<)\"\xc0q\xbe\xac\x83\x0f_\x14@g\xcd\x02\xa8\x0b\x05\xfe\x8b\x05\xbe\x0bF<\xb3\xa2M\xf0\x13l\xf3\xd35OR\xb66\xf8\xd8*\x1f\xd2'\xear\xb7\xd4\xa1<\xd4\x99M\xff:\xb4\x18\x89\x93\xd4\xbbA\x04\xe1\x8c\x7f\xa2\x0d\x81\xc6\x87t\xf9TF\x19h\xdd\xf7I\x01\x1f\x15*\xb4T=\xf3[\x9c\xda\xa3\x94\x1f\xe6\x0f\x8e\xac\x03\xf5\x08\x8a\xfa\xa74\xd6\xac\x08\xe5\xe9\x7fw\xb6\x17c\xb6\xeb\xd1\x8a\xbe5}\"-\xc4\xc9`!\xd2[\x0e\x16\xe2\x0e\x06\x0bq\xb0\x10m@\x94\x1d\xe0!?\xc0\xc3\xf0\xf0 ;\xd0u\x80\x82\xc1B$\x00u\xa1\xc0\x7f\xb1\xc0w\xc1\x06\x0bQ\x83\x16#q\x92z\xb0\x10\xe9*\xf4_\xc2B\x94be|\x1d\xa5A\xb8\x18\xcb\x9b\xf6nk\xd1IP\x9a(\xd9\xf1\xd2\xed\xf6K\xda\xca\x9e=\xba\xb60\x95o^\x16\x8ed\xc1<\xa7\xb9\x1by\xe7v/\x1c\xcb*LS\x12\xd0\x88.7\xd3\xd2\x9bH\xe0\x98\xaf\x82\xa9Xg\xc9i\x06\x9eX \x83g\xac\xee\x96\x8eY\x9a\xb2\xe9\xd5m\xb9\xb3+#\x1c[ri\x14\x10\xfa\x04b\xbfP\x12\x8a\xa8\xed\x89}\x83G\xff`H\x81\xc2\xc1c\x00\xe09\x08\xb0%Q\xe1@M\xad\xc2\xc1s.\xd0b>`O\xce\xc2\x81(\x00\x9aP\x08\x04c\"\x17\x0e\xc6\xf4.\x1cnspT\xd1\xd5\x04Z\xda\x18\x19\x1d\x9e^F=y\x16\xe0H:\xc3\x81\x9a\x8aFF\x88\xa5\xac\xb9\x13\xd4p\xa0\xa6\xad\xe1`Nf\xc3\xc1\x9b\xf1h'\xe8\x02\xbc\xd1Su~\x15\xf0\xd49\x1c:\x0c\xc8e\x12\xd4\xc1\x91|\x87\xc3-\xc9N\x9fs\x1e\xb4#\x1a\xd0M\xf0:\xb48\xa8\x17\xd0\x82z\xd0\x92\x82\xe0{\x80/\xc0\xe7\x00\xd5\x04\xff\x9dQ\x80\xef\x82C\xfbE\x87\xb6\x0b\xdf\xea\xc0_\x80\xc7\xc1\xbf\x00w\xca#\x0e-\xe8\xd2\x82\x1e\xf4\xa4I\x1c,\xa9\x948\xdc\xc6\xb4\x9c\x89\x8e8\xdc\xc6\xd0\xcc7\xc9\xcc@\xcd\xfc$#4%\xd8\xeb@\xcb\x1b\xc5\xe16\xc8\xe9\xca<\xc5\xe16Ff\xce]\xc5\xe16\xc6D\xc8~\xc5\xe16\x06\xe7\xc8\x9f\xc5\xe16\x06F\xcb\xc0\xc5\xc1\x9d\x97\x8b\xc3\xfe\xe7\xd5\xe6t\xe6\x93\x00LBhJ\x12\xc6A)Q\n =-4_\xcb\xec\x0b<\x9b\x90\xa2~\x05\xb41\x0e\xe9^\xf6\x02\x86C\x89\xc7vT0\x1cJ\x8c\xe0\xbf%\n\xf0]ph\xbf\xe8\xd0v\xe1o\xfbP\xb2\xbb\x91M\xa5\x8c\xa2\x88\xb9,\xaf\x0e\xd6B\xbd:\xb4b\xe0v\xec[H\xa6\xf1|\xc5\x90Z\xa16h\xcd\x18\xb4\x8c\xa4:|\x05\xdf\xfe\xf8\xf6\xe4\x87\xf1\xd9\xcb\xf1\xab\x1f\x8f\xbf#f\xeb4\xa1\x89\xe5\xf8\xdb\x8b\xd37\xeed\xa3:4\x91\x103\x96\xea\xd0D\xf2\xe6\xcc\x95\xb8T\x872\x8d\xa9;Y\xfcOa\n\xd4&\x9b\xbdZ\xb1E\xa5\xf6\xaf\xaa\x84\xf0\xedj\x1a]\x9d\xbd\xf4\xf2++(\xb7#\x04*:\xebj\xb0\x03\xef\xe8~\x1dZ\xf3sk1G\x88\xa1\xea\xd0y\x98~NU\x05\xe4t\x81:t\x1e\xab\x17I\xdb\xd8\xf1\nN\xa49}\x11,T\x86\x9e\xb0=\x8a\x90\x82\xcc@(\xaedy\xa0\x0cB`9^\xb79\xdfn\xec\n{\xfdBY\x19\xdd\x96\xb7\xd5\xcc\x05\x04t\xb8aI~\xacH\xd5\xad\xa6\xd9\xd94\xfb\x9a`W\x93\xe5\"]\x1a\x92\x95\x05\x91\x82\n<\xc4 Y5\x90'\x0f^\x04\x00_E\xe0E\x08\xf0#\x06\xf8\x8b\xfd\xfd\x0e\xc7G\xc8S\xc5\xbb\x10\xdb\x04t\xad\x05\xbb\x9fd\xf2\xa2\x1fM>(h!\xc0\xf70\x16?aM\x1c\x00\xb1k\x8ag\xcf\xb3G\x97\xd7\x8e\xea@\xfaQ(\x8c\x13y7\xe1X^Mp\xdd\x90PN #\xbe\xca]\x1a\x96\xa6|\xbd\x91\xb7#\xd2\x08\xd6A\xb2\xe2l&\x1f\x15\\,\xd3\xfc\xad\xad\xaa\x07\xa9\x92\x0eV'\x94Q\xe0\x99\x85[\xef\xc5!\x0dQd\x85\x8fPUV\x8b\x0c\x0fU!Q\x18\xaaB\xd6\xc0\x16\x8d\xb4YS\xfb\xaa\xcaE\x8a\x0f\x12\x88g\x8f\xf9\xf9F\xf7<\xe3x\x9e\x11;zl\xaeU\x14\xae\xb6\xfe\xce\xf0\x19- F\x0e}\x11\x96\x8a\xc0\xe5\x0e\xf5\xe6\xd1\x89]\xad9\xc3N\x1e=\x19\xa6S\xd3\x9b\xd48\x909\xbacW\xc3\xe4\x88\x8d!\x1a\xd3@\x87\xc4f\xf0\xfeM%\xe3\xe9/\x0861\xc0\xbb\xf3\x13\xec \x18c\xc9\xfa\x1f\x05{+\x1cC\xc1\xfa\xa1`\xbd\x84\x9e\xe89\x14\xac\xd7\xc0\x81\xda}X\xa0\xdd<\x84\xa1`\xbde)z?\x93\x0c\x05\xeb%\x0cG\x13\x1d\x08F[\xd7\xa3\x89\xfb\xf6\x16\x89\x13\xd1\x11\xd2\xef^\x0d\x05\xeb\xfb\x1d\xa3\xeb\xdaP[\xbcC\xc1z\x00\xdau\x19\xf7\xc5\x98v\xfd\x0f\x05\xeb-\x0b\xe3\xb6\x80\x86\x82\xf5C\xc1z\xab\x810\x14\xac\xaf\x7f\xe32Q\x14\xd0\x92\xff\x87r\xa4\xb4\xf9\xba\xc5X\x1d\x86r\xa4\xee\x8c \xf0ch\x8a\x81\xaf\x80t1\x91v\xaaP`\x0b7\xd5\x81z\x01\x91(;\xc0C~\x80\xf3\x80\xb3\x03\x0f\xb2\x83K\xc37\x81tj\xac\x83\x075\xc0\x93\"\x02\xbc.\x0e\xfa\xf0E\x01t\xd6,\x80\xbaP\xe0\xbfX\xe0\xbb`\xc43+\xda\x84r\x01\xd0\x19\xc6(?\xa4O\xd4\xe5n\xa9\x039jS@\x8b\x918I=\x94#\xa5\xab\xd0\x7f\x89r\xa4C\xc1z\xdf\x96\x83\x85\xb8\x83\xc1B\x1c,D\x1b\x10e\x07x\xc8\x0f\xf00<<\xc8\x0et\x1d\xa0`\xb0\x10 @](\xf0_,\xf0]\xb0\xc1B\xd4\xa0\xc5H\x9c\xa4\x1e,D\xba\n\xfd\x97\xb0\x10\x7f\xc3\xd4\xe8\xa1`\xbd\x0eC\xc1\xfa\xa1`\xbd\xeb;\xaf\x01\x80\xe7 `(X\xaf\x80(\x00\x9aP\x08\x04\xaf\x9a\xf0C\xc1z7\x0c\x05\xebq\xa0\xa6\xad\xe10\x14\xac\xb7C\x87\x01\xb9L\x82:\x0c\x05\xeb\xa9&x\x1dZ\x1c\xd4\x0bhA=hIA\xf0=\xc0\x17\xe0s\x80j\x82\xff\xce(\xc0w\xc1\xa1\xfd\xa2C\xdb\x85ou\xe0/\xc0\xe3\xe0_\x80;\xe5\x11\x87\x16tiA\x0fz\xd2$\x0eC\xc1z\xbf\xa1\xf9]\nW@\xcd\xfc$#\xa4\x17t\xa3\xe5\x8d\xe2p\x1b\xe4te\x9e\xe2p\x1b#\x1b\n\xd6{\x0en(X_\x81\xfd\xcf\xab\xcd\xe9\xcc'\x01\x98\x84p(X\x8f\x83\xbf\x05F\x8a\xfa\x15\xd0\xc68\xa4{\xd9\x0b\x18\x0e%\x1e\xdbQ\xc1p(1\x82\xff\x96(\xc0w\xc1\xa1\xfd\xa2C\xdb\x85\xbf\xedC\xc9P\xb0\xdeY\x90\x02\x87\xd6\x8cA\xcbH\xaa\x83oI\x0b\x1c<\x0b]\xe0\xe0Y\xfe\x02\x07zQ\x0c\x1cZ\x95\xca\xc0\xc1\xff\x14\xa6\x80Xq\xc3\x13+\xa9>\x07\x0e\xde\xd1\xfd:\xb4\xe6\xe7\xd6b\x8e\x10C\xd5\xa1\xf30\xfd\x9c\xaa\n\xc8\xe9\x02u\xe8\xf5\xd2q>\x9a\x8dVH\xb3\x00?M\xee\xa1\xc5=f\xa7\xc0g\x8e\n\xbce\\\xab\xcd\xd8b#\x92\x0bq\x16\xe0M,hE0\xf0-\xd0Y@+\xc2A;\xe2\x81\x7f\xe1\xce\x02nw\x98m\xac\x06jaO\x0f\x94=Tn\xf6-\xf4Y@+z\xb79\xbbm\xfc\x0b\x80\x16p\x0bc\xdc\x0c\x05\xeb-\xe0)\x0c= \x04-\x88\x04\xed\xc4`\x0bbA\x1b\x82A[\x01x{\x03\xf4\x17}\xbd\x0b\xbe\x1e\xc4^\x1b\xa1\xd7\x82\xc6~\xc2\x04\xba\x88\xbb\xbd\x8f\xce/\xd1\xb7l\xe57,\xda\x90\x86\x82\xf58\xd0\xa5!YY\x10)\xa8\xc0C\x9c\x90U\x03y\xf2\xe0E\x00\xf0U\x04^\x84\x00?b\x80\xbf\xd8\xdf\xefp|\x84z\x99\xc5\xf2\x82\xdb\x87{j\xf4\x12e\xb2\x8c\xb2\xd5\x0c&\xb2\x8c\x0c~]a\xca\xc2(\x0c\xa6l%7\x08\xde\xe3]>Z\x8c\x0e\x05 \xe5U\xbd;\xa3;BF\xc8j\xab\xd3)\xdf\xa4|vo\xf4\x07\xbc\xe9Y\x08\x1bA\xd4`\xca\x0f!\xe5l\x9d@\x96dLL_\xdd\xd4\xdf\x04+1\xba4REM\x83\x90\xc5[`\xab\x15N\xbb\xed\x86\xe7\x15W\xd3%\xdf\xe2]\xf2O\x1b>M!H\xc5q#K\x8a\x12:\x92\x19\xf8'\xb9\x94\xc7\xe1v\x04\xdfG7\xfc\x9a\xc7\x87R\xb4\xbd\x7f\xf7#~\x8cV\x9aW\xa0\x11\xec\x8a\xf3\xebt\xc9\xd7\x1c>,\xd3t\xf3\xe1P\xfdo\xf2A\xd6\x1f\x08\xa3\xfc\xd7C\xc9eS\x16B$w\x93\xa4\x80.\xba\x15d\x9b\xbc\x1e\x90\xa1?\x1e_\xf3X\x91a\xcd6\x89b\x191\x03y\xc0\xca\x0b\x07I\x9fC\xa0j\xc72|n\xf3h\xb5\x8an\x92\xe7\x86\xb5\xfb\x0f8\x9b\xeff \x96|\x13GB-\xcd\xcaIJ\x85\x98$\xd9\x9a\xcf\x0c\x85\x87\xfe\x03\x8eC\xf8\xfe\xf2\xf2\x1c\xbe;\xbd\xcc\x0b\xee\x8a\xb1\xaa\x0d\xba\x0d\xf8jf\xe0\xcc\xbf5Y\xfcr\xbb\xe1\xbf\xfc\xed\x17\xf4c)\xcb3\xb9\xd69\x0f)y/Wa\x13G\xb3l\xca\x81\x85\xc0\xe382$R\xff\x07\x1c\xef\xee\x89&\xb2v0\x13\xf4\xe13A\xd6)\x9b\n\x99\x10EW\xd9\x06\xf2\x1b\x02 \x94\xdb\x0c\xa2\xd0\xb4\xd1\x0dC}\xff\xeeG9\xae%\xbb\x96l\xb5\xae\xec\x85\x99\xda\x0c\xac\x98\x86\xf8\xf7u\x14\xcc\x80\x85&g\xa9\x1a\x94\xdc\xf61\x9fG1?,\x1a\x0b\x9c,\x0d&\xc1*H\xb7\x10r>\x93,2\x91\xb7a$\x1b\x99rW\xa2P\x88\xc3p\xc1e\x03\xb9\xefFp\xf7}\xc2\x8b+\xec\x82*\x82\xed\x84\x9cQ|\xc7B\xb60\xcdx\x12sv%dG\x8ett\x0f\xe7\x967Q\xca\x9fC*\xe4\xf8<\x0b\xa7j\xa7\x88\xb1\xe7\xf2f\x9a\xc51\x0f\xd3\xd5\xb6\xe2A\xb3\xdcS\x8e\xe6\xf3`\x1a\xb0\x95E\x8fL\xb29\xc4\\h\x07~(o\x0f\x07i\xd1Y&\x16W\xda=\xe5\xfe\x9a\xf0E\x10\x86&\xab\xf2&H\x97\x06\xa1\xbf\xdd\xf0\x91\xe2g\xb6 \x92\xd14Z\x9b$\xe6\x85\xdcm D\xe9Rm\xf2\xb0)Y\xe0nn\x8b\xf1\xf5&\xdd\xe6\xdb\xf3\x1e\x8al-},\x13\x83 \x91\x13\x94n\xc5`\xbdYq\xa1\xe8$\xf3C\xb2\xe1\xd3`\x1eL!\xe1k\x16\xa6\xc1\x14I\xf1\x91\xfb\xad\x85I\xe1cx\x1b,\x8e\xd7BtLxQ\xa7\xa3b0h\xb6Aq\x03|\x12]\x1b\x8c\x0d5\xd5\x9c\x9d\x9b\xd3t\x8d\xe6\xc3q\xb8\xfd\xb03\xdcY\x08,\x9e\x04i,6\x9feT\xb9\x8c\xd6\xd0\xb1U\x14.\xd4\x8a0}\xc9\x84\xd4\x94B_\x8dj\xa2\x9bS\xd5>\x0b\xab\x08a\xb3\xf3\x82\xf1W\xc1D\x0e5\x97\xeb $\xd9f\x13\xc5Rsn\xd8\xf4\xea~\x16\x8a\xff\x11\xfaR\xad\xb7\xb4J\x9a\xe8\xa4E\x83\x1a\x0f\xd1\x1c\xb2T \x9fb;'B\xf0\xb1\xd9,P{\x1b\x16<\xe41K\xe5\x80\xc5\xd1\xa1\xbc\xb4\x7f\x8c\xc8;\xb5Dz?\xa7\x9f\x98``8z\x0e\xe7b\xbcb\x1f\xe7Cg\xd5Jz'\x7f\xfa\x93AM\xbd\x8a\"\x98G\x11\xbc\x80\xd1h\xf4?\xd1O\x04\x11X\xb8\xc5\x7fd\xe1v$\xba~\x15G\xeb\xbb\xf3(\xba\x87\x7f6\x1a\xe1\xba'\x98\xc3]\x81\xe2\xbd\x1c\xf4et\xf7\x8f\x02\xc7=\xf8\xbbA\x9e\x9a\xf0\xfc\xd3L\x9b\x87\x0e\xda\xfc\x99]\xb3\xce\xc4\x81\x17\xd2\xb6\x12\xd8;P!H\xee\xbe\x8a\xa2\xd1t\xc5\x92\xc4B\x045$\xd1@\xcd\xa7\xd2\x08\xef\x17\xa1NI\x9eG\x0e\xf2\x9co\xd3e\x14\x1a\x08\xa4F\xf2*\x8a\xee\x8eF#\\\x12\x97\xc4\xb9k\xfc]2\x90$\x9b/\xd5D\xe33E\xb4\x97\xa7\x17'\xef\xce\xce/\xdf\xbe\xbbg\xf2\x8e\xec\x18\xcd\xdc\x99\xea\xceL\xae\xc7\x0er}\x17\x19\xeal\x08R=\x7f\x01\x7f\xdcLF\xaf\xa2\xe8\xef\xa3\xd1\xe8\x9f\xf8\x87,\xdc\x1e\nsM|\xbdQ\x06\xc8k\x16'K\xb6\x12D4\x0f\xdcD\xa6f\xcf\x86n\x83y\xa3\xd3\xf7\xe1z\xd7\xad\x1c\x94dl\xf9\xd5\xffx\x01a\xb022\xa8y,\x08'\x8aC\x9b\xa4c!\x07\x0bc\x1b&\xdb\x9d\xa9RHl\xf5\\\xc6\xb6p5j\xd8\xb2\x04\xd1\xf9\x07\x88\x19r_\x9cEG\xf2\x07a\xca\x1d\x00\xabh\x15\xa1q\xf2\x8a*z\x0fr\xd5\xf5NJ1\x1e\xae\xb6\xc5\xb9I;\xf0\x96\xa6#\xb0y\xca\x955#\xce\xdb\xfa\x90\xef\x1f\xe8]\xe4\x07\xbab\x88\xea\x04\xc7s\xce\xbc3\x8f\xa2\xd1\x84\xc5rr\x9f\xeeoG\x9f\xef(j\xa9\xb3\x06~\xac\x92C\xb9#\xbe\x15\xeaE\xfb\xf9\xcf\x17o\xdf\xe8\x7f}\xf1\xe2\xc5\x0b|\x1d\xc5\xf7;?\x80\xb2\xa9\"\xb1Ms\x83A\x9dU\xb2\x84\x17\x9e\xb6E\xb6bH\xc59\x1d\x85\xf8|\xc6wj\xfe\x10\xf8z\xc2g\xb3\x9d\xc2?\xcc\xed\x07\xc4{PQ\xbbsI\x8c\x0f\xff%\xc8\xf1!?\xe4\xd6\xfc\x8f\x05qG\xc5\x96\x7fn0\xa2\xd9\xf4J\xec\xf9\xddam\x1e\xac8.\x7f\x0b\xf9p\xce\xe3$\n\x8d\xdb&\xf7\xe0\xc8\xd7W\xc6re^\xc0\x11\x8e\xb1\xfcX\x06\x0d\xf3o\x1f\xd2\xa5?\x80q\x14w$m\xee<\x87;\xd8\xae\xa9Ow\xa4ft\xe7\xd0\x84K\xce\xe5\x0d[\x0b|\xffK\x0d\xf9?\x8d\x1f\x8b\xb94\xbe\xa5N\xe8l\x9e\x1f\x0c\xea<\xa1V3H\xe0\x86\xafV_]\x85\xd1M(\xf7\xf5\x92%\xc0`\x9a%i\xb460y\x9d\x05\x0f\x95\x01\xda\xe0\xcb\xe2\xed\x9e\xb2[\xc1h\xe1\x029\xd7K\xb6\xd3;\xf9 7D\xc1\x87\xcbh5\xcb+Z\xedF&=X9\xffB\xee-\xca\xd9W\xc7'\xbb)9\x17\xee\n\xf9P\x90Bs+\x14\x9e\xb3_\xfe\xf6\xcb=\x03\x93w\xe5\x91zGf6\x91d\x10\xe8\x8eF\x0f\x8f\x1e&w\x0c\xcb^\xfd/[&\x83\xe5$f\x0e\x8d:\xd34Z`\xad\x1d\xa3J\x87\x7f\x11hH\xab\xf1\x85\xd2%\xffU\xc2\xcb \xca\x86-\x82P\xd2n7\x98\x1a\xce\xdd\x07e\xae\x0d\x0b\xab\x7f-\xd0\x17A\x8d\x9d^N1\xa7:\xeeN\x97\xb5>4\xbf\xbc\x91\x1e\xc6\x93n\x1e\xea\xfbG\xf3\x92RC\xa6O\x15\x86L\x1f\x0d\xe8\xc9,C\xa6\x0f\xf6\xc9\x90\xe93d\xfa\x0c\x99>M\x182}\x86L\x9f!\xd3\xa7\x84!\xd3g\xc8\xf4\x192}\x86L\x9f!\xd3g\xc8\xf4\xf9\xe22}l\xf1\xa8[\xce\xf5Q\xc1Vr\x10\xac\x1e\xb0FW\xcf\x18\x9c6\xe4,X\x9b\xd7\xc3\xcf\xb5\xa0\xb3\xadu-\xc0\xec\x13VvP\xab\xa47\x99`Z8\x0e\x19\xb6\x16\x82\xf3\x90\x13)\x1ap3n+\xbb\x93\xa9\xc7\xf0\x9a9\xb0\xd6_H\xad\xb7`\x9a1\x8c\xd6!\x80\xd6W\xe8\xcc\x1e4k\x15.k\x1d(\x93\xf3m\xc6w\x8c!\xb2\xd6\xc11e\x9b5\xb0\x19\xc2b]\x02b2\xf8\xd5\x9c\x0drfk\x13\x043\x07\xbc:\x86\xbaHA.z@\xabC(\xabC\x10\x0b=\xe5\xf7\x16\xaa\xea7H\xd5[x\xca\x1d\x98\xea-$e\nFu C\xa1!'\xe4,\xa2\xcb\x9b\xb6a&cH\xa9e0 #9\xedO\xcd\xa0\xb6k\xd0\x96\xe1\xa2]h\x08\xa3\xef\x1f\xdc}w\x0b\x0e\xa9`P\x05\x9d\x1e\x16\xea! \xd4-\x14\xd4\xe0\xf2\xa62\xec\x18\xfe\xc9 ]\xc5\xd8%\xd0c\x8db\x18\x82;\xce\xb0\x8e\xee\xe1\xa5\x87r\xf4\xb6\xff\xc4\xe6\xda*pC\x99\xac+Xc\x9e\x9b3@\xe3\x11\x9a\xa9{\xb1:\x86c\xac\x81\x18s\x08\xc6\x16|A\xa9@\x0d\xb8\xb8B-\xcd K\x87\xf0\n!\xb0\xe2\x1fRA\x02\x18\xae0JO\x01\x14\xa4\xe7\x1a\xa7t\n\x974\xc3#]\x02#H \xa4S\x08\xa4\x19\xf2\xe83\xd8a\x0cs4}\xbf\xcd\xd0F?A\x8d\xde\xc2\x19\xfd\x062h!\x0cg\xf0\x82\x18\xb6\xa0\x04,4\xcf\xbe\xde\x1b\xd5\xf5l\x0fO\x10\x03\x13\x84\x90Dm\xc8}\x86!:\x05 \xf4\x80C\x7f\xa1\x86\xfe\x82\x0c\xedW\xd7\x19Xp\x85\x14\n\xf1\x8d\x87\x11PK\x1cs\xf2[\x82\x06D\x1c]B\x04.\x07\xe1\xce\x9bHv\x11\xd6\xafX!s\xd0\xefa!\x1fQ\xbc\xab\xd8\xbd+\xe43\xec\xbe\x15\x86\x0d\xb9ge\xc4V\xbf_\x95\xee\xe1\xe2\x03v\x97\xcax\xbcs\xde\xa12\xdc\x9f\"#\xc4\xeeM!w\xa6\xdc\xf8\x90\xbbR>\x0emp\xdc\x91B\x07@\xb9\x1b\xd5\xe7\xbd\xa8\xcaF\x9a\xc6\xdbM\x1a\x8d\xca\x97+\xc8\xbbH{1\xc4*\x0c*\xc7z\xe4u\x0fZ\xd3\xa2\xa8\xba\xc7#\x1b\xf6'4*d\xd8<\xdc\x8c^*\x03\xb2 \x1c\x99\x12\xe6\xcb\xd3\xe8\x8e2\xdc\xc0n^\x986r\xaa1R\x87\\\x92\xf6G\xa2]\x8c\xf6Ca\xbc\x0c\x8d\xa0A/A#\xdfi\x97\x9f[Jc\xfd\xb23\x8d\xef\x90\x0b\xceH\xc3\xc6\xc5f\x8f\xa5\xc7/3\x1b\xe8n\xbc\xc4\xdc\xf8\xde\xce\xdbow\x83%0\xb8>@dp\xe8\xc0\xec\x83:\xcf7\xceO\xd5\xc5#\x8c\xa7\xb6W\xackX\xe3\xcd\xc6\xfe\xa07\xac\xed Z\xb3\xcaLSyR\xfev\xd79a\x86\xcd\xb76<\xb8 \xbf\x95\xabD\xe7\x84%\xc14/,\x1f\xd4\xef\xf5\x1a\xd5\xbf\xed\xfe\xe1\x97\\\x96\xc1\xe59>\x11J1L\xb2\x04\xa6l#\x1f\xda(\x82e\xf9\x9f\xe3l\xc5\xe5C\x0b\x82\x00S\x9e$\xea\xd4QP\xaf\x81N\x06\xee\xc4O\xd3%\x0b\xc2\xc3\xe61@=\x18 1\x88\xe3L\xf9!\xccX\xca\xc4\xdc\xb2\xa9\x1aC\xe1yP\xbd\xa3\xa1\xdeJ]\x82\x83\xa4\xd9Q\x92\xb2\x94C\x1a\xb30Q\x87\x9c5\x9b.\x83\xb0v\xfbA\xf6L-U\x81=\xa8\xe3\xd4 \xcd\xc5H\x03bU\x83\x1d\n\xecA\x08y\xb0\xc6\xdf\xcfi\xc1\xbd\xf8C0$nC.\xb88\xdf\xc91\x8e\x10\xac\xa3\x94M\xcdo\xe3(\xac\xb6wq\xcc\xe9`\n\xf6\xf5t\x90\xf3\x0d\x1c\xe3\xfb7\x95\xf7\xa0\xc6\xfa\xe8\x9c\x9cc\xca\xc9\x12\xa8\xd4\x9eR{Xl\xbd\xcaw\xe2?{\xe8nw\xef\xbc\x07d\xcd\xb1\xcf\xe3h\xad\xa2X\x9b\x0dDY\xba\xc9\xd2\xdd\xdf61\xbf\xd6\xdey\x97yg\xbd\x8e\xa9\x94\x90=\xe0\x12'\xed\xeeX$\xbf\xe4!\xef\x1e\xd0\x15\x0f\xb1\xf4\x80jw\xaa,\xd5JC\xef\x96\xde\x15\x8aQ\xb7\x03\xb4\xbf\x9a\xc2S\x1b\xaevF*\xd5\x8c\xf4\xedV\x8fEjC(\xc9Uh\n\xb1\x1fZY \xe9't\x16^\x95]P\xa1\xd32F|\xf9)\xbfW^\xb8\x12\xa5\x02U\xd1\x04\xa5.\xffK\x11`\xa4\x12\xfa\xfet\xa4\xc5\x9e\xde\xbc\xbd<}\xae\xd2|V+1AX\xf2\x98\xcb\x14\x0c\xb9\xb7F\x00?\xf3\x83\x98\xc3\xafY\x92\x02[\xc4\x9c\x0b]\x8f&^D\xb1X\x17\xe9\x9c\xd5\xfa\x91)Yk\xce\xc2|\xc4jX\xc7\x9b\xcd\xf7,Y\xc2,\xe2*m \x7f~H O\xb8\x18N%\xe5U\xf1\xdbKaV\xd4|\xe5\xea\xf9>e\x19\xb0<^[}\xc6\xa84`rT\xc5.h\xc5\x02zch\xc7\x07\xde\x051f\x992\x8e\xf8\xf8:J\xf9\x18\x1f\x88\x02\xabBv\xa9d\xe9V\xe5c\x86\xff\xe6D\x0e\x84\x0e\xa0@c\xfc\x95\xa0\xa2\x15\xd8_]\x03\xf9\xd6\xd9\xc5\xd9woN_\x8e__|7\xbe\xfc\xeb\xf9\xa9\xf3\xed5\xbc\xd5\xf9\xbb\xd3\x9f\xde^\x9e\xfa\xb7r\xbc\xc5fj\xf7\xf6\xfc\xed\xc5\xb1\xe9Y6\x80\xca\xd3l\xfe\xf3s\xdd\x10\xae\xc2E\xb0\x08\xf9\xecu\xb2\xb8\xcc\xe3 \xaa\xca\x83\xd8r\x89\xfc\xa9\x1a\xe25\x97\x0fPPj\x0b\xc3\x9d\xc4\x12\x8c\xf4\x7f.\xdf)s\xbc\x13k\xa6\xe7s8\x97z\x89\xad\xcc(n\xf9\xc9i\xc3;\x9c;p[\xc2\n*\xddios\xee\xc0\xfcJ\xe7\x0e\x08{\x1c\x88\xfb\x1c\x9c\x0fS* \x92\x14\\\xc6y\x15\x9c'\x97:\x10g\x0d\x1e3\x17\xe0x\xff\xb3\xf2!q\x9d\x0b\xa0\xb1W\x01\x94E\x00\xbf\x85\x00\x9f\xc5 \x9c\x9b\xd0\xcf\xf1WD\xab\x9f\xdd\xfeS\xc4\x1e\xcfQ\x82\x7f\xefVR\xee:6\xd4\x89\xdc\x01\x95\x9fhr\xc3\xf9R%\xf4:S\xaa\x8a\x92\xafV\x96\x91u\xf9\xa6e\xcc\x85\x05s\x98'\xfd\xae\x03\x95\x84\xac\xfe)\x8d\x1b#2y\xe2\xac\xbc\xf7<\x8f\x90\xfb\xad\x05Tt\x19\xf6\xb3\xb4\xa2&\x83\x155XQ0XQ(\x10\x99\x93\xa6\xe6\x06+\n\xe8$\x05\x9a\x0cV0XQ\x15\xa0,\x02\xf8-\x04\xf8,\xc6`EQ{\x1f\xac(\x0f\x15\xf5\xc5ZQr\xdb\x8fm\xf5\x02\xca/\xddDso\xf5\x1d_\xec\xbf/\xe7\x96\xf3\xe8\xc5\xb6\xd5(<\xf0\xb2p.\nF8-\xdek/\xdd\xac\xe5\x0b\xee\xd2\xbd^\x12 E\x95\x9b3\xe9M$\xda\xcfW\xc1T\xac\x9d\xe4\x18d\x8dW\xc2H\x18OW\x01\x0f\xd31KS6\xbd\xda\xa7k\xb32\xa2\xb1!\xc6\xaf\x80\xa0\xc5\\}AI\x0c\x82\xe6$\xf4\x07\xc4>\x01I\xb3\xc0\x81\xd8)xt\x0c\xf6\x8a\xf1M\xa0\xa4o\x18Z\xd2\xc7\x0e\x9e\xe3\x07s\x02\x08\x0e\x84\x8d\xda\x84b\xe3\xa2\xc9\"8\xa0)$8\xdc\xc6\x80(b\xa5 \xf4\xd4\x14\x12:4}\xc5\x95\xb0\x82\x83O\x1a\x0b a3\xd5\xc5\x9e\xdc\x82\x03%\xe5\x05\x07<\x11\x06\x07/fq\x9f\xea\n\xf0BK\xd1\x97U\xd0\xd3n\x0c\xdf\xb5\x1b\x84\xdbr-\xc0\x92\xb8\x83\xc3\x9e\xe5\x16\xf5|\x02\xfe\xc4\x01\x9a\xc9Y\x07\xcf\xc3c\x01\x9eT\x82\x16\x94\x02\x9fCe\x01\xd4\xc3@\x13\xfc\xb8\xbb\x00\x9f\xc5\x84v\x0b\nm\x16\xd5\xfb\x10\xdah\xe6:\x8c\x16`O\x97\xc2\xc1\x93\x06\x9es\xa7%\\\xe1`H\xc3\xc2a\x9f\xd3\xb0&M\xe1\xb0\xcf\xe1\x98\xebp\xe1@\xcd\x18#!kf\x95\xe1\xe0\xce5\xc3a\x9fd\xb3e\xab\xe1\xb0\xcf\xd1\xe0\xf9n8\xecs\x1c\x8e\x8c9\x1c\xf69 K\xce\x1d\x0e\xfb\x1c\x8c;k\x0f\x07{.\x1f\x0e\xfb\x9b\x87\xef\xc9\xc3'a\xd0\x89\x0cK(\xc4\x01{\x97N\x07\x0fK\xc7\xc7\xc2\xf9B\xectgT\xa6\x00_\xc3\x8a\xe6m-`0\xd0\x8d0\x18\xe8\x12\xfc\xd8\xba\x00\x9f\xc5\x84v\x0b\nm\x16\xf5\xb6\x0c\xf42\x9aAZR5{=K\x16\x074w\x16\x07of\xf4g\xc5B\x82\x8c\xe7+\xb6\xa06j\xb9\xe0\xeel\x8c:|\x05\xdf\xfe\xf8\xf6\xe4\x87\xf1\xd9\xcb\xf1\xab\x1f\x8f\xbf#d.4\xa1\x89\xe1\xf8\xdb\x8b\xd37\xf6d\x8b:4\x11\x10\xb25\xea\xd0D\xf0\xe6\xcc\x96\xb4Q\x872\x85\xa3\x1b\x19\xfcN!\n\xd4F\x99\xbdZ\xb1\x05\x04\xe1L\x86P\xf2\xaa\x93\xf0\xedj\x1a]\x9d\xbdtfs\xd4\xa1\xdcR\x10\xd0\x1d\xa1\x9e\x91\xd4:\xb4\xe2\xd1V\"\x89\x10b\xaeC\xa7\xa1\xd1\x9dx\nH\xa1\xd9:t\x1a\x1f\x99t\xbe\xf6\xae\x82\x13i~^\x04\x0b\x95m$\xf4|\xe1\x8a\x96\xd1\xde\xe2\x8a\x04\x11]\x10\x02\xcbq\xba\xdc\xcf\xbe\xe3UX\xeb\x97:\xca\x88\xa3\xbc-Rx\xf7o\x0co\x02VA\x99\xdd\xa9\xba\x05\xc3\x8a\xdb!\xbb\xc3\xbby\xf4\xbb=\x94pB\xe2\x92S\xdfP\xb5\x0c\xf6\xa0+\x0et\x0dJ\xd4\x9e\xc4\x99(\xa0\xceG\x81\x97\x1c\xf2\xdeH\x9e\x9b\xc8\xf06-\x0e^D\x01o\xc2\x00Vc\xc4\x05\xde\x04\x02\x7f\"\x01^\xc3\xc4\x05\xb734_\xedL-\xa6BD\xe7,\xb9\xe2\x02J\nK\x1d\xbc\xe9\xea{\x86\xd9\xb8\x1e\xcd\xc0a\x8f\xe3*F\xe4\x1a\x88\xc7\x0e\xf5\xd9\x9b\x1e\"\xcb\x93\x08^\xec\xee!\xac<\x08\x01\x9e\xc4\x00\x7f1\xe5I\x14\xf0%\x0c\xb4\x11P\xfb\x1f\x94\x9fh\xa2\n&Y\xee\xd3\x85\x0c\x8a\x12\xcb\xed\xc4\x92\xafP\xf2\xa4%}\xe3C[q\xb4\xb7\x11\xd1\x13\x0f\xcb\x16\xf4\xa1\xb8\x87!\xac\xd8(\x1c\xdb\xdd\xb8\x84\x1e\xdd=M\xb6\x9fY\x98\x06!\x1f\xbb\xedP\xb7\xfd\xe9\xb0;I\xf2\x8a&\xa5H\xc2\x9a@!\x05\xc4-O\x12\xcd\xa4I\x02y\xa2\xe0#\x88\xc9\x13\x06\xfa\xa4\xc1O\xec\xeeg\x08T!\xeb#^\xd5C\x04v|\xbe\x82\x95.1\xc8tr\xefa\x05\x9e\x02\xb4\xc7\xfe\xe9\xc2\x92\xd0)\xa1;\x97'\xc9\xa3\x97\xae\x99\xd3?\n\x01}\"\xf3\x97\x8fe\xfa\xb2+{Z9$P\\\x95\x9cy\x96\xa6|\xbd\x91\x99\xd3i\x04\xeb Yq6\x03\xa6\xf2\xa5A\xe5K\x17\x9e\x8cJ\x9a\xcc\x8e \xa8\x10\xc2\x05N/\x85\xb0\x90H\x9f\xc2\x81\xc5bL\xd1\xbb\xa1\x02V\xed'#\xfd\npm\x95/\xaf\x02\x96)bd\xb2,\xfa\xac\xa0\xe2\x8c\xe18\x88b\x8e\xcb\xf8D`R\x83\x8d\xe9d7\xcc\xbet\x18\xc1N\x9c\x8d\xa9Y\xeb&\xf9\xf3\xb2\xc1\xf6\xf5\x1b\x95Yo\xb6\xa9j\xd4\xac^\xf4\x87Z\xefU\xb9\xa3U.jV|\x1c\xb4F \x83\xd6(\xc1\xc9\xdc\x83\xd6\xa8\xc0\xa05\x06\xad\xf1\xfb\xd6\x1a\xb6\xdc tJ\x18k\x1a\xeb\xd6\x911t;\xd7\xe3\xd4lWU\xaeRA.\xc7\x83\xd6\x91\xd3\x8e|\xde\xa7<\xe7\x8b\x1a\x1e\n\x1c{3\xa3\x85t\xd5\xed\x00p\x89\x14ST\x9aj\x13\xe0\xdf\x9a\xeb4\xd3m\x03\xd3\xd7\x86\x9a\xcc^6\x028\xed\x04\xe8\xd9V\x80\x16\xf6\x82\xa9\x8d\xab\x8a\xb2)\xed\x93\xa4f1\x95e\xb8\x87o\xd7\x83&\xf9\x0b\xd6\x1b\xf5\x1d4\xf6\xbe\x94*\xc1\xce\x00\xd7\xc8\xc19z\xb0\xdb\x1c\xe0\xa4w\x01.\xdb\x03\x9c7\xcf\x9d\xe4\x027\xc9\x08\xb6\x08\xd8\xec\x110\xdb$\xe0\x1a\xa2=b\xe2\xb4O\x80\x8a\x1f\x99\xba\xb32p\xfb=c\xc9\x1ei7Z{~bk;\xc6D\x11\xb4\x92/Z\xbf\x17{\xfb`\xd0\x86\x836\x1c\xb4a\x0d\x06m8h\xc3\xfc'\n+\x0f\xda\x10\xfe%\xb5\xa1\xebv\x84q\xba&\xd6\xb7V\xa9\xf7\xc6\xd6\x9f\xe3\xc8\xbc\x02}y\x02\xc0\xe4\x0d\x00r-yT\xae\xe1\xb2\xccQ-\xbe\x85E\xe3\xa8\x07\xdfE[\xecW\x94;k\xba\xfbVrw\x8e H\xe3\x02Z\xadv\x92\n\x80\ns;\xcb\xa0;\xab\xb1\xf7\xdd%\xe52\x92\x02z\x95u\xd8UP\xb7M\xb5Umu\x9f\x8a\xea\xbbj\xe9\x16\x84\xbeu\xd4}\xab\xa7\xbbk\xa6\x13\x96\xd4Uw\x91\x80\x82f\xf2\xd8+\xa0{u\xe3*\x94D\xacq\xde\xe3\x8ev\xd7\xd5#M\x10(v\x9d\x02\x92I\\\x00i\xa6@\x9e-\xb8M\xe5\xf23\x92\xc9\\\x00\x85\x8f\np\x93\x1c|\xc8\x0et\xd2\x13M\xeb\xc6\xc7\xf6\x12\x85\xf4\xca\xe1\xa4\x19\x91f\xe2_\x1b\x9cP\x11\xbc\xaf\xe1\x91\x8bW\xf7\xd5a\x93\x1e\xcer\xdd\xd6R\xdc~\x05\xb8\xfb\x9a\x03\xb5\xc4v_\xfd\xb9\x8bh\xf7\xd5\x93G\x99\xec\xbe\xba$\x16\xc2\xee\xab;\xf0*u\xbd!\x17\xb8\xeeg|5c\xce\xa7>\xb5\xb3\xfe\xb4\xad\xea\xb4So\xb9\xf5\xd5\xad\xd97\x8e\xca\xd14Eh\xf3?\x140\x186; \xcd\x14\xc8\xb3\x85\xc1\xb0\xe9\xdb\xb0\xa1T\\Vs\xb1W\x89t\xd6\x87$\xb2\x02\x95\x11\x9cw\xef\xab\xe0\xb1\x18\xb4Z\xc9\xeeK>\xb4v\xc4\xba\xc8\xce\x0bA\xb4f\xee\x1a\xc8\xc4\xcbC8P+\xea\xf4W\xe5\xd8Y\x1e\xa0\n\x04\xafv\x1d<\xb8\xc6c\x03\x13k\x16\xb7\xe8\xdcu\xecV@\xaeJ\xdcb\x04\x8e\xe9\xd3=N\xf4j\xc3\xf2B\x16\x01\x13\xee\xa4\xa1\x8d\xa8\xfdME\x03BB\x15aG\xed`\xab4\xb5\xcbPWU6\x97\xb4\xb7Jz\x82\x94\xa7Hx\xc2\x0e%\xb2'\x895 U\xd8\x08\x13\x03\xe2\xe4\x80^\x7f\x8d8I\xa0N\x14|*\xaf\xf5\xdf9MC\xf4[q\xcd\xaf\xde\x1a\xa5\xe4\x18\xd0iC\xb3+7>u\xd6z\xeayc\xad\x8c\xeb\xe4v7\x9f;\xb70i\"\x04\xc6rn^\xe7d\x804!\xa0n[\xd2\xc4\x8069\xa0o\xd8~\xbb\xa5l\xd5>7\xaa\xcf6\xa5mR\x12=\\\xdb\x04\xfc\xb6g/}\xba\xc2\xfb\xe5w\xae\xceL\x1dYj\xc1\x1aq\x9ap\xb9\xab\xbd\x9a\xec\x89>+\xb1\xed\xa9\xf8\x97E\xb48\x84\x8aK\x9c8\x04\x89si \xbb\xd8)6\xbawb\x17\x12\xde\xe2\xc1\xf5l\x9eE0\xb8v\x0b\x91\x0b\xf0-I\x12\x00-{pmv\xef\x0dy\x1b\xd97-k\x94\xe2\xf7\x99\xa8\x95I\x8d\xf7s~\x0c\x12zm.S\xfe\x0e\xa9\xee\x86\xb6\xddM\xdb\xdcy\x13\xc8\x8a\xd5\x86\x19\x0cw\x83\x14t\x94J\xb29\xfa\x8b\x93\xbf\xc1\xe9;\xf3\xc9\x986\xb50\xe7M[Z8\xbce\x1e9\xd4\n\xbc3\xa9\x8bf\x14_\x83\x7fV\xb5\x11\x91#\xdbZA\x9b\x9cksKW\xe6\xb5\x82[(Bo\x8d\xf6\xa8\x1e\xec\xb1\x01w\xa4\xc7\x15\xe7!\x1c;\\\xfb\x11\x08\xe1\x06\x02\xb9\xc0\xad\xc9\x15x\xc4v\x08\xb3\x03\xe2\x0c\x01\x88Q\x1d\xca\xba\x15\xe0f\x91\x02\\\x04\x06:\x91\x81Jh\xafH\x0e!\x8e\xe3t+\x13&@s#\x93\xbd\xe8\x1e=\x1aI\xe5\xcc\x16W@\xe1\x0b\xf7~v:\xc6\xbb\xcf\x88\xa2\x02\xfa\xca+W`\xcf.W\x80\xe6\x98\xe7\xcd\x91{W\n\x06Kc\xb04J\x18,\x8d\xbdJ\xa6\xc1\xd2\x18,\x0d\x04H\x84\x1e,\x0d\xa0\x90j\xb04~cK\xc3\xe5\x07\xcb\xbf\xb2\x13\xc6\xbe\x15\xad\xb7\xdc\x14t\xc2\xbf\xcf\xa7\"\\\xeb\xd9\xe9>\x9c>\x93\x9b\xc8|+N\x01\xedn\\\x8e\xae\x9d\x9b\xcbq[NAG;\xd4q\x7fN\x01A\x03\xb9\xfa\x01\xc7\x8d:\x05\x84\x8e\x80\xd8\x19P\xee\xd8)\xf0\xbdi\x97\xb7\xa2\x8d\x15<\xc6\x0b\xb4\xbbw\n\x082\xb2\n\xc5\x06s\xde\xc3S\xe0\xbc\x8d\xa7`\x9f\x83pm\xf9&\xd0o\xe99Q\xedn\xf1\xb5\xbc\xab\xa7\xc0\xf7\xc6\x9e\x13\xa1\x9a\x81\xef\xbd=\x05\xbe\xb7\xf7\x14\xb8\xef\xf0) 3\x82+\xdf]\x01\x19\x9dK'U\xc1~\xc3/\xff\xc6\xbfcZ\xda!\xf1\xce\x9f\x82=\xc9\x16\x8a\xfd\x0d~D\x00\xb7)V\x07\x8f\x83O\x01\x1e\xd4\x00O\x8a\x00\xf5@T\x00\xc5\x00n\x02\x9dC\x0b\xa0.\x14\xf8/\x16\xf8.\x98\xd7\x01\xaa\xd1\xc4\x9ez\xaf\x80~\xb3P\x81\xc7|=\xe6\xe9\x7f\xd7P\x01\xe1\xc6\xa1\x82}\x0c\x9b|\x7fO\xc1>\x86\xd0\xef\xadD\x05~w\x13\x15\xeccn\xd4\xdb\x8a\n\xf61\x02\xf7\xfdE\x05\xfb\xe8\xdb\xe3F\xa3\x82}\x0c\x82x\xc7Q\xc1>\x06\xe0w\xebQ\x01\xfd\xee\xa3\x82\xfe\xc7\xedc:\xfb_\x96\xb4\xa23_\xa4T`\xbbN\xa9\x80\xa8\xee\xa9j\xfe748\x1dW.\x15\xf8X\x14n\xd7Z\x01\x83\xa59X\x9a\xae\xaf\xc1c\xa1\xc0\x7f\xb1\xc0w\xc1\xf6miR\xaez*P3\xb5_\xf8T\xe0\xbc\xf6\xa9\xc0\x8b\xb1\xfc\xd8\xca\xeb\"\xa8\x02\xef\x85\xa4]\nU\xd0\xf6j\xa8\x82\x96\x17D\x15\xb4\xbc&\xaa\xc0\xff\xb2\xa8\x82NWF\x15P\xee\x1aT\xa1\xaf\xeb\xa3\n\xbc.\x91* \x87\xa6\xea\xe0\xcdw\xde\xe2\x83x\xb9TA\xeb\xe1\xd0<>\n\x9c\xb1\xae:\xb4\x1e\x13\x89D>v\xa1\x82\xfe\xae\xa1V\xf1\xd9|\x8e>c\xf4\xba\x98j\xc5\x84>\xafi\xb9\x9e\xaa\xc0qIU\x01A\xf6S$\xbe\xeb\xda\xaa\x02\x9a\xe6\"h-\xc2\xa8\x15P\xc6\xae\x80,+\xbc6\x81\xc7\x06p\xde\x94+\x80\xb6<\xe9\x82N\x1d\xf60\x16\xfb\x95Z\x05\xc4\x9dE\xddSD\x91\xe21Y2\xcb\x12\x85 q\xc2\xe01i\xf0\x13#\x1e\x93\x07\x1f\x02\x80\xaf\x00\xd9\xdf@\xe8\xa2\xa3W\xc1\xd1Rl\xf8\x08\x0d\x0f\x9a\xd16)\xb4\x11\x17\xbd\x8f\x82\x96\xedT~M\xeb\xde\xde\xb5\xe5\xd2\xaf\x02G/v\xec\xeek\xc0\n\xec\xf6\x99\xc5.s\xca\x11\xb7\xf4p\nK\x12\x9d \xdb\xd2)\x1a\x9d\x93\x01\xd2\x84\x80*\x08I\x13\x03\xda\xe4\x80.\xf6\xfa\xed\x96\"\xe4|\xc4\xdbP\x91\xa0\x04{\x9f4a\xd5I|\xfc\x96\xa9\x93-/3kx* \xb0\xad\xaf4\x7f_q\xd5kBB\x17\x08Z\x82\x9f+\x95\x0f\x15<\xb8\xa01\xbeO\x80,D\xb1\x04Z^\x9b\x96F\xe7\x8b\xc2\xbcx\xf4t7s:[s\xbazb\x9bo\n[-E\xadN\x084_6v\xc7L\x802z\xe7\xa8\xe9\xf1\x13p\x17\xa9\xe9:\x1cg\xac\x02z\xe8\xa4\x9f\xd8\n\x90\xe3+\xd0\xc3\x98]\xb1\x16\xe8\xa1\x0f{\x89\x98\xae\xd8 1\x18\xe8\xa1\x1bB\x99\x97\xae]\xd0b3@\x8a\xcf@\xe7\xf1\xf4\x1f\xab\x01Km\x95\x0e\xb6\xed^u\xbf\xa5>\x8a[\xa9T\x90\xa3\xb5P\x06\xa5\x8f\x80{V0(}\xfcC\xb3\xd2w\xd5\x15Q\xe3\xfem\x1f\x14&\xc5\x8a\x80NdwE\x10\xdf\xb8\x11\xd6\x86P\xfd\xc33~\x845\xb1W\xfah\x15G\x02p\xf9m\x0bh\x13jr1\xbf\xf1wr(\n\xe8\x9c@\xdcl\x84\xca\x1c\x9e\x1d\xba\xabp8CT\xe0\xdf\xabe\x9a=\x87\xab4\x94\x86\xc4\xcd\xf6a+L\x96\xd9\n_X\xca]\x18\xc5\x94%\x8d\xd7rQ\xd2&2\xf7\x15N\xbf\x85\xe8\xac\xe3bdO\xb2\x9ep%\x920\x19\xa0L\x08\xdc\x11\x01\x05\xfdu\xe8\x16\xab\xde\x91\x02#&\xfa\x15HWh\x0ch4p\x1bK\x848\x82\x82\x8e\xbd\xe1!3pq\xa9\x9d?\xf7x\xa2rl.\xe7\xd6ro,\xe7\xb6rN\x00\xdc\x93\x00\xda\x86\xea\xa7+\xd7V\xeak#Q\xb7\x91{\x139\xe7\xed\xda@\xc4\xed\xd3\xa9\x1fWH\x0e\\\x1d`\xc8\x0d\xe5\x0bPi8\x7fT\x8b\xa6\xa3\x07#b\x9b\x1b\x94\x06'\x8c6\x15\xf5R\xa3\xe7L:\xdcTDC\xfa\x94P\xbeQ$\x99\x05\x92!dO\xd2\x10h\xec\x1c\x0d\xcd\xb7E\xe7J\x9al\x15z/\xa9\xd7@\xe7\x08\xb9\xb7\x0e\xb5#\xd7\x05\xad!vJh\x1d\x0f\xa9\x1b\xc8\x8c\xb9\xd1\x8d+b\x12\x9ez\xa8\xdc\x89\x02\xf3\x91XB\xe2-\xb8\xb7\xdf\x1b4No\xb7\xd5\x8e\xb7\xdb\xf0\x16\xaf6.\xe4\xaa\xe0\xb2+\xf7\x15\xb8rz\xa9\x8d\xdei{(\xda\xc99\xdahh!gC\xa8\xd9\xb7;kx\xd6\x17Y\xf7\xd0\xb1;d\xec;&[h\xd8\x17\x17\x1e\x02\xf6\xc5\xe2\x08\xf5\xfa\xa2\xb3\x84t}Q\xb9C\xb7\xf6\x90\xad_\x7f\xfd\x86f\x9b!Y\x0f\x1b\xa4\x17\x9d\x81\x84X\xcd\xc2\xae\x82\xa4\x16R\x1d\x94E\xed\xa7\xdf\xa1\xb20\x850\xd5x\xf6{\xad\xc4\x19\x9at\x10\xc5\x1c\x8a\xf4 Az\x84\x1e=B\x8e\xb4P\xa3w\x88\xb1\xefkj\xa4\xb8\xa0c\x19\x1c\x9c\xb9\xbf\xfav\x8e8\x1f\x11;2\xec\x1e\xe3y\xb62n\xed\xe3wz%\xbez\xdc\xcep\x8c~\x9d,.\x05Qd;\x8d<\xd5\xed\xf4\x15\\\x9c}\xf7\xe6\xf4\xe5\xf8\xf5\xc5w\xe3\xcb\xbf\x9e\x9f6xR\xff\xfd\xfc\xdd\xe9Oo/Om\xbf\xd7\xb6\x0b\xf6\xc5\xdb\xf3\xb7\x17\xc7j\x9f\x94;\xc36\x8e\x1aq\xffQ\x10\xb76W\xb5hb\xaeb\xd1\xd4\x8d\x02X\xf3$a\x0b^\xe4zW\x1e\xe7.(j\x9c\xdfs\xb9\xe8\x89\xed;5\x8b\xe7p.m\x13\xb6J\xb0\x05)\xbdn\xd5\xc5\xb0:5Z\x96\x92B|\xa8\x1e\xa6\x08\xea1u\xda\"\x8d-e\xf0\x8f\xfa\xa1\xc1\xbc\xa1=\xf9A5\x0fhG\xa7\xa2\xc5\xd3I\xc2af\x96\x8b\"\xfaN\xe0\x97\xc1\xdb?x\xfb\x7f?\xde~=*\xed!\xc5z8\x1c\x1a\x98\xd3\xc8\x9af\xc64\xb2\xa5\x95w,\x9cca\xc8v(M\xac\xd8##\xa2l\xd8\xc3]\xc6\x02\x1c\xec\xe7\x85\xafs\xa0I\x97\xe7QJ\xbfK\x99\x96\x16\x9b\xb1\xc3\xe6A\xc8e\xbd\xe1\xdf\xd4-8\xe37\xda\xa1\xc7a\xc9\x01\xd5\x9a\x03\xa3E\x07=Yu\xc69!\x96\x9d\xe9[\xcc\xba\x83.\x95\x88\x1b\x8e\x1a\xd5\xce\x12v+\x1d4\xbas\xc6C$vw\xce\x0d%\x88\x1b?\xd6\x9d+\xdd\"\xcb\xd6\x93\xb9\x15Oe\xe8;\x14A8\xe3\x9f\xda\xf0\x18r\xc0\xa6\xf5\x8eody`\x8e\xf9&\xe6 \x0fSy\x9c\x8e\xf9u\x94\xf2C\xf1\x0fu\xc6=\x84(\xce\x8f\xbbB#p\xe5\xa1\xaf\xd4\x98\xdf\xf91*[\xbc&e\xf3 \xee\xa8\x0cR\x92\x85-zY\xdd0\xd7Z\xcc\xb4\x16z\xa56\xc3\x9d\x03]C\xab\x95\x98'\x12R\xed#\x94\x8a\x86Pm\xa1\xd3i\x94\xac\xa3d4a \x1f]\x1fMx\xca\x8eF/\xf9\xf4$\nB\xf2\xd2\xccx\x18\xad\xad4f\xeb(\x0bm\"\x18g\xca| \xa5Q\xc3 \x8d\xaex\xa8,\x18\xa6\xfa\x0dB9[I\x14\xf1\xa7i\xb0f\xab\xbc\xc3R\xbf\xbc\x91Z\xe4r\xc9\xf3\x1f`\x1e\xf0\xd5L\xea\xaaP\xf4\x92;\xe8\x82\xf5f\xc5\xd7\x92\xff\xe5\xbafI\x1a\xada\xcd\xd3e4kn\xbb\x04b\xfe1\x0bb\xe5\xf7YD\x8bh\x13GiT\xa1\xe9,\x10\x13\x9cdbx\x15\xda\xae\xf8B\x8e8\xffW\x14\xbf\xe37,\x9e\x91\xa9\xed'~\xe2\n\xf2\xdd'\xfd\x9e3\x1b\xeb_\xc5\x81H\xf3&/X?7[\x1d=r\x87\x82\xfexD\x01\x85S\xcc\x8co\xe0\x92\xaa\x88V\xa1\xd1bI\xf2\x962\x006+\x1a\x1d$\xc5\xbf\x05\x11\x14/\xb88\xf4\x9c\xc5lM\x97\xcbB\x1fda\x90n\xc7)\xd3\x14Ym=\x85\x8c\x19\x97\xe6?\xce\x98\xf5\x06Q\x98%^-\xc4\xd2\xcfbv#\xb7\xc6\x98\x87\xe2\xdc\xa3\xb5\x98D\xd1\x8a\xb3\"\xcf%\xe1\xd3\x98\xa7\xe3\xb9\xb0\xf5$\x99\x9c\xf3\xd0[\xb87bm\x99\x15\x85\xeb\x11L\x95h\xb6Q\xbf\x08\x05\"\xfeZ]\x1fXG\xb3l\xc5]\xab\xf7\x97\x8c\xc7\xdb\x93bM\xce\xa3h\xf5\x8e'\x1b\xa1\xa0\xc8+\xba\x89\"-\xd9l\x10\x18_\x8a\xc0\xd0&)\x96\xab\x9cR\xb9\x1b\xe5\x9f\x0f\xc4\x1f\x820ADMi\xd3\x98\x19F\xccD\x9a\x19\xc5\x7f\x0b\x92\x17\xbcYm}\xbf\xd6\xbc \xd2\xbb\xf3\x93|\x96$\x9e\xdd\x89<%\xe9\x12o\xbeU\xf2a\xcf>\xd5\x81u{d\xdd|\xc5j\x92\xb0\xf8\x1b\x9bN\xe3\xac\x08\xaa\xed\x94\x98Mk\xda\xf9\x88\xce\xce\x1a\x8a\xf6\xbc|)\x8e\xce_4C;\xe3\xccF\xe6n\xea\xe3\xea\xe7\xd85A\xc3%A\xc3x\x15\xd83B\xd0\xcd\xa8\xc08j\x05\xf8\xc6$4u\xdf\xfel\xbdU\x8d\xc3\x1c\xfd\x01\xab7\xd5e\x0f#\xe8\xf2]\x8d\xfcB\xdf\xdc.\x19\xd6\xd6\xa8U@3m\x91q4\xc5\x8c8^\xbbDMT\xa6\x8b\xa1\xc9\xf7\xfd\xee\xc1A\xa9\xf4\xa8T\xe4z\xd5\x8d\xebl-\x99\xa7\xbe\xec\x1e\x9a\x04\x93\xe2m\xd4I\x15OK\x9d\x12\xc5\xbb\x00\x8d\xb7B\xe9\x18xn0W\x8dt\x15/`\x95\xf4\xd5\x07(w[K\xd0\xae\xd8\xbc\xe1B\x10\x8d\xba\x18\xd8\xf4\xbdW\xa2\x8a\xa4\xf52\xfc\x9c\x1f5\x8f\x95\xd6\xf4^\x8b\xdaQ\xd5\xe5\xc5i\x90\xa6\xd9\xb6F\xf2\x1d\x95\x8b_\xd3\x08>\x8a\xb1\xfb\x11\xda0\xc1\x16\xd4n`\xf2%\xf9\xab\xf2\xa0}\xc9>y\xd3\xd9u\x9a\xef\x9b\xb4\x00\xed\x1d\x03_\xfaJ(\xc7\x85\xf7\x12l*\x1e%m\xce\x1b\xdd\x19\"\xff\xc4S\x1e\x17\xce\xed\x8a\xef\xa3JFR8\xcd\xe0\x9f\x02\xb3\xca\xb4\xfb\xa9l\x0d\xed\xfe*KK\x87\xdfj\xd7\xb2\xee\xbb\x02\xb7\xff\xca\xd2)\xc1\x8f\x85\xb6\xae-\x1f\xc2\x17V\xbe\xcc92w\x81y\xf2_)\xb6e\x86f\x92\xc8\x13\x9a'3N\xcb\xa6\x06\x86\xdc}PcJ\xf5g\xf1\xd7\x9a^\x83\x98Oyp\xcdg\xad\x99\xb39\x18\xb0\x1c\xa2\xfa\xcc\xf16\x1e\x9e\xac\xe7\x1f\xf3\xc1\xc9\xd2\xccuhjm\x88\x1a\x86\x87\x1d\x98\xbaX\xa7\x1a2\xd3a\x89f\xb2\xe6Q\xe9\xba\xb4\xb7\xf06]\xd0#H*{\xcck\x8b\xbd\xcd\xd2$e\xe1,\x08\x17=\xfb/H;Ck\x0b\xc3\xb6\xf8\x9do\x0b\xb0\x92\xc4\xc2\x98U\xffA\xb4\xfb\x15\xeef\xe1W\x85f\x0d\xef\xe9\xccU\x1d\xa8\xd8M\xac\"\xd6\x83\x90\x7f\xda\xf00 \xae\xb90\xf2\xd2\x98M\xaf\x0e\xc5\x112\xbaI \x91\xe4\x80\x84IO\xfbt\xc9\xa7W\xee\xe3$ag\xb5\xd8\xe8\x085\xda*\xd5\x8b\x95\xbc\x8b\xe9\xbd\xcd\x13\xd5\xae\xb9\xcdIGJ\xb2\x8bd\xe7\xa6\xdc\xf08\x88\x0cnGt\x9b\xa1Y!\xf9O1\x9b\xa6\x9a\xf65b\xb39S\xead<\xbd\xe6aZ\xcf\xa7\xd9\xf1\x96$\x18\xf0\xeb\xbcH\xc4\x0e\xbe\x97\x99j\x82\x0b\x04\x83\x05\xd3 \x95{=O\x9bK\xd2(\x96I\x9d\xf5F\x97K\xf1}\x02!\xe73>\x13\xcc:e\xabi\xb6b\xa9\xbcM\x1bG\x9b8\x90\xffV\xfb;\x9aC\x92\xb2+U\xba\xe2\x8a\x87u\x1f\x9b\xe0\xb5\x9d[\xad\xb8\xb8\xc4b^\x9a\xa8!\xb0y\xca\xc5fQ\xd3X\xb2\x04\xa2\xe94\x8bcn\xf2\xbf\xe5\x0cR\xf7\xc9\xe4\x7f\xb3\x1bS\x1b\xb6\xc8\x05\x9c\xc1X\xdb}\xd08A\x94\x7f\xce\x89Wl\xa9Vf\x9a\xbckl\xc80FX\xce\x95\xab\xf6\x8f\xa6\xa8/\xf0\x17\xfb_\xfc3\x8d`\"&\x92$jQ\xcf\xd9\x82\xbf\xe3\x1f3\x9e\xa4#\xf5{\x03\x89:\x87\x8a\xe6\x02\x9d \x8187%)\xf0\xf9<\x98\x06\xba\xe1\xd7\xc2z\x10\x1b\xfd\xfd\xbb\x1f\xf3\x1d\xae\xe1\x13(\x04\xfb\xe9\xfc7]\xf25\x87\x0f\xcb4\xdd|8T\xff\x9b|\x90wJ\xc2(\xff\xf5Pr\x8f\xb0O\"\xb9+\xe4\x8c\x13\x9eB\xb6\xd1\xf0\xa9[fH?<\xbe\xe6\xb1\x9a\xf2\x9am\x12\xc5\nr\xc4iT^E\x93\xfa9P\xa2\x8a%0\x8f\xa4\x9ay\x8e\xac\xc5\x7f\xc0\xd9|7B\xb1|\x9b8\x12\x12eVNB\xea\xe3$\xc9\xd6B\x90!\x08\x8eC\xf8\xfe\xf2\xf2\x1c\xbe;\xbd\x84<\x80\xf0\xfe\xdd\x8fjCm\xa5Bg\xf0\xb7&;^n7\xfc\x97\xbf\xfd\xa2\xa1\x83\xe2\xac\x13\x16\xeb\xae\x94\x8f\xa4\xe4&\x8ef\xd9\x94\x0b\xeb\x80\xc7q\xa4=G#G\xb3\xbb#\x92H\x01-Ul!\xfa\xa7b\xafF\xd1U\xb6)\x8fj\x13&\xce\xa0Q\x88\x8a\x15\x10S\x91}/\xd9\xb5\\\xfau\x85Gg\x8aIY1T\xf1\xef\xeb(\x98 {\x13A\xa5:\x96\xdb/\xe6\xf3(\xe6\x87EC\x81\x8f\xa5\xc1$X \xfd/tUR\x1c\x91\x85\x88\x88\xaf\xf9\x0c\xc1\x17\x85B\x0c\x85\x0b.?\x96{c\x04w\xdf'\xbc\xa8&)f-\xd8C\xecu\xc5\x1f,d\x0bl\x96\x93\x98+\xad\x97#\x1c\xddC\x9c\xa9Q\xca\x9fC*d\xe6<\x0b\xa7\x8a\x83\xc5x\xf3=/u\x9d8\x87WO\xbf8Y#yh\xd7\x0f\xbd\xb9\xac\x9ed\xe2$-$0?\x94vd\x90\x16\x9ddb\xb1\xe4!\xb5\xe4\xfb _\x04\xf2\x0c\xa0!\x93\x15\xa2uq\xb1\xdd\xf0\x91\xe2G\xb6 \x92\xd14ZcR\xeaB\xee\x88D\x1d\xb4\xc5\x86\x0b\x9b\xbb\x1b\xee\xe6Q?\xbe\xde\xa4\xdb|\x0b\xdd\x83\xb50P4t\x13d3\xcb\xc9H\xdb\xb94q\x95\xed\x9cl\xf84\x98\x07SH\xf8\x9a\x85i0M\xea\xac.\xf7\x88\x87*\xb6\xdc\xe2vi\xe9\xd7b\x1bOxa\x96U\x14\xad\xa6Ws\xe5\xc4&\xd15\xa2\xa0\xd5\x94r\x96\xacN\xc76\x82\x0f\xc7\xe1\xf6\xc3\xaeV\x0d\x0b\x81\xc5\x93 \x8d\xc5\xa6\xb1\x8c\xa4\x90\x83l\x155h\xa1N*\xf5\xa5\x10\xd2J\nT5\x92\x89nnT\xfb*\xac\x87\x06\xcb\x9c\x17\x8c\xbb\n&rx\xb9\x1cM \xc96\x9b(\x96\x1ah\xc3\xa6W\xf7\xb3P\xfc\x8f\xd0;j\x1d\x13l\x97\xe8\n7\x9aC\x96*\x01Ql\xbf\x04T\xb2F\xa0\xf6\",x\xc8cy\x80V\x87\xa32\xc3\xe0\xb8!\x8f\xd4\x12\xd4\xf1\x9f~b\xf2\x10r\xf4\x1c\xce\xc5\xf8\xc4\xbe\xcb\x87\xca\xaaw\x9cO\xfe\xf4'D\x0d\xbc\x8a\"\x98G\x11\xbc\x80\xd1h\xf4?\xb5\x9f\xc5dY\xb8\xd5\x7f`\xe1v$\xba{\x15G\xeb\xbb\xf3(\xba\xa7\x7f2\x1a\xe9r>\x98\xc3]\xd1\xf4\xbd\x1c\xe0et\xf7\x8f\xa2\xed=\xf8;\"\xdb\xb0\xf6\xff\xc4\xe7\xfe\xd01\xf7?\xb3k\xd6z\xf2\xf0B\xda\x1a\x02k\x8b\x99\x06\xc9\xddWQ4\x9a\xaeX\x92\x18&\xaa\x86 >Vc\xaf4\xd0\xfbjP\xa0$\xc1#\x07 \xce\xb7\xe92\n\x11\"\xa8\xde_E\xd1\xdd\xd1ht\x0f[hE\x80\xbb\xe8o\x92 $Y\xa8T\x11\x8d\xce\x14Q^\x9e^\x9c\xbc;;\xbf|\xfb\xee^S(B\x8e^1\n\xde\x81\xea\x02'\xc7c\x079\xbe\x8btJHR<\x7f\x01\x7f\xdcLF\xaf\xa2\xe8\xef\xa3\xd1\xe8\x9f\xfaG,\xdc\x1e\n3F|\xb9Q\xca\xfb5\x8b\x93%[ \"\xe1\x03\xc5H\xd1\xec\x0d\xe9*\x987:z\x1f\xaew]\xc9\x81H\x86\x94_\xfd\x8f\x17\x10\x06+\x94\xc1\xf0\xfe\x1b\x9ct)#\x14\xd3\xabR\x06\x15\x06%L\xb6;\xf5^H\xc9\x9b`\xb5\x12?\xe4\x95\x1a\x84J\xac\xa3;@\xd4\xf5}q6\x925-F\xc2\xb49\x106n)\xb1\x854/\xee\x10\xab\x15\xab#,Ec\xb8\xda\x16\xf6\xbcv\xd8*\xcd\xa6\xfcT\x9f\x16g\xbc\x83\xfb\x07ut\xf9\x81\xa2\xe8Z\x9d x\xce=w\xe6Q4\x9a\xb0X\x0e\xfa\xd3\xfd\xed\xe8\xf3\x1d5ce\x17\xeb&\xbe\xec\xf2\x8e\xf8N\x88\xe7\xdaO\x7f\xbex\xfb\xa6\xfe\x97\x17/^\xbc\xd0i/\xbe\xdb\x9d-\x95=\x11\x89\xed\x92+Se_gIy#e\x91\xadX\\\xc7\xa37Oe\x82\xe0N\x0d\x1e\x02_O\xf8l\xb6S\x88\x87\xb9nm\x9cH+\xeaIy\xf7>\xfc\x97\x98\xf6\x87\xdc\x85R+CW\x10qTl\xbf\xe7\x88\x81\xc8\xa6Wb\xef\xed\x0e\x14\xf3`\xc5u\xf9V\xec\xd1s\x1e'Q\x88\xb2s~\xf2\x9f\x07q\x92\x8e%\xe5_\xc0\x91\x8e\xa9\xfcP\x16\xac\xcd\xbf{\xe8\x96\xa8\x00h\xafw\xe4\xfc\xef<\x87;\x18g\xd7\xa75R\xa3\xbfs\x88\xe1\x91\xe3~\xc3\xd6\x02\xd7\xffRC\xfcO\xf4C1\xee\xc6w\xae\xc1\x9f\xcds\xc3\xb6\xbe\xc6j\x85\x82\x04n\xf8j\xf5\xd5U\x18\xdd(?\xefR\xba\xe2s\xc7\xac\xce\xa8uv:T\xc6V\x83\xc7\x94 \xa8t)\x18G\xd6\x17\x90lSG\xf8A2q\xc1C\xcbh5\xab\xb9\x86\xe5\x16\x08\xc2\x92\xf7 \xf7$\xe4\xacW\xc7%\xd1\x97\x1c\x07w\xc5\xfe-\xa6\xab\x1d[\x0b/\xca/\x7f\xfb\xe5\x1e\xc2\x9c]\xd6\xbb\xde\x01\xbe\xe4r\xda\x02\xd5\xd1\xe8\xe1\xd1\xc3\xe4\x0e\xb2\x8c\xc5\xbfjVuY\xdf1\xe6i\x16\x87\xea\x92H\xf1\xc7d\x88G\x0f\xf1\xe8}\xc6\xa3\xeb\xb7q\x11_7%\xa7\xb6\xd2,\xc7\xf6\xee\xfc\xa4\x18\xa4\x16\x8c\xc6\xdd\xec\xbd\xfb\xd8I\xfc\x9c\xa2\xaes\xe3\xf2\xdb\x0f\xe4=:\xcd\xcd.\xf3\xfe\x1c\xe6\xbd\xb9\xcb\x8d\xce\xf2\x0e\xae\xf2\xbe\x1c\xe5v7y+'y\xbf.r\xa3\x83\xbc_\xf7\xb8\xc19\xde\xd15\xae\x91[\xb7\x9a\xfbv\x8bwt\x8a\xf7\xec\x12\xef\xe0\x10\xef\xdb\x1d\xde\x9b3\xbc_Wxo\x8ep\xb7\x1b\xbc7'\xb8\xc9\x05\xde\xc5\x01\x8e:\xbc\x11\xabS\x977\xdd\x9c\xdd\x88s\xbb\xa5k\x1bql;\xed$\xcd\xf0\xb3k\xd0\x96\x0e\xed\x9d\x03\x1b\xa3\xef\x1f\xdc}\xf7\xec\xca\xd6\x1d\xd9=\xb8\xb1{ub7\x95aG\x076\xe2\xb4\xee\xe2\xb2\xb6\xfal\x0d\xeej\xa7\xb3Z\xf7\x8f\xd1\x1d\xd5z\xdb\x7fbsm\xe5\xa2\xa6L\xd6\xe5\x9e6\xcf\xcd\xe9\x9a\xf6pL\xd7\xfd\x10\x1d\x9d\xd2V\x97\xb4\xd9!msG\xa3T\xa0\xba\xa2]\x8e\xe8\xa6\x1b\xba\x83\x13\x9a\xe0\x82\xf6w@#\xee_\x97\xf3\xb9'\xd73\xd2s\x8dSzu:\xf7\xecr\xee\xd5\xe1\xdc\xa7\xbb\xd9\xe8lnz\xf0\x9a\x8e\xe6~\xdc\xcc\xbd9\x99\xfbu1\xd3\x1c\xccN\xf72\xd1\xb9Lq-k\x8ee\xbd7\xaa\x93\xd1\xeeT&\xba\x94 \x0e\xe5\xda\x90\xfbt&\xf7\xecJ\xee\xcf\x91\xdc\x9f\x1b\xb9\xfd\xea:]\xc8.\x07\xb2\x12\xdf\x16\xe7]\x1b\xcf]\xf9\x0c\xf1\xbb\xf3\x93\x1c\x97\xe6\xaf[D\xd7\x95\"\xb2\x9b( \xe8\xc9\xcc\x9b\xbc\":R\x92\x9c\x92\xc7)\x9f\x06\xa6L\xd6\xec\xeb.\x1c\x98\x17\x92\xd2\x92\x96\xd2\xf2\xad\xd4\xfe\xcbWA=fY\xf1\xcb\xd6\xf8\xc5Jt\xeb \x1b5\xdc\x95&\x94\x9dl\x12\xb6\xca;\x1f\xd9\xfb\xaa/\x9c\xde]\xfd\xf7\x8ag\xbft\x83\xabn`\x96I1\xa8\x86\"=\xc2\x95\x8e\xeb\xaeq\xc3Pj\x8c\xa1\x8f\xa4\xf63m \xca1\xef;\x0e\xc5v\xfa\x00\xd4\xdf-=\xd7\x16Y\xc9\xb5%\xabz\xf2\xd4-\x13G\xf7\x05K\xeb\x03(~\xe92\x84 \xe7!\xc4\xfcW>M\x9d#Q\xfbF\x1f\x87\xfa{\x97Q\xccY\xb0\xdau?\x0fB\xb6\x1a\xa7l\xb5\xda\x8e\x95\x13\xab\x95\x97\xfe`\xcb\x93\x03\x92\xe7\x81M\x12aO\x90\xbe=\x08#\x1a\xd20\x1a\x0b\xcbf|\xcd\xd3\x88\xd0\xa0&X.\xc5\xdc\xdf\xc9\xa9W\xc8*\xcb\x8d\xb1x\x06\x924y\xf8 \xb1\x14tL\xb2\xc9:H\xc7i\xb0\xa6>\x9e\xdc|\x02\xba\x08X\xf1p\xd6\x05\x8dz\xbf~\x08s~\xa1aN%\x16\xc7I\xca\xe2N\xdc\x92\xe3\xe9\xc4,5\"\x17*\xb5\xf1@A\xccs\xca\xac\x85=\x18\xe7\xf2\xc5\xb0\x11,\xa1\xc6\x8b\x8aM\xa4\x0d\xb1j\x0bQ\xec \x97*5~\x86\xd9?\x0e\xdb\xc7i\xf7Xm\x1e\xb2\xbd\x833|\x1fv\xcem\xd98\xaeE\xd9\x87}\xd3\xb0)n\xdd\xaeq\xf6\xbf\x1f{\xa6a\xcb\xdc\xa6\x1d\x83\xdb0\xb7e\xbf\xecl\x17D\xd4\xe4\x0f\x1cI\xfe\xf0\xbekjP\x98$\xe3\x07\xcd\x8e\x00J\xf0E\xbbl\x8c\xa4\xc5Y\x10a*\x15S\xf4\xf0\xfb}\xcf\xa2\xb51\xa0a\xeab\x11h\xc8z~\xb5\xa2f\x01\xf5\x9ah\x07\x8dd;k\x1ejcsQ\xd2P\x8b\xc1\x12\xb3P\xab\xdd\xf8\xbf\x1aQ\xa4C\xed\xd7\xec5nw+#[\xea\x0b\x186}K[\xfa\xdf\xf8\x99\xdc\xfe\x84A\xcf\xe2`/O\xe1\xfeg\xb3Jx'\xb1P\xe7/%\"P\xb6/\xc63\xd4-\x19\xea\x96\xec\xbfnIS\x17x\xe8\x9c\xc4K\xe9\xb4|\x872?\x87[\x9f\xa3\xac}\xa3\xa7\xf2\xaaW)c\xae\x1eaH\xa3\xfc\xfbV\xbb\xa1\xe8\ny\xcf\xc8\xc8A\xb5\xb1\xfe\xc8\xc3E\xba,\xc2\x89hvu\x99Ym\x9bs\xfd#\xc2\xa4\xf3\x06\xadf\x8d&\xf6\xc3`\x0c\xb7\xd7\x7f\xbdj\xbf\xee\xc604'\xdf\xe9z\x008\xae\x08\x00y\xb7\xe8\xe9q=^\x17\x00\xc3\x95\x01h\\\x1b\x00\xe5\xa3\xb6\xef\xc7\xea'\x84\xdd(?o\xb5\x17?fQ\x9c\xad\x89\xc4l\x9b\x84\x98\xaf\xfe\x86\xc7S\x1e\xa6B\x9b\n\x81%\xb5Y\x92\xb2+^yx\xe2:Jy\xce\x1eJ\xbd\xe9\xday\xa2\xa5\xb2N\xa30 f\\0\xa4t\xb2U9']\xc6<\x11\xebyKs\x14\x1c\x12\xa7y\x8e\xc7_y\"g\xa4\xae\x7fT\xf9]X##x\xa9\xbct8\x17=\x18=\xa9N\xe4\x9a\xa7\xd1\xf8\x96g\xa3L\x81h\x0e?\xf1|m\xe4\x9e\x90\x8f\xd8\xe7\xff)\xc3\xef\xcd\xe99WLL\x86\xcfJ\x02\x14S>\xba\xff\x089\xd5\xee\xe1\x81a\xdd\x9e\xc8\x07\xefmQ\x14\xb3~\xdef\xf7\xf5\xe8\x8a\xd2.\xed\x80MG\x9a5djx\xc3\xa4\xf3i\xaf\xc7\xcb<\xe0x\xcb\xa4\xcfK=\xd0\xe7\xc5\x1e\xb0\xbfh\xd2\xe9\x82\x0f\xf4x\xc9\x07\x9c\x17}\xa0\xede\x1f\xe8r\xe1\x07\xa3\xd8v#\xf9\xc5\xf8\xbaI\x87\x8b?\x08.eH\x19_8\xe9v\x01\x08A\x97m\x8c\xaf\x9c\xf4}\x11\x08\xba_\x06\x82\xfe/\x04A\xb7KA\xd0\xedb\x10\xbeE\xd1A\xf6v]\x08z\xbf2\x04}^\x1b\x02\xd2\xd5!\xe8\xf3\xfa\x10X_C\xe9v\x8d\x08\xdb\xe3\xe8\x8b(J\xd48/\x17A\xe7\x0bF\x08B\xec]\x94\xd6\xd7\x8e\xc0\xf46\x8aC\xc5[\xdeG\xa1\xe8\xff\x96W\x910\xb1g|%\xc55\x8en\xd7\x92\x1a\xc8\xe4%%\xf4\xad\x94^\xae'A\xdfW\x94\x00\xb9\xa6\x04\xdd\xaf*5\xb0\xa5\xc8\xab)\xdd./\x81\xebN\x0f\xd8\xdeN!\\d\x02\xd3\xa3\x0d\x1e\x17\x9a\xcc8\xb4\x84\xf6N\x97\x9b\xc0\x83\x18\xaeKN\xe0\x9c\xb7\xf3\xb2\x13\xf8]x\x02\xf4\x05\x80\x8e\x17\x9f\xc0u\xf9 \x1c/\xab\xb8\xdeV\xb1P\x89z\x19\n\x08\x17\xa2\x00}c\xa5\xd3\xc5(\xa0]\x8e\x82V\x17\xa4\xc0H\x18\xe7E)\xe8\xef\xb2\x14\x98G\xa1qZ\xaf\x17\xa7\xa0\xe3\xe5\xa9\x06*\xec\x15\x96\x9e\xafSA\xcfW\xaa\xc0\xfe\x16\x0b\xf6\x1a\x0b\xf6\x1eK_W\xac\xa0\xcfkV\xd0\xfbU+\x00\xeau+\xa0\\\xb9\x02\xfa\xb5+ ^\xbd\x02\xfc}\x16\xfc\xc5\x0e\xfaE\x1d\xd7\x1b-\xe4\xabX@\xbb\x8e\x05\xd84\xfa\xbc\x96\x05]\xaff5p!o\xb7\xf4yY\x0bz\xbd\xb0\x05\x9d\xf9\xc1yq\x0b\x08\x97\xb7\xa0\xf6\x8e\x8b~\x89\x0bl\xa7\x99\xe6e.p\xe5\xdd:\xbf5^\xea\xc2?7]\xec\xc2\xbf\xd6.w\xe1\x9f!\x17\xbc\xf0\x0f\x1b\x97\xbc\xc0'\xf1y\xd7\xc0\x9c\xf1\xdfO\"t\x01\xb7\x95\x10m\xeeo\xff\x89\xd1\x05 \x97\xae\xf0!\xed9Q\xda{<\xfbI\x9c.\x87\xa1_\x06\xc3\x87\xb1\xbfD\xea\x02\xcc\x97\xc2\xf0\x11\xed'\xb1\xba\x80\xfa\xe50p\\\x10\x83v\x11!\xe4\xb2\x18\xd8}E\xe8\xa51G\x1b\xfd\xf2\x98\xa3\x81\xf9\x12\x99\xb5\xe1\x1e.\x93\x81\xe9B\x99u \xa6\xabBP\xc9\xd9\xd1\xef\x0b\xb5Fi\xb8h\x06C\xda\xcd\xef(\xed\xc6r]\x0d\xda2\x8e\xf1\xeaZK\x8c\xbd_c\xb3&$6\xe3\xfa\xa4\xc4\x81bP^ \x89y#\xff\x9c\xc4b.\xffjy\xf0h\xc6Ak\x01\x91\x1a\xf3\x0e\x1c2\xc2\xbd\xe1\xa1\xff\xec\x03W\xfeA\xdf\x19\x08=\xe7 8\xb2\x10:\xe7!\xf4\x9b\x89@\xc9E\xe8\x90\x8d\xd0o>\x02)#\xa1\xdf\x9c\x04BVB\xefy \x8e\xcc\x84v\xb9 (\"k\xbeB/\x19\x0b\xc4\x9c\x05\xb4\xa5W\x1eC\xe7L\x86\xbes\x19\xcc\xd9\x0c=\xe73\xec#\xa3\xa1\xe7\x9c\x06jVC\xcfy\x0d\xf6\xcc\x86\xdes\x1b\xcc\xd9\x0d\x1e\xf9\x0d\xed3\x1cPd\xa6\xb2\xaa\n:d9\x18\xf3\x1c\x9c&\x855\xd7\x81fq\xf4\x97\xef`\xcfxp\x8f\xa6\xd7\xac\x07{\xdeCo\x99\x0f]s\x1f4t\xd2\xa2A\x8d\x87~\xf3\x1fL\x19\x10\xdds \x08\x81\x7fk\x1e\x041\x13\xc2\x18N\xf5\xcc\x860\xe3AbL\x9ds\"|\x88C\xc9\x8bpS\x81\x94\x1b\xe1\x9d\x1d\x81G\xe0z\xc8\x90 \xe4H\xb8\xb2$\xdcy\x12V\xaa\xf9\xe4J\xd0\xb2%\xf0|\x89\xce\x19\x13\xe4\x9c\x89\xb6Y\x13f2\x912'z\xcd\x9d\xb0\x8c\x05\xe1\xc4N\x19\x14\x1a6$\xa3\xa2\xd7\x9c\nSVE\xc7\xbc\n}\xc8z\x9eE\xff\x99\x16\x8e\\\x0b<\xdb\x02\xcf\xb7\xe83\xe3\xa2\xe7\x9c\x8b}d]\xf8\xe4]\x103/\xbcr/\xe8\xd9\x17\x86\xfc\x0bS\xc4\x9d\x1esw\xe7`xea\x90\xf30\xd0 \xf5\x9d\x8b\xd1o6\x86!\x1f\xa3\xef\x8c\x8c\xbes2\xba\xf3\x08)/\x83\x96\x99Q\xcf\xcd\xc0\xb33\xacg0,C\xc3/G\xc3\x1d\xc8'4\xb0\xe5i\x9035\xb2J:\xa9\x7fjW\xe5/\xf9&\xe6S\x96\xf2\x99P\x19|\xce\xe3\"\x9d\xe6\x83B\x96|\x80 LR\xcefy\xe2U\xa9\x9b\x13\x9e\xeaaB!\x02\x03\x9e4\x05\x85\x0c^\xcc\x94\xb38\x98\xc3\x87\x15\x0f\xef\xe6\xf8\xef\xc1\x8b\x17p\xf4!w@\xb34\x9f\x84tZ\xddp\x19\xd8>j\x1e0\xceB\x99;\xd4\xf8\xab\n\xa5OY\xc2\x93\xc3<\xb9@\x8eU\xfa\xad\x8asp\x1a\xc1Oo/O\xc7o\xcf/\xcf\xde\xbe\xa9\x1e\x9bG\x14\n\x9b\xae\xbe\x18pZ\xbf\xfb\xeb\xe9\x85\xf5\xf7\xe3o/.\x8f\xcf\xdeX\xbfy\xf3\xd6\xf1\xf3\xf8\xe7\xb3\xcb\xef\xc7?\x9d^\xbempE\xee\xfep\x0f<_'\x8c\x01\xf7\x9b\xf1\x8cq\xb3\x02\x87\xd9\x8b\xfb\xbe\xc0c\xa1\xb0\xaf\xf5\xe5\xc2\xbe\xc2\x17\x0d\xfbR[:\xfc#\xc3\x02*\xf0X\xc6]\x13\x97i\x0f D\xe5[\xb5\x0dQ/\x96\xac1\x97\xf3E!\xfa\x83k\x8e'H\xa1J\x01\xfd\xd2\xbc<\xc6 V4R\x18}\x15m\xaaC3\x04\xe5\xb4U}\xde\xfcC\x05\xe96\xaf?\xe7\x832g\x81\xe7\xd8\x1f\xa1Z\xadXizo\xfco\xde>o\xfcw\x8d\n-\xf0\xedx\xac\x89y\xf7K\xbd\x0fy\xd2\xbb.j\xda\x19{S\x02\xdcs\x0b\xbb\xfc\xac?K\xa4|V\xe1\xd2\xdd\xd8\xb20\x90\xb9\x9fe\x19D\xf9\x8fd\xb3\n\x9a/\xe2\x08\xb8\x08\xc2)\x7f\x9e\x9b\x0c_%\xb3+x0z\xfc\xa8.\xe9\x94y}\x80\x7fzP~k\x1e\xb5\x18ge\x84\x8a`\xa1\xdb_r\xacZ\xca\xda\x8cI\xdat\x84\x9d\xbd<,\\\x97<>,\x1f\x14\xd5\x96C/\x04X5\x84(\xa6\x96\x1c\x05\xad\x08\xa0\xf8\xd4?\x7f_\xd6AlZY_x\xee>b\x94YP\xe1\xaa\xcc%\x8a\xbb\x19g\x1a\xba 4\x99g\xbd\x1bh&\x13\xadg#\xcd\xbax\xa6\x08\x18UU\xba\xb5?M\xf3;\xb5>Y\xe3{i{\xd4l\xbb]\xc7\xa5\xd9\x80s\x9ap6#\xceg\x11\xb1\xefM\x86\x1cuA\xb1o\x0d\xc6\x9c\xc7\xe2*\xf0Z\xe2]#\xb7I\xd7\xb3Q\xe7e\xd6\xdd\x92a\xb7\x17\xd3n\xff\xc6]\xff\xe6\xdd-\x1ax6\x13\xcf'\xc6\x80\x98y\xbd\x1az$S\x8fn\xec\xd9G\xdf\xd6\xe0\xeb\xcb\xe4\xd3\xc6\xa7\nM\x17^Y\xd1F\x19\x02j\xd3'\x83\xaf\x7f\xf0\xf5\xef\xd3\xd7\xaf\x1f\x0d\xa8\xc7\x0eB\xf1q\xe9\x08>\xaf<\x05@8p4k\xf6\xa3K\x81\xf2\x95y\xdbw\xad\xd1\xdf\xa8\xf1n\xaa\xc8\x8f\xd4\xafo9\xfa\xffDG\x1f\xb7\xa8\xbe\xaf_\x12\xaaT\xde7U\xddo9j\x94\xe6m\xab\xec7h\xeeUS\xbf\xc2w\x0da(\xff$yY|\x12\x84\x8b|\x08Q\x88)\x80\xc4\xc6\xd7\xef*I+\x04\xbenD\x99\x10\x12k\xd1%\xe4\x9bzT \xf9\x00\x8f&i\x1f\xf6\x1cEBh\xf4S\x19\x9d!\x10\x07u\x01X\xb9\xb0&\x80\x1b\x07~\xa4a\xf3\xb8c\xdem\xdd\x0e\xf6\xf5\xa8\x0br\xa4\xefz\x98\xff\xff\xd8{\xf7&\xb9q$O\xf0\xff\xfa\x14\xbe\xba\xb3\x91\xd4\x93\nm\xd5L\x9f\xd9h\xb7\xc6V\xaf\xaa\xca\xe9*\x95NJM\xef\xd8X[\x08\xc9@Fr\xc4 \xa3HD>z\xb7\xbf\xfb\x19^$\x088\x1e$\x91\xea\x9e[\xe2\x9f*e\x90\x8e\x07\x01\x87\xc3\xdd\x7f?\xc0\xb9Y\x81u\x8c\xcfv\x80G\x87\xde>\xf5\xa5\x9c\xf4B\xa7\xbb\xd8\x89.p\x8aK8\xb9%\x9e\xd6\x9c\xa3\xf8Cx\xb8\xf0\xc3\xf6\xea\x1fI\xcc\xe7E\x8e\xcd\xd9\x0e\xcc\x89G\xe5\x07?$g>\x1e?\xe4\xc18\xe7\x91\xf8\xab\x1c\x86\xf1c\xb0g\xf9\x85\x0e\x8f\x99\x0e\xbd\x91\xe3n\xcaA\x17o\xe5\x9c\xc3m\x8ec\xadg\xfb\xff\xd5P{\xceh\x8f\xef\xd9\x0fk\x05\x9f:\x0b)1\x8f\xea\x8a(\xac$5\x85+\xa7\xb9*\xc9\xf88J\x92\xab\x88\x1eH\xfddQ:\xf9U\xcdr\x05\xf3\x80j\x05\x9f\xebe\xbd\x9fx\xce\xf5\xdc\x8e\x89j\xa5\xd1\x84\x8b\xde\x8a9z\xdal\x9b\xef,\xa4dL;\x03\xb9\xba0\xb9\xeb\xb69\xf4\x7f\x8e\xb5\x192l\xf2\xe9\x0f@u\x88\xdb\x93lz\xc4\x15=S\x97\xb8\x82r\xe8\x13W\xea\x1c\x9d\x82I\xc9\xa8W\x001T\xc2\xc7\xf6~\xdb_l\x96x\x0d\x12\xb5\xee\x0fe\xcd\xfa\x85?Q\xcf\xf1w\xb7\x16L\x02]\xf0\xca\xeca\x8aK\xa5hJ\x812\xe5\xef\xabg\xca\xfa\xaa\x12\xae\xec-_\x1b[Id\x94&\xf5\xa0\xeeB%u}\"\x95\xe2@\x82\xb2\x1ed\x02\x97\xe9Tt w\xd3*\x88\xc9\x8b\xf8w\x06y\xca}\x86\xca\xdb7\xa4\xda^6\xf5\x8e\xc6v\x0e%\x8d\xbf\xc0\x07U9@A\xbe\x0b\x845\x07\x8d\xd6\xba\xac\x9a\xe2K\xc7\xf7\xa3\xed=%ao\x8a\xd7\x0f\xae\xaa\x93\xfcot\xa7\x84\xf2j\x81\x0bu\xe7\xb0\xda\x98$\xde\xd8\xb8\xfeU\xbb\x9b\xf9\xd7\x87C\xb3;Ut\xe3\x99\x8f\xc2#\xfdR|\xd7\xf7msSv\\AN\xces\x91\x13c{\xec%$\x0e\x80\xdf\x1b\xeaH\xd4\x8eu\xc5\xa0%\xfa&0\xdarN\x1a\x0f\n\xe7&\xb2\x99\x8f\x13\xf3}}\x0e:\xf0M\x01\xcfm \xb8G\xdf\x1d\xeds=)'\x0fs?\x9d\x17\x0f\xef\xb00<\xc3:<\x906\x9cN\xa7R\x02!\xfdK\xa1tww\x00g^\xf0\x1e\xbcU9|\x9f\xb22\x17\x87\xa5d\x0e~R\xe8\x0fS\xe4\x10rc\xc5\x15:\xc4\x95zJ\x0d\xd3\x94;\xf8\x15\xfc\x94\xcaRd'BE\xd2\x94>\xf8\x14\x7f\x8a\xe4\x84\x0d\x00B\x9b@\xb0\x8exP4}Cx\x80\xeb\x90\xe5\xc2\x18\xdb/\xaf\x8di\x96\xb0\xf0\xba\xd3ew$E\xd8\xd8\x18\x85\xc5\x91\xdf\xadH\\\xa2qg4\xd7\xb4w\xcbzW\xde\x94;\xb1q\xe8U\xaef\xbe$\xe3\x91\xb4\xab\xa6\x10\xfe\x88\x14\xf4\xde\x0d\xddX\x83\xb4XK\x85\x94\xd4HG\xe9l\x87\xbe\x17\xb3\x94\x93\xfb\x81\xc0?cS\xf3\x17\x10~\xc5\xf0G\xf3L\xde\xb9\x13\xb7\xabHw]\xd6\xfb\xb9\xa6wW\xeek\xba\xdb\xaaE}[\xd6\xbb\xe66q\xdf5W\xf2\xa1\xac\xb7J\x14W\x0c\x93\xe4\x18\xfb\xf7\xae\xb9\xadYy\xa0\xdb\xff e\xb5\xdd)&\x96\xa0\x1c1\x00\xdb+\xc1^\xdc\xd4\xdb]s\xba\xac\xa8h\xcb\xf4\xea\x1dY\xb25S\x05a\xd6k\xcf\xc5\xe3\xec\xba=\x7f\xe9\xa5\xccG\xd1_\xd45i\x9do\xbdx\x05:\x16l\xdaB\n\xce\x19H\xd9\x06\xec] 2\x7f\x92dZ D\xb1\xb9\x14\x90\x992\xa7\x02\xaf{\x9b\x14\x9d_\xd3\x85f\x9fk\xfd~\x9ck\x97\x8d\xcd\xdf\x8f\xe5\xbe.\xeb\xfdy}\xd5L\x9e\xc47\xa4\x12\x9f\xa5\xac\xf7\xdb\xb2\xber\xb2\x19\x92\xa63\xd9\xedZ\xdauI_A\x92 \\#\xc1\xa2\xe8g\xf3\x1a>?\xc9\xb8=\xd1< \xc2\x95GX\xd3\x8a\x9c-\xc1I\x06\x04\nR\xef\xf8\x9f)\xfc\xfaA\xfcp\xaa\xffCP\xa6\x18\"\xcbzG\xef\xb6\xcd\xd5UG\x97\xb7.\x1c^=\xe7Uib\x87\x0e\xca\xbah\x05\xb7\x03\xdd\x01%\xc55\xf0y=8&\xfb\xde\x10eU:\x00\xd3\x9a\xff\xc4\x15\x8a\x88\x1f\x1d\xc8\xbd\xa4\xdd\x96:AD\x9bh\xd1\x1c\x0e%\x93|\xedL\xe5U8\x00\xd6\xa2\xa9\xffCq\xd8J?\x1a\xc2\x07\xff\xf9\xa3\x90\xfaJ\xe8\xaf?\nU\xf3\xb9\xb7:\x18m\x0f\xbd\xe1!\x06\x14\xa7\xae\xfe\xfcK\xd9uZ\xc8\xab\x92\xbdl[r\xff\xd9\xf4\x04\xca\xcf\xb3=\xd5\xac\x9c\x9a:\xe8\xa3J }\x91\x8b\xf2@;F\x0eG\x105\xaao3\xfe\x04e\xa7Z\x05\xbb\x13\xe5\x07\xad\xaa\xbc\xa15\xedl:\x1e\xad\x99\xcc\xee\xb0\xe6p\xd9\xb1\xa6\xc6\x8f\x15\x97MSQROh\xef\x1f\xaf\xa9HE\x91\xdfS\xb3D\x8bf^\x93N2\x14\x0du\xc2\x93/e\xc5\x1b\xde\x9c\x184v\x0e\xe4\xf0jG\xd9\xd3\x0d\x9c3\x0d\xa2\xb1\x1el\xea\xc2\x9e\x96rZ \x83\x99\xfev*o\x1aI-\xcf\xdb%<\xe8\xf5\xbd\xcc\x99q'\xdaU\xb9?\xb5t\x07\x87\xb2\xbb\xa4\xd7%\xb9\x19s\xd6\x1f\xc4\x04\xd1\xdb\xa4H\xcdL\xc4\x81\xcf_\x96/A\xd5\x03_\xe8\x91\x0d\xb4\xf4\xa7\xba\xa6\x05\xed:qm\x03\x9f\xa9\xd0R\xb2\xeb\x9c4\x86w\x0dS\xd7\x82|\xfex:<\xc1\xe6\xf8\xd3\xcf@\xaa[r\xdf\xf1\xe1\"\x95=uF\xeb\xe2\xb5l\x8c\xb1,\x02\xb1\x0d\xfdE\x8c\x0d\xc1\x0cT\xeb\x9f\x1fw\xa0T>?\x03\xcb\x9c\xc0CS\x97\xac\xb1F\x91]\xd3r\xc4\xd6\xa9';\xf0\xfd\xf7\xa6d\xf7\xc61B\xaab{?\xd1\x1b\xde\xa8B\x91\x96+\xf2mer\xa7\x88\x8b\xeb]\xe4\x1bC\xda\x98(\x01\xd9\xe7R\xf6S\xe35%\xed\xc3\xfb\xd7\xbaW\x93w\xd8\xe9v\"\xb6\xad\xe6\xcd|B\xf7\xdf\xc0\xda\xf0\xef\xc1\x81\x97BK\xea\x01v\xe2\xd0^<\xbb\x95\xb1\x84\xa7\xcc{r\xc6]9m_\xce\xb43\xa7\xec\xcd\xa1\xdd9\xe9\xfb\xe0;t\xfc\x1b\xe5\xdc\xa5\xf1}\xda\xbfS\x87\xf6\xeax\xcbs\xee\xd7\x13v\xec\x9c{v\xca\xae\x9d\xb4o'M\x919Kx\xe9\xfe\x9dc\x07\x8f\xee\xe1\xe1n,\xd8\xc7\xc7\x9f\xa1\xdf\xd3\xdd\x9d\xea\xa3\x98\x1e6S\xbb$\xb6\x8e\x99\xb8\x93|F\xe6{J\xde\x14#\x17\xd38\xc9\xf6\xadc}\"\x13\x1c\xb78\xd1\x95\x80+\xff\xac\xf6%nYNh\x8d_{g\xb4 \xe7\xdb\x8e\xa6\xadh\x08\xc4\xac\xc6\xc5\xf6b\xd8R\xc4m\xc4\xe0HG\xae{\x1d\x8dv.[\xd0\xb6\x021\xfb\x0f\xb7\xfc\xfcm\xcbe\xed%\xd9y\x0b,<\xc3\xa23\x04\"\xb6]\xc4\xaa\xcb\xb2|\x96Xo\xcb\xec\xb6\x80\xc5\xe6\xc9D\x9fo\xa5\xb9\xde\x96\x91}\x86ZfZu3q\xbf`\xaf\xb9_5\xf5\xee\xa3q5\x82\xf3\x15\xc6\x08\x80W\xbf\xbe{\xe3\xe7\xf9\xb7\x7f\xe7\xff\n\xfex\xfe\xeeG\xf4W\xe3\xc5>g7T5n1\x0c}\xeb\xadP\x83\x10\xbd\x1f`3\x81\xdfS\xc9\x0b@\x93mk(k\x95\xf6;,\xb2\xf1\xe5\x00\xf8\x90py\xf2\xff\xb0/.'\xa1\xba\\Q\xea\xf5\xa0\xbc\xf3w?j\x81\xe7\xef~\x0cJ<\xd5\x97\xd2\xde\xf1\x08\xd4\xcdKh\xdc\xd00\xcf\xd4z\xcd\x15H\xd7\x95\x13r\xce\x8b\xfe\x15\x91g\xe4K\xa2\x1a-y\xfb\x9dQ\xde\x82\xb8\xd9U8\x08\xf5C\xa02\xb6\x85\xe5\xa8\xa3q\xa6\xb8\x96\x12\x99\xf0g\xce\x10\xfd\xeb\x84\xd3\x08\xaf'\xd1p\x1fu\x8e\xbf\xd7g\xcb\x8d\x9b-n^\xde\xcb\x83\xc6\x8eVt/\x0eOg \x0c\x00\x1d\xd4\x1c9\xc0\xc9\xddvn;\x9c\xb3\x82\x166\x1a`\x9dhe\xb7\xd46\xaf\n\xc7\xdbAod.L\xbb\xa7\x91\x1e\xc8\x84\x99\xbc\x1d1d\xa2\xfd\xd9\x91\xb2\xba\x97\xe6\x17\xe9<\xb7p[{\xa5\xe8\xbd\xa7+\xa7#7K\xb6\x13r\x19\"f\x8c!PO\x16q\x0fwo\x1f:\x1f\x84t*\xf3\x08\x03\xa0\x0ck\xb5\x1f\x0dC\x80\x95\xf2\xab!\x0d\xa3\xf5\x11U\x02\x1f\x86\x05\x9d\xa0 \xc6\x1f\x1b\x1d\xa9\x07Y5\xee\x8a\x89\xd7=\x9a`KW\x89X\x17\xa6>\n\xad\x10\xef\xea\x98\xd1\xe8Y+bh\xbb\xd9\xe4\xf0j\xc0\x9baM\x94\x05Z\\kp\xbd\xad\x93\xa4\x89\xfaF\xce\x8c)\xbbU?\x99\xb6)GX\xab\xe3\xce\xcbz\xf6^\xd2\xe2\xfa\x1f\xbe{F\xeb\xa2QW\x84\x89_\xfb;\xed\xd4kz\n\xf4}\x9b\xd3\x08\xe7\xe5\xb4F8\x1bcwMZ:\xa9f\xf9\x86\xfa\xcaf\xcf\xf8\xc7U?\xb6\xb4\xa0\xe5\x0d\xaa\xafz\x1bo\xf8lv\xd2\x0d\xb7O\xd4\x91\xb5\xf9B\xeb\x0e\xaei%.\xab 5\x90B\x1c\x13\xd4aH\x89jnky\x9bES\x1b\xe3\xac.\xbb\x16\xd7\xb77E)\xdc8\xfa \xdc\xe3\xfa\x9a[\xe95kjj\x7f\x96\xa4)79&\xb8\xb3f+\xfa\x1a\xfe*\x84g.$\xef\xab\xb9f0\x84gqz\x83r\xcdf@ftz+\xa6\xcflG\xc4\xc8\xe7\x99q\x86C\xeeY\x0e\xf6L\xe7\xe5\x92T\xa4v\xb3\xb0\x13'f*r\x01\xbb\x99'\xaevF#;\xfb\x06\x9eA\xc4\x92\x8bw\x06\xb7\xaa.i\xb7\xeb\xc4\x14\xa1\xe9\xf7\x15\x9e\x1bR\xd1Z\xf8B\x8c\xa9D\xef\n\xe1 \x11\x879f\xdc\xcc>\xfe\x88\xf6m\x92j\xfe\xf6\xfe\xc9C\xd3R\xe8N%\x13!\x02n\x1c\x16U\xc9k\xd3\xce\xe6.\xa8\xff\x86\x8e\xa4*\xbeCS\x97_\xa2n\xa3\xd1\x10\xa9W\x8c/}}:\x90\xfaYK\xc9N4[\\\x87\xaa\xfd\xe1\xcet.w\xb4f%\x0b\xa3\x06B\xc6\x95\x16`\xfa\x0d$\xa2\x94T\xc3\x8f\xfd\xb7\x87'\xf4n\x03\x9f\xde7-\x83\x91Y\xf5\x07z\x7fI:\xfaT7\xec\x96^v\xe54\xa3O\xbd\x82\xb6D\xffV\x95\xf5\x97~_\xa7\xc5\xa9-\xd9\xfdV\xcc\x8f\"\xe6\xec\x1e\xebA\xeb]\xb4Rz e%\xc6^?\x0e\xeaq\xdd\x84\x1de\xa4\xac&\xd9\x16\xea\x15\xad\x82\xa5\x97\xb2\xafR\xfd\x8a\xac%c>\xa2\x9e\x0f\xe3\xe1\xc0\xac\xfe\xa9\xecX\xd3\x96\x05\xa9&EA\xae)\xd9\xb9\xf3:Ii\xde\xd0\xb6+\x9d\xc4j\x19\xf0\xb8$]Y\xa8(@9d0\x05\xea\x80@\xa2\x90\xc2\x1e\xd9\x7f\x0cl\x8d\x10\x8eK\x02\x90\xe31\x9f\xb8\xf0\xb9\xff5WHuw\xea\xa0 G\xa9f\xe5qQ\xff\xb9=U\x03S_A\xbbN\xfa\x81\xf4\xe8Y\xe2\xc4\x16\xcc\x7f*\xaeIY\x9f\xb9 \xb5Eu\x92\xd7\xfbV\x95\xf1 ?\xd9\x13\xde\xb7S!\xdb\xa0\xe9Zd\xed\xa8\xa7\x81\x1c\x8fU)\xfd\xef\x8f\x1d\xee\xf1\x8e\xf1#\x1bkI\xddI=} \xc5uY\x8fRRD\xcd\xa97\xe9dI\xae\x9e\x91V\x8fe\xf4\x88\xfb\xaa\xc5\xe0\xb9\xad\x973\xfc\xd8\xd2\x9b\x8c\x13\xfc\x9at\xd73'\xa4\x93H 0\x1el\xdbQ\xb6\xb5\x97\xb7.\xde\x16B\xb0\x95\xe2U75\xa0\xffIH-kF\xf7H\n\x0eDRd\xc0;\x0c\x10\x1b\n\x08\x0fG\xff\xd1\xde\x93\x96u\x94\xfd$F\xc5\xfe\xdc2\xf2\xb4u\x9b\x10\x9dA\xbeT\x0e.J\xae-9Q\xf8\x124\x9e\xe3\xff\xccP\xdd\x90\xcf\x92A\x98\xdd\xf6\xab\xb69\x085A\x8eGhN\xecxb\xc3\xdf\x865`H\x10\xe9*Y\xdb\xd4k\xca\x0c\xb2\xc8\xf1\x98A\x8a\x98/*\xa3\"\x838z\xc3\xed\xb1\x82f\x10\xd5\x7f\xbfa{\xb1\xd4\x93$\x7f\xa1S\x8f\xbcq\x10\x92\\U#\x0fZ\xbf\xdd\xc8\xd8\xd7\x05\xadw\"6\xcf\xd4\x82\x90\xea\xc9\xf0)!\x99\x0dys\x8e\xf9_\xfd\x07\xfe\xa0\x9a \xef\xf2\xae\xe8\xd1H\xf8\x0e\xff\x8f\xdd$<-\xe7\xbf \x07\x02h\xf7AY\x8b\x8b\xf67\xa3\xe7\x87\xa5q<]:9hA=\x1f\xd2\xf2\xfc\xb5\xed\xa9E\xd5|D\x11\xc7F D\xb8\xfc\xd3\x87\x9f\x9f\xb7\xb4kNm\xa1\x0eB\xe2Hx\xaa\xcb\xdfN\xb4\xbaW\xe7\x93\xabR\x8d\x1eS4\x01X\xce/\x88\x03C[\x92\xaa\xfc3\x96\xcb\x0c\xb2\xaf\xac)\x9a\n.OWW\xb4\xd59T*\xf3D\xf6\x05\x0e\xa7\xae?\x91\x02aPQ\xd2!Y\xa9 \xf2\x16(*;9f\xaa\n1:O\x88H\xbfF\x05|\xe6\xd5?\xdf7\xcd\xbe\xa2\x1b1\x16\x97\xa7\xab\xcd\x1b\x85\x8c\xfc\xfcT\xb6^\x88\xec\xae\x9bS\xb5\x83Ky\x04G\xa5\x15\xa4nj~\xd0\x10:\x01\xaf\xf1 \xdd\xec7g|\x08\x85)\xfah\xf3H\x07\x96IQ\xd0#\xa3\xbb\xa7\xf8\x95\xc2\xe2\x02\x9a\xa3p\xdc\x17\xf4\x0c\x18%\x87\x0eN\xddI\xd0\x0c\xcb\xcc\xa1cY\xf1\xd6\xb1F\x9a\xc2e-\xb2+\xaa\n\x1f\xbb\xfb\xa3\x98C\x84\xf1\xa7\xef\xf1*%\x03\x01\x94L\xb3\xf9*6|>\x19\xe8\x9d\xf8\x94/\xeb\xfb\x0d\xfc\xd4\xdc\xd2\x1b\xdaJ\x0c\xfd\xa7\x0f?\xbbk\x97\x17\xe9\xa5\xe0b\xd0Tw^\xba\xe2\x9a\x1e(|\xbef\xec\xf8\xf9L\xfe\xb7\xfb|&\x93n\xd4\xafgb\x96\x15\xc6\xb1\xb5\xbaG\xaf\x07\x02\x11\xe8\x03\"\xfa\xea\xa9\x8f\xb67T\xc5\xd0\x0f\xe4\xd8\xc9)\xc3{ H7TF\xa1\xd0W\xc2\x96\xef\x00\xb9\xa8\x1d\xc4.PU\xcdm\xf7\xc2\xf3\xed~\x07\xe7WC\x0f\xf8'\x17\xc45;\xba\xeb;\xa9\xbc}\xa7\x03\xddy\xae\x1d\xf9\x1d\xbc\xac\xe1\xa7\x8b\x8b\xf7\xf0\xe3\xdb\x0bhj\xbd\x8c\xe4\x02\xbd\x17\x9e.|f\xfe\xbb=\xc5/\xee\x8f\xf4O\xff\xfe'\xf4a\x05\xe1\xe7\xdfZ\xcd!\xb9\xc5\x89\xafpl\x9b\xdd\xa9\xa0\"\x0b\xa9m\xedDq]~\x07/\x87\x13R\x07\xa4\xa5|\x1e6\xb72\xe8W\x90\x82\xeb\x84\xa6\xf9r:\xf6\xe9\x97\x97\xa4\xa3;h\xf0\xcbY|\xea\x0dx\xf7E\xbbD&\x1d\xbb\xa6\x07c-\xec\xe4b \xba\x1b}\xf6\x11\xa9\xed\xab\x82t\x91\x8d\x12\xcb\xbe\xa5WMK\xcf\xf4\xcb\\&a\xe5eY\x95\xec^0\xdf\xebp\x97PQ\xed\x8d\x85v\x19JS\xab@\xafxA\xac\xbb\x0d<\xf9\xd4Q\xed(\xe0\xa3\xc2\xa7\x1d\xd73r\xde\x91\x9a\xec}=\xbel\xa9pph\xa1\x9b\xa7\xf8ly\xd70\xfaB\xf1Y\xab\xdcA\"\xda\xae\xf4\x8db\xfe\xa9\xee\xcd\x9cb\x1c=\xc2K#\xd2\xa1\xddtbY\xf4\xc4\x82\x96\xf2\xdd\x81*\xffu\x9f5\xd3\xc3\xac\x87\xf5uI\xf7e]\xfb\x0e-\xb7%\xbb\xf6(\xfd\xfb#\xdd\xc8\xf9L\x8ee\xb7)\x9a\x83Oc~\x14\xab\xadS\x1e'vMj[\xb3\xc0\x13\xe5f\xa4\x87#\xbbW\xcb\xf3)*\xec 2U/=\x8aDtP\xf8\xaa{\xdf\xb2\x8a0\x1ciQ^\x95\x05t\xf4@jV\x16\x9d\xbbd\x10\xca\x0cY\"&E\xf0d\x97fq\xfc\xc2U\xc7%\xd5~5\xc3`pl\x03\xb5\xa9\x92\xcb\xe6\xc6cl\xc8\xae\xaa\xe9lw3\xd6\x9a\xcf/\xeb\xfb\xcf\x86\xe3\xbb\x06\xd2^\x96\xac\xe5\x8b/\xd0*\xa5\xa3\x1dq\xa4j\xea\xbd\x8a\x1e\xb8\x9f\x8ckM\xa1\xf4e\xab.]s\xca\xacS[E\xc84{\xaf'~U^\x8a\xa6*\xbd\xdeAw:\x1e\x9b\x96\xc9\xbb%\x8a/\xcfO5\xff\x0f\xdf/\xe5\xf7FAa\xc2\xa2A\x8d\x87\xe6\nNL*\x1f\xbd\x9c;\xae\xf8t4\x80T\xb0\xa7\xb5\xe0\xbf\xdc\xa9HFoT\xbfD\xf4\x9d\xfcDn=o\xef\x08\x9f\xc0\xf0\xed\x0bxOT\xaa\xb2j:\xe97\xc4\xb2\x86\xd7\x7f\xff\xf7\x9em\xea\x87\xa6\x81\xab\xa6\x81\xefa\xb3\xd9\xa0)\xf5b\x10H}\x8f\xffH\xea\xfb\x0d\xaf\xfa\x87\xb69<\xb9j\x9a\xa7\xf8c\x9b\x0d\xbe\xf7\x94W\xf0\x84\x8b\xf8$\x1a}\xd1<\xf9;.\xe3)\x8e\x04\x08\xc8\xf9\x8b\x7fl\xbe\x8b\x8c\xcd\xbf\x90\x1b\xb2xp\xe0{a[q\xe9\x0bF\xa1\xec\x9e\xfc\xd04\x9b\xa2\"]\x17\x18\x04\xd9$\xfe\x82\xec\x8f\xf1\x12^/2:\xfd\xf0\xfcCdx\xde\xdf\xb3\xeb\xa6\xf6\x0c\x90l\xc9\x0fM\xf3d\xb3\xd9\xe0\x9a\xb8\x1f\x9c'\xde\xdf\xc5\x04\x12\xc36u\xd4\xf8\xcb\xe7r\xd0\xde\xbc\xfd\xf8\xfa\xc3\xf9\xfb\x8b_?<\xc5]o\xb2*9\xd1\xfc\x95\xc9\xea\xfc\xc3\xf5\x8f\x91\xe1\xfa\xb1\xc1GJ\x0c\xd5\x8b\xef\xe1\xef\x8e\x97\x9b\x1f\x9a\xe6\x7fm6\x9b\xbf\xe0\x0f\x92\xfa\xfe\x8c\x9bk\xfc\xe9\xa34@~!mwM*>\x88\xfe\x86\xfb\x86\xc9\xae\xd9SmyeU\xfa\xa9>\x0c\xd5\x8aF\x89\x89-\x9e\xfa/\xdfC]V\xde \xeao\x0b2\x13/\x04\xc7K\xf1\xa5\xd7\x83\xda\xd8\x86\xcb\xfb\xc1T\xd1\x1a[\xdc\xf3qy\xaf3\x9b\x1di\xa7\x0e\xd9\xf3\x1f#f\xc8s~\x16\xdd\x88\x1f\xb8)\xf7\x18\x88\xb1\xab\xf0\x1dGE\x16\xdc\x1a\xc4Ww+\xe9\xd5x]\xdd\xebs\x93s\xe0\xedMG W\x8cJk\x86\x9f\xb7\xdd&?\x7f\xecV\xa1\x0et\xba\x89\xf2\x04G\xd5\xcc|t\xd54\x9bK\xd2\x8a\xce\xdd=\xbf\xdf\xfc\xf9\x91\x1c-y\xd6\xc0\x8fU\xa2)\x8f\xf8\xb3|{q~\xfe\x97\x8f\xbf\xbes\xff\xfa\xfd\xf7\xdf\x7f\x8f\x7fG\xfe\xfc\xe0\x07P\x90\x07\xbeL\x95\xc1 \xcf*\xa7\x8ejP\xd5\xfeT\x91\xd6\x95\xe5\x8a\x90\xa9 \xc36\x7f6\x00\xd7\xd4\xea;S\xf6\x03\xe2=0\xb6]\x99b\xf0\xf9\x7f\xf0\xe1\xf8\xac\x0e\xb9\xbd\x19c\x0e\xeeF/\xf9\x17\x1e#\x9a\x14_\xf8\x9a\x1f\x0ekWeEq\xfd\xab\xf5\xc3{\xdavM\xed]6\xca\x83#\x80T[\xf1e|0\xb7\xe1a\xe1\xc3U\xcf~\x97\xae\xfd\x01\xbc\xadx$\xc6\xe6\xd1\x0bx\x84\xad\x9aqw7\xb2G\x8f\xce|\xb2D_\xde\x91\x03\x97\xf7\xdfe\x93\xff\xd9\xfb0\xef\x8b\xf5lj\x87\xce\xaf\xd4\xc1`<'\xe4\xd7,;\xb8\xa5U\xf5\xecK\xdd\xdc\xca|\x94k\x91Y\xa92I\xf0I>\x9e\x82g\xd2\x00\xb5\xe6\xa5TFF\xb5|\xa2\xd5{\xe4\\/\xa6\x9d[\xc9g\xb1 \xf4<\x94\x14\xc1F\x8e\x8bXNV\x12 \xffYM_W\x9e\xa8\xa6\x9f\xb9\xf0D\xc0]\xd4P8n\x05\xed9\xfb\xd3\xbf\xff\xe9\xa9g\x92/\x9d#\xe3\x8a\xfc\xd3D\x0c\x03\x17\xf7\xed\xe6\xbbo\xbf\xeb\x1ey>\xbb\xf9/ +\xc3=\xc5\xf3\x18\x024PMAko\x15\x84l\xe4\xe8\x1e\xd0c\xeai\x11ER\xf0A[\xa0\x06\xccH|\xe07\xeeOv\xeb\xc7) #\xf0\x8d\x8d\x91\x81'\xb2\xd2\xe7=(E\xfd\x9f\xf0I\x8e\xc5\x06\x0e\xa6\xbe[\x98\xc2P%\xff\x93#\xd0R\xf8\xb1\x01\xbe\xe4{\x0e\x15\x96\x04i\xd2E\xa6\xf6\xcd\x8d\x8e\xa8\xc4@7\x19Qx\xc6\xc4oO\xca\xba\xa86\xd0\xd1\xea\xea\xd9\x90\xa9h}\x81!\xd7\x13K\x8cLo\x0f2gm\xd1C\xb4F\xde\xfc(\xffXv\xddIz\xf3H0f3$\xf8\xdb\x1d\xb0r\xcd\xf0\x9f\xcc\x7f\x8c\xc2F\xe6\xdf\x19m\x0f\x9d?aL\x176/\xe4\xe3d\xb8\x0d%\xe2\x9e\xc9\x99\xf56\x147\xffm(S\x1a\xe4q\x08\xcd\xcf\x8eC\xc55\xad\x93'7\x14'cn(Sz25\x8bn(\xfe|\xba\xa1Li\x89gLg\xa6\xde\xa1\xb2\xact\xbc\xa18\x89yC\x99\xd2\x85 \xc9z\xba\xf4\xfbE^\n\xaa\xd8\xc8\xda\xd5\xeaQ=\xe3\x07\xcf\xfeGy\x13\xd7\xb5\xc53\xc0\xaeKWW\xd9[\xf2\xfeT#\x00M\xabn7\xaf*\xa9\xc3s\xd9\x92\xc6\x15\x87\xba|\xe0G\xbb\xf2`\xdfa0\x14\x03B\xda\x88\xf0FE\x19\xf5u\xb8\xb0\xc0\xa3C\x19\xb5\xb8pqkl\x8c\x00\x1b\xb0k\x99\xf4\xb3\x1f\xa3:\x94\xd8\xa8br& \x9ePy}\xc8#\x8c`\x1dJ\xa0\xff\x10M>\xc3\xf0\xadC\x89(\x00H\x1c\"P\xd5\xcc\x00\xf6y\xe5a \xd3\xa1\xe0\x80\xd9\xa1d\xec\xd8t\xa0\xa0W\x94\x0b \x8c\x03k\x87\x12\x84\xd8\x0e%s\xd7'\xc3\x0d\xbd\xd2\x98K[\x11\x82\xe2\x0e\x05\x05\xe5\x1ar\xd3\x82a>\xcd\n\x89\x032\x07\xc9\x8b+\x14\x13\xdd\xab\x8b\xa0\xf5\xa6\xd5\xd5\x16C\x8c\xc9\xb2\xc0vG\xa4;\xa7\xbd\xc7\x9d8[\xc0\x8e\x16\x15\x91\xb4o\xe2\xfe\x0cG\x98zJ\x0b2\xfb\x11j\xc7\xbf\x1a\xf9\xf9N\xce\xfe\x19\xb0f/\x0f\xc1=\x9cI\x9e+\x14^G\xe52\xe1\x12\x1fK\x96\x03}\x06Q\xee\xd4\xb2\x05z\xa7\xae/\x11\x1fDlge\xddm\xe0\xa3\"F\x1a\x89\xd3\x19\x07vR\x10\xe1C\"g\xb7\xf2\x8a\x8e\xc4\x9e\xc9\x14\x06\x11yo\xda\x96\x16\x0c\nR\x15\xa7J;\x14G\xc2\xaeN\xdc:\x1eWp\xaa\x87\xd1\xecD\xff\x9b\x13\x83\x92\xd1V\xee\x0f\xcd\x8d8\x1f\xf4\x07&\xf8\xe35\xadeW\x80\xb4\xe3\xf9l\x1e\x1b\xc7\xb5\x88\x88\xbf9\xe06{N\xd1\xd2]\xd9\x03\xca\x88 \x87\xbb\xbdn\xbaq==\x03\xd9\xb8\x12\xf33\x94C\xf2\x86\xa8l\xf8\x92\xb2\xe9CS\xc5\xe5\x1b\xd2\x0bo\x1b$*\x1ba\\\xcbh\xfc7\xeaVF\x85{\xe3\x9a\xf5\x92\xf6\x9f\x80\xee\x84\xb7]L%uM\x8bl\xdeX\xe2\xe1T\xb1\xf2X\x95\xb2\x11c\xf9\xe2A|f\x8f1$\x83wW\xa6i\x8a\x89h\x0cq-U\x11\x1f\xd0+\xe7\x12e\x91\xdf\xd9\x87\x83\x14\xf9\x0fkZ\xd9\x81#i\xc5\xc8)\x10\x8bb\xa1\xe7K\x96\x89)(\xad\xd7#m\xe5\xb5\xb3\xc2sW\x7fV\xc2\x0e\xcd\x90\x96\xd7Rqc\xcd\xb8\xe1\xfa\xc7'\x9f\xeb\xcf\x8at\xa8\xe7\xbd\xb7+\xfc|\xdd\xbf\xba\xa55kK\xda}\x1e\x8c7q\x98\xf3\x00n&\xde\xb7\xe13\xa5Q58\xfa<\x96-\xac\x14\x9d\xb4\x8b\x95\x7fP\x84\xcdm\x8b\x96owC\x1e\xb6]\xa3\x9d\xa5\x9f@y4\x16\xa8\x1b\xa2w\xce\x81\xc4ox\xc6l\x8a\x1a\xdd\x0c\xedp8\x04\x94h\xa3E\xa0\xff$\xe2<\xa5\xd0\xc4\xfd\x00\x99\xaa`\x04uk\xa9\xf1\xcb\x93#m\xe1H\xca\xf69k\xcb\xa6?\xd6\xbb\xf3%C\x8f\\\xa1\xba/\xc3\xa8\x0e\xcf\xf4\x9dc\x8d^#\xbau\xbc\x87I\x17*\x8e\xaa\x1f\xde\x1a\xd9D\xfc\xcf\xc2gSH\xc4\xea\x00ME\x94\x88\xef\x16\xd9\xf1\x95}\xe3\xf5\x17Z]MS%\xaf\xad\xbaa\xea\xe2\xab\xad\xed\xb7D:\x9f\xfa\xe4\xa8{\xc3\x95KM#\x98+\x87T\xaf\x96\x14\xa2OJ\x1fs-Y7\xec\x99\xfa\xa7\x84\xf7v\xa7\xe3\xb1\xba\xd7\xe18\xfe\xd37\xfa;\x8cG\xd53\x1c\x82.1\x0bp\x7f\xdb\x8e\xdeE\xdf\xc7e\x8c\xe5\x8c\xcd9\xef\xa1\xce\x7f\x9c\x8b\x90\x01@\xcc\x14\x8e\x19\x89H\x0dI\xc0\xfc\x90 \xdb\x98\x8f\xf0\x07\xc0\xf2>\xcc#\x17\x08 \xb2\xfb\x80{\xd6\xa74|\x1e\xf5\x80#\xc6\xe9\xffb\n\x02K^\xe9`\x18\x97\xb3\x12\xd8\x02k'U\x00\x1dx\x87\xac\x00\xe6.\"\x87\xb8\x00\xc2\xdf\x0e#0\x08\xbe\x12\xfeF\xb3\xc9\x0c,9K\x18\x0d,Q\x8a\xdf\xc0\x9e\xe6I$\x07\x10\xecp\x1e\xb2\x03C\xe0(es!\xf7\x81!i\xc4\x82\xe0\xeb\x90gK\x81\xc8\x9dtF\xff\x02\xb7\x9a\x86\xf6\xaf\xa6\x1ddL\xbf\x96\x02\xd9\xc9\x9cMi7\xdc\x12+p\xf0\x89~]#\xf0A\x88\x032\xd9i\x1e\x1b-j\x9f-hy&\x9b\xccc\x048\xfeUY\xb0\xcf+\x8b\xf3\x91\xcd\x17f\x91\xdd\xc8\xa4\x86\xa6\xf6\xa4\xfc\xc8\x12\xb1\x0c\xe3\xac7\xf1\x81\x96\xc5j\x8d\x1el\xf5\xaf\xe1\x16\x89\xc1\xd3\xcd\x9a\xe6\x8bG\xd8\xb1\"\x85\x83^\x04\x99!r\xac\xa8\xa8\xc7\x17\xa3\x9e\xd0\xe7P\x9c\xda\xea\xb7U\xb1\xee\xde\xa9.\xef\x86\x14\x9f\xa1o\xc3\xe3X/T*\xcb\xd6cI\xca\x12\xedE\xdaw\xb1\xea\x1am\xd3\xca\x14W\x8fT\x12|\xbb;U2\xa4\x89\xcbSG\x03 ,\xd2\xc9\x8c\x9d\x0b\xb4\x9d5\xa9-\x8a\x0f\x17\xa2\xfd\xdf\xd6\xac\x1d\xe5a\x0e\x9fX\xaeY\x89\x92ve\xb5\xb4\xa27\xa4f|\x07\";\xc2H\xf0(\xa5\x83&D\xde\xc8\x84\x87\x83\xd4C\xa9f-\xd2\x1b\x19\xe5\x94f\xa00\xf8\xba\xb2\xdeW\xc6\x19\xea\xb1q\x1d\xc2H\x18\xff\x9bu\x12\x93qU%\xc1\x0c\xbd\xf2a\xe2K\xe2Y\xd3\xee(7\xca+#\x08\xb4Z\x94\xabE\xf9\xf0\x16\xa5=\xf7\x17\x98\x96AQsl\xcc>\x95f\xb2a\xd9/2\xdb\x9cL\x9a\xf2av)\xefL \xab\xcd\x99\xbcR\x03\x8f\x94%/\xc6*\x15\xe6\x94\xf2\x1aS~C\x8ay\xd9\xa4\x82[T|3\xc9\xcc#\x15f\x91\xca\xcb!\x95\x95A*\xc8\x1f\xc5\x96\xb1G\xe5\xe4\x8e\x8a3G\xcd\xe6\x8d\xca\xc9\x1a\xc5\xe2\x9cQ9\x19\xa3\xa2|Q\x99\xd9\xa2\x82\\Qs\x98\xa2\xc2\xacP\x198\xa1\x92\x18\xa1\xa6\xb1?-\xe4~\xca\xcb\xfc\xe4\x8bSde}\xca\xcf\xf9\x94\x95\xf1)\x8d\xef)+\xdbS\x88\xeb)3\xd3\x93\x8f\xe7\x89\xa5\xb2<\xcd\xe5x\x92|N\x88@\x9c\xe1i\x01\xbf\x93\x87\xdd)\xb8\xc5\x07\x99\x9d\xe2\xfb\x7f>V\xa7\x10\xa7S\xb8\x1dY\xf9\x9cBlN\x99\xb8\x9c\x9619!+ \xdb\xca\xf3\xb281\x94\xc3i)\x83S\x94\xa2(\xc0\xde\x94\xc4\xdd\x84S\xb9L\xe3m\xc2e84\x0e\x8b\x19\x9bR\x07#\x85\xad)\xdc\xef$\xa6\xa6\x89N\xa5\xac\x8cJ\xf9\xf9\x94\xd2\xd9\x94\x92\xb8\x94\x94\x1f#\x85II=\x1a\xe5QBY\x94\xf0\xdaS\xd9q\xe2\x0cJ\x13\xf8\x93\x12\xd9\x93\x9cn\xe4fN\xca\xc9\x9b\x84\xb2&\xe5\xe5L\xca\xcb\x98\xb4l>$\xb1%\xa5p%\x99\xdb\n\xc6\x93$O3\x18KR\xf8\x94\x90\x99!\xc9\xcb\x8f\x84\xb1#\x8d3\x133q#y\x8fu\x18/R*+R\x12'R\x1a#R\x94\x0fi\x02\x1b\x12\xc6\x85\xe4\xed\xffh\xb4\xf3\xf0 \x0d\xf9!\xf3\xaf\x87tf\xa4-t \xff\x91\x01\xe6\xfd\x06\xaf\xdf\xdf0\xe3\x1f\xcb\x98\x8f\xd8\xf4\xc0\x84\x97\xf3(\xe8\xb4\x185?\x13\xdf\x91\x9f\xed(\xbd)\xa8\x8bd>\xcf\xd1\x18\x1a\xa9\x8b\x8f\xe5\xc8\xcbq\x94\xde\xfe\xb9\xfcFqv\xa3\xf46\xa0c\x98\x8f\xd7\xc8\xc3j\xe4\xe54Jo\xf8d>\xa30\x9b\x91\xb7b\x7f*Sx\x1c3\xb3\x18\xd9\x9b\xa6\x97\xc3(\xc4`\x14\xed$\x9e\xbb\x94\xda\xd1\x85\xccEC\x17\xa3\xbcE>\xd6\";\xbbj&g\xd1\x0c\xcd\x1ag+\x8a/\xbb\xbcLE\x13y\x8a\xbc}\x86h\xce\xa0\x9f\xcd&\xb8\x9c!iP ;7Q\x88\xa5'\xccK\x94\xa9;\xd9\x18\x89\x0c6\x9e\xc9|DIlD\x19;<\x99\x87\xc8\x13\xc3\x82q\xbfSY\x88\x82\x1cD\xc1n\xc6\xf3:G\x830\x87f\x08\xa3\x14\x8a\x12\n\xcd4\x83\x97P \x89\xbfZ\xf2\x061C\xeb\xfd-\xc8M\"\x94\x95B\x08'\x10\xcaH\x1f\xe4\x92\x07\xe5\xa3\x0e2\xcfYf\x0d9i\x83P\xd2\xa0\xcb\xbc\x94A\x08aPn\xba\xa0idA\x1eX\x89\x93q\x97\x90\xf6\xe7\xbe\xbc(\xd7o:\x8a\xc4\xcf\x8e\x93\x17<\x12N\x0b\x0c*\xdc\xd8\x8e239\xd0+g\xbdt21Y0\x96.\x98;a0s\xca\xe0z\xe9\xe4\xa8\xe4L\x1fLJ \xcc\x9bB\x98\x90D\x98=\x8dp\xbdtR\x96Ii\x87\x8b\x13\x0fs\xa7\x1e\xae\x97N\x9a%- 1s\x1a\xe2z\xe9\xe4z\xe9\xe4z\xe9\xe4z\xe9d\xeb\xa5\x93\x89\xc9\x98\xa8\xb8\xf5\xd2\xc9\xac\xc9\x99\xeb\xa5\x93C\xc9\x9c\xae9!as\xbdt\xd2(\x99\x128g\xeb\xe7x\x1ag|T19\xcbR9''sF\xd29c \x9d\xeb\xa5\x93K;\x96-\xc5sY\x92gb\x9ag\xf6\xaeON\xf6\xf4Jc\xeb\xa5\x93\xa2\xac\x97Nf\xc9\x17\xcd\x9c1\xba^:9!{\xf4\xff\xbcK'\xc1\x9e\xddC\xfe\xe5H-\x8eFu%\xcf_\xa9N\xff\xdaT\xa7\x81\\\xe34\x82SD\xc0\x84T\xe7\xf1\xed\xa6\x93\xb3\x9c\xaf\xcb\x8eyV\x07\xffi\xb4.\x8cK&\xc5\xaa\x93\x19\x8c\xf2fWu\xd0\x9b\xb5@\xe4\x0d\xb2\xd8l\x9a\x04+SI]\xae\x05\xa3f\xd9%\xe9\xcaB\xde=+\xda\xef>\x17:\x07\x84O\x01B*n0F\xcd\xc5\xc0\xfa\x90\x85\x1c\x8f\x0f#:f\xd5\x00\xbc\xd6\xd9\xdcP\x90\xa3\xbc\xeaEZb\xfa\xcf\xed\xa9R\x17\xa9\x1e\xdb\xa6\xa0]'\xcf[b<\x10yJ\x9f\x8a\x9f\x8bkR\xd6gX\xb0\xa2\xac\x8b\xea$\xa3/Ue<\xccML\xc2\xfb{*d[\x94!\xa2Z\xe1M\xc7&CN\xe4c\xe4:#\xe9\xc2\xa7\xc0ZRw28s \xc5uY;\xa9T\xa2\x15\xdb\xd2 U\x04?\x85\xefv\x80\xe0\xd7\x0b\xf9g\x1e\x00\x98%B\x8fb\xa0\xf1\xde\xc9\x15tl\xe9\xcd\x03-\xa0k\xd2]/\x9c\xe4\x9ed\xbc#i\xd9\xb6\xa3l\x8b\xa9\x19]\".\x80X\xeb\x01\xdf\x12G?\x8b\x1a\xec\xeb\x7f\xed\x12\xbf\x0c\"4T\x902\\\x10\x1f\xb2\xfe\x83\xbf'-\xeb(\xfbI\x8c\x1c6e\xc4\x91\x8cm\xf1&%\xcdH\xb4 \xaaz.V\xaek9\xe9\xf8\xf2\xb7\x9e\xe5\x7f\xca\\\xfd`]f\x16l\xf7K\xc4\x1b\x85\xe1~\xf9\xd0s0\x11A\x07 (:\x88\xefY\xb1\x1d\x8b\x05\x10u\x10\x1fAH\x1cEX\x80\xae\xf3\nd\xa34qO\x96\xe6L\x94\x9dWX\x00}\x07s\x11x^i\xa2Q\x11\x14\x1e@\x06$\x1e\xccG\xe3y\xe5\x91$D\x1e,C\xe5\xc1\\d\x9e\xbf\xd9U%\xc6+\x8a\xce\x83\x99\x08=\xaf0\x81\xcbI@\xe9\xc1\x02\xa4\x9e_ e1\xb4\x1e\xe4D\xecA\x1c\xb5\x07\xb9\x90{\xb0\x08\xbd\x07\xd3\x11|\x90\x03\xc5\x07\x0b\x90|\x01\xfd\xe49\x1d\xeb\x92\x19\xd1\x07\x0f\x84\xea\x83\xfc\xc8>\x98\x80\xee\x83\xd9\x08\xbf\xa0\x0e\x0f\xa3\xfc`\x16\xd2\xcf+\xaaG\x00\x06\xd0~\xa0L\x80D\xc4\x1f\xe4F\xfdA\x14\xf9\x07K\xd1\x7f\x10B\x00B\x9a \x14=I\xa7[I9\x11\x81\x10E\x05Bb\xcb\xe6\xa1\x03QQz\x8f\x08#\x04!'J\x10\x96!\x05Qyj\xa3\xf7\x1b6\x0b\x10\x83\xa8<\xde\x1e\xe6A\x0dB\x16\xe4 \xa4\x01\xe4 \x86 \x84t\x14!\x84\xa0E3\xd0\x84\x10\x91\xe7ANd@\x16\xc2\xe4\xc1KC\x18B\xe2\x08%\"\x0da\x0e\xda\x10\xfc#\x97\x07u\x08i\xc8CH@\x1fB\x12\x02\x11\xe2\xa3:\x0d\x89\x08\xc9hD\xf0\"\x12!\x07*\x11\xa6 \x13a\x01:\x11\"C\x98\x88R\x84\xdcHE\x88\xb5\xcb3\x93g\xa1\x16QI\x81\xab\x1bd\xc9\x8a^\x84\x00\x82\x11\x16\xa0\x18Qa\xbe\x0b\x1edY\x80fD\xe5\xf9\x8f\xa2\x11\x94#x\x91\x8e\xe0E;Bf\xc4#,B=\xa2\xe20$$\xccEC\xa2\x92\xc2\x08I\x98\x88\x92\x84t\xa4$LEK\xc2$\xc4$\x04v\xb0\x00*\x0e& \xe3R\xd0\x930\x15A SP\x94\xe0\xef\xe4\x024\xe5\xc4\xc5\xb5\x00e\x89\xcfm\x1f\xd2\x12f\xa3-qQ>\x04&<\x00\n\x132\xcd\xb9D4&$#2\xc1Ae\x82\x17\x99 \xfd\xd9\x18GgB\xe2\xd9r6J\x13\x95\xa6\xb3\x0f\xfdHM\xf0\xa25\xc1nq>\xc4&\xc4\x1d 8r\x13&\xa17\xb1\xa7=\x08N\xdf\xa3\x18\x8a\xd3}\xd6+t\x12\x9a\x13\xc0\x87\xe8\x84\xf8x\x8d\xbeT.d'\x0c\xc9\xbd^t'Ll\x9bg\xdeOFz\xa2R\xcc\xc4r\x1f\xda\x13\xac\x16\xc5\x1al\xfcc)\xea\x13\x96\x87(\x03\x08P\x88\x7f \xb0;\x97\x0d \n\x114(\xcch\\\xc018\x07\x19\xea\x15\xa6\xaf\xef\x08\xa0C!\x8c\x10\x85\x19\xbd\x9b\x8f\x14\x85D\xb4(\xcchU`\xccs\"G!\x84\x1e\x05\xd1(/\x82\x14ftk\x06\x92\x14\x12\xd0\xa4\x10oJ,}-e\xf4\x17\xa0KQycXF\x1ca\nQ\x94)\xa4\x0f\xc4bLT>\xd4)LE\x9eB\x10}\nv\x0f\x96 Pa\xf9^\x91\x82F\x85\xc4Q\x87\x05\xa8T\xaf\xc0K:\x1d\x99\n\xf1q\x81\x84\xb1\x81\x08J\x15\xe2\x13Z\x97\xd4\xe1\x83Y\x88\xd5\xa0\xb8\x04\x04'$ W\xe1a:\x9b\x11\xc5\n\x8b\x91\xac\x90\x8ef\x85\x87\x1b\x8ei\xc8\xd6\xa08;\xcdn\n\xba\x15\xe2\x08WH\x1b\x84\x14\xad\x0e\x13\x06*\x1b\xe2\x15|\xa8WHC\xbeB\xbc\xff)}\xca\x8a\x82\x850\x12\x16\x12\xda\xb4\x14\x11\xeb\x08D\x13\xb3f\xa3d\x1dI\x1a5\xebE\xcaBn\xb4,x\x10\xb3\x90\x195\x0b\xc3\xa9\x17A\xce\x82c\xa6MB\xcf:\xb2\x04\x9a\xd6\x87\xa0\x85\x0c(Zlb\xe0HZX\x8a\xa6u\xa4a\xe8ZHA\xd8\xe2\xab%\x00\"\xf4\xc2\x17\x15pq\xfc\x96\x92\xf7\xe1\xfdk\xdd\xb64\x00\xe3{n\x15N\xbf\x9eE\x18\x93\x86\xbd3\xea\x9d\xfcQ\xb9\x85EZ\xa7\x08\xf1i\xf3Sn'e\x07\x87fw\xaa\xe6\xa1zg\xdd\x1d8j\xa4e\xdb+E)\xed|\xe5\xd7\x15\xa9$\x98u\xce\xb7\xd7\x01\x03\x82\xd5\x8e!\x8d\xfc\xc7\xb3\xb1\x9fd$\\7L\xef\xda\x03\x18wx\xc6n\x1a\xadY\xebX\xa3\x8b\xdb\xe5hx\xa3*\xa3\x95\xa0\xff$b\x90\xa5\xd0\xf0\xfd \x9a\xa0{'!\xb7\xa5\xc6\xafO\x8e\xb4\x85#)\xdb\xe7\xac-\x9b\x91\x9bd\x00\xc2>PO\xdd\nt\xff\x86\xd17\xd0\xb8\xfa\x19\xd6\xc0\x91\xb6]\xd9\x8d\xfc\x0c\xbc\xe7\xdb\x1d\xad\x9b\xc3\x9cY:\xbc=\xb2\xe1\xf8\x9f\x85\xcf\x8c+I\x10\xbf+\xcc<\xa2l\x90u\x1e\xd3-\xf2\xe9 8\xe8\xf7MSMW\"MS\xf9TH\xd3TcV\x00\xfe\x87\xb2\xbejf\xa9\x8b\xbaa[\xa9\xd0\xb7\x13n\x8c\x9e\xf2\x062\xe2\xc6\x90D\xc7\x9b\xf7.}\xb4?\x18+e\xba\xee6\xd7\xd9V\xb7\xca\xe8\x9f\x14\x91\xf7\x9a-\xb3N\xdb\xfc\x0d\x1c\xb1CG\xeb\xc1\x8d\xff\xb0@$\xa7\x1e\xad\x0c.iq\xfd\x0f\xdf=\xd3h\xa21&),\xca5>{m\xbe\xed\xda\xe2\x81{\x84\xd6\xe5\x06\xdbF\xfaX\x82\x87Pq\x1a]\xa5G \xd4\xb9]\xc7\xbeZ\xe7\x8c\xba\xc2\x9d\xf3|\xab\x8ei\x1e\x92x\x0f\xd1\x8dH\x16l9\x0d\x05E\xe6\x99/.BEKOWS\x07|\xca\xb2$\x1c\xbf\xe3\xfeeYR>\x92,V\xeb`Lw!\xff\xa6y\x0bC\x0e\x8a\xd1DeM\xf3\x05\x8e\x15)\xd0\x9ck\x90\xbe\xc5cEE\xc5!\x8f\xc4\xc4A\x89y%&\x0d\xcc\xb8\x85\xa3q9\xd5\xe5\xdd\xe0j\x8eNc[\xa0oP\x94Ou{I*R\x17K\x07%\xbd\xabV\xbd\xa8\x9fW\xffv{MC\x9d\x1c\xeb+FZ\x86\xf9cd\x91\xc78\xae\"\xbeZO\x87*\xb56\x1a\xce\xba\x86\xb2y\xd6\xeb\xa8\xa8,\xb9\x80\xe4\x89\xd3\xec\xbc/\xcc\x95\xd2R\xd3\xb4x[\xb3\xd6\x08{\x8e\x07X\xea%\x7f\xce\x1c\x08\xa4\xcc\x0d\xa9\x197j\xc8\x8e0\x82\xb5k\xd4*mI\x93V:\xe0F\x15\xaa\x1f\xa7z\xa1\xcc\x0e\x8d3\xf2\xaa\xb2c\x12m}$-+\x8bSE\x0c\x8f\n\x02%\x1e\x9aS\xef\x85q\x88\xf8\x01\x04\x83\xc0H\xa2\x82\xdd\x8e\x82?V\x95\xfd\xc7w\xc4y\xe2\x13\x9e\xed\xc6\xbf\xd5x\xb6\x99\xe0\x16\x13\xb9J\xdd\xb4\"y{<\xb1\xf8u\x17[w\xb1u\x17[w1\xaf\xac\xff?\xecb\xc1\xf9\x16\xfc\x02\xf1\xfe8}1\x9d\n\xf4\xb7SyC*Z3\xb9\xad8\x0f#\x02\xe9]A\x8fL&\x08\x97(\xb9\xc1\x807\xecg\xad\x95\xcd\xab>\x9d\xd4k\xc2\x95\x8b\x84\x1c\x00\xbaS\xc9\x84\x9fJ\x84\xdd\xab\xd2C\xa6\xd0;!\xcc\xb1\x0d\x8d\x8c\xd9\xcd\xd4\xe1\xb0\xfa=\xde\xde\xd5\x86:n\\\xcfJ1e\x14F}\x1e\x8bC\xfa\xef\xf4|e\xcd\\Y3\x1f\x825s\x1cqB\x1d\x881'\xe5\xe8%%mr\xbc\xe9\x93\x0e\x05\xbcq\x16p\xb2\x03S\x86\x13l\x87e\xd2\xbc\x8e8\x0d\xbd\xf3a4\x96\xf3<\x82\xb8\xf7opW-h\x90#$\xadA\xe8\xe1\"\x10RyX^\xa9\x04+?b\xcb\xc4,\xfb\xf8^\xebZ\xf3%n\xc7\x1b!-n\xaa\xa3\xa2<\xe6{\x82\xe1\x9e\xd8\xcf\xe4\xf4F\xdb\x12/1#|\xe8Q\xc8\xceN\xb0\xb038qC\xf6\xb4B\x15\xa8G*\xc9c\xb1;U2\xb3\x01\x93\xd6\xd2\x82\x967\x14\x08\x0bv-S\x97\x02mfMZ[bC\x84(Q\xcb\xca5\xf2k\x836n\xc4\xba\x0dzg\xd0\xa8\xae\xe3\xa5\x19\x89\x18\xd9\x01H/\xa0c\x8dH\xde\xa9*\xe9\x99\xe9\xcaz_Q\xd3+cT+]0\x83@>\x8b\xfbW\x8c\xec\x95\x9a\x8f\x07\x9f\xe7\xcf\x9avG[\xba\x13\xae\x1f$R\x8aRK[&fh\x87Dz\xa4\x04\xa6\xc7\xf6\xfa|\xa67\xee\x0e\x9d\xbcC\x1a\xae\x99\xaf\x14\xe0\x1bj\xcc\xb4\x1dDvjY\xa6\xac\xcb\xbf\x91\xf0\xde\xc3\xf6f\x9e%\x10\x16\xe5\xf6&\x0f\xf9Lz\xe5\x81J\xd9\x92\x17#V\x0eS*{\xb7,\xff\x86\xc5\xbc\x04\xca\xc1\xfd*\xb6\xf5\xcc\xa7K\xf6\x18Ra\xa2\xe49\x14\xc9~*\xe4Y$\xc8B<\",H\x7f\xcc\x96\x11\x1f\xcf\xa4H\n\x1c\xdf\xff\xf3\x11\x01\x87(\x80\xc3\xed\x98G\xfb\xab5\xa9%,D\xf8\x9b\x89\xeaw\x01\xc9/\xbe\x92\xb0\xad|\x01\xb1/\xaf\xcf\x92\xc6PJ\xdf\xa5d\xbeQ&\xda\x00\x81o\x12u/\xce\xb09\x8d\xae\x17\x97\xe10\xd8-&\xe7M\x1d\x8c\x14B\xdep\xbf\x93Hx'\xd2\xef\xba\x8c~\x19(w\xa3d\xbba\x9a\xdd\x18\xc1\xaew\x94\xa6\x90\xea\xa6\xd0\xe9bD\xba\x0b)t\x13\xc9s\xe7\xd1\xe6z\x88iS\xa8r3\x92\xe4zZ\xe1\xcc\xb4Y\x94\xb8\x10\xa0\xbf\xcdH|\x8bS\xde\xce%\xbb\xf5\x12\xdb.\xa0\xb4E\x8f!A\xe2Z\x8cU\x13#\xab\xcdGS;\x9f\xa0\x16!\xa3\x9dEC\x1b\xa4\x9cM'\x9bM\xa2\x99U~\x8c\x14\x82Y\xf5h\x94Z\x16\xe5[\xc5kO%\xf5\x8c\x13\xc9N\xa0\x90M$\x8fu\xba\xb1\x800\x16\x9d\xc6\x0bha\x1do\x0bJ\x08;\x8f\n\xd6G\xfb\x9a\x97\xf0u\xd9|H\"yM\xa1w5\xb7\x15\x8c\xd2U\x9ef02\xd7\xf0)a6\x81+Nn\xe1\xa5n\xc5H[\xc7\x91\xdcLt\xad\xdec\x1dF\xd1\x9aJ\xce\x9aD\xcb\x9aF\xc8\x1a\xa5b\x9d@\xc2\x9a\x84*\x1f\xe4\x1a\xa3\x9d\x87ru\xc8{\xc0\xa2\xf9i-qf\xa4-t\x88*x\xa8U\xcd\xd8\x82O\x967+\xdc\xdf0\xe3\x1f\xa3\xc0\x86\xf9\xf7$\"U6=0\xe1\xa5M\x0d:-F\xcd\xcfD\x95\xea'IMo\n\xea\"\x99C\x89\xdaS\x9f\"\xf2|d\xa8^\x1a\xd4\xf4\xf6\xcf\xa5>\x8d\x93\x9e\xa6\xb7\x01\x1d\xc3|\x14\xa7\x1erS/\xadiz\xc3'S\x99\x86IL\xbd\x15'\xf2\xb28\xe3\xb8\x80\xacT\xb8{-q\xf6\xa6\xe9\xa5)\x9d\xc5>\x14\xce\xdaM\xed\xe8B\"\xd2\x11\n5LA\xea#\x1f\x1d\xb5t>\xed\xe8\x0c\xcd\x1a'\x19\x8d/\xbb\xb9\xc4\xa2p\x89yx'R\x8az\xfb\x0cQ\x1c\xac\x9fD2\xb8\x9c!iP`\x16]\xa8`~\xf4H\x0b\xf1A\x86)B3u'\x1b!\xe8\xb0b\xa6S\x81&\x91\x80f\xec\xf04\xca\xcfP\xf2\xe7\xa8\xdf\xa9d\x9fA\x9a\xcf`7\xe3\x88\x86\xd1 \xcca\xee\xc4\x18:\xa3\xdc\x9c3\xcd\xe0%L\x9c\xe2\xaf\x96<\x0c\x14\xebo\xc1R\xdeM\xb02\x06f3l\xf6\x8c\x9a\x860\x9c[3#\xab\xa6\xcb\xa7\x99\x8fI\xd3,hy&\xb8\xc3\xdf.\xcbJ\x02(2\xc1\x82\x88\x01#\xe3\x03-KFp\xa4\x17\x1e\x99\x04\x90\x9c\xd0\xe70\xa3\x89}\x98\xc9\x05\x93L\x02J&\xf4\"\xed\xbb\xe4\x85K&\x03&\x97\xf0^\x80\xdd\xb9\x0c\xb0\xc9\x94\xe1\xca\x07\x9d\x8c\x82'\xad\xe6\xcc\x83O\x86\xfb\xb4\x14B9\x12v\xe92Z\xcdAT\xae@\x90\x15\x08\x92\x0d\x082\x9a6\x1e8H\xc8\xa0\x9b\x88\x0b\xc1D\xcd\xc1\xeeN7(\xfb\xc5\xf5\xc0vd\x18L\xb2\xc8\x18\x9b )\xf1\xca\xf9oQPI\x0cV\x124\xbdB\x86\x17\xf3\x82K\xa2\xdbZl\x94 ?\xc4$\x062\xc9\x0d3\xc9\x0c4\x89@M\x16\x83M\xf2\xc2MR\x00'\x0b 'yA'r\xb6F`'y\x81' \xd0\x93\xec\xe0\x93\x08\xfcd\x1e\x00\x05\x15\x14\x04\xa5d\x81\xa5$\x02S\xd07'\x81U\x16\xc3Ur\x03V\xfc\x90\x95\xcc\xa0\x95\x87\x80\xadd\x06\xae\xa4BW2\x83W\xc2\xf0\x95\xec\x00\x16?\x84E*\xae$\x10\xcb|\x18\x0b*L@[<@\x96EP\x16/\x98%jR\x04\x01-i\x16G>PK\x18\xd6\x12oMVhK\x18\xdc\x92\x0d\xde\xb2\x14\xe0\xe2\x88\x13\x16\x0dj<\xe4\x05\xb9\xa8e\x84th)\xd0%\x01\xdd\x11\x04\xbb$\xc2]\xbc9\xf3\x13!/~9H\"\xf1b\xe0\xcb\x94\xc1I\x01\xbf\xc4G! \x003\x19\x02\x83\xa7Yg\x80\xc1$\x00abP\x988\x18&8jS\x001i\x90\x18\x1c\x14\xb3\x18\x16\x93\x0c\x8c\x99\x0b\x8d\xf1\x0fS\x12<&+@&\xd0\x16d&.\x82\xc98\xd2\x10\xd8LV\xe0\x8c\x0f:\xb3\x10<\xe36\xd9\x05\xd3\xe4\x87\xd3D\x0058\xa4\x06\x07\xd5\xe4\x84\xd5d\x06\xd6<\x04\xb4f\n\xb8&\x11^3 `\x93\x0e\xb1\xf1\x80l|\xb0\x8at`E\x1ch3 j\x93\x0c\xb6A;\x94\x1bp\x93\x17r\xe3\x01\xdd\xe4\x86\xdd\xe4\x06\xde,\x9f#I\xe0\x9b4\xf8\xcd\x18\x80\x83Cp\xf4\x19\x0c\x03\xe1\xc4\xcf4\x99\x818\x01(\x0e\x0e\xc6\xb1Z\x98\x0b\x8e\x13<\x98b\x90\x9ctPN\",'\x15\x98\x93\x00\xcd\x81)\xe0\x1c\x1c\x9e\x93\x1e\x1d\xc9\x03\xd1\x81\x08H'\xbd=\xc1\xa4\x9f\xe5P\x1d\xf0\x80u\xc6\xad\x085\xd0\xf8\xc72\xc0\xce\xec\x90\x8f\x17\xb6\x13u\xcf\x8c:\x92 \xba\x13\x02\xefLk\x90\xc7!4\x1f\xc2\x83\x8akZ/\x88'\x00\xe3\x99\xd6\x93\xb9P\x9e\x140\xcf\xb4\x96x\xc64\x1f\xa4\xc7\x0b\xea\x01?\xacgZ\x17&C{b\xe0\x9e`\xf5\xa1\x04\xb4\xd8\xc8f\x06\xf9L\x80\xf9\x84\x81>I\x1d\xf6e\x9f\xa5wz!\xe0g\x12\xe4\xc7\x0f\xfaq3\xe5f\xc2~f\xeb\xe78\xf8'>\xaa\x98\x9ce\x00\xa0\xc9\x10\xa0H6h,\x1f4\x04\x04\x8a*\x00H\x1c\"\xc8\x0e\x07\n\x03\x82b\x90\xa0\xac\x1d\xcb\x06\x0cZ\x06\x0dJ\x04\x07e\xef\xfad\x88\x90W\xda\xf8l\x91\x0c\x12\x8a\xc0\x84\xa2\x1d\x8eiVH\x1c\x909\x18\"\\\xa1\xb8\xb8\xa2\x04d\xd1\"\xdb} \xbe\xc8\x11\xa6\x9er\x11F\xe1v\xe4F\x19e\xc6\x19\xf9\x90FY\xb1F\x18\xda('\xde\x08\xbc\x88\xa3\xbc\x98#\x0f\xea(;\xee\x08E\x1e\xe5\xc7\x1e%\xa0\x8f\xc0\x9e\xddC\xfe\xa5\x11\x9b\xae*\xd1\xd3\xdfN\xb4\xe5\xa2\x86g\xb4\x905\xd3y\xcdt\xce\x94\xe9l7\xd4\x93P\x9c\x8c\x8c\x13y\xcbJV\x0c g\xde\xec'\x87\xdc\x99|\xde;\x86\xb0Tb\xf4CY\xc7\xcf9\x903\x17b6\x00\xc0\xba\xb6\x98\xd3\x90\xd1\xc4@\xa5\xb9~\xd4\xf1\x15\xbd2\x87W'-\x1b\xd2\xd4\xfbnSw\x1d\xcb\xd8TCZ\xa4\xa9\xf8E\xe3\xba\xe5v{\x1d\xf4\x1b{\x80t\xf4\x08\xbe-\xe1\x84=\xc7\xa50\xe9\xcan\xf7bnG\x1e\x02e\x8b\x80\xd8\x12:6\xd7u\x90\xe9\xdam\x1f\xcc*\x82k[`\xd5N\xbdD;\xdc~\xf4\xeal\xff\x85\xd9\x0b\xda=\xf9Jl\xeb\xe2kG`\xe0\"\xecP[\xe6\\z\xddc\xd8F\x92\\<\xdb\xa8^\x1b\xc96\x12>B\xb0\xe1\xcd\x1d\xdd\xca<\n\xa1We\xc7$j\xedHZVr\x93\xaf\x1d!\xd7\x86\xaa\xfa\xcf4\x82\xad\x89\xa0\xda\xe8m\xa5\x9fG^0K|\xff\x89\xc6\x8e\x9b\x84\xcdR\x0cs\xf2\x8e\xe9Uv\xe8\xe4\xc3\x15\xdc\xd8\x0d\xb7L\x8f\x8d\xf5\x96Wc\x05[\xe7j)\xdbQ8C\x19!\xca\xc7\xabv\xe2\xfb\xe6\"\xbdb\xeb\x11L\x83\xc4\x9b0Z\xa9K\xf5\x05\\\x9av\xb2\xab)F5/R\n#E\x90\xba\x1c&C\xdf\xccfl\xe9\xb0\xa2\xd0\xd7q\x11\x103%\xa2G\x87\xa9\xd4c\x0b\x97\x9e%\xcd1 \x82\xe6C\xb43 \x14c\xd9\x16&\xc4l\x02ok\xc3\x03\xbch\xd5Z\xb2\x10[\xc0g \xccl\xed\xd25m\x89\xf3Z\x00\xfeV,Z\xe8\x86\x1c{\xef\x8f+\xdc\xf8&?\xd2\x0b\xe0\xdciH\x90\xc6\x1b\x97\x1b*\x81e\xef5\x1a\x1c4\x8b/4\xecU\x90q\x97a\x82\xa2[\xa4\xe3fi\xb7\xde\x08Zr\x0b\x9c#d\xe6\xa9\x1b\xe2'\xef\xf4F9ki\xfe)\xdc\x12\xe4;\xd9B\xfc4\x0e9\x9a\xbf\xf4d\x0e\x91>\xacW\xf5\xcf\xdc\x82Qq\xaeElT\x15\xa7\xa4I\xec\xf0\xd2\xb0\xd5\xbc};\"\xca\xedp\x02{M\xa4\xc3)\x9d\x99\xba\xc7\xa3BB\xd6\xfaP\xfc'\x7f\xc8\xd3\x97\xb9\x16\x80\x7fj\xcb\xe0\x85\xcf\x13\x00 \xed\xcae\x13\xc8\x82\xb3\xdc\xcc\xf4\x0c8\xafz\x8d\x99i\x1e\x02C\x88\xe9+p\xc9m\x96y\n\x0cAN\xb2\xc7Wq\x9c\x86\x0eMA\x81!\xa1\xb0\xea\xf69\xaan\xd5\xedHYu\xfb\x7f~\xdd>\xcd\xc7?\xc97=\xe948\x12e]{?\xfa-\xc3\xc9p,otJ\x94\xc5\xba\xf7>~\xfaM\xed\xaa\xd53={\xd4vb\x1d~\x17\xf4p\xc6\xd9\x17\xe1\xc5J>\xfa\x06N\xaeq\xc7i\xae\x13\xebp(\x9b\xd1\x08\xe7\xe5\xb4F\xfcu\x0c\x83\xaf\x10Q\x9dG\x03\xfaW\x8c\x92f\"\xf6\xfc\xeb\x84>\xa7\x11x&\x10e.l\xfeB\xa2\xce\xd0P\xcc&\xe7\xcc\x12\xc6\x8c\x13r\x8e^\xef\xb3\xa4\x96\x92p\xaa\xb3\x89\x146\x9dq3]e\xff\x8dE+\xe7\xa8\x8d\xaf\x12\xa4\x9c\xac\x1e\x16\x04'G+`\xb6\x1a0\x96\x9d!\xcem\xe8\x8c\x06\xce^\xeex7\xb3-\xf1\x84\xd0d\x9f\x0b\x97<\xe7\xfd\xec\x98\xf1\x81\x1a}\xc9\x99\\\x98\x16\xf7\xa5!\xd0\xc3\x82\xe9\xe7\xbfD\xcd\x06\xdch`(\xdb\xa5w?\x08of\x19\xb9-\xfd\xac\x96\xf9\xf8,\xb31Yz9,\xd9|\xf6\xca\\\xbc\x95a\xc6\xcaY\\\x95\xb3Y*E\x7f\xed\x93\xb1\x97\x9fr63%\n\xdd\xf1pR.a\xa3\x14\xcc\x93vo\x10\xc2\x949\x0c\x94~\xb6\xc9\x85<\x93I\x0c\x93\xe9l\x92\x0bx$\x170H\"\n##Od^\x86\xc8l\xdc\x90qV\xc8l|\x90>&\xc8%\x1c\x90(\xdf#Kaz\x9c\xcb\xf1\xe8\xe5s\x9c\xc9\xe4\x88p8z7J/\xce\"\xbc\x83\xce\xe4j\x1cx\x19\xb1\xf1\xfd&^\xf72fF\xc9\xc4h\x88s9\x193\xb01.\xe3a\xb4f\xb9\xbd\x19.\xe4^T\x03mJ\\\xc2\xb2\x18\xa4\x10\xf40+F9\x15]z\xb5t\x1eE\xf7\xdd\xbf`}\x9d\xc5\x9a\x98\xd2\xd9\x18S\xa2\xbfoQv\xc4 \xbc\x88c\n\xa9\x85\\\x88A\x16D?\xffa\x88\xf9\x10\x1d\x85T\xb6\xc3\x18\xcf\xa1\xcdp\xb8\x80\xdb0\x81\xd5p:\x9f!\xc2\x1e\x18\xe30\xcc\xc4^\x88\xd4<\x9a)\x8b\xb8\nmn\xc2%\xac\x84\x08\x0b\xe1\"\xfeA\x9bo0'\xd3\xa0\x97c\xd0&^\xb3y\x05\xf30\nf\xe3\x12\xcc\xcb\"\x98\xc6\x1f\x18e\x0eT\xa7\xe4\x18g\xa0z,\xc8\x16\xe8\xd0\xea\xb9\xb5\xa5\xf2\xbe\x85\xb9\x01\x13Y\x01\x13\xf8\x00GM\xce\xc9\x01\xb8\x88\xfd\xcfe\xfb\xcb\xc7\xf3\x97\x8f\xe1o\xfe\xd7\x8d\xb2\xfa\xc5\xf8\xfc\xb4\xfa\xb69\xfc\xa4\x0dn\xb3\xf7\xf9m\xdd\x8c\x8c}(W\x9f\xcd\xd27jI\x0e~>\xf4\xd0as\xf2\xa5\xb0\xf1Ey\xf8\xe2\x0c|A\xee\xbdD\xd6=\x9bo\x0f\xed\xdfh\x14\x97s\xec\x0d\xc1e\x9b]/^\xfbh6\xd9\x82\x06o\xef4.\xbd^N74q\xa8\x13o\x88\xf1\x8f\x91\x93\xd9\xfc{\x949\x8f\xa5;\x8bQ\x9e<\xef\x11x\xd4\xd4\x0c\xdcx8+^Z\xf5.\xc4d6\x07\x1eXy\"\x80\xb2\xdf\xa1\xbcwim\x9d\xc3u\x17f\xb9K\xabw&\x85\x1dFW\x87\x12\xd5\xa5\xb5b\x129\x9d\x9f\x96\x0e\xad,!P9\x9a(\x19\xe9\xe7\xec\x9d\x05%\x9e\xf3Q\xce\x05;\x13 pz:\xc4&R\xcb\x0d\x1d0\xc4\x05I\xe50:9;\xf4:\x83Hn\x82\xba\n\xd3\xc6\x85\xf5\xc3\x02\xaa8\xe1^\xb4\xc4\xa5\x91\xc4\xa1}\x83`\xd2.N\x1f\xe6]j\x10\xed8d%\x80\xf31\x81\xf9I\xdf\x166}:\xc5\x1b:\xb3u\x99F\xee\x16\xa5u\xcb\xd0\xb9\xc9$n\x88{\x1f\xc6\x04v)\xf4m^\xe26o\x97&\x00R\xe7\xf0\xb1\xd9\xdckA\xd6\xb5\x896\xdd\x12\x8e5\xf1\xd7o\xcc\x8e\x8e\xb3|\xf1Zs2\xaa-\xe7R\xd3\xf16%p\x08N/\xe5O\xb38\xd3\x16\xb2\xa5\x0dF\xbf\x927\xf0\xa4-fHS\xacPJ\xdc\xc0\x8d\x96\x91\x15\xcd\xe2C\xcb\xc9\x84\x16\xe1@S93\xbc\xf1\x1brY\x94}\xd6\xcc\xcbW\xaf\xcf\x7f\x91~\x81\x9f\x9b}r\xea\xcc\xa1\xdbo\xcbzG\xef\xec\x15W\xd6\x8c\xee\xe9\xa0X1\x03\xac\xd2\x15\x01\xbeP\xe9\x0d\xad\xd9\x03'\xce\x8a\xc7G\x7f (6\xc2X[^\x9e\x10\x1eZ\xaci\xb2\xa0\x08\xcc\xc0\x86\x0fQ6X\xe4\xc2[Y\x82{L\xe0\"\xba\xc5\xbb\xd3K=.\xe6\xc1\xa1\x1f,\xb8m\xc9\xf1\xc8U\xd85UI\x97_\xe8\xbdPJ\xa2I\x88@b\xb3+\xca\"\x1b\xd8AYw\x8c\x92\x9d n#\xb7\"\xd2\xea\xbf<\xdd\xe2\xb5\xfb(d\xbc\xe5S\xabo-\xadA\xfeAg\x9e\x8d\x1a\xac \x01\x87\xaf?\x12\xa8s\x8d\xbe\xd0\xfb\xe7\xd2\xbb|$e\xdbI\x17 \xd7Ui\xad\xf6\xb7Y4\xcd$(\x84\xae*\x0b\xb1\xc1\x9b\xadV5\xde\xf2&\xd3C\xc9\x84\xf69 7n\xd7\x8c\xf6`zG\x8bSl_\x1a+\x04cs\xeaX{*\xc4\xc9X\xb5H\x18\xb65\x085\xc0\xcd\xc3;\xf1\xaeuw_\xd5\xec\xc3\xfaG\x0fn\xb2\xeaA\xf2\xdeF\x13\xd8\x9a\xee\xce\x13\xf8\x80/\x9b\xca\x06\x93g\xec\xab{G\xe2G\xd2\x9d\xd7WM\xf28\xecI\xb7\xbd%5s\x1d\xa3\x9ec\xe3)p\x08\xfe\x91t\x7f\x14\xb2\xb4\xd5\xa3\x8d\xcbS]2\x11\xf6\xbem\xda/p\xab\x12v\xe4n\xcb\xeeD\xfc\x9d\xb6\xbc\x86\x8d\xd1,~\x1c\xca\xd3\xa8O\xdd\xd0\xa4a\xb3\xdds\xa3\xb5`2\x01\xadhj\x95\xf7\x84 \xe0C:X\xcdw\xc3\x1a\x10BTbY\xf0\xbb|\x10\x96Q\xf2g\xd9\x11F\x12\xfb>\xca\x14\xf1k\xdb7\x84\x11\x91\xdfU\xdf\x0b\xe9\xd0Rvjk\xed\xa2\xd6^}\xe1h\xa8w\x15m\x8d\x85\x0e\xe7\x0c~\xf9\xf4\xf1\xc2\x107N\x8e\xa9h\xbdg\xd7pl\xe9Uy'3NE\xca\xb9\xc0\x16Q~\x1c\xe7K\x82\xd7*+\x93f\x06En\xe8\xec+\xed\x95[l\x9f\xb7:\xcd\xd5\xcd\x18\xfd\xdb\xec\xa1\xac\xe5h\xf1/\x16\xef\xae\x12\xbc\x1a\x10Y\x0d\x88@n\x93,s-\x0c\x88\x8b\xb6\x8cL\xb3H\xd1\xf8\x1dN)\xd6\x8b\xd8D\x07\xbd_v\x03\x14\xe3\x0b\xbd\x7f6\xec\xe9\xfc\x90\xdc5EI\x86\xd3\x03\x06`\x15\xb3\xcek\x8eXM\x90;\xb8P\xa6\x1d\x90!+\x12v\xf4\x86V\xfc+\n\xdf\x12a\x8c\x14\xd7fH\xd9X\x10\xe3\xf9h%]h\x1c\xe2+\xba/\xebWUS|9\xeb\xff\xf6\xb6\xdeY\x7fy}M\x8b/\x17w|GC\xa5\xbc\xa1UyC\xdb\x8b;+\xa9\xe5g\xc2(?l\xb5\xa4\xee\x88\xca\xa1:\x90{~t\xd1<\xca\xa7N\x80;\xaeiG\xd5\xc2\xf4\x18?\xff\x9c\xd5\xf81di]e\xfc\xc9\xaf=FM\x92\xba\xdf\x80\x88\xc83\xad\x1e\x95\x1f\xc4\x97\x10f\x805\x90\xc1\x1d\xc50E\x93\xb7\x95\xb1\xbaAV\x15\xa6b\x1eB\xef!J\xc4\xbb\xc6Q\xbd\xe0y:d\xbbg3\xced\x89\x99h\xbe\xc6d\xf3\xf6\xfc\xfd\xf6\xdb\x7f\xfaV}iE\xf5\xe1o\x93'\x8dNux0\xaa\xe5\xe6%\x86\x05\x0e\xfc\x17\xe9\xd6e\x1dp\x8b\xbd\xa7\x1d\xd8\x9fH\xcbU\x91P\n\x10\x1c\x12O\xabz\x17\xabb\x9e\x96G\x82Q\xd5\xfc\xa3*\xf3^\xd5\xd1R\xbe\xd2\x06\xaf\xac;\xce/\x9c\xbf\x98\x15Y]\x13\xe7\x00qj\xe5\x03\xf1\xa6)\xd4\xd0\xab\x17 \xc2!/\x9e?\xa7\xe5\xb1\xdb\x08\x140=\x1d6M\xbb\x7f\xfe\xf6\xfc\xfdG\xfe\xe7g|\x11j\xdd\xaa\xe3AgH\xa3\xca\x0eZ\xba/;&.\x11\x10\xc7\xde~\xf9q\xcd\x027\xa4-I\xcd\xf4A\xee\xf2\xd4\x87\x81z\xed<\xc0]?\xbe\xf9\x83\xe1\xd4\xda\xc0\x05W\x96b\x8e\xbc=\x7f\xcf\xdbt\x06\xf7\xcdI\x84\xd4\x94<\xe1\xcc\xef\x8c\xd3\xf6\xe7\x8b\xbb\xd7M}U\xee?\xcb)(\x8e\xe2\xc8V\xa0\xde\xff\xac[\xfb\x93\xb4>>\xeb\xe1\xe4\xb5\xc9\xe89o\x14\xb7\xdav\xb4(w\x02\xdb,=_*\x9e\xa0\x04\xa9W\xc6_\xb8W#\xa8Y\xf1\xfb\xcdw#\xc5\xddC\xd6N\xecz\x12R\x8b\x7fu\xdan\xb9\xf1;\xf5\\\xf7\x7f\xb7|B<\xfe\xbf\x9e\x1b\x81\xe5\xe7n\x93>\x8a\x1ax\xa3\x1e\xf7/\xfb\xcdS\xb3=#F\x01SC\x0c\x0cB-\xfd\xedT\xf2\xe9#\xdf\xeb\xc4\xb0\x1b\xe2\x14n\xda\xf8\x0b_Z\x12E\xd4\\ 3B\xe8x\x11\x9b>\x10\xd6_\xe36\x16\xab5\xdc\xabfw\xff\xb8\x1b\xbb7\x95)(\xbe\xb7\xf0 i\xa9:5\xff\xd8\x96\x07\x11\xe6\x12\xb2z\xab\xab\xa9\xa9\x93Gp$\xf7\x9d}\xd2\xbf\xa2\xfd\xf1\xfb\x8a\x1a\x87A\xff\x18\xfe@{\xe2\x82+*w\x8d=\xe9\xa0*\x0f%\xebG\xce\xb4\xe8\x8d\xb6\xabF\x8e\xd8b\xac\xac\x86X\x7fD/\xfa\xa6K\xd9\x94*\xd4\xb8!g\xc0\x8f\x9b\xd2G\x18\xf6\xa2\x91w,R~f\x94(|\xa1\xd0\x9b\x9d\xcc\xa1\xdf5\"!N\xf3\"\x19b\xe4V%\x8f~\xa6x\x1d\n\x1c\xa6K\xd9i@;\xedXy\x10g\xd1\x9b\x92\xef\x8c\x07E\x15\xb0\xb1\xd6ER\xde\x93\xb4\xe5\xb0`\xee\xc3\xde\x88\xbb\xa3us\xc0\xce\xf5A\x87\x01\xd6\xda\xe8k1O\xc0\xeb\xa6\xac\x8d\x83\x8c\xa0B\x1b\x18\x0e\xea\xe6\xa0n\xab\x13\x9f\x92\xd4\xaa\x11nx\x1e\xe0\xdd\xaf\x17oe\x02\xbe2\x91\xa5\xa7[\x9a\xea\xe7\xb5f9\xea5\xb5\xe9\xc6t\x84\xc9\x88\x84[I?\x8d\xbaa\xfd_\xde\xc3\xbe\xd97\xc2\xf8\x1e\xc7`T&\xbfj\x8f\x03\x03\x95\x9c\x0b*u\x83\x94j\x7f\xbb\xa2\xe6\x1c\xdd\x93n+\x16\xe5\xc4\x90\xff\xc9\xcd\x1dW\xadq>B_\x85\x8d\x9d\xdd\x13\x95q\xaa\xe6\xbe8\xb2\xf0\x0dhP\x0b\xee\xa4Sg`{\xe8.E\x0e\x8b \xe6:\xf5\xd9\x84\"#\x07\x9a\xa28\xb5\xa6.9\x92\xfby\x94m.g\xda\x15\x9c\xea\x8e2I\xa7ai/}\x97\\\xa9o\x9a;\x92{\xad=\xae\xb8\x91\x0e\xe7W\x96\xbc^T\x9f\xea\x00\xa4(\xc4\xf7\x14\xbb\xc3\x91\xdc\x0f\xaf\xdbC \xf4<\xef\x9a|V$X\xb0;\xdd\x9e'RG\x9e:\x99:$\xfe\xbaSi4r\"\xdb\x83\xad\xf7\xf1\xa7NM\x1deJ\x0f\xf6o\xef\x1a\xda\xc1\xef\xea\x86\xfdNe\xeeH}\xcc79a\xd0]\xf5\xf3\xd9\x96\xa5w7dO0\xe7\xa98\xd9\xa4~5\xdfT,\xaf\x86!\xe6\xfb\x81\x1c\xae'\xb4\xec\xf9.G\xdfp \xfa:y28\xa5\x001\x04Ou\xd6\xacN\xe2\x165\x88v\xf7\x14X\xf6\x17k\xc4\x17\xe5_\xd3\xcc\xf3\x1e\xb5\xee\xb1<\xe4\xa9\x8b\x87\xf8\x9cq\x1d\x94\xe4\xc8\xb5q[\x12F\x8dJ\xc5'\xe1\x96*\xbd\x13\xd7\x04\xcb\xce\x14\xd7\x84k\xc4\xc6MK\xe7\x8f\xea$\x93^Jw&\xbf\xb28 \\\x91\xb2\x12/\xe1\x07W=a\xac\xf4\x17\xbd\xff\xabA\x95\xc6S\x9f\xe7\xae\xfd\x14\xe2@\xa0\x13\x0d\xadI\xe0\x1at\xaf\xda\x86\xec\n\xd2\xb1d\xcf\xc0\xab\x0f\xbf\xbe|\xf3\xfa\xe5\xc7\x0b\xbf{\xc0z\xe4\xd5\xcf\xbf\xbe\xfe\x83\xef\xc7\x8f\xff\xf6\xee\xb5\xef\xb7\x97\xfd\x8f\x03\xddg\xb8v\\\xcb\x8c:i\x9d\x9f.\xf5o\xc3!\x8a\xff\xf9\xe2\xee#mo\xca\x82\x0e#\x04\x1f\xde\xeb\x96\xca]\xc7t\x0e\xf8\xdb\xf5\x02\xfeL\xdbF9\xcaE(\x8d\xd7\xa3\x17\xb4W\x82\x184\xa7\xbf\xe2\xaf\xe66|7t\xc08\xf9kd\x88\xbc\x92\x13nI\xc9\x84b\xd0\xb3\x82\xab\x87;\xb5\xa1 \x02,\xe1 \x95\xd7\x7f\x8a0\x93\xb7Y\xfc\x8b8\xad\xe2\x7f\\\xdc(\x02\xda\xbd>P'\xe8KD\x85\xef\xd6\xdf\xa8\x97h\xab^\xcej\x96\xe4<\xe8\xf9\xa9\x0e\"|\xc7\xa8\xac>\xb0~.\xee>H\xad\x95|Zcw[\xe1q\x99\xea\xf9\x04{\x9ekA\xda,h\xc9-\xa6\xfd\x0f\x08\x14\xd1\xaa\x0ba\xfa\x8d\xadv\xf41s\xc5\xa3\x0f\x18\xab\x1e\xfd\xfd\xe5\xe8\x81\xd4\xd5\x0fA;#\x8f\x160\x04~x\xff\xda\xd1\x04ho&k\x03T\xcaCj\x04\x98\xa4\x15\xd0\xe6=\x9cf\x80I\xda\x01m\xdc\xc3i\x08p\xb5\x84o[wuE\xbfb\xd5?E\x1a\x89\x9e|\xce\xd4\xeb_S\xf2\xcc\xf9\x17\xd5M\x13\xa1\xda\xecn\xdb\x8e\xdeA\xdf\xc3\xdf\x05\x04\xea\x0d)g!\xefQ\xc8\x03\xfb\x16OX\xd0oH>\x84\x84 \xe0\x80\xc3\xc0\x83\xc2S\xe0\xe0\xe0@\xc2\x07\x91\x18\xc4\xd8?26\xb2\xdb\x85\x87\x8b\xa7F\x10qH\x1e\x9b\x10T\x1c0\xb8x\xba\xe8\xffm\x9f%R\xf1\x83a\xe88\x84\x80\x84\xe0@\xc8\xe1+yp\xbc\xb0r\x08~wY\xfc_\x1fp\x889\x84}<>\xa89\x04\x06C\x96\x00N;00\xb2\xc41\xdaB\x84\xe7\xb7H\x87d\x89\xc1\xd0!\xdaAY\x82ptH\xe9\xac,\xf1.\xcb\x12\x81\xa6CZ\xefe\x89B\xd4!]Z\xcc\x19h\x969p\xf5\xa0\xc01\x9fJ\xf0Q\xd9\x914l\xb7,i=\xcb _\x87(\x84\x1d\xe6\xc3\xd8=\xd2\xbc\x03\x90\xd2\xfd\x8c w^\x82@w\xf0\x81\xdd!\xa1\xb1YA\xef\xe0\x03\xbeC\xb4%\xa9\x1b\x18\xf3\x01\xe0!\xb6w\x8d\x81\xf0\x90\xbc\xd7\xce\x05\xc4\x83\x07\x14\x1f\xac9\xd1V\x99\x08\x90\x07\x14$\x0f\xd9\x1b\x12\x01\xcc\x8b\n\xef\xb0\x06 \x9b\x81_\xfd3\x14@\x0f1\xcd\x1c[ Y\xc1\xf4\x10\x04\xd4CVP=\xe4\x04\xd6C\x08\\\x0f\xb0\x08`\x0f\x19A\xf6\x10\x05\xda\xc3\\\xb0=,\x01\xdcc#v\x7f\xd4>f\x0ct\x0fK\x80\xf7\x88\xac>\x8d\x06\x10\xf0=,\x04\xe0#\xe2D\xc2\x1eC@\xf8\x90\x1d\x88\x0f\xcb\xc1\xf8\x90\x1f\x90\x0f\xcb@\xf9\xb0\x0c\x98\x8f/Q\xb4\x91\xd9\xe0\xfa\x90\x1d\xb2\x0f9a\xfb\x90\x04\xdd\x87\x9c\xf0}\x08@\xf8a!\x8c\x1f[\xe3\x08\xb0\x1f\x94\xaa\x89\x82\xfba1\xc0\x1f\x11\xe8B\xfea>\xec\x1f\xfcG\xb1\xe0\x16\x1fDx\xc4\xf7\xff\x99T\x00\x98\xda\xeb#\xe6lD\x07\x00\xd1v,\xa3\x05\xb0\x84 \x92\x00\x84\x1a\x00\xf2\xd0\x03@n\x8a\x00@h\x02`9U\x80%\x8d9\xc4\x01\xb0\x90<\x00b\x98z\xf0\x93\x08@\n\x91\x00\xe0\x98\xe7I\x84\x02~\x19\x0e\xa0t\x11\xb9\x00L\x18\x8c\x18\xc9\x00D\xfb\x1d%\x1b\x80i\x84\x03\x80\x8d\xc7R\xe2\x01\x88\x91\x0f@\x90\x80\x00\"$\x04\x10\x1a\xa5T2\x02H $\x00\x84\x94\x00\x96\x11\x13@\x1a9\x01\xcc\"(\x00\xef\xc0D\x89\n \x1fY\x01\xf8[\xe1\xcc\xb4\xac\xc4\x05\xb0\x90\xbc\xc0\x12\xe5R\x19@n:\x03\xc8Li\x00!Z\x03@\xa8\x0d\x00\xa17\x80l\x14\x07\x90\x93\xe6\x00\xb2S\x1d@2\xdd\x01\xa4P\x1e@:\xed\x01$R\x1f\x00\xaa\x9dQ\x90q\x83G\xa0\xbc\xafvL\xde\x00 \xcd\x99K\xe2\xe0\x082\xafh\xb2\x89\x1c \x1b\x99\x03$\x10:\xc0rR\x07\x88\x8e\\Vr\x07\xc0\x08\x1e\x002\x90\x05\x86P\x8a\xbc\x12^\xe7\xac<\xccM\xfa\xd8\x11F\x9f\xf1\xf7\xad'D@\xc1\xd5\xaf\xba,X\x19\xb8R\x82X\x83!\xee\xe2\n\xeac]2\xb8\x04=z\xba\xff9\xa8\xafu #ld\xf1\x0f\x15\xa4\x0c\x17\xc4\x87,\xa2\xd7\xad\x87\xc6\xfa]\x171U$js\x9bs\xc7\x81\xa1b.V\xaeg\xa9\xad\xf9\xb2\xb7\x9e\xe5\x7f\xca\\\xbd\xf0\xd8\x13\xd6\xb4]f\xc1v\xbf\x06\xc7\xd4\xf1\xa8\xf3\xf9\xfb\xbf\x1d[z\x83\xaa\xcf\x9a\xde\xb1\xed\x83\xb5\xb1\xd7\xe8\x99\xe5\x92\xe31\xb3D1\xffT\x82gf\xd1\xf4\xa6\xdc\xd1\xba\xa0\x99\xc5\xf6\xdf\x7f\xd86\x11\xfb\x83+\xa2\xa6\xa3\xed\x96\xecv-\xed|\xa1\x96\xc9\xf5\x8f6y\xb9\xe0\xc7\x14i\xbd{P\xd0\x95^\xd0z'p\x1a\xac\x07\xc2\xf2WR\xb0\x9e\x93\xac\xb5\xd1Y\xa3\xff#r\xe6\xd0\xc5\x1b\xf7\x89(\xc6\x85\xf9\x8e\x17w\x9dA-y\xa9 7\xf24(\xcd\x86\xff\xa1N)?\x89}\xfe\xef\xbfE3\x9b\xa4\xe3L$\xd5W\x958\xf6H4W\xab\"\x85\x1b\x80?\xd2\xc7-\x85\xff\xe0gB\xb2o)\x1dh\x15\x11y\x92\x8cNx\x04\xd0\xfa\x04@\xe2@I\xadZ/\x9b\xf8\xf2x\xfc\x89t\xd7\xc3Q|\xf0\xc3\xd3\x8e\xf2f\x8d-\x1e5o\xdfp\xb3k\xe4*\xef\xa8\x84J\x8c\x8flB\xd6nd\xe4\x19\xe2\xf4\xeaZ\x11]\x89f\xb1 @\xf0\"\x89J\xdf\xbe\xd9\xfe\xf2\xf1\xc7\xed\xc5\xbf\xbd\x7f\xbb\xfd\xf4\xee\x0f\xef~\xfd\xe3\xbb\x19o\xbe\xff\xf0\xf6_\x7f\xbdx;\xef\xcd\xd7\xbf\xfe\xf2\xcb\xf9\xc5\xacw\x7f}\xff\xeb\xc7\x9e\x9e\xd8WF\xd4\xc3\xd3\xfb\x1bWc\xe3\"\xd85w\xbft\xfb\x0b\x957#\xc1)|I+\x07\xab\x91\x90\xe8G\x9b\x0e\xa5\xdf\xd9Ped\x15\xef\xb7y\x01\xff\xda0'\xd0\x97(A\x8e\xf3\x0bx/\xf6QR\x85\xc5\xf8\x0ee\xe32aB\xa7\x18\xf8\xb2\xb4\xcd\xa9F\xceX\xe3\x92v\xaa\x90\xc5\xa8\xfa\x1f\xbe\x0b>\xeb?\xe1\x8dK\xa2\xee\x80 \xfa\x03\xa2\x07\x9c\xa1L\x18v\x88\xed\xf0vI:5\x8e\xcb\x84\xd1\x80\x89#\xc2K\xe4|9.S\xe6\x85.\xe9SS\x97\xd4\x0f\x05\xd3?\x16L\xfd`\x89gV\xf4\x15\xfc\x04k?\x8a\xa6\x9c!\x0f\xa6w4\xe6n\x19\x97\xfeP\xe77\xfd\xc7eFK\xa2C=4\"\x926$\xcb\x94y\x98\xae\x9f\xfappZ\xf59G`\xca\x16\xcaw\xa91\xd7??\xb57\x8c\x9e)\xb0\xe0\xa1\x94\xb0F\xf9\xbf\xc2X\x0b\n\x14\xa7\xff\xe1l\xcf\xdb\x1c\xdeG\x8d\xfd\xd6\xf7\x88\xb0\x10/W\x0b1\xfd\xcd\xd5B\x1c\xcaj!\xae\x16b\xa8$\xea\x0e\x98\xa0?`\x82\xe11a\xd8!}\x0f\x90e\xb5\x10\x13J\xea\x87\x82\xe9\x1f\x0b\xa6~\xb0\xd5Bt\xca\x8c\x96D\x87z\xb5\x10\xd3\xb7\xd0\xff\x14\x16\xa2P+\xdb\x9b\x86\x95\xf5~{ln\xc3\xba.q@\xd3T\xc90\x97\xben\xbdIKyb\x8d\xb1%\x9c:o\xdehG2\x9f\xb1n\x98P?xR\xa0\xf02\xa1\x010\xb1\x11\x10J\xa2\xc2Kjj\x15^&\xf6\x05f\xf4\x07\xc2\xc9YxIT\x00v\xd1\n\xc1\x9b\xc8\x85\x17oz\x17^\xbef\xe3RU\x97]\xd2\xd2\xc6\x92\xc5\xe1\xe9e\xa9'O]\"IgxIMEK\x16\x88\xa5\xac\xc5\x13\xd4\xf0\x92\x9a\xb6\x86\x17\x7f2\x1b^&O\xbc\xb4\x13\xb4.\x93\xc5\xa7\xee\xf9f\xc1S\xe7\xf0\xb2\xa0A1\x93`\\\"\xc9wx\xf9J\xbas\xca9\x0f\xe6\x0d\x1a\xa4\x9b\xe0\xe32\xe3\xa0\xae\xcb\x8c\xd1\x83\x99#\x08S\x0f\xf0\xbaL9@\xd9e\xfa\xca\xd0e\xea\x07\x87\xf9\x1f\x1d\xe6~\xf8Y\x07~]&\x1c\xfcu\x89\xa7<\xe2e\xc6\xb8\xcc\x18\x8f\xf4\xa4I\xbc\x04R)\xf1\xf25\xba\x15Mt\xc4\xcb\xd7h\x9a\xff\xb22\x7fI\xcd\xfcL\x16\xe8K\xb0wKZ\xde(^\xbe\xc6p\xc62O\xf1\xf25Z\xe6\xcf]\xc5\xcb\xd7hSB\xf6+^\xbeF\xe3\"\xf9\xb3x\xf9\x1a\x0dK\xcb\xc0\xc5K\xffE\xd2\xd1\xfd\xdc\xeccW_\x92Z\xde\x8c\xcb\xed\x9d;\xf1\xae#Ps\xdbU\xcd~\xca1)u\x03\xe3\x8bo7k\xef*\xeb\xabf\xce^\xfbr\xb8\xb0\xd4\xb8\xdcV\xb7 \\\xe7\x9et\xdb[R3\xbaK\xac9\xd1Vy\xd9\xdf\xc8\xb6'\x9d\xbe\xa4\x8e\xee\xa4\xb5\x84_.\xcb\x9br\xea\x1e\xb6!ESw\xa7\x83\xba\xee\x0do\x06\xbb\xc3\x1a0\xc9\xef\xcb_\xd9\x9eZ\xef\xfd_\x1e\xcd\x1c[ \x00/\xe1\xd3\x87\x9f\x9f\xb7\xb4kNmA\xa1&\x07uB?\xd5\xe5o'Z\xdd\x03?\xb6\xb3\xf2\xaaT\xe1\x1e\xa6h\x1dq\xa5\xd5\xd1\xb6$U\xf9g\xea\xdcl\x0f\xb2\x7f\xac)\x9a\n.OWW\xb4\xbf\x8b~#\xaf\x1f\x90}\x90\xb7\xdci\xb5F\x18T\x94t\x0c\x93\xd6\xd4\x14\x1e=\x7f\x04\xc55iI\xc1h+\xaf\xd7\xabH\xc7\xa0\xa3\xfb\x03\xad\xfbu\xf5\xe9\xc3\xcf\x8f;8\x12&/\xd1C\x84\xf5\xe4[XM\\\xc4\xd5\xa9\xaa\xee\xe1\xb7\x13\xa9\xe4e\x95b\xa4\x94x1&O\x08W\xb2\xd8\xeb\x9fy\xc5\xde\xab\xf0??\x95\xed\x16\x02\xbb\xeb\xe6T\xed\xf8\x1a\xe3\x9dGd\x15\xa4n\xea\xb2 \x95\x98\xadXmO\xe8f\xbf9\xe3\xc3&xH\x1em\x1e\xf1c\x9b\xb8JB]\x0f\xf8\xd4\xbdS\x98\x97\xf3\x1a\x8e| \xcb\x82\x9e\x01\xa3\xe4\xd0\xc1\xa9;\x11\xdemIBv,\xf9\x99\\_-xY\xd6\xa4\xbd\xe7\x1b\x186b\xf7G\xaa\x14=\xbb\xa6\xf7Xu\xf4\xee\xc8\xb7\xc3\x92\x01kD\xa2\x87\xba\x07\x82\x7fzz'>\xdd\xcb\xfa~\x03?5\xb7\xf4\x86\xb6gb\xa1\x7f\xfa\xf03\x16\x1d\x94\xeeD.\x84]\xa3\xbbEW\\\xd3\x03\x85\xcf\xd7\x8c\x1d?\x9f\xc9\xffv\x9f\x05\xa5Z\xdd\xa8_\xcf\xc4\x8c*H\x0d\xcdQ*\xbf\xea\x1e\xf1F\xf1r:*\x82S\xb4.\xda\xde\x88+8 \x83\x039vrz\xf0\x96\x8bx\x91\xda+\x8cC8\x90\x0e\xae\x1aq\x0f\xf9\x0b\xf4\xcb\xfc\x0e\xce\xaf\x86v\xf2\xcfyl\x9b\x9brGw}W\x84'\xaf\x13\x9a\x08eL\xfd\x1d\xbc\xac\xe1\xa7\x8b\x8b\xf7\xf0\xe3\xdb\x0buO\x08o\x93\\n\xe22J \xf0\xef\xf6$\xbd\xb8?\xd2?\xfd\xfb\x9f\x10\x81\xa0\x1d+\xb5\x9e R}\x8a1=\xb6\xcd\xeeT\x88\xfbh\xc5%\xb4\x98I\xf1;x9\xecv\xf2ZGq\x17\xbbtj\x15\xa4\x107D7_N\xc7\xde3tI:qa6\xbeD\xd1F~\xfa\xf0\xb3h\x91\xb8\x0d\x96]\xd3\x831\x97\xd5=\x99Dw\x80\xff\xffMS\xee\xf8\xa1\x15\x15&\x9b#\x96k+.\xdc=\xd3\xafr\x89\x84\x95\x97eU\xb2{\xa8)\xdd\xf5\xb7\x0bs\xb5\xd2\xdex\x8c\x9c\xa6V\xf7\xc9\x8a\xc7\xc5\xaa\xd9\xc0\x93O\x1d\xd5\xccZ|4\xf8\xf4\xe1\xdaA\xce\x1fR\x93=\xde\xd7\xcb\x96\x92/|\xcd+\x91\x9b\xa7\xe8\xd52\x0d\xa3/\xd4\xdd\xb6\xa7\xba\x903\x9d\xb7Zi\x89\xe2\xd4\xb6\xc2%h:\xe2\xbc\xf7\xca\x08\x0f\xa2\xeb\x81\x03\xad\xed/OW\xe2\xf2p\xd2\xd13a\xa1\xcb\xfb\x8fyE\xe2\x92T\xb1{\xf7\xeb\xe3\x92\xee\xcb\xba\xc6\xcf\x18\xd8\xc5\xea\xa0T\xcdF\xce[r,\xbbM\xd1\x1cp\xfd\xf6Q\xac\x9eNz\xff\xf8\xf2\xacm}\x00O\x94\xe7\x85\x1e\x8e\xec^-\xb7\xa7p\xb0\\G\xba\\\xa2\xcb_tK\xe46\xf4\xd7ZK\x87\xb3\xba\xe8\xb8\x80\x8e\x1eH\xcd\xca\xc2\xb1\xb4=G\xb1\xe0\x16\x1f\xf4\xfb\xc7\xf7\xff_\xfa;\x94\x85\x8b\xdd\xd8\xc0\x9d\xddZ\xdb\xa8\x97\xcd\x0d\xba\xf5\xf7\xf78\x8b/2z\"\xdc\x8e\xcf/\xeb\xfb\xcf\xc6\xb9\xa1\x06\xd2^\x96\xac\xe5\x0b+\xd0\x1e\xa5I-a\xa4j\xea\xbd\xba\xa8\xdc\xfe<\\\xdf \xb5,\xdbs\xe9\x9a4f}\xda:q&\xd3{=\xb1\xab\xf2R4Ri\xe3\xae\xbf\x83X\xdc\x8a\\|y~\xaa\xf9\x7f\xf8>&\xbfm\x87\xaf$l+o\xae\xe0\xc4\xa4:\xd1\xcb\xb4\xe3\x8a\x8c\x0c\xa6\xf9\x9e\xd6\xb4%L4\x95]7\xbb\x9e\x1f\xec\xa5\xa3\xbf\xe4'\xb1\xebx{G\xf8\x14\x85o_\xc0{\xdeN\xbe>U\x93\x89I\xd8\xfd\xfa\xef\xff\x1e\xddT~h\x1a\xb8j\x1a\xf8\x1e6\x9b\xcd\x7fC\x1e\xe0\x1d'\xf5=\xf6\x13\xa9\xef7\xbc\xd2\x1f\xda\xe6\xf0\xe4\xaai\x9eb\x0fm6\xd8\xceQ^\xc1\x13\xfe\xfa'\xd1\xd4\x8b\xe6\xc9\xdf\xf1\xf7\x9f\xc2\xffB\xb5\".\xe3/\xbe\xb1\xf8.2\x16\xffBn\xc8\xa2\xc1\x80\xef\x85]\xc3%\xcf\xecw\xd9=\xf9\xa1i6EE\xba\xce\xdbm\xd9\x14\xfe\xb8\xec\x85\xf1\nV\xa33\x1e\xfd\x80\xfcCd@\xde\xdf\xb3k~\xdeA\x84\xca6\xfc\xd04O6\x9b\xcdS|\x12\xc8\xe1x\xe2\xf9UL\x111LSF\x89\xbfx.\x07\xe9\xcd\xdb\x8f\xaf?\x9c\xbf\xbf\xf8\xf5\xc3S\xdc\xc75L$_5\xb2\"\xdf\xf0\xfccdx~lP\xef\x05\x1f\x9a\x17\xdf\xc3\xdf\x1d/7?4\xcd\xff\xdal6\x7f\xc1\x1e#\xf5\xfd\x197\xa1\xf8\xb3Gi\x1e\xfcB\xda\xee\x9aT|\xd0|\x0d\xc6\x07\xc6\xae\x13\xad\xb0\xbc\xb2\xaa\xfbT\x1f\x86\nEs\xc4\xa4\x15O\xfd\x97\xef\xa1.+\xcf\x04\xf4\xb5\xc2\x99i\x17\xe2B\xff\xe2K\xaf\xc5\xb4q\xcb\x8f\xd4G[\xd7\xca{\xf5\xeeuN\x82\xc85\xb4\x04>FL\x82\xe7\xfc\xfc\xb6\x11?pS\xea1\xb7\xb9{\xdd\xcf\xf7\x05E\xb4h\x89\x92_\xd4\xae\xa0W\xb7uu\xafO\x1d\xce\x01\xb17\xdb\x80\\1u%\xbf8\x9b>~\xfe\xd8\x16\xa8\x8e>\xba1\xf2\xacC\xd5\x0c{t\xd54\x9bK\xd2\x8an\xdc=\xbf\xdf\xfc\xf9\x91\x1c\x05i\xb5c\xc7\x10Q\xed#\xfe$W\xfa\xd6\x8f\xff\xf2\xf1\xd7w\xf6\xdf\xbe\xff\xfe\xfb\xef\xb1\xef\xc2\x9f\x1d\xce\xc6\xd2\x8ei\xf8\x02S\x9b\xb6<\x03\x9c:\xaa\xa3\xa2\xfbSE\x1c\xaaiW\x00\x7fxG\x87\xcd\xf6\x0c\xe8\xe1\x92\xeev\xc3\xb6{\xa6\xf6p\xe7Dml\x80Wb\x00>\xff\x0f>\x04\x9f\xd5!p\x94t\xa0\x07t\xa3\x97\xeb\x0b\xd4P%\xc5\x17\xbeZ\x87\xc3\xcfUYQLK\xeau\xfd\x9e\xb6]S{&\xbe\xf2c\x88\xcb\x16\xb7\xe2K|\x0f\xdfb\xd2\xfaGE\x86\xa0z\xf2\xbb4\xed\x0c\xe0\xa9\xfd\x91\x18\x8dG/\xe0\x11\xb6\n\xc6]\xdc\xc8~<:\xc3%\x89\x1e\xbc#\x07.\xed\xbf\xcb\xa6\xfe\xb3\xe7Q\xde\x03\xeb\xc9\x94n\x9c_)s{\xfc\xed\xe5w+;\xb8\xa5U\xf5\xecK\xdd\xdc\xd6b}^\x93\x0e\x08\x14\xa7\x8e5\x07t\x1a\x8f'\xda\x994\xf6\xac\xd9\xa7/\xe6\xec+\xe5\x13\xaa\xde;\xde\x161\xb9\xec\n>\x8b \xaf\xe7\xdauS\xed\x14U\xed\xd0&\xe1\xb9Qs\x14\x94\xafDMQ[\x9a\xa8\xa2\x9f\x9b\xf0\x84\xafz=\x04\xceQ\\\xfb\x8b\xfe\xf4\xef\x7fz\x8aN\xe3e\xf3a\\\x89oJ\x88\xeesa\xdfn\xbe\xfb\xf6\xbb\xee\x11\xfa\x91\x87\xff\xf7\xa4Py\x0f4\x11\x7fy9\xb8\xdc\x8e-\xbd)\x9bS\xa7n*\x85\x1f\xf8\x19_\xc4\xf8;\xf8g\xf8\xf6\x0cJ\xf6X~\x9a[\xf1W\xe7\xfc}\xa0\xbb\x92p]d\x0f\xa5\xd0\x1b\xba\xdd\xbdI-OG\x82\x0d}ta\xe9\xe6g\xd21\x95!\xc5\x1ba \x93M\x82\xef\xbf\x87o\x1d\x16a\xd1Bn\xc3we'j4\xb7K,\xe0\xca\xbeB\xdc\x99yB\xaa\xc13h8\x8c\xeak\xb6,\x0f\x1b!\x0e\x06J\x83}\xd2%\x9a&\x18\x8d\xa0\xe6\xaa&r\x8d\x86\xac\xe6\xb2i*J0\x0fYlu\xe9\"buCpVd\x08ve\xbd\xafD\x04\xf6\xd9\x10d<\x03\xd2uMQ\x8a\x13\xa8\xf0\xce\xe0\x02I-g\xf3\xd40\x9d\x0c\x1a\n\x9f`gF\xc6`Goh\xc5\xbf\xbcp\x88\x89\x9b\x07\xae\x0d\xb3\xc0\x11d\x84\xb0\x80!\xe6\xb8\xce\x82yE\xf7e-2\xb6\xce\xfa\xbf\xbd\xadw\xd6_^_\xd3\xe2\xcb\xc5\x1d\xdf\x90\xbc\x92\xde\xd0\xaa\xbc\xa1\xed\xc5\x1dr,\xfa\x990\xda\x9e\x8d\xefB>\xc8\xb8\x9a\xce\xab: \xdery\xc9\xb2T\x04S\xdc)*\x0e\xdb\x875e\x84Y \xd2!We[\x0f\x1c\xe9\x9e\xd8\x15(\x8f\xa1\xa3\xbd\xcc\xd6\x19\xf7B7\x1d\xf5U\xa1\xda\xa168\xdb\x8d/\xed\xef\xc6\xb5\xe6\xb5\xb4\x81\x0c\xb5f\x14\xaeI\xbd\xabh\xbb\x81?^\xd3\x96\x92\x0e~n\xf6\x9d\x9dq\xca\xdbfod\x98\x1b\xd10)\x0f\x94\x91\x1da\xe4\xac\xafW\x18\xf9\xe3\xae\x98\xddp\xbd*hZ\xdfw\x9bo\xbf=\xe3\xff\xf3\x8f\x9b\xdf\x8b\xff\xfe\xbe\x7f\xcb\xff5\x87\x84\xbfX\x90\xba\xa5\x15\xbd!5\x03v'\xa9\xe6\xc7\xb3S\xf7J\xb8\xae\xcd\xf62\xb2\xef\x8c4\x01yr\xd1\x9c\xf3U#\x12\x84\x85Q\xb3\xa3E\xb3\xa3;95F-\x1e%&\x06\xd3#\xcd\xc4\xc8\x8b\xbb>\x1d\xd2\x9b\xed\xd8\x89\x99<#\xe7\xd1\xd8\x0e\xb0\xcd\xc7\xd9r\x96gFv\xba\xe3U\xd9\x89\xd0\x15\x92\"\xd9!9\x92S[\xea\xd9\x12}\x1b!\x0e\x17\nlH\xa1\xcc\xb1xN%\x9eU\x19\xacpRf\xa57\xb72XEj~%\x96a\xa9\x05\xe3\xb9v\xa1\xd1J\xcb\xb3\xc42-\xd3\xc7+\x96m\xe9\xc9\xb7L\xaf\xc0\xc9\xb9LOZ\x89g]FrW\xb0\xcc\xcb\x901\xe91$\x83Fd\xd8\x80\x0c\xe6`\x86g\x86,1\xbc\x96'\x133j2\xfa\xb31c\xd6v$U1jq\xc7\x86L\x16\xdf!b\xf4{\xcc\"N\xc9\xcd\x8cwW\x96h~fR\xd7eI\x19\x00Y\x12\xb24\x13\xc7B\x96\xa4L\xcd \x12c\x06\xf8\xb8L\xcd\xd7\x8c\x0f\xce\x94\x8c\xcd99\x9b\xe9=\x9c\x95\xb7\xe9\x9f\xfe\\)F37s\xe7n\x06\xb27S\x07\"s\x06gB\x0eg \x8b3\xa5\xd1\x0b29=\xd2\xfc\xb9\x9c\xf1\xf6\xa4n\x8d,\x94\xcf\x19\xdd\x15\xdd\x9c\xce\xf4\xfd|I^\xa7?\xb3s\xb6E\xb94\xbf\xd3\x97\xe1\xf9\x10\x0dJ\xc8\xf3t3=\x83\xdbJ\xcc\x0d\x87\xe7{F\xf5{l\x96B\xfe\xac\xcfX\xdeg\xee\xcc\xcf\xcc\xb9\x9f\x91\xec\xcf\xc5\xf9\x9fy3@Sr@\x17d\x81\xe6\xcd\x03\x95\xb35\x92 \x9a7\x174!\x1b4{>h$#t^N(*(\x98'\x9a%S41W\x14}sR\xfe\xe8\xe2\x0c\xd2\xdc9\xa4\xfe,\xd2\xccy\xa4\x0f\x91I\x9a9\x9745\x9b4s>i8\xa34{N\xa9?\xabT*\xae\xa4\xbc\xd2\xf9\x99\xa5\xa80\x91m\xea\xc9-]\x94]\x1a8@FL\x8a)\xdc\x12\x1e\x8b#_\x9ei8\xd34\xde\x9a\xac\xd9\xa6\xe1|\xd3l\x19\xa7KsN\x1dq\xc2\xa2A\x8d\x87\xbcy\xa7j\x19!\x1dZ\x9a{\x9a\x90p\x19\xcc?M\xcc@\xf5\xa6\xb1M\xccB\xf5\xcbAr{\x16\xe7\xa2N\x19\x9c\x94|\xd4\xf8($\xe5\xa4N\xceJ\xc53\x9f2d\xa6&\xe4\xa6\xc6\xb2S\xe3\xf9\xa9\xc1Q\x9b\x92\xa3\x9a\x96\xa5\x8a\xe7\xa9.\xceTM\xceU\x9d\x9b\xad\xea\x1f\xa6\xa4\x8c\xd5\xac9\xab\x81\xb6 3qQ\xe6\xaa#\x0d\xc9d\xcd\x9a\xcb\xea\xcbf]\x98\xcf\xea6\xd9\xcdo\xcd\x9f\xe1\x1a\xc9q\xc5\xb3\\\xf1<\xd7\x9c\x99\xae\x99s]\x1f\"\xdbuJ\xbekb\xc6\xeb\xa4\x9c\xd7\xf4\xacWO\xde\xab/\xd31=\xd71\x9e\xfb:)\xfb59\xff\x15\xedP\xee\x1c\xd8\xbcY\xb0\x9e<\xd8\xdc\x99\xb0\xb9sa\x97\xcf\x91\xa4|\xd8\xb4\x8c\xd8qNl\x80X0p\x0c\x8b\x9dj\xb2\xe6\xc6\x06\xb2c3\xe7\xc7\x863d#9\xb2\xbe@8\xfb\x8a9\x02\xcc\x1b\xea\x8e\x9c\xa9c\xe1m\x7f'd\xf9\x1aq\xfcH\x00;\xd2C]\x12R[\x13b\xdb9+\x8bd\xd2\xea\xcaB\xb9\xb4\xf1\x15\xa9\xcb\xac|Z\xaf4e(\xe0\x19\xb5)\x8d\xca\x96U\x1b\xcf\xab\xcd\x99Y\x9b\x96[\x9b%\xbb6>\x8a\xb32l]\xadcD\x11\xf1\x1c\xdb\xf9Y\xb6\x8e \x9d\xae\xea\xcf\xb3\xcd\x9ei\xebs\xae\xe6\xcd\xb6\x9d\x9eo\x1b\xfe\xbe\xd9rn\x03Y\xb7s\xf3n\x9d\xb6\x9b\x99\xa4\xbe\x0c\xd4\xa1C+w\xee\xca\x9d\xfb\x90\xdc\xb9\xff\xdb\xe0\xce\xb5\xb3\xb7\xd3\x12\xc3/\xee\xbaW\xf7R\xbb*Q\x1f\xde\xbf\x0e&\x8a\xff\xd2\xec\xe8y\x9f\x11\xe3\xcc>w\xe6\xc9\xadw\xf8Dj\xa8\xd5\x8e\xdc\x9f\x92\x8c]\xba+\xf7\xb5\x91\xe09a\x86\x1f\\\xc6VY\x1b\xffA\x8f\x08\x17/\xb2\x1f\xf8\xdftL\x00\xad\x19B\xb3 c\x9e\x7f\x06\x1f\xcf\x7f|\xb7\xfd\xe5\xd77o\xb7\x9f\xde}|\xff\xf6\xf5\xf9\x0f\xe7om.~\xf3\xa97\xe7\x1f\xde\xbe\xb6)\xe3\xcd\x07.\xde\xfe\xcf\x8bO/m\xa2x\xf3\x89\x9f\xdf\xfe\xf8\xf2\xf5\xbfm_\xfer\xfe\xee\xd7\xad8\xa0\xfa\x9f}{\xfe~\xfb\xed?};z\xa2'\x9b\x8f\xb7=\xbcO\x7f,\xf75\x9f\x1e\xf6G5\x86[\x06\xd2X\x07\xfct\xdd\xd1\xe2\xd4\x96\xcc6\xb7\xf7'\xd2\xf2\x8dPl>\xe3\x9f|\x03\xeci{\x1f\xb8\x12Q\xa7S-\x0f\xf5\xa3\x06\xf1-@\x1d\xcd\xad\xbaZ\xca'\x9ck\x19\xba_\xef\x85\xf3\x17\xb3bk\x00t\xaaD'\x86\xebMS\xc8\x80\xaa\x9d|pC[\xb9G\x89\x11\xeb\xf3.\xa5\xa9p\xe1$\xd3!3\xe6\x85\xfb'i\x0b_\x9d\xc4\xc6:j\x96\xcc/\xe4\xe3 *\xbe\x97\x19\x84\xe3:\xaeO\x07R?k)\xd9 }\xc7\xe8\x1d;\x91\xca\xf1\xbfq\xd3\xf4\xa8\xd7\x95\x8c\xb1;#k\xbea\x7fc\xd1\xc3\xc8\x02 \xcf\xff\x17\xa1\x1f\xe5\x18\\\x92\xe2\xcb-iw\x9d\x15\xfe\xb7\xbe\x91U\xed\xcbCY7\xd2L0\xe6\x0d\xb4\xf4\xd0\xdcH\xf2~\xe9\xc7\xe5\xe3\x1bj\xb1Z\x85/\xdc?\x19\x13G\xab*\xd9&\xae\xb8\xdf\x9e\xbf\x07\xf1\x8c\xfar*Q\xe4\xb5\xd0\xd1\xf6Z|\xf3\x87\x0d|\xa0W/@\xc4\xc3_<\x7fN\xcbc\xb7\xa1|3\xa1\xa7\xc3\xa6i\xf7\xcf\xdf\x9e\xbf\xff\xc8\xff\xfc\x8ck\x04\xfb3\xbc\xd6Y\x04gH+\xcb\x0eZ\xba/;F[nF\xf1\x11\xed\x17?\xd7\x8b\xf6d&mIj\xe6\x98\xdb\x97\xa7>\x8f\xa0\x0f\xae\x0b\x93T\xeeQo\xfe`x\xef7p\xd1\x00\xad\xc5\xd4{{\xfe\x9e\xb7\xd9\xb6\x7f\xef\x9b\x93\xc8\xdf\xb0\xab\x11\x81\xda\xce\xf0\xe2}\xbe\xb8{\xdd\xd4W\xe5\xfe\xb3\x9c\xf8\xc2\xc5W\xdb\x01~\xd7\x17\xf3Yw\xf2'i\xa2\x7f\xd6\x9f\x85\xb7F\xa6\x94\xf1F\xf3\xe3\xcf\x8e\x16%_W\x8dr\xeb\xab\xa0\xb1-Q\xbd;\x9e:\x89\x087I\\\xcf\xcb\xe1T\xb1r\xd8\x8b\x12\xd1Uz'\xdf\xfc\xc2_\x1f\x90Vz\xcb\xe4\x7f\x1d\xab\xf2Z&\x88\x8a_\xbaron\x97\xa3\x9dAK\xb6\x82\xf0\xf6\xc6\xdbo\xf8M\xeb\x11\x1d6Ad\xc3\x93\x0d\x91\xcb\x92 \xef\x8ec\x8a\xe8\x1f\x8c\xc5'U\x80\xb8i\x8d+`\xf5y\xfa\xd6\x91A\x7f\x0e\xc2\xd2\xcd\x14z\xc7Z\xb2\xbd,Y\xb7\xedX\xd3\xe2|\xa9SX\xe6i\xe5\xf8\xa6\xa2V\xf0\xc8\xac\xf7o\xec\xaf\xb9~,\xd8\xab\x92\xbd\x14cT\xe2K\x85\x7fL\x81\xf5\xea\xcdt>\xac\xd2\x9d6\xda\xc6E\xfe)7p\xd5\x81\x80\xd6\xdd\xa9\xa5}\xbe\"\xd0Z\x9c\xbf\xe4\x01\x8f\x91/\xb4\x93\xa9~\x87\xb2.\x0f\xa4\x02\"\x92\x84\x0d\x81\xe3e*\x1b!\x03f\xc2\xa9,\x05\x96\xf5\x1em\x05W=\xec\x9a\xefi\xd0\x91+\x9d\xdd\xa4TR\xcdh\xbdS\xe9MES\xab\xbc*8\xc9\x94\x11)\x88\xcf\xe5mY_5S\x81\x85\x13\x17\xa9\xb3*.\x17\x1e.\x8c\x84\x9b\x85\x81\x9b\x8d~\x13\xfd\xb5\xfd^^\xdc\xdbl\xc4\x9b\xb46,i\x1e\xac\xdb\x12\x94\x9b8\xe6\xda\xbdA\x121\xe7 \xdb\xfc(\xb6\x85\xf8\xb5$\xe4Z:Jm\x01>m\x012\x0dQ\x18\x19\xf1gy\x91g\xd90gq\xb4Y6\x9c\x99\x0fa\xb6\x04[\x86\xa6:\xb0\x14\x04\xd9\\\xec\x98\x17'6\x13!\x86$`M\xf3\xd9At\x07\x9d\x89\x01\x1b\xf0^\xd8\xf8~\x13\xaf{\x19\xe2K\"\xbc\x0cq.\xd6+\x03\xcak\x19\xbe\xcb\x9a\xe5\xf6f\xb8\x10\xd3\xa5\x06ztrY\x80\xde\nB\x93<\x88\xad(V\xcb\x85m\xa4\xe3\xb3\xdcw\xff\x82\xf5u\x16\x1a+\xa5\xb31\x04\x96\xbfoQ\xd4\xd5\x04\xbc\xd585}!\xc6*\x88\xae\xf2\xe3\xaaB\x88*t\x14RQT1\xfc\x94\x8d\x9cZ\x80\x99J@KM\xc7I!\xa8\xa4\x186*\x13*\n\xa9y4S\x16a\xa0l\xcc\xd3\x12\xb4\x13\x82nZ\x84k\xb2qL9\x11L^\xec\x92\x0d\xe8\xb0\xf1Jy\x90J\xd90Jy\xd1Ii\xb8\xa4(\")\x11\x8b\x94\x82Br\xe0:nm\xa9x\x920\xe6(\x11m\x94\x803\x1a59'\xb6h\x11\xaa\xc8E\x11\xe5\xc3\x0f\xe5C\x0e\xcd\xff\xbaQ\xb4P\x0c'\xa4\xd5w\x1f:\x9d\x9d?\x91\x18\x9a\x8d$C\xb0>2\xabc\xd0:\xdf\xc2\x106\xa4E\xb3\xa6\xb7S\x91\xc8\xec\x17z\xffX{F:\xfa\xdb\x89\xd6&\x81+z\xcc\xf0$\xc7\xfa\x8d|-\xb7\x8f\xad\xea\x7f\xeb\xa3D!\x92^\xcf\xd4\x84\x1b\xf5~\xa4\x9a\xfb\x9c\xdaB\xa0\x96\x98E\xe2+GE\xecn\x04\xf6\xe5\x0d\x15s\xb4\xa5]\xa7]\xea\xfc\x00f\x08\x1c##\x8e\xadH\x96\xe7\x0b\xa7\"\xf7\x12f\xf1E\x1d\xc4\xf0d\xda\xc1mj}\xb2!j->\x917\x9d\x855\xc7g\x15\xbd\xa1\x1a\xc2\x11\xcae\xf9X\x1eN\x15a:Q8\xd9Qk\x12\x9f%\xceW/\x9b\xf2h\xbe\xb2;\xfdAMb`>\xddTKM\xeb\xe4\x0d\xd7F\x05?\xc5l\xe0#\xadw\"\xe6\xc9\xeeT\xd8S\xb1(n\xfa&o\xc5\xdf\x13'\xa2??\xc5j\xefV\xd5\xa6v_\xde\x02\x93.\xcex\x16\x8d\xed\xfcCp*\x8c\xbe\xce\x90S-\xff\xc9\xb0\x94j\xfd\x8e\x12\x11\xcb\xa7\x1e\xaa\x98\xc8\xba\xbd'\x9d\xa5\xb7F}\xd0?\xeb6\x9b\xd8!r\xd9\x9c\x98 \xd9\x13\xbe\x0beh\xa9\x0f<\xe2\xd8s\xda\x81\xb7\x05\x96\\C\x8d\xa4\xe3\x87\xdd\x1a?\x92\xee\x8f\xa2\xa2>\xf0F\xee\xca\xc3\xe9\x00\xa7Z\xe4!\\\xc1m\xd3~\x81[\xe5\x01\x94.,v\xe7b\x0d\x8e\xb4\xe5\x8d\xd8X\xbd\x98q\x83u\xac\x0f?\x92\xeeS74\x98\x8c\x98\x0eI\xc1\xa4\xbf[S\x1e\xea\x06IG\xa5\xe7\x03\xcb\x1f\x87))\xfe\xd5o$\x8b>\xa5K\x91\x1d\x1d\x80\x89\x9e\xa97\x84\x11\x99Jv/3\xbdZ\xcaNm\xad\xb1P\xda\x9a\x10\xfeW\x11\xf75hK\xe1\xdc\x8e\x98\xfc\xf2\xe9\xe3\x05\xe2\x98\xabh\xbdg\xd7|\x07\xb8*\xef\xe4<\x17\xc12\xa1\xcd\xe8\x91\xb4\x84QY\xbb\xac\x94o\xa0\xdc\xa0\xc1\x99\x87\xfa\x06\x8c\xbcx\x0e\xa3\xb4w\xa4\xc2\x03\xf2s\xb3\x1f[\xef\x02\x93d\xacY\xcf\xb8\xf8\x1ai\xb6q\xbd\xda&\xd8\x05Y\xe2\xf0\xdc\xf5j\x1b\xa3\xc4\x10\x9b\xb2\xcc\x82\xe2\xaeW\xdb\x8c$\xfd-\\m3\x83\xa0ZQQ[\xf2\xb4j\xb5\xfe\x8c\xeay\xf1L\xcc.K\x00\xbb\xe9w,\xfb,f\x98]\xdc%\x9bb\x97\xcd\x0e\xc9*ov=\x12R\x81kE\x88L\x04\x9c\x87\\\x00\xe3\xdb\x0d\x12\xd2\xb7j\x8d\xd3\xfd\xebh\xf7\x951yeLF\xa5\xad\x8c\xc9\xb02&\xe3\xf5,\xcc8\xd1B\x12\xf2N\xd07\x93sQdY\x90\x91\"\xcb\x82\xbc\x14\xdfB\xf745[\xc6\x8a,y\xf3Vd\xc9\x96\xbd\"K<\x87E\x96l\x99,\xb2\xac\x8c\xc9+c\xb2t\xe3\xac\x8c\xc9FY\x96Q\xe3\x88c+cr<\x0bG\x96\x18Wp<#G\x96\x951yZ\x06\x8f,+c\xb2(\xb1\x8c\x1fYV\xc6d\xb6 7H\x96\x951ybf\x91\xdb\xe4\x9519G6\x92,ys\x92dI\xcbL\x92%\x9a\x9f$Kb\x96\xd2\xe8\xe1\x951Y\x94\x9cYM\xb2,\xcamr\xa4\xad\x8c\xc9\xb9\x19\x93\xc3'\x94\x9e\xdbR\x04t4\xffa\xffW\xe9\x0b\x90\x8e|\xba\x93\x8e\xc3\x96\xfev*[\xc710pQ\xd8C$97{\x99\x12\xf9(\xbe\x8fJ\x18\xe23M\x86s\x9b+A\x80\xa2(;-9/O\xecZdi9\xf7\x82\xca\xba\x15m\x06\x97vq\xf7Xf\x1b\x11vji\xb7\x81\xb7\xa4\xb8\xee[\xdegg\xc9\xe4#\x97\xb2\x8b\x88I\xea\x06\x85X\xcf\x11\xc9\xf7.\xb1o\xf1u+\xd8\x95\xa1d\xd0\x14\xc5\xa9u\xb9\xce^\x89|\x80\x1bZ\xeb\x15\xa2\xdf\xb3\x1b\xf4D\xbb>{\x1aQ\xf1\x1c\xfe\xcd\x1c\x0f\x89@\x8e_\xd1\xb6\x95\x0e)\xa2\x03\x16\xe5A\x9c6\x87\x8c\xb4#\xb9\x97\xbf]Q;\xb4\xa2\xcb\xeduS9\xdb\xa0\xe7\xee\xc6\x03=4Y\"\xe7\\\x90N%\x18\x8e\xc9u\xc3\xe8\xf3\xa29\x087\xbb\x9c\x90\xfa\xfb\x80\x15vqF\xfe\x8f/?\xbc;\x7f\xf7\xe3\x0b\xae\x1c\x8a\xaa\x14T\xabB\xbcL\x00\xab\xee\x81\xde\x1d\x1b\xc1_C\xef\x98v\x87\xd7\x0dsI\xe4\nRUBa\x1e\x1a\x94\xfdjp\xa5\xab'?\xf3\x86\x7f\xee/\xa0}\xd2Q\x87\x86MQ\x07\xecKv}\xba\x14*A\x06\xaf\x9e\x0fyM\xcf\xcb\xae;\xd1\xee\xf9?}\xfb\xddwO\xcdQ\xe7s\xae9\xb1-vO\xbdw\xfc\xe3\xbc\x99\x0e\x15\xa8\xaaG\xc7\xbf\xcc\xeb\xeb\x95m&\x95\xb2L\xcd1\x12\xcd\x84\xd2\xaf\x1b{\xf6^\xf614u!(W\xe3\xd7d\xb4\xda\xe9\x1d\xa3uW6\xf5V:\xc3\xd7\x98\xd8\x1a\x13[cbkLl\x8d\x89\xad1\xb15&f\x975&\xb6\xc6\xc4\xe2\x16\xc7\x1a\x13[cb\xa3\xb2\xc6\xc4TYcbkLl\x8d\x89%\xd5\xbc\xc6\xc4\xd6\x98X_\xd6\x98\xd8\x1a\x13\xb3Jj\xbcc\x8d\x89\xad1\xb1\xd8\x1cy\xc0\x98\x98\xef\x8e(\xc7\xef,\x1d\x1a\xfd\xe9D\xffU|\xcf\x82\xd4C,\xe2\xd2\xb6\xbb\x85K\xdb T\xdd^\xd3Z\xa9#I\xe2b\xd6\xc3\x8f\xcf\xddI\x93\xeeo\xf8\xbc\xe4\x06\x90T`\x1do\x87\xbd\xa1x|\xa6|\x96\x16\xa4~,\xce{\x12\x8d\xb3\x93a'\xc7?/h\x95\x1d\x82\xed\xba\xa9\xb7E[\xb2\xb2 \xd5vu\xc6\xaf\xce\xf8QY\x9d\xf1\xab3~u\xc6\xaf\xce\xf8\xd5\x19\x8f\x94\xd5\x19\xbf:\xe3\xe3\x16\xc7\xea\x8c_\x9d\xf1\xa3\xb2:\xe3UY\x9d\xf1\xab3~u\xc6'\xd5\xbc:\xe3Wg|_Vg\xfc\xea\x8c\xb7J\xaa\xa3uu\xc6\xaf\xce\xf8\xd8\x1cY\x9d\xf1\xd9\x9d\xf1\xf7\xfd\xac+\xf7uc\x02jFg\xb6\x8b\xbbW\x06\xfd\x94\xa0\xa2\x12\x0c\xb5#NW>\x04\xa4\xaaz\x10\x8e\xb8\xd4\xb0\xb9\xa1\xbd\xa3\x88\x9c\xd8\xf5\x97\xac\xf1\xa6P\xac)g\x9c)c\x8c)\x10_Z\x14[\xca\x17W\x8a\xc5\x94f\xc6\x93f\xc7\x92\xa4\xff\x1a\x19-o\x1civ\x0c \xbd$\xcf{M\xde\xb2\xd8\x11\x9c\x8e\x8e<_\xdchN\xcc(\x14\x1fZ\x1c\x1bJ\x8a\x0bM\x89\x01-\x8a\xff,\x88\xfd\xa0j%k\x8c'w|'cl'%\xae\x931\xa6\xe3\x8f\xe7d\x8d\xe5\xe0q\x1c\xc4\xc4\xc7\xb4\xd4\xdc\xf8\x8d\x8c\xd58\xe2\xb0\xd8\xcd\xec\xb8\x0d\x1a\xb3 l\xc5\x81XMl\x97\xce\x15\xa3\xf1\xc7gB-X\x16\x97q.\xde\xc3\xae\xde\xcb\x14\x8fY\x16\x8bqV\x89\xbb\xe1\xe6\x8c\xc10$\xfe\xb2,\xf6\x12 -xc. \xf1\x16\xcc\xf9:%\xce\x82\xbd\xff\x17\xbc\xef3c+i\x9d\x8f\xc7TB=M\x88\xa5L\x8a\xa3\xd8N\xa7\xc5\xf1\x93H\xec$\x147 \xc7L<\xa3\x92\x1e+\x89\xc7I\xdc\x18\xc9\xa2\xf8HRldN\\\x04\x8dC\xc4\xe3!\xd9b!h\xfd\xd6LZ\x14\xffp\xe3\x1dKb\x1dhlcQ\\\xc3\x8dc\xe4\x8da\x04\xe2\x17\xae[\xd7\x8d[\xe4\x8aYd\x8cW\xe4\x8eU\xa4\xc6)\x12b\x14\xc9\xf1\x89\xb4\xd8\x04\xe2\xc6\xc7jM\xf55\xc7\xe2\x11\xc9\xb1\x88\xa48\x84\xd5\xf8\xbc\xf1\x87E\xb1\x07,\xd6\x903\xce\x903\xc6\xb0\xe4{'\xc4\x16\xe2q\x85A\xf9\xfb\xadj\xed0\x9cAv\xe5\xa1\xb7\x9aMm\xe5!\xb3\xcaId\x85\x91X\xb1\xe9\x04V\x19\xc9\xab\xd48\x8dN\xd8\x8bH\xab\\\x9a*\x84\xa2jLO\x85\x9e\x15CS&'%\xd5\x12:*E+e\xb5mDE5\x83\x86j6\x05\x95\x8f~\n\x1d_\x0f\xed\x14\x16H\xcaI7\x15\xa3\x9a\n [\xd8\x1aI\x18\x955\x92\xb0F\x12\xd6H\xc2\x1aIX# k$a\x8d$X?\xc5v\xe95\x92\xc0\xd6H\xc2\x1aIX# k$a\x8d$\xac\x91\x845\x92\xb0F\x12\xd6H\xc2\x1aI\xf8\x9b\x8f$`\xc8\x84%\xa8\x04\x04\x87\x90\x11\x83\x80x\xc2\x16\x11\x01\xa5\x92\x00\xb1\xd5U:*\xab\xabtu\x95\xae\xae\xd2\xd5U\xba\xbaJWW\xe9\xea*\xb5~\x8a\xed\xd2\xab\xabtu\x95\xae\xae\xd2\xd5U\xba\xbaJWW\xe9\xea*]]\xa5\xab\xabtu\x95\xae\xae\xd2\xd5U\xfa\xd7s\x95\xe24-\x99)Z\x18\xadw\xb4=\x945\xdb\x90\xcb\xa2\xdc\xbc\xbd\xa15K&\xc2\x10\x8f\x0c\x9f\xc2=\x98\x11\xc6\xda\xf2\xf2\xc4\x1e\x9a+\xe3\x0b\xbd\xcfqL\xccv\xde,\xeb\x1d\xbd\xc3\x05]6ME\x89\xc9\x8b2\xfa\xa4\xe2\x03\xbc\xd4\xc3&\x01\x03]Y\xef+\xca;\xf9L\xeejGR\xb6g@\xba\xae)Jq\x0eR[\x12P\xfe6B\x98\xd2/\x0f!^\xfa\x8a: \x83\x0f v\xf4\x86V|p%\xc1\x0bc\xa4\xb8675\x83\xd2\xc5H\xed\xff@\xbbcSw\xf4\x15\xdd\x97\xf5\xab\xaa)\xbe\x9c\xf5\x7f{[\xef\xac\xbf\xbc\xbe\xa6\xc5\x97\x8b;>\xe5\xad\xf7\xdf\xd0\xaa\xbc\xa1\xed\xc5]o\x9f\xfeL\x18m\xcfF\xdc-p \xf7|9\xfcv\xa2-7^N\x9d`w\x11\xcbLt\xbc\xf3\xce\xe8~@\x93\xa7\xf6hF\xa1S\x00\xf9\xf8\xd6\xfcI}\xcd\x9a-\xee\x9f\xea\xee\xd4ii\x9e\xdaFc\xda#\x01F\xdd\xef\x9d9|\x88\xe5\xab\xcaM\xd7\xb9\xd5\xf43\xf7cY\x17\xa2\x1d\x1a\xc6\x00\xffu\xf3\x8f\xff\xe0\x1f\xf1\xf7\x15\xc9:\xd0~?\xd3G\xca\xe4N!>\x82\x86\xb2\xe8\xf6\xc80\x91\xf8Io<'\x03\xbf\xa0\x1e\x1bY(\xd6\x08w\xcd\x15\xbb\xe5\x9b\"\xd7 \xc7c%\xdd\x01b\x10I\x05\x8f\x9a\xfa\x99\x12\xf2\x08\x8a\xe6p \xf5\xce\x0cr\xecN\xa2\x1b\xc6_X\x0f\xf9\x19\xf4\x8b:\xd7\x18\xe7\x15%S,\x04\xae\xd0\xe8n\x03\xe7\xc2\x91J\xaa\xae1\xc4\xf1\xde\x8c\xc47\xb0\xa3\x8c\x16\x8c\xef\xf0\xc2\xfbI\x86.\xe8\xaeq\xf3@\xee\xca@`_\xde\xd0z\x180\x11R0%\xea\xa6\xc8\x17Z\xb9\xe8X?\xac\xdc|\xbc\xa4\xb4\x16\xc1\x10u\xa0\xd2\x15\x9eA\xc9\xc4\xb8\x1b\xe2\xc6\xbeT\x15\x9b\xe8\xc3@C[\xcb\x0e\x9a\x13{\xd6\\=\xdb\x11F\x07{E7\xe7\xa2\xe4k\xced\xfa\xfaI\xe2Z\xca\x91\x9d\xd3RR\\s\x8bT\x9d*{\xf9b:\xd0\xbb\x92\x99\x18\x9c\xc4E\xca[\xf4\x8c?\x9f0?\xdfpS\xb9\xe0\xea\xea\x85l\xb3\x8cY\xa8nt26!\x06p\xd7?\xb91\x9eD\xbeD\xd5\xec\xcb\xc2\xecd\xff\x0dZzhn\xe8n\x00\x8d}|\xf3\x87\x91wD\x9c\x0d\xcaN\x1d\xe7\x94_^\xb8\xc0\xcf\xfa\xc8L\xbfR\xd8u\xdb\xdc\xf6\xc8\xafI\xd8\xa4\xb1\x16\xc3\xd5\x12\xa8C\xaf\xc6#\xb1\x1e\x8c4|\xe5\x83\xf2`\x1fi\xcbE\xd3\x9d\xe9\xc3\xf8Uy\x01vP^\xc9\x11S\x1d\xeah\xffU\xc7,}!%>j\x97p\xfb\x19\x96D\xef\xd4\xef\x17f}\xd5\xa80OY\x17\xd5i'\xe2P\xcf\xec\xbb\xf7\xbb\x13\xb78:\xb1\xcc\x98P\x10%\x93\x93]x\xe4 kZ\xaevO\xd5\x0e\xc8\x895\xdc\x16\x91D}\xba\x1e\xa6\x17\xbbVU[ u\xdbv\x8c0g\xbeZ\xb6%nY24\x1d\xc0k\x11\x86\x83\x0c\x19\x13\x01\xfci\x00\xf9\x92\x00\xb2\xa5\x00x\x13\x000\x8fTb\xf8?W\xf0?\x1c\xfa\x9f\x15\xf8\xcf\x1b\xf6\xf7\x06\xfd\xf3\x86\xfc=\x01\xff\x85\xe1~g\xb8\x19\x12\xec\xcf\x1b\xea_\x18\xe8\xcf\x1c\xe6_\x10\xe4\xcf\x1d\xe2\xcf\x16\xe0\xcf\x1b\xde\xcf\x16\xdc\x8f\x87\xf6\xb3\x05\xf6}a\xfd%A}4\x88\x8fx\xd2\\}\xb3,\x80\x8f\x04\xecg\x86\xeb\x11\xe7\x89w\xa3\xf4:N\xc2;\xe8\xcc \xfd\x10\x94\xc7\xc6\xf7\x9bx\xdd\x99\xc3\xf3np>Ch>k`\xde\xde\x0c\x17\x06\xe5\xd5@\x9b\x12\x97\x84\xe1\x83qhO\x08>\x1a\x80wc~\xe9\xc1w\xf7\xdd\xbf`}\x9d\x15vO\xe9l,\xe4\xee\xef[4\xdc>!\xd8>\x8e\xad,\x0c\xb4\x07\xc3\xec\xfe {(\xc4\x8e\x8eBjx=\x16\\\xb7C\xeb\x0b\x02\xeb a\xf5\xe9Au$\xa4\x1d\x0b\xa8g\n\xa7#5\x8ffJ\xd6@z\xe60z\xd6 z\xce\x10\xba7\x80nG%\xed\xe0y\x9e\xd0y\xb6\xc0y\xde\xb0yZ\xd0<\x1a2O\x0c\x98\xa7\x84\xcb\x9d`\xb9[[j\xe04\x1c(O\x0c\x93'\x04\xc9GM\xce\x19 \xcf\x1c\x1e\xcf\x17\x1c\xcf\x17\x1a\x9f\xffu\xa3a\xf1XP\\\xaao\xdc\x86}_\x113\x98a\xc6\xf2\xc8esb@\xe0X\x91\xba\x1e\x9c\xad\xe2k\nGr\xa9\xa9\x9d\x94,\xc1\xd4\x15\x08 \xfd\xbf'\xda\xde\xbf\x94\x8ex^\xaf\x0e\xf1%\x878r9O\xaf\xb5\x8f[\xbaYF|N\xa6\xff\x94\xf7\x1cn\xc9\x10=\x08\x0c\xa4\xafs\xba\x96V\xff[\xac\x0f\x1da\x11o=7^S\xd2>\xbc\x7f\xad'\x90\xdchb\xc3\xfaZ\x9ePg\x0d\xeb\xb1\x0f39\xdd\x13#P\xea\xd5#\xaa\xe8\xe7\x01\xffmc}\x8b$\xd7\xe98R\x05\xf3\xdd\xa6K\xa2V\x96(,\x86\x05\xb9\xe3X\x80\xc6\xb2`y<\xcb\x92F\xaa\xaeqbZ\x90!\xaee\x89s\xa2\\\xb0<\xd2eIS_\xce\xae$g\xc4\x0b|Q/\x98\x14\xf9\x02'\xfa\x05)~\x0e7\n\x06\xd1y\x9f1\x1a\x06\xa1\x88\x18L\x8a\x8a\xc1\xb2\xc8\x18 \n\x1eRFp\xac\xe8!\x18)\x83\xa5\xd12H\x8c\x98\x81\x135\x83P_|\x17\x8e-\x8b\xa0Y\xc2\x96\x86\xd1\x1ceb\xfc!\x12X\x03\xdf\x0e\x01\x81\xd4-_\x90\x0dB# \xd1\xd5\x03y\x03n\x10\xc1\xde\xe6\x0c\xbcA\xce\xe0\x1b\x84\x11\xb8\x8b\x82p\x901\x10\x07\xd1`\x1c\xcc\x0d\xc8\xc1\x92\xa0\x1c6b\xf7G}\xb1\x1a\x8e\xc6]\x10\x9cCdI\xdd\xe5E\xe4.\x0b\xd2!\xe2NG/*7w\xb0\x0e\x96\x07\xec \x7f\xd0\x0e\x96\x05\xee`Y\xf0\x0e_\xa2h#\xb3\x85\xf4 {X\x0fr\x86\xf6 )\xbc\x079C|\x10D\xef.\x0b\xf5ak\x1cE\xf0&\x06\x00aq\x10\x10\x11\x88\xe1xg\x87\x06\xc1\x97[\x1d\xd9\xe2\x03x\xde\x94\xfd\x7ff\xb8\x10S{^To\xac\x1d\xcbB\x87\x960\x11HD\xb1\xbdYB\x88\x90;\x8c\x08(\xc2wq8\xd1\x92\xc6\x10\x94\xef\xb2\x00#\xc4\xe2n\x10\xc2\xfa&\x04\x1b\xc1{\xc3}z\xd0\xd1/\xc3q:/\n@\xc2\x84\xc1\x88\x05\"!\xda\xefh@\x12\xa6\x05%\x01E\xac-\x0cNB,@ \x11$p\x0c\x0b\x1c\x18\xa5\xd4\x80%$\x04-\x01\xc5\x04/\n^BZ\x00\x13f\x051\xc1;0\xd1`&\xe4\x0bh\x82\xbf\x15\xceL\xcb\x1a\xdc\x84\x85\x01NK\x14\x86\x1a\xce\x1c\xf2\x84\xccaO\x08c\x871\xf40\x86\x1f\xce\x15\x06\x85\x9c\xa1P\xc8\x1e\x0e\x85\xe4\x90(\xa4\x84E!=4\n\x89\xe1Q\xc0\xf1\xc48\xc24=\x98\x16\xc3\x14'\x87K!-d\nX7r\x86Nai\xf8\xd4\x92\x85`\x8ds\x06T!kP\x15\x16\xcf\x87hp\x15\x12\x02\xac\x10 \xb2\xfa\"t)\xb1A\xe35%mrlp\x84\\\xeb&\x87\x07%\xbcm\xabN\xe6\x0f\x0c\xd7uc\x83\xc1\x83`\ntP\x16\x07@\x18\x95\xed\x01\x13\xaa\xf7\xa6A\ne \xc5%2\xc0\x0be\xf1\x82\x0c\x916\x8c\xef\x95\x1a\x7fg\x18\xdfH&\x1b!\xfd1*\xa4G\xcbvh\x8d!HK\x88\x86\xcb\xf1\x89\x19\\\x15\xe6\xeb\xcf\xc7\xef\x7f3\xac\x8f~a\xe8\xbfME^\n\xf9\x9fTL\xe3\xb5\xee\xe3GF\x18\x9d\xbc~\x86\xd0\x88\x96\x83\xc3\x8e\xe2h\xe0~\xda=\xc6\xfb\xf386\xe0\xe1\x1e\xa5\x0f<.\x07\xfb\x00\xfd\x08\x93\x13\xbb\xfes?\xbe?\xb6d\x02\x99\x00\x7f\xb7i\xcb?\x0b\x1dm\x0f[R\xca\x01[\xd1Z\xcb\x03F+Z+-0$\x1d\xda\xce\x18\xadh\xad)\x01\xa0\x85\xc1\x9f\xcc\x81\x9f\x05A\x9f\x05\x01\x1fDad\x0c\xed\xe4\x0d\xebd\x0b\xe9\xc4\xc39\xd9B9+ZkEkM\x08\xb9\xach-5\xd0\xa6\xc4%\xc1\x94\x14\x00\xd3\x8a\xd62\xca\x8a\xd6\x82\x15\xad\xb5\xa2\xb5V\xb4V\xae0E\xb6\x10E\xde\xf0DZh\"\x1a\x96H\x0cI\xa4\x84#V\xb4\xd6 kQ\xb8aEk%\xa1\xb5\x84_\xa0lQ\x8fW\x12\x9f\x16\xeek\x16~7\x01\xea\xe8\xe0H\xdbC\xd9I_/k\x80\xde\xd1\xe2\xd4[\xf1|\x84\x95\xfe\xd68\x14\xb1\xea\x87V \xb0C\xd8\xc1\xf7\xd2\xf5\xdb\xb1\xb8\xb7o\xcf_\xa5m\xb0\xd7\xf2\x99\x08\xc3\xe8\xea5\\\xbd\x86\xab\xd7p\xf5\x1a\xae^\xc3\xd5k\xb8z\x0dW\xaf\xe1\xea5\\\xbd\x86\xab\xd7\x10V\xaf\xa1*\xab\xd7p\xf5\x1a\xae^\xc3\xd5kh\x95\xd5k\xd8\x97\xd5k\xf8\x7f\xb2\xd7\x10\xcf2\xfc\xfd\xe6;\x99ghsV\xb8.?y\xdd\xd2N0N\x08\xc7\xa3P\x01\x97\x8d\xcc\x1e\xe5\xdf\xa6\xa5\x1d\xd73J\x83(\xaf\x9e\x92\xc7g\x94\xf2\x05\xf6\x9b\xab\xbc\xbdAro\xd4\xc2\xe8\xec\xcaN\x0e\xa0x\xfe\xb7\x13m\xef\xe5\xbf}\x9eI\x91\xc1\xf8\xa3\xacI\xfcgzF\xb4h\xd5\x03'B;^PS\nr\xa6r<\xa2\x91\xe7=\xdeQ\xf3-\x84\xaa#D\xd6\xe1\xf3\x97\x0e\xbfy\xd1\xbc\xb1\x93\x9f,\x19=\xa8\xb2\x84i;rzSe\xc9\xe6S\x95%H\xde\xb1\xc8\xbf*K./\xab,q\n\x8f\x99\x1eWYf\xfb]\xf1\xb1\x8b\x13y,\xf0\xc1\xa2\xd2\xa2d\x1e\xcb\xfc\xb1\xa8\xc0 \xa1\xc7<\xdf,*(H\xf3\xb1\xd8k\xab\x85$\xf8n\xd17\x93\xfd\xb9\xb2,\xf0\xea\xca\xb2\xc0\xb7\xeb[\xe8\x9e\xa6f\xf3\xfa\xca\x92\xd7\xf7+K6\x0f\xb0,q?\xb0,\xd9\xbc\xc1\xb2\x84\x08A\x96y\x86q]\xe1!\x05I\xf4\x19\xcb2\xd7s\x8c\n\xf3y\x93e\x99\xe9S\x96\xc5C\x0f\x125)\x82\x14!i\x16\xc7L\x8f3\xaeL\x03D!\xf1\xd6,\xf3A;\xe2Bt!Y\xfc\xd1\xb2,\xf3J;\xe2\x84E\x83\x1a\x0f\x0b=\xd4nM(q\xc82\xbf\xb5,Q\xbe\x8c }H\x82'[\x16\x0f\x0b\xc1\x04\xaf\xb6,>9\x084{\x91\x9f[\x96\xf4\xc1\x89\xf9\xbce\x89\x8dB\xd4\xff-\xcb\x04/\xb8,\x18p}\xa1G\\\x96(\xb5H\x8c\\$N/\x12\x1c\xb5T\x7f\xb9,1\xaf\xb9,\x18\xcd\xc8\"\x0f\xba, ~tY\xa6{\xd3e\xf1\x0dS\xd4\xb3.K&\xff\xba,\xde\xb6 3q\x91\xc7\xdd\x91\x86\x10\x91,\xf3\xc3\xbb5\xa0d$\x0b\xbd\xf3n\x93]z\x92\xbc>{Y\x82\x14%8I NS\x92\xcb\x97/K6\x8f\xbe,y\xfd\xfa\xb2\xa4y\xf7e\x89\xfa\xf8eI\xf4\xf4\x8f\x1e\x8e\x92\x96xhK|D\x15\xe9>\xe28uIr\x1c@=\x1c\x8f\x06\xc8\x82t(gd@\x96E\xf1\x01G\x1aJc\x923j`T\x93%v \xcb\xd29\x12\x8d#(q \x84&CLA\x16,\xb2 K\xe0\x1c\x16b9\x9f\x12kP\x15\xa1,\xd9\x8b\xe3\x0e#i\xca\x8f\x8eF\x1fd\x99\x16\x83\x90e\xd4W\x19>\x18\xf3k\xa8\xbf\xc9\x1awz\xde\xa9\xc6\xe8\xbd\xfdH\xf6em}\x82\xf1u\x0d\xfd\x03\xd2+G\xc5I\xd1\xf8\xab\xe6\x96\xd1\x14\x0f\x83\xd5\xc0\xd2\xd3\xa2kz\xc7\xb6\xa3[\xf0aV\xb6\x17ve0\x18\xf25\x1f\x05\xff_\xe5L\"]'G\xe7=\xd9\xd3\x0f\xf4\xb7\x13\xed\xd8F\xfen \x11_A\xbc\xce\xc5\xf11\xa0ph:\xf6\xff\xb1w5-r\xe3L\xf8\xaf\x14s\xc9\x04\xf2&\x87\xf7\xb8\xe4\xd0 \x0b\x1b\xc2B\xd8 \x9b\xc3\xb24n[\xdd\xed\xa4\xc7\x06Kff`\x7f\xfc\xa2\x0f\xbb\xfdQ\xfa\xb4\x92MB\xd5)CZe\xd9*=\xf5\x94\x1e\xc9\x06\xa6\x96j\xd4\xda\xce4\xb4ZQ\x84\xee\xf3v\xbc\x18\xc6\xf6\x1ew\xe5^\xdd\x8f\xfaG\xd3\xdf\x1f\xf4\x9a\xc1\xb0\xc07Ye:.\xdaNo\xb5l\xfbF\xec\x95\x93%\x80<\x14\x1c8\x13/\xd4Kb\xcc\x1a%\x87\xbe\xd1\x81P\xe9e\x9e\x87\x9a#B\xdf\xfc%!\xa86\x16\xfen\x90Y\xf3\x90w\x81L.\xda\x91 G\x82\x1c r$\xc8\xadL\x90 G\x82\x1c\xfac\x12\xe4H\x90[\x1b r$\xc8\x01 rKG$\xc8\xad,\\s\"A\x0e\xfb r$\xc8\x91 \xb74\x12\xe4H\x90#An4\x12\xe4H\x90#A\x8e\x04\xb9\x1fV\x90\xd3\x1f\x0d\xbfv@{!A\x8e\x04\xb9o%\xc8u\xdb\x04\xb9.E\x90\xfb>\x958R\xcaH)#\xa5\x8c\x942R\xcaH)#\xa5\x8c\x942R\xca\x10#\xa5\x8c\x94\xb2\x99\x91Rf\x8c\x942R\xcaH)\x0b\xba2)e\xa4\x94\x8dFJ\x19)e\x0b\x0bUAH)#\xa5\xcc\x17#?\xacR\xf6\x0f\xa2~\x85|bC\x9b\x08\xff\xd0\x06r\xed\xd9R\xb8[\xc1\x92\xe3;hi\x87'R\xb2\x80\x94\xac\xffF\xc9\n\x93\xb0\x8cx\xb5\x9b\x07\xf8\x1f\x1f\xde\x1a\x7f+\x0d\xeb\xc8\x98\x8a\xe9\xc4oL\x87|u\xc6\xb5\xd6a\xda\x0f\xf7d$\xed\x81\x8e\xf4\x9c\x99\xd9\xa70\xbf\xd1\xab\xa6ES\x0e\xab\x12u7\xf1u\xec\x9bj\\MZ\x9d#K\xea\x18su\xec\xc0d\xaf\x06\xa0X\xf4n\xe2\xaah\xf4\x82\x9bl\xf4\x8c\xcf\xbb96\xb1\xe0\xc7\xd5eY4ja\xaay\x92\x9d8\x14\xbc.U\xa2=\xd6\x17\xc1:\x89T\x8c]\x7f\x9e\x04#\x82>\xdc\xb3]\xa9\xa3\x0f\xf7\x84\xa9pz\xe5\x7f\xf5\x8c\xe8\xc3=k\x85\x8d>\xdcC\x1f\xeeY\x98_\xf5\xca\xa6w\xd1\x87{~\xba\x0f\xf7\x18R\xack.\x95(\xdbNo\x03\x94^\xde\xffy'\xff\x96\xd1'\xe7LW\xcd\xf7\x1f\xca\x1c6\xe0\xae\x83G*\"\xba\x1b\xf8H\xf4\x8e\xa8pb\xa4\xaa\xb7\xeb\x9fa\x85[\x14/B\xdfa\x90H\x8br\x12^X\x92^\xb0\xbd@aSg\xb3\x90`\xf0\x10a\xc0\xc7\x1c\xf2\x13b\xb0\x0d>87\xbb\xe1\xe4\x18|\xaa\xb4O\xe6\xcdJ\x94\xc1\xbb\xc5-\x1fa\x86\x9c\xa4\x19|\x9b\xdb6\x90g\xc8H\xa0\xc1K\xa2!\x95H\xc3\x162\x8d=1\xff\x86\xb6dR\x8d\xf8\xf2nf\xdbB\xae\x11w\xce\x8dlyI6l'\xda\x90\x9fl\xc36\xc2\x0d\xdbH7>E\xd1Nf\xa3\xe2\x90\x9d\x8eCNJ\x0eA\xb4\x1crRs\xf0lD\xdbB\xd1\xb19n\xd9\x84\x16D\xdca3yG\x1c\xe2\xdb\xcf\x12)=\xd8\xb7\x9e9S\xbcs\xdb\x99?\xff'\xd2|\x0c\xf6,\x1b\xcer\xd2}\xe7B\xf5\x8a\xee\x07\xadU\x8f\x8c.f\x99z~\xbd\xf8\x13\x17#1\xfc\xca\xa7.\xd0\xda\xc1\x19P\xbe\x88\xd9PA\xac\xe3ZV\x14k\"\x1e\xff\x1a\xb6\xd0ng\xab%\xfc\xd5\x84\xb5\x9e\xf8*\x15\x85\xa3\xa6\xa0#4\xe9\x15F\xe6\x1a\x83\x8e\xd0\xcc,g\xbd\x11Tq\xe4\xad9\x02\xaa\x8e\xecu\x07\x1d\xa1\xd1\x16U\xa7l\xaeTr\xd7*t\x84fjaUK\xe6\xba\x85\x8e\xd0\xd0\x11\x9a\x0dGh\xf2\xd64`%\x85\x13\xa8\x91\x7f>\xa3\x9da3\xa3\x9da3\xfb\xd6;\xc3\xd6\x05pT\xc5\x8d\xef\x0c\xe3\xac\xec\x98x\xd9\xb1S\xcd\x85\xe6\xadc\xd9\xfd~\x08\xa5\x80\x12{\x16v\xe8\x08-\xc2\xcdua\xd5\xf3_\x9b\xb2{\x92\x8c\xf6\x8e\xb1*\xba\xe4gC\xeb=g\xacJ\xea\x9aL\xd9\xbd`c\xafv\x07\xde^z\xc1>>~hy}\x9d\xed\x01\xbd9\\\xda\xf2\xcb\xfe\xccd\x0e\x08\xec\xcb<\x86M\xfc\xbe\x91~~Sn\x86\xb1W\xaeGV- \xbe\x8a\xb8\xb2c\xea4\\1\x80\x86x\xdc\xd7M\xc5\x1e\x03/\xdf\xa3\xd7\x9f\xcd\x9f\x8f\x8f\xef\xa4C\xad\xc9\xde\xb7M+d\xf9\x02j*\xb0N\x81\xafAh\xdd\xc7\xdb\xa2\x14}q\x01\xd1\x15\x0d/\x14\xa3\x98xS\x9dS\\\xec$\xbb\xdf6\x8a\xca\xea\\j\xae\xbe\x1e\x80\xa1\x8a\xef\x0d\xfa\xf0\xb6\x13\xe3s\xe0\xf6\xa1|\xdbV\xec]sl\xa3\xc3\xaal+\xb6\xafC\xe3i\xf6\x10\xd5\x88\xb4\xbe\xdd\x93\x08(W\x85(\xf6\xe7\x82\x9f\xe3\x9b\xea\x85\x00g\xbbC__*\xc7\xa6N\xeb\x13\xd4\x0fY>\xc5\xef\xfa\xe9]\x8a\x03\xbbx\x9aa\xd1-]p(\xaa\xfb\xba\x81\xd7\xf0\x7f\xf8\xeb\xf6\xd4\x9eZEj^\x96\x05\x17\xd2\xd1sx=iqs\xaa\xc5\xb9?\xa8=\xfbz%\xf3\xd5\xf5\xcdP\xaf4q\xdf\x95\xe5N/\x86\xdd\xfc\xfd\xcb\xf4\xd6f\x18\x85\xe4\xdfF\x16\xc8\xc0\xcf\xed\x83\xe6\xe4uc2\xa9IT/\xe0\xb3\xa4b\xb2:\x96\xf8/'\xc2<=\xdejB\xffpf\x0d\xf4\\\x16\x00\x9f\xb9\xac\x01\x8b\x13\xdc\xfc\xef\x06\x8a\xfb\xba\x91\xfc\xe98N\xa5\x81\xc9A-f\xa7\x11#\x08 \x0e{\x10\x92\xc3\xad)|\x03\x04\x02\n\x83\x10\xd2\x9d\x08J\x91\x08\x8b\x0b/\x13\x90\x0c\x81\xc6\xe9t\xd4\xf4X^\xfd\xd3\xee\xee\xf7\xeb3\xa9\x1b.$\x11\x08\x9b\xd4\x9fjq6\xa1\x1a<\xbf\x8b\xe9\xef!b\x92\xae\xd1\x04\xbd\"~U\xc0\x90\x05\x92Fu\x852An\x16\x04z\x818N\x17\xb6 \x8aG\x1f\xd8\x80@\x80\xa1\x10X\x90\x08r\xa0\x11\xe4D$\xb0\xc5\n8\x97\xe3\xed\xe8\x04\xae!\x03'JA6\xa4\x02+ZAh\xf7\x10\xd4\x02G\xd0A6\xf4\x82\x08\x04\x83d\x14[\xdf\x89\x05\xc0$0\xcd\x95\xa8\xdb/\xec\xe99\x98\xa5\xeei+\xe3h~2\xd1\x8e\x98\xaaR\x91l2\x91I\xfe\x0cx\x87\xf0\xd3\x147K\xae\xea\xf0\xb1\xe2\xac\x96\xdf\xca\x9e\xc5%#\xdf0\xc7k\xcf\xe38\x7fe\xed\x19\x8d\x08'N8P\x02\x8d\x8b g\xebm\xcfxt\xa49\xc3b\xc4\xe1 \x8d\x93\xd0\n\xc7\x8c\xf9\x15\x1a\xa2\x87>\x99\x0e\x8d\xc06\xc0\x15\xae\xa3\x0f\x98hZ\x11\x89Z\x8c3\x91(\"Q@$*\x96DY\x81/d\xb9\x19\xe1R\xd7\xd7\xe9\x06\x82-\x7f\x93J\xa9t\xfbo\x91nW\xd8>\xf5\x12\x97\xd4p\xdc\x9e\xfa\x8b\xdegd!\x03\xe0\x8byo\xd4[\x88\x01\x84;F\xc5F\x04\xed\xb5y\x9c\xba&a*\xfek\xdb\x92\x05\xb4\xa1\xb9@\x9b\xbb\xdb\x89y\x01\xf5\x95\x9c\x1ePoH\xca\xd0\xe6\x08S\xf0\x84*x\x93\x886O$\x807\xa1h\xcb\x97V\x8c?kr1\xff\x1f\xdem\xcb\x94\xd3\xe6\x0e\x19\xc8\x9at\xb4\xc5\xa4\x1e\xd3\"1\x01\xcdZ/\xee0[E\xaf-\xaa\xae\xbf\xbb/:1\xb8\xba\x13\x85\x88OI\xb1\x15\xe8\xbf\x01\x00\x00\xff\xffPK\x07\x08.\xb59\xdf\xb5\xc8\x01\x00g\xff\x17\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\xb4\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\xb4\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\xb4\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\xb4\x81k \x00\x00oauth2-redirect.htmlUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(\x05\xef\x9fw>9\x05\x00\xf8\x0c\x1b\x00\x14\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\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\xb4\x81xF\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\xb4\x81T\x01\x07\x00swagger-ui.cssUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(.\xb59\xdf\xb5\xc8\x01\x00g\xff\x17\x00\x0c\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x81\x81[\x07\x00swagger.yamlUT\x05\x00\x01\x80Cm8PK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00E\x02\x00\x00y$ \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\x12\x00 \x00openapi/index.htmlUT\x05\x00\x01\x80Cm8\xc4\xbd\xfdw\xdb8\x92(\xfa\xfb\xfe\x15\x14\xc7O!\xc6\x08m\xe7;T#:}\xd3\x99\xbd\xd9\x9dNr\x93\xee\xbd\xe7\x1d\x8d\xd6b(\xc8b\x87\x02\xb5$\xe4\xc4+a\xfe\xf6wP\xf8&)\xdb\x99\xcd\x9c\xd7?td\x10\x1f\x85B\xa1PU(T\xfd4\xfa\xe5\xfd\xeb\xdf\xfe\xdf\x0fo\xa25\xdfT\xaf\xfe\xe5'\xf5\xcf\xbf\xfc\xb4\xa6\xf9\xf2\xd5\xbfD\xd1O\x1b\xca\xf3\xa8X\xe7MK9\x89w|\xf5\"\x8e\xce\xe0\x0b/yE_}\xa2ECy\xf4\x8e\xf2\xafu\xf3%z\x18]}\xfc\xf0:\xfa\xd7\x9c\xd3\xaf\xf9M\xb4\xac\x8b\xf6\xa73US\xb6\x19=|\x181J\x97t\x19\xad\xea&\xca\x97\xf9\x96\x97\xd74Z\xd2\xb6\xbcb\xd1\xc3\x87nL\x96o(\x89\xafK\xfau[7<\x8e\x8a\x9aq\xca8\x89\xbf\x96K\xbe&Kz]\x16\xf4!\xfc\x81\xa3\x92\x95\xbc\xcc\xab\x87m\x91W\x94\\\xc4\xd0M\xcbo\xd4\xb0Q\xf4\xb9^\xdeD{\xf8\x19E\xdb|\xb9,\xd9U\x16\x9dOt\xc9&o\xaeJf\x0b\x84l}f\x9b\xff\xd4\x16M\xb9\xe5\xaf\xce\xfe<\x8a\xfeR7QU\x16\x94\xb54*\xd9\xaan69/k\x16m+\x9a\xb74j)\x8d\x1a\xba\xac\x8b\xb4\xe59[\xe6U\xcdh\xfaG\x9b\xfe\xf5\xed\xeb7\xef>\xbdI\xf97\x1e\xfd\xf9\xec_F\xab\x1d+d\xbb\x84b\x8e\xf6q\xfd\xf9\x0fZ\xf0\x98\x10~\xb3\xa5\xf5*\xa2\xdf\xe4\x9c\xdb\xf1\xb8\xf7eS/w\x15\x9d\xaa\x7fR]\x8f\xf0\xa4\xa1\xff\xb5+\x1b\x9a\xc4lWU1BYl\x86pm\x97tU2:\x1e\xab\x7f\xd3|\xb3\x9c\xaa\x9f\xc9L5\x9bc\x8e\xb2c\xc0L\xf5\xbf\xe9G9\xbf\xa1!\xa9\xfdDSY\x86D\xc2\xd7e\x8b\x137[\xb4o(\xdf5,\xb2Eh\x7f\x9d7\x11'\xfb\xa7O^\xbe\xcc|\xbc`\x86\xf6\xf1N\"\x957e\xc1\xe3\xc9{\x00,U0\x7fh\xea-m\xf8M\xc2q|yI\xdb_\x01#1\xde_\xe7\xd5\x8ef\xa3s\x810O_\xd7K\xfa\xaf\x94\x11\x9e\xbe\x93\xe4\xc4SVV\x84\xa7\xb2GvU\xaen\xd4o\xc2\xd3K\xc2\xd3\x7f\xa77_\xebf\xf9\xfa\x1b'\xd7u\xb9\x8c\xce'E\xcdZ\x1e5\x84%\x8f\x1f?z\x8apMX\xf2\xec\xc9\xf3\x97\x08\x97\x84%O\x9f>z\x84pNX\xf2\xe4\xe2\xf1s\x84[2\x8b\xcf\xb6\n\xae\x92\xb6\xf1\x1cW$^s\xbe\xcd\xce\xce\xfehk\xf6\xb0-\xd6t\x93\xa7usu\xb6l\xf2\x15\x7fx\xfe\xfcL\x95\xc5\x93\xa2\xca\xdb6*\"\xfa\x8dS\xb6l\xa3F\xce3\xdfU|\x7f\x99/\x97\xffQ\x17\xf9\xe7]\x957%m\x13\xb4ow[\xda\xa4\xfd\x0f\xb86\xad\xd2U\xdd\xbc\xc9\x8bu\x92P\xf2J\xaeB\xeaW\xbeI(B\x08Cy\xbd\xe5m\xba,%\x8doJ\x96\xf3\xba\x19\x8fM\x03\x8d\x91\xa44\xdd\"!\x07\xfdE\xfd\xf1+\xe5\xf9'\x00?A\xfbr\x958\xa8\x06*\xe0\x91\x1bM\xeeo\xa4\x08A\xa3\x98\x12\xf7\xf5d\x99\xf3|\n\x7f\xc3O\xaf\x97\x1c\xb7(\xcb'\x06<\xef\x0b\xc5\x15\x1e]\xe8)5t\xd5\xce\x8ea^#|N*\xb1t`&\x962=\xa4\xb8\xcfD\xcd-hp8\x00y\xa7W\x94k *4\xad2E:H\x08o{\x92\x02\xff\x03\xc4\xabG#\xc5Dn\x91\x1da\xc9\xc5\xe3G\x17\xe8\xf8>p\x04\x1c\xe3=e\xbb\x0dm\xf2\xcf\x95\xec\x0f_Q\x9ey{N\xcfu\xe7\xd1\xbc\x10\x08\xc6\xd9Jz~\xf2\xfc\xe9-\xe3\\\xde\xb3\xfbmz)\x04:>\xf5\x967\xf7\xee\xa9\xe5\xcd]}\xa9-\xfd==\xaa\x16\xb7\xf6\xcb\xca\xea\xde=\xb2\xb2\xba\xb5/\xc9\x83\xee\xdd\x99\xac|ko\x9a\xb7\xdd\xbbC]_\x08$\xf0\x93g\xcf\x9eg\x9dC\xe8\x7f\xc8j\x1bzE\xbfm\xe5 \x84\xcb=aZI\x16\x9b\xaf\xe8\xa7\x90\xe5\xfa\xbf_\xd7\xac\xc89\xe1rK\xcb\xf6?7W\x01_V<\xfbRw\xad\x19\xf9\xdb_\xde\xbc\xfb\xed\xed_\xde\xbe\xf9h\xbe\xbdo\xe0\x93a\xdd\xc0O\xd9^\x84_\x19\x0e\x9a\x9e\xfd\xe7,\x7f\xf8\xdf'\x97s\xf5\xcf\xf9\xc3\x97\xf3?\x9f\x9c\x95\xbauc\xb91\xdb\x03\x9fjv\x05\xaf\x1by\x8c\x19v\x07\x8c\xcd\xeb1\xe5\xb4\xe5\x92\xbb\xf2uS\x7f\x8d\x18\xfd\x1a\xbdi\x9a\xbaI\xccre \xd8D\x9b]\xcb\xa3\xcf4\xca\xa3\xeb\xbc*\x97Q\xb9\xa4\x8c\x97\xab\x9261R\xfcM\xce\x9f\n^+\xc4u\xf8\x93\xdc\x0dt\xb3\xe57\x9fxc?\x8d.\xc4\x15\xe5\xd0\x7fk\x0b\xf73\xd3`\x9e]\x08!4\x02\x1b=\xc5\xfa\xf8\x14\xcd\xfc\xa0\xfde\xc9\xe9\xa6%z\x9by\xc2\xc1tF\xe7\xd9}\xe1,W\x89\xd7[ZQv\xc5\xd7\xaf.\x90\x81?<\x0dT\xad\xd9\xf9|\xa2\xbe\xc71!\x84\x1e\x0e\x0f\xe2\xf8\x81\xfc\x05\xb3m\xa1c\xc9\xb8\xa8\xae\x16I\xd9cDHb\xbaiy\x83\xc6cE\x17#B\xe8\x94f\xf6\x83?R\xda\xd0\xe5\xae\xa0I\x02\x1b\x82\xbcZ\x9c\xec\xa98\xd9s\xb1@8\x8eQ\x80\xdc[\x07\x84J\xc3C\xc2\xa7\xdb\x06MxT2)<\x16\x12\xbd\xcdx\x9c\xd0\x19l\x869\xb1\xbf\x0e\x87stz\x810E\x08\xef\x05\x12\xc2\xec\xe4\xa8L(N\xd3\x94#\xb5\x98\x11#3:;\x9f\xcf'\x15\x95r\xcc\xf9dU7\xc9\xa4\xf9\x89k\xdcOP\x950\xccg\xcd\x1ca\x96nw\xed:\xa1\xb3\xd3\xd3f\x8e\xec\xdc\xe8\xd7\xa8N\x182\xfb\x88\xd4X\xedH\xf5!\x8e\xe5\xde\xbf$\xa5^\xba\xdc\x94\x9f\xc6hb\xc1j\xfb`\xed\x12 \x18\xba\x052\x0dO\x8ep\x0f\xc6\x1c\xef\x0c\x9c\x16P_\xc8\x94}rr\xa1\xfa\xe4?Q\xdd\xe7\xc3\x8b \xd0 \x9d\xf19!$w\xe0\x14\xb2\xec\xe1\xc5\x1c\xd3\x19?\xbd\x98\xa3I\xb9J\xec\xea1\xb4\xa7i\xbb\x95b\x7f\xc2\x1f^\xe0\xc7\x98!9]^\xb2\x1d\x15\xb2\xc5\xe9\x9c\xc4\xa7\xb1\xe0\xa7\xa7B$\x0ca\x8b4\x8b\x81J1YI6l\x12,q=\xa5jR\x12A\x9a(P\x16R\x81\xa9\xc2\xa5\x90\x0d\xbfb\xb6\xdb|\xa6\x8d\xdd\x88 #\x1c\x1d\x0e\xf1\xe7\xba\xaeh\xee \xfd\xecp\x90\xe4I\x08aS\x96\xed\x92\x9f\x9b&\xbfI\xcb\x16\xfeM\x18\x9a\xb2\xf4\x8f\xbadI\x8cc\x941\xe4\x81\\(\x90\xcbU\xa27\x1c\xd7\xfb4\xa2\x13WHM!\x97\x85}\xfe\xa06}0\x1b\xb9\x83\x1f\xc8]1s\x0b37\xf2\xa0\xde\xea\xba\x9f\x91\xe9\x87O\xe5nL[X\x84s\xfc\xf0\x02\xc1\xce\x8c\x17\xd9\x03\x05\xdb\xec|>\x0d\xbe\x9fr\xfd\xd7\x05\xd22\x998\xd6\xb7\x01Hvr8\xd0\x10\xf5\xaam\xb6\x8857\xb0\xbd\x8a\x85\xc3\xd5\xceSm\xfe\xed\xd3\xfbw\xee\x88K(J\x1b\xba\xad\xf2\x82&g\x7f\xdb=:\x7f\xf4\xe2\xec\n\xc7\x7fS?\xe3\xee\xc7\x97\xee\xe3\xcbXn:\xc9\xa3Z\x1c\x9c\x8d\x15\xf6\x8f\xcd\xf0\x147\x8b\x91:\xae;\xa5\x19\xf5\xff\xe4Y\xeb8\x9b\xc0\xfeq<\xa0\xa8)R\x96\xf3CP78\xcaw8<\xea\xfb\xed\xfb\x041\x1e\x0f\x9d\x97S5\xce\"\x95\x90-PV.f\xf2\xd7\x1c\x00\xf4D\x8b\xa3\x10\xd2\xd4\x1dAH\x08,E\xd8\x1f\xaeN\xd6R$\xc9\xd9R\n%\xb5\x94X\x9c~)\x9bK\xe5\xa9%<\xbd\xce\x9b\x7f/\xd9R\xfe\xfc\x0f\xd9\xfcSQo\xa9\x96[\\\x01\xe1\xa9\xf9W\x7f\x0bD(_H\n\xc5)\xab\xc3Z\xc1\xc9\xc8J=\xb5U\xcayJm}\xfe\xfc\xe5\x85\x12\xf0KS\xfe?\x17\xf0\xcb\x1f&\xe0\x97\xf7\x11\xf0\xd5|\xbf\xa7G\xd5\xe2\x07 \xf8\xe5\x9d\x02\xbe\xb7N\xf7\xee\xd3ks\xd7\xfc\xbfK\xc1)\xef\xa9\xe08\xa2\xbbw\xc7\xae\xc9\x8fRwJ\xa3\xee\x00\x85\xe6\x96^\x8f\xf6\x0d;\xe7\x9e\x9d\xe7j\x9f\xdd\n\xab\xdb\x96\xf7\xee\xd45\xb9g\xcf\xdf\x81\x8f\xbc\xc38n\x1d\xc1\xb0\x9b{\xf7m\x1a\x08\xc5\xd4,\xe7\xda\xff\xebo\x99\xe4\xa6\x8d\x12\xf5\x92\xf8U\x8c\xf0\xbf\xfe\xf6\xa6SHb\x84\xff\xda\xa9\xf9\x13\x94uj\xfe$k\xbe\xf9?a!!\xb2\xf4]\xb7x\xa4\x8a\xdfw\xfa\x1d\xc5\x08\xbf\xff\x18\x96\x1d\x0e1\xc2?\xbf\xfb%,\x1d\x8fe\xe9/\x9d\xd2\xd3\x18 \xad\xea\xb4\xfbz\xcb\xcbM\xf9\xdf\xf4]\xbd\xf44$\xd0T\x84\xfd\x06\x02~p\x96\xca\xcfB\xf5QYu\xa9\x0d\xd5%u\xbe\x04*\x93\xc62\xa1\xeaO\xb0gsm\xa0Z\xb7\x84\x89\x86\xb2%m\x92=m\x9ff\x14_\xb2\x8c\x0b'\x91\xd2im\xd7I\xfe\xc8\xfc>q\xa3Y\xbd\x94|t\x87\xd38\xce\x16\x11\x89N\xf6\xa6D,\xb44\xb58\xd93a>H8\xc4\xc9\xbe\x11\x93\xc5)\x1f\x9a\xb6\x12\x90MUP8\x90\xaf\xd35\xebv\xe6/YF\x85\x01p\xa1\x11T\xad[\x11\xe2q\xb28\xa5G05JL\x9bpZ\xb2\x16:\x1c4\"\xabu\xab\x15\xb7.0]\xccv\xd1y\x14\x9b\x1fo\x19x\xba\x17\xd9^\xaa\x13flh+,R\x90\xc1\xeb\xce\xe2\xb5\xe8\xe3\x157\x06\xb3\x14\xfe0\xe6b\xc2\xef\x81?\xfd\xbb\xde\x8a>&\xf5\xe0\xdbc\x8b\xda]\xd0\xfc3\xad\xfc]\xd4\x92\xbd\xb8\x03\x04\xd9Dd\xde`\xcb\x7f\xc2`\x9f\x1b\x9a\x7f\xf1G\x9c.\xa2\x00\x80E\x16\xc7\xc1\x94W\xf7\x84\x826M\xdd\x10zd\\eZ\xd2#AU5\xc8\xb1=\x07U4\x0dh@\xd6\xf7\x04\xa4\x90\xb2\xe8184\x04\xb2Ng\x8b\x04\xfc5\xa8\xb7\x80Mn\x14\xb2\xdb\x99\xae\x1a]o\x08\xf9\xfb\xf6\x1da\xab\xdd\xc1`d\x95\x1e\x87\xd9\x1cC\x08\x99\xcd;8arv\x0e)4\x04\x00\xbe:\xa3\x8e\xe4O\xe4\x15?e\xa9\xad\xae\x8cI]\\\xc1\xa0{h\x9dQ\x01\\}\xa2\xcc\x18FI\xd6\xd6\x8c\x87\x0f'\xde)1\xe3\xf3\xb4\xd3\xd5\xa4\xa7\xe2;\xeb\x05\xbe\xc0i\x9a2\x94\xb1)\x18AX\xe6\x7fCZC\x8e\xcc\x90\xaf\xce\xefZ.\x1fl\xe6\x81\xdd\x10\x16\x80\xddx`\xd7\x84\xcd\x9a\xf9\xa4N\xfb\xfd\x1d\x0e\xc9\x1f \xc5\xb5Z\x1f\x84\x99\x81\xae\xc1\x17\xc8\x82\xc7\x86\xc1;F\x13\x9d%Qv\xb6\x13\xf9\xaf\x1eF[\xd1\x14%\\YJ\xd8\xec\xbbK\x1c\xef\xe3S\x9a^\xb2Su\x1dd?\x9f\xc6B}0\x9d\xdcx\x9d\xe8\xa2k[t\xb5\x17\xd7\xe9\x17)\x1a\xc4\xb4j\xa9\xb9\xfb\xfb\xecU\xe80cC\x81\xdcnK\xb6,\xa5T\x17\x90\xa1\"\x97E\xb9J\xec\x8e\xd3\xd5\x04ZtA\x9e\x04\x1c\xa2j\xa9<\xd3O\x15DQ|j\x8b}\xba\xe5=\xaaU\x9dv 0\xb0\xe2Z &\xf2\xb8<\x0fLFvu4\xa9\xdbQe]k-\xa4\xa0^\x87CxuIH\xef\xda\x96p\x9dP\x94QC1|:\xba\x90#O\x03K\xd4\xe7)\xcf\xb8\x02 \xf3(E\x11\x97\"-\xd9\xd5\xe7\xe4\xb7\x84\"\xdci:\xe3s\xd3\x18e\xa3\x8b\x11!T_\x9c\xf6{9\xbe\x7f\x94A\xd0\xd8\xc5a:\xda\\\x9707Et8Xy\x8f\x19\x8b\x14\x1b\xd8?\xb8\xb3 \xde\xc6r\x9d\x85\xfc\xd2P\x92\xe5\xb3\xba\xe0\x08\xb35K\xa2\x06\x82\xd2\x89\x15Ih\x87<\xcdq\x06\xe4ub>\x03Y\xe9\x0dN\x85\xf8\xac\xf7B\xb92;\xe1\xab\xbfU\xbe\xea\xcf\xab\xba1\xdf\xbf\xd9\xef_o=\xbdJ.5\x9b\xee6\xd1\xa7\x92dKz\x9f\xd8z\x03\xfb\xe4\x88\xdcw\x0c\xcf\x01r\xdd\xf8\x1a\xb9\xb6\xe0\xf6\x93\xec$\xf1\xb0\xdb\x99\x8aF\x9ca4_\x8e\xa1\"\x94\xe0\xeeVIVM\xbd!L\xfd\xe65i<\x84\xa9%\x97\x07\x11m\x9f\xde\xaa\x96\xece\x8f\x19\xc3\xb2\xb3\xac\xc1\xbc\xceJ}&\x84H\x97\xf2!\x13\x04\xb4\x10\xf8\xf9\xd3\xc9\xbe\xd4?OO\x07\x16a\x88\x02?\xf6\xb1$\xc7E=r\xe4\xb5E\xd7\xe5w\xa1\xab\xaa\xeb\xad\xc1\x95A\x1d\xf7P\xc7\xbc\xb5\xf9\\\xd1\x00i}*\xd3=\x84\x8a\x98\x15\x18\xebzk\xff0\x1d\xfe3\xc8Q\xc2\xe9S\xe3\xe7\xea\x0e\xb1\xea\x181~\xaeh\x87\x16\xdf\x1f?\xc0zZ\x1a\xe0O\xa36o\xae\xac\x9e\x96\xb77\xacp\x1a\x1a\xed\n\x91\xf0}\x1a\xc3?Q,\xe5kk\x83\xf7\xd1jp.\xbb\x1e\xc2\xa2xo\xb8\xca\x8e\x15\x86\xad|\xba\xed\xe4\xd7\xd8\x88\xfb]}\xd2]\xe9\x8a\xba\xb37\x1e2\xbaGt\xcc\x9b\x9b^G\xc1\x81\\\xe4\xbcX\xab\x13\xd9\xfd\x1d\x1c\xc5@\xee%\xcb\xab\xea\xc6\xab\xa7Kn?\xb4\xe1\xee\x12s3\xe0\xe0\x19\x8e\xcd)D=\x00\xfcc\x88\x1e\x0e\xf4h#\x1e@\xe37\xe3\x87C\xef0W\xa4w\xecp\xc4\xcd\x11@\xdd\xa1\xd791{\xb0\xb2\xc3a\xf0\xb04\xed\x9a\xa3\xe06\x87\xc3\xe0\x88\xbd\xcdr\xcb\xb1\xe8/\xa8=\x03\xd5\x82\xeaC0\\L[\xc7,\xa6;*\x15i}8\xb6\xcfn\xd7\"\xdd^\x82\xc1\x93@\x81\x1c\xda#\x1f4aCuC\xd7?\x0f\xd2\xb5\xa6}\x0d\xf1\xc0&q\xbbT-\xad\xe4\x8bZ\x89\x89J\x16qDg\x0cn\xb8\x99\xba\xddN\xb8\xfee\xb0H]\x17\x1fCM\xf1\xb8\xba\xe7\xcb\xf8\x99\xd7\xc1k\xc3\x92L\xdf\x03&\x94R\xca\x8fIM(\xeaw?\x1e\xd7\xe6\xf6\xbe\xad7\x14|\xec\x06\xfa\x18\x8f/\xe0fR\xd9\xd0\xd5D\x02\xe5\x89\xf5P\x11\xab\x8a\xa2\xa2\xf7jSQ\xdb\xe2:o\xee\xd3\xe2:oL\x8b\xbcm\xcb+6\xd8(\x98M\xa1\xab !\x97\x9f\xde^y\x07\xcc\xdf^n\xa5?\xff\xf2\x0b4-\x80\xd5\xba#Ks\x1a\xdf\xa5\x8d&(\xa3#B\x9a\x94\x95\x95V\xea\xc3\xce\xd7V\x08\x13\xca]^rZOU\x9a\xc5\xfbx>\xb1\xfcn\xc6p=\x07o\x18n\x9d\xde\xc6c\xae]y0\xf8P\xc1o\x86p\xc2F\x84\xd4Z_\x07?d\xda>Er\xe1u\xf5,F\xb8\xf1\xfcA\x12\x8ek\xe7\x06ej\x89X\xb9!\x99\xc3\x85#Q\xae\x0c\x8a\xad\x1f\x1ep1;\xab\xcfjV\xe31C\xf0\xb9P\x0dAaO\x90\xfa\x93\xa1\x94\xb2\xe5\xdbU\x82&`*\x02CMX\xbb\xf3\x99\xf5|!\x1fX_He\x00S\xcf3\xbe\x96|]\xefx\x14\xf35e\xaa\xecA \x15\x0bY\xf9\xed\xaa\xbfc\xab\x96\x86s\x10\n\xe2[\xaa]#\xa1\xe1\xecTb\xcb\xffeq\xf2\x19_#q\xb926\xb8\xa0\xa2\xc3\x1c\x05\x94uQ\xf0\x97\xda\xc8ab\xb8\x03Y*!\xf9\x06\x1d Y\xebc\xce\xae\xa8a\x0f\xb8$I@\x03]\xcd;\xdc}\xc8\x10_>\xc4N:\xea\x85\x1d\xfcKR\xe2\x1ch\x02' \"\xaf\x9a$G\x08`yo\xf8TI\xba\xac\xe1\xae\x91\x0cuY\xe2uv\xbc\x01A\x8b[\x13B\x12_\xe6M\x13\xbb\xf3A\x01k\x11\x13_\x961>\xc7\xf2H?\xd9S\xa1w\xd2\x02'\x9c\xbc\xb2*v\x92\xdb\n\xb3\x93=\x17\xf3\x05\xc2,\xc9\x91p\xe6\xe3\x10\x05\x97I\\\xafb\x0cx\xd0X`\x16\x0bo\x99\xc5\xc2\xbd\x17C\xe1\xc8m2hR\x7fe\x1f\xec\xcb\x10\xd4\x99\x1e\xe0ZB\xad\xaf\xf8\xbf\xd0\x9b\x16\xcc$h\xa1]\x0d\xbfw]/\x93\xb8d\x83\x932\xa4y\x0b\xd9\x7fE\x02\xee\xafz\x1b-`\x81[\xd8hp\x07v{\xc5%T\xd4'\xbe\xc7#\xe10\x9f\x0c\xb0\"\xee]>\xc9\xcd\x01\xa2f`U\xbd\x8d\xa3h\xbe\x1e\xb5\xebzW-\xa3u~M\xa3\x9a\xd1H\xb6\x7f\xd0AW0\xedOH\xf0\xe6\xc6c\x91#>\x1e\x8fn\xe5^R\x8fw|K\xe9IQ\xce\x96\x91\x950\x1f \xe7\x8d%{\x18\x9ao\xd3\x99\xafo\xf8^k\x8bF\x12S\xe3\x18~Y\xec\x9aF6$\x8dR#\xa1\xe7\x0f\xd0RJcz\x86\xcc\xc9\n\xae\xbe\x06\x0bZ\xfc\xec\x8d\xca\x8cI!D\xc9\x07\xfc3\x120\xff\xdb\x97x\xa5hA\xb6;\xc6*\x95\xa8\xac5\x10(\x0e\x16\x14S\x9f\x85R`\xa1\x00\x87\xa1\x06a\x0b<\x12\x1a\xe8\xbf\xde&\x9e\xf7.x\xad\xde\xe2\x8a_K\x8e\x14\xb5\xb4Z=\xfc\x9cW9+Jv\x15A\x7f\xb1Y8#\xc6\xfa\xe0>\x04gW\xf6\xd3\xb91\x15(\xeb\xbf<\xb9io\xb8\x85\x1d\xeekS\xb3\xabHi,Q\xbd\x8a\xd4\xcd\x03X=\xa3\xeb6\x92<+\xa2\xdf\xb6\xb4\xe0t\xb9\xe8\x90\xaa?\xbc6\x96\x81\x96\x04j\n\x08*\x98\xe1\xfa\xe8!%\xc1yo\xc4'\\\xfb\xc8\xae\xd5y%\xfbr\xa8V\x7f\xde\xc2$\xde;SdB\xc9\x85R\xee&\xf4\xe1\xc3\xe8\xd5\xf9D \x04J\xf9\x182\xf6t?\x81\x11\xc5\xfb\xe0\xd9\x1a\x9d\xa4\x8b\x84#\xba.5\x1a\x12\xd7\\B9\xb2\xeb\xd9\x04G\xf5\xfe\xce\xfa\x06\xd5\xbaL\x84\xd3\x1e\xd0oL_@\x12\xfe\x01G\x0f\x07)K\xf9E\x1c\x0d,*\xd0,\x8c=9N;\x9aTa.Q|\xb2\xd7\x0e\xd1R\x9f\x15g'{\xae~-2]\x14/$\xe4F\xe2\xe9m\x19\x1f\xe6Qh_\xf8\xdc\x7f\xbb\xd2\x93\xd7,\xcb+Wq\x97\xa7Zn\xc3\xd5u\x16u\xc62X\xdc.U\x01\x0ef\xe7sU\xc3\xb4N:\xe3\xae \xa1B`\xe5\xc3\xfb\x9b\xde\xe6o\xc9/I\xa0.\xbc\xfb\x05M\x94\xb3\xafu\xa1S2\xbe\x81\xc1\x98i\xde\"\xa1\xfbx\xd7\xe9\xe3\xfdG\xef\x0d\xc4/\x8eh\x8dW\x00\xd1*\xc6\x94e\xcc\xfe\xe6\x99\x92_\xfe*Ev\xc5\x13\xe4\x1f,\xf07\xff\xab\xb7\x03\x86\xacW\xca\xf0\x91\xc8\xd6h!\xc0q\xf9\x8eY\xbcCB\xe0\xe7\xcf_^\xfcp\xa7\xe9\xc0\xe3\xb9\xe7\x0fm>x>\xd3\xbf\xb7t\xa9\xea\xf1\x9c\xd3#N\xcd\xbd\xf7K@\xaa\xc3\xf6P\xb7\x8bb\xc9\xf1bx{\x0e\x98\x95\xbbJ\xcde\xb9\xb0wd\xd5\x8e\x12m\xad\x10\x02<\xa6'#\xdf\xef\\R\x1f\x1c7tI\xce\xe7$\xd6\xbfc,?\xbc\xae7\xdb\x8a\xcaO\x17s\x12\xdb\xbfb\x91\x94\xbd\xa9\x1d\x0eIo\xb6{!\x8fb\x87\x0e5#\xed\xd4\x082_\x0c%1\xc2\x15\x0d\xcb+*K\xa54\xea\x97^\xe7\x8d\xf3\x81\xcc\x03\x04\xed\x95]\x85\xb6\x19\xc5\xda\xbe\xc4\x85g\xf3\x026\xecL^\xa6\xb65S\xa96\x84\x0b+\x8d\xdeN\x93\xd0\xca\x18\x8d:&(\x0fd=8\xfd\xaa;E\xc2\xfbC\xd7\xd7/\x18\x12\x0f\xd0\x195\xfeu\xf0\xf7\xbf6\xf5\x0ed\xd4\xb4dK\xfa\xed\xf4T,D\xf0A=<\xc7p\xfb\x9e\xb8+\x84\xce\x1d\x86\x9edp\x87an\xe0\xb9\xc3\xc9\x91\x1b\xfau\xdeJ\x10\x0c\\\xa6\xf6x<\n\x0bL\xc5\xe3\xfc_\xd5\x8c\xe0\x15J\x1c\x95-\x90n^U\xf5W\xba\x04c\xea\xbal#\xd0\x0dz\x92\x83F\x0e\xd1\xcb\x9dQ\x0c\x18\xc9\xce\xe19\xa0\xda\x80\xb9q\x92\xf5\x1e\xa0K\x8c\xdf\xe5\x89\xa2\xba$T2ac^\xdb\xeb7\xf07\x19\xc7%\xa7\x9b\xb70\x1a3d\xa57\x98j\x0f\x10\x7f\xc8\xf9\x9aH\x86\x95\x9e\xec}:@R\x85cb\xbe\x90pv8G\xab\x19B\x05\x0d\xff\xc6\x16\x93\x80\xd3\xa8\xd9\x98\xb9\xe4\xc3|\xc1\x9e\xf8]\xe3\xae\xb2\xbfj3^\xc7\x90\x0b\x9e\xbaT\x1br\xab\xacQ\x8f\x02\xaeh\xef`\x83\xc6Cd\xee\x0c\x8a>\x8d;\xeb\xa8s\nq$\x976tu\x8b \xdb\xd0\x95}R\xba\xcd\xdbV\xd1\x04t\x19;\x0d\x04\x06\xb5{\x15\x1bz\xa8\x05ipI\xcc+FF@\x03\xf5\xdf/\xb2)\xcb\x00\x04\xf0\xd31\x9a\xa86\xcf\xd6s j\xee\x0e\xec<\x95\xd8(A\x0c\xb7\xde&\x14l2\xfd\xb6\xa0\x8a\xfc\x9ao'y\xda\xcaV\xb81\xf0\xb6\xbe\xc2;\xab\x9dY\xd8\x14\x90\xd9\x1c\xe1\x8a\x18\xa9\xd8^\x13\xce\xaa\xb9B\x18nRK\x96\xdc#\xcb\xda#\xcbJ \xdc\x88\xc08\xdc\x91\xef4\xa8\x14\xa6\xc9\xcc|\x18L2\xb4$c\x1e4\xe9\xd0\x83:ha\x986\xe1\xcaj\x11\xae\xb1\xdd\x0c\xb7\xf0\x01IO \xff\x898Z\xe7\x92\x0d\xa8ev\xbb\xde\x98?\xe0\xad\x9a\xe9Q,\x04\xf2\x0d\xd74\x80t\xc0\xf0\x1a@KqB;\xd0\xea\x03\xf2\x1e\x90\xd2\xa3\x90\xea>\x94g(R\xb6\xe0\xee\xc0\x0c\xe7r_\xb6\xea\xee\xbcRB\x92\xb3\xacF\x85$t+\xf3\xed\x08\x9d\x15\xb0P\xa3\x1d2O45=mI>+\xe6\xf0\xbf\xc3\xc1P\xdd.\x08\x94!g\xb85\xbcX\x019\xd9\x02]R\\\x9a3\x1f\xe9M\xc0\xb4\xad+\xef\x10\x8c5\x11\xf1\x8e\xa7L\xc7D4Q\xac\xebd_ \xed\x9fO\x95\xdfy.&\xd6}\x9aK.!\x16\xb0y\x94\xbfy\xaeO\xa8\xd6\x9c2\x00\xac\xb7\x0e\xb5\x84\xcb\xef;\x17\xbd\xee\xdc\xa4\xac\x84\xe2[\xc8*!\x04\xbex\xf1\xe2\xc7\xbf\xa0S\x1c\x19H\xa5\x85M\xdaR\xae\xfez]\xef\xa4,\x916t[7\xfc\xcd7\xde\xe4\xf0\xc1\x15\xe9\xbf\xbe\xa8\x90\x15'\xbf\xe4<\xef\x94\xa9?\xfb\x02\xe3\x93\xe7&x\xcb\xc5\xa3':x\xcb\xf9\xc5\x0bO:\xcf\xc3\x9dO\xd5\x12%1\xd5\x06I\x9a\x96\xabD\xa1\xd4\x06CI\xaf\x15\xe4\"\"\x84\xc0#\xf0\x852\xb5\xd1T\xdfh\xf4\xaa\x82\x95O\x1fj\x08\xe1c\x1d*\xe5SVC\x0b\x84\xd5\x06\xe9\x8dNU\xdd\xd3\xd3\x85w_\x1a\xb8\xe5^Q\x961\x0c\x01\x06r\x0e\xc7fVc\x15\xff\xe4\x0d\xbb\xceJA\xe8\xa4LO\x94O\x0dK\x95\xa1G\x0e#\xc9Hj\x97\xff\xa1\x9a\x965\x03\xc0\x846J\xa2,af\x8a\n\xaaZhp\x16\xe0W\x91j=gt\x81\x90\xe8\xac\xce~C\xdb6\xbf\xa2Y\xb2\xd7\xe5\x19\x15\x88\xbcj\xd2\x967\x0bm\xb5\x93g\x98\xe1\x1d\xbaVtm\x81\x81G\xa1}2\x18\xeaYO\xf7\xb7\x9b-\xcd\xb8\x1c\x86O\xd5@\x9d\xce\xcd\xe1 \xcei \xc4\x9dA\x8bl\xb0j\xd9F%SQ\x1bLE\xf5H\xd5\x11\xa9\xb7kX\x87:q\x8dK\xb3>%\xcf*A(\x86\x85\xda\xe1\xa2\xdel\xeb\xb6\xe4\xf4\xe3\xae\xa2\xd9\x16\xe7U\xa5\xe8![\nR\xe1\x15)\x80\x1f\xd6h\x92\xa8\xb3\xba\x9c\x96\xd9\xf6pX\xa2i\x9e\xec\xf0\nemR\x19\n[I\n\xf3\xe0r\xfb\xe96\xe0\x1a\x0f\xb4\xda\x82Vu@\xdby\xa0m\x05\xa9'yR\xe1B?\x13Axw8l\x0f\x876\xa9q\x8f\xb25D\x9dM\xef3\x19\xb4\x1f\xd8=\x8a\xb6$i\xdd\xbe\x0fG\xdd}X\xae\xe4I\x1b\xec\xc9\xa3{\xce\\'p\x84\xee\xdc\xc6\x10\xdeJ\xfe'\xba<\xcd\xce\x050G\xb1\xa1D\xae)\x11\x0e\xb6\x8caI8Y\x8di\xa3\x91\x90\xe5\xb8\xe4Y+Pp\xca\xe6}\x99/\xff\xe3:*%\xcf\xdeP\xc6U\xf01@\x8f\x95\xf3*B\x8d\xc9\xb8\x91\xa5\xd4\xbbA)c\x9c\xe3\x1e^\x93\x9c\xbc\xda\x1b\x96W\x1d\xe5J3y\x94\xcc\x17\xc1\"T\"5\x9a\x9e\x143\x80\x13\xee\x98Q\xa9\x07Q\xdfi\xb2\xc0\x8d{\xa9\xeb\xa1\xda\xaf\x83\xb5\x9b\x12\xc8F\x08I\x08\xba]*\xecz\x1d.N\xf6\xd0\xea\x93\xfd\x00v2\xb1@X\x9f\x84\xd7\xb4\xf9\\\x83\xe3\xfb\xb1\xee\x16\x98\x0d\x8d%\xd7n\x81k\x04G\xa6\xc5\xbae:\xbe\xf6\xad\xcbb\x84\x1d\x80A\x05W\x1c#\xa9\x84\xe7\x9b6\xf8\xae\x8a\xe47}\xbe\x02\x1b\x0fjx\x1fb\x84\x0d\x13\xf4\xab\xe82\x0b\xc5\x00\x04jt\xcat,\xab.\x0c\xf6C\x8c\x84;5\xcd\x85\xbcf\x1aECsN5c\x90\xec#-\x8d\x97!\xb8\xdf\xd7S\x89\xc2\xbdXt\xc4\n09\xb8#K\x8a\xe7Y.\xb9OKf\xbb$\x97\x8b\xb0\x85\xeb\xfey?\xd8\x07\xdek\xa4q7s\x81k\xd3\x9fY\x93\\m\xb86\xd8\x85\x85\x1ch\x07lN\x12D\xb6\x0d\x91\xbc\xc4\xbc\xde\xaaY\x7f\xa4\xabl\xe5/\xe1Z\x90\xdd\xa4V\xe7\xf4\xac2L\x14\xe7s<\xabR\x05\x11\x1e\xf0-\xe0S\x9eP\x94\xf1\xc3Acb\x8e\xf06\xd5\x80\xb7\xe3\xb1\xebQ\x97\x0du\xc2\xa6R\xf4\xcc\x18\xb4\xb5D\xec\x9a*0qa`\xb1k\xa7w\xf6J\x9c\xec\xd7b1\xc73\xb7\xdb$vp;Gx\xe9\xf7\xe4\xa3\x03/\xe7H\xc0z\xb5\x08\xd7\xa9s{hu\xb1\x1f\xeed\x97\xec\xed\x86\xcd\xa8\xc0{\x7f7\x07\xef\\\xcdy\xac4\x96ZjUoL\xcb\x84\xe3:\x95Gw\xfa\x897H,2\x13qgv\x84M\xdc\x83\x9304w`n}I\xa1\xe4\xd9>\xe0\x17\x19\x17\x02\xef\xfd}\x1bn\x91R(\xa5$'%Xm\xd54\xb8d3\xd4\xbe\xbd\x85{\xb8\x9c\x98\xafy\x7f\x92,\x9c$\xc2v \x01\xe0|.\x04~\xfe\xe2\xfc\xc7\xcb\xe2\x0dm\xeb\xea\x9a\xaa\xd9\xa8(\x13R\x1b(\xab\x92]\xd9B]\xe9#]\x11\x9e\x16\xf0\xd9\xb5\xf8dd\xc9\xdbd\xee\x17O\x9e^x27\x04L|\xf9\xe2\xd13\x84[+\x91W&\xb8\x1d.d\xbd'\xe7\xc6\xbe\xbb\xebZn\xc0h\x07\x1a\x18S\xd7\xa1\x0d]9\xcb\xcd\xf2\x86\xe5\x9b\xb2\xf8\x99\x15kx\xd0.p?\x9c\xa5F\xeex\x9c0b\xfe@\xc6\x1a\x05\x133\xa5~\xe1\xdb\xa5-~\xbbT\x1f\x9a\xba\xe6\x84\xc2?\xca\xc0\xa7\x8a?\xe7-}\xbb\xb4\xe6\x14YE\x15\xf9\x16\x15>\xe5Y\x9e\xb2\xba\xd9\xe4U\xf9\xdf\xf4\xedR[ \x9d\xedp\xe6\x86;\x1c\xe2\x93r\x19\xcf\x03(\xc1hF}J\x81\x8fU]\xe4\xd5G\x89\x13\xea~\xabO\x1b\xca\xe5\xdc\xe4?\xaa\xe0D{\xdbwF\xd6\xe5\xd8G\xaf\xf07\x8dw\xc5\xb2J\x8b\xbc\xaaT\x9cO\xed\xfa\xe1\x02\x02\x99=\x0e\x06\xa1\xbf\xec\xaa\n\xe8]a\xcc\xe0\x04\xc3\xf3\xf7\x16\x83=-+\x84\xa7C\xc3\x93\xcf}\xe09!\xb9\xb5\xad\x80\xb7D\x9dR\xda\xe4\x90pkQ\xec\xf4\x8a\xbb\x9d(\x1d~9\xa1z\xae\xe3q\xb2$\xdb\xd4sd\x8ca\x83\xc6x\xdf\xd0Uf\xc3jb \x13\xdc\xad\xd8\xe8\xa7\xf9\x1f\xd7g\xcb\xb2\xe5g\xcd\x8e\xf1rC\xcf\x9c\x9er\xa9\x053\xd3z!\x90\x11\xd2\xd6f4c\xa4W:\x1a\x88k\xbe\xc2F\xd6\xba\xc1\x86\xc0\xd9\xe8k\x05\x0eS\xb6L\x9dr\x1d\xb6\xae\x98\xd6/\xe1\x17W\xe8}7|c\xb0\x9e\xf9\x08c\xc0\x95m\xd69@\xe6\xf0I.\xf2\xcfM\x93\xcd\xc0T\xa3\xca\xfeJ\xafi\x95\x9d\xc3o\xc9\xeb\xdal6\xc7ZJ\xf4\x16\x86)\xff\xce\xf0\xdc\x0d\x97EK+xdc\x1fXZI\xdbz\xd7\x14t\nKf\xf7\xb0^1/ \x93\xd9\xf3\"\x0bj\n\x14\xaa\xcak\xdcQ\x7f\xb3\xa5\x11\x9fl\xe7N\x99\xa6XR\xf5\xdbe\xc6\xb0\xa2\xec\xccl\xfb\xc3\x81\xf9\x92\x83\xba\xab\x0f\x0f\x1a\x7f\x1b\x1b3'L\xeb\x0f\xbe\x9c\xc6q\x16\xff)F\xd8\x1d\xa8\x92\xfe\xe2x\x81Ahq\xdb\xa1\xa5\xd5\n\xfe\x14@\xddW\x13\xde\xdc\x98\xfbn`\xdc0\x15\x88\x9c\x9aP\x84+Kh\x7f\xd1[\x1b,\x83\x1b)U\xd8\xab\xfd\x0e\x86M\xb9!cN\xb6^\xdc\xa5\xc9\x15Y\xa8\xf2\xebR*\x8bK\xb8\xf3\xffK\xdd|\xa4\xab\x88\x80\x12\xf3\x7fi\xfe\xe5\xd7|\x9b\xa0It\xb2\xdfz>\xb6\x8e\x92\xa0\xcc\x9a\xa2@d\xc7\x1d0\xb6M]\xd0\xb6\x1d\x8f\x93\xab.\x0d\xe8O\xc9\x15\xa6\xc8\xb9p\xc8\xa1\xcd,\x93@\xb9\x91H\x13\x0b\x1c\x96\x81\xe5~\x81\xafP\xe2\xd8\xba\xf2\xbb\x02;\xbfsqS\x85\xcat\xbfV\xbc\x82 \x84\x99\xd6\xac\x80\xb5b\xd6;WL\x89<9)\xf6\x98\x90\xe1\xbddt\x8en!q\xa8\xa9~\x92}\x87h\xcd\x9fr1A\xeb4{\xa7\xcd\xb6\xc6\xdek\x9c\xc8\xa1\xdf\x1d\xa3\xb24\xe7ti\xa4f)\xf7\xb5 \x12Q)Y\x0b\xb2\x99\xb0\xd4\xd6\"\xe6\xfb\xc0%\x9f>Cl\xd3\xe3U8\xd6\x87\xf5\x87c\x9d\x99\no\x8fu%0\xeb#\xc4\x83\xd3\xdf\xf5\x1e\xfc\xc8{\xe7n\xb0E\x18\xa6B\xbd\x8b\xe1h\xaf\x94n\xfd\xa4\xc1U\xc2\xbd\x12\x00\xf3J{\xd3T\xf5\xd5\x15m\xd4\xd2\xeb\xf3#*\x8c@\x15\xe9\xa5\x8f\x9c\xf2$\x17(\xc6W\x08s\xa1\xfd\xb2\x86v\xab\x1a3|D\xb3\xf4n\x94\xf2\xb4d\xf2\x98\xfbHWI(\xb8\xc0\xea\xda\x8f-\xc4\x010\xfc\xcbL`J\xb3mp\x84\xbbA\xc0\xd1\xd6\x19\xda\xc1c\xa9\x0f\x1f*WR\x8e\xc2 '\x0d2\x84N\x08\xb3R\x16Wr\x92,\x92?d\x81\x96\x90d\x91\x96\x02\xcc\xd5\xc5D\xdf\xc9:(\xd6\xca(\xa4\x04>\xf01\xea\x86\x943\xcf\xbe \xea3\x9f\xa3 \xe2\x84Y\xe9\xdb\x84\\\x01h\xe4\xf7\xc3a\xe3O\x18\\o\xcd`\x9b\xd0\n\\\xc8\xd3\xaf\x05\x87\xc4\x86\xe4\xe9\xa5/\xc50%B\xd4=\xe1F\xcfH\xb2\x08\xdf\x9d\xd3\x9e:6v\xc1x\xdcH\x9d\xd8\xcc\xfd\xc6\x83\x8aa\xcbaK\x12\x8a\x89\x8d\x14\x9b\xdd|\xcbyg\x82\xe5|0\x0ec\xebD\xb6p\xfa-@j\xa4\xe4\x91\xc5)\xc8\x84\xdeM\xb7\x86>\x0c\xd3\xd8\x01Z\xf9\x98w%\xee\xa4{_a\xfb\x82\x97\xab\x96\x14\x0f\x07\x9f\x12[\xa92\x90\xce\xe4\xad\x97\xb3\xd6\xca$kj\x8d\x8a&\xcf^_:l\x08\x9f1k1h\xc6\xe3D.\x96\xd6g~o\xaa\xa4\x06k%\x83\xb7\x02\xb6C\xec:\x83\x13=\xa3\xe6<\xaf\x85\xe5\x1b\xe1\xb4[\xa4\xee\xd1\x0dG\xdf\xe1\xae\xa6\xb4\xc5\x81\"\xd5U\xe4$\xd17z\xbd;0\x82kv)\xb5\x0c\xb9\xda\xea\xaa\xb54$S\x02 \xb6d\x1d\xach\x1d\xfa?\xb6\x8e\x9e\xdd{GO7\x08\x9e;\x9a5jf\xf5\xdc\xc3k\xe9\xe1u\"\x15\xda\x96\x84hc\x0eme\x07m\\ \x0b\x07\x90f\x97\xc0\x9e\xaa:_*$}\xbaa\x85{zv\xac\x86D\x88\x9c\xe1\xa8\xd1t\xaf\xf1\xd2\xd9\x05\xee\xb68_\xea\xd6I\x83k\xac\x80\x90[\xa8\x8b3\xbb\xb6VEk\xa7\x16\xebd\x19P\xa6\x89\xe7\x80\x07u\xe6UO\xb5\xde\xe8\xb5\xbd2\x0f\x98\x92Y\xec\xe5 \xc0\xf16\xe7\x9c6\x9e\x8a\x12\xe3\x98\xb2\xdd&\xc6\xf1\x92n)[RV\xa8R\x90\x99!\xb6B\x1b\xcf\xbd\xfb\xab\x9b\x84\xe2\xbd\xc1\xb8\xb5\xf2\xa9\xa5h\x84\"\xb1\x1av\xfaY\x0c\x97\xfc\x9a\x14jB\xd3U\x93_m:>.\xb5\xa1\x84zv>\xb7\xbb\xbes\x1a\xb8\xa66(*\xc4k\xe1r\x14\xb5\xbd\x07\x02\xd2\x9a\xce|\x9aH\x18a3\x10E\xda\"\xdf\xd2\xbf\xe8n\x93\x06\xb9\xc1\xd5\xc0\x94\xf44z6\x1e\xb3\x99#\x18C\x89\xf3\xc9\xe8\n\xeer\x1b4\x1e\xab\x07\x93\x9d\xadE\x11\xbco\x8a\xca\x89\x0f\xe9\xc8\xef7=i\xe8j<\x1e\x99n\xffw\xde~\xdcU\xb4\xfd_;.\x0f\\\x1d\x01\xe0\xe3\xef\x7f}\xf3 \xf9\x1e\x10\xe1\x16\x86^\xd0\xa4\x0cxo#O[\x9f\x9b\xbd]f\x95\xbf\xd1\xcc.'\xa5\xba\xaf\x1e\xdcn\x95^co\xbb\xe1R\x03;\"\xa4T\xca\xb6\xfa{Z\x1a\xca\x15\xf8\xe9\xf9\xc5\x8b\x1fkQ\x1a0\xfe\xecA\x1d\xf5M\xc9\xb2\x00\x9c\xd4\xaa\xd7\xdfx\xc7OM\x16\xc5\x08\x07\xa6B\xbf\x86\xff\xc1\x9a\xab\x7f\xe9\x8e\xe0\x8a\x83:V\xb5\x1d\xaek\xc3v\"\xc0g\xafWS\x18#\x1c\xda\x98\xc2\xd9\x05\x9f\xe4<\xb5\xaa\x1eLT\x95\x19\x8d.\xfcH\xcd7n\xa2\xcf\x98/\xb2 FJ\xc9\x0b\xcc\xf7\xb4Z\x81a\xbf\xde\xd2\x8e]\xbf\xde\xd2\x18\xe1?\xda\x9a\x05\x1fd\x81.\xffP\xb7\xbdO\x1f\xeaV\x7f\xfd+\xed7\xfc+\xb5m\xf3\x86\xf7\x1b\xe7\x0d\x8f\x91\x98\xb8\xec\x15\xb5\xc0O.\x9e<\xfe\xa7\xd1\x1a\x98\x12\xef\xe3\x0d\xeaG\xa1`\x87\xc3\xa2\xc8\xd9\x03\x1e\xe9\x8d\x1a5tE\x1b\xca\n}\x05\xbcj\xeaMT.#\x15\x8eX\xdb\xcf\xca\xb6-\xd9\x95<\xc1\x1b\x7f\x83\xdb\x88\x00\xa6\x86f\xfbM(\xb8\x05rb\xa7C\x04\"\x84\x8729\xab\x1f\x8b2uXY\xb3J\xebl\xbb\xbf7\x15\xbc\xaf\xb1\xb0\x12\x1e\xc8\xba\xca4\xec\xfdeu\x8a\xbe\xd9W\x99sk\xc9\x03\xce\x9f=Vf\xdf'\xe7\x8f^*\xb3\xef\xd3'p\xf6\xbaSPr\xda\x18\xc7*\x8f\x92;\x08c\x1co\xf2o\x7f\x05AY\xfe.\x99\xfb\x9d\x7f\x0b\x8e\xc9M\x19\x1e\x9b\x9b\xfc\x1b\xe8\x8b\xea\x93\xfd\x99\x7f+7p\x9enJ\xa6\x7f\xedX\xf9_;jk\xec*^n+\xfa~\x15\xe3X\x1b\xf7\x96\xee\x18\x86\x19\xca\x13\xd7\x9f\xbd\xbf>Rc7oJ\x87\x1e\xaa\xab\xd0W|:*\x12\x8a\xb2\xd1\x88\x8f\xc7\xbb\x84\xa2\x9f\x08\xf7\xae\x10\x1db\xe4\x81\x11c\xf9O\xb1k\xda\x12\xe4\xc6\xe0o\xc5cd\x91f:\xbaB\xc0\x82\x02\x11\xa1\x08\xf59\xae\x1d\xa7\xcaUR\xc11i\xa3\xc5\x8c\xce\xad\xdd\x84\xce8\x88\x9c\xdd\x90r\xf2d\x84\xd0\x07\x85\xd7h@\xf6\x97gh\x910WI\x98\xeb\xc0N\xect\x15\x18\xe5|\xd2 \x11\xa0\xe0S\xd8\x90\xfa\xa2\x91|/\xce`8~z\x8aG\xcayV\xc2\xd4\x1f\x9e\xce\xd8|\x1f\x8f\x93\x15\xf1\xeb\xc3\xa2#\xec\xeb\xdc4=Q#\xf4\x8a\x03\xf6\x87p3cs\xb2\x12\x08\xe1j\xe23\x1c\xfb\xc6\xd3]\xc8\x8d\xc7\xa3\x1aH\xdc.\x1d;\xb2\x8d\xbd\xf9:\xa9A;\x89izh#^G\x9b\xba\xa1\x11_\xe7\x0c\xde\x9f\xaaU\x92\xd3\x16\xf8\xf1\xb3gO~p\xfa\xa5+\xcaA1\x91\xc7s\xfbo\x9f\xde\xbf\xfb\xedf\xdby;\xc3\xbc\xf3Ec\x1e\x9b\xf8)8.\x19\xa7W\xf0\xcb\xecP\xac2\xfbY\xc2\xc3q.\xd9\xbf>\x05\xdd \xfe\x0e?B\xcfT\x1e\x18\xca\xafV\xf8\xc0\xda\xa6Nw\xda+\x88\xb2\xbdl\x9aY\xf8\x1aY?\x9b\xcd\x05V}\x9b\xeff\"\xee;\x00i>+\x88\xbd\xafj.\xe6\xb3\x99\x99\xfd.\xf4\x8e\x84\xefm\xa6\x1c\xfe5j\xb2\xd19\xd6\xb8\x91?%r\x80\xab\xe8\xc6{7\x08M\x15\xd8\x98j\x0b4\xa6)@\x82\xa9v\x9c\x98\xe3m\xdd\xf2\xcck\x93WU\xb6\x17\xc6_L\xc5\xa6\x15X\xcaS?\\\x0e,\xd6\xb4\xf8\xf2 \xda\xffj\xf3uY\x87\x04\xc2\xc1\x1d\x81\xf0t\xd7\xc2\xd5\x10\xe1iK\xf9\x1bkV\xe7\xce\x94\x0e\xb6\xfb\xdf\xe0E\x01\xe1\xe9\x866W4\xa8\xa7\x8f]\xd9\x97V\xed\xff\x0d4\x0c\x89\xd1FV8ZfL\x00^S\xaf\xa85\xe7\xcb\xfb\xe6?\xf2\xca\x16\x84\xday\xaf\x98\xe8\xa9\xff\xce\xbe\xb0\xfa+3ey\xf55\xbfi\xe1\xb2\xcfz6\xf0\xfa\x7f\xe7\xed\xfa6\xb7\x06\xf5\n\xcd2\x88\x12\x84@k\xe5\xd5fJ\xb8\xa1cJik\xc0\xddv\x95\x8cX\xaa\xd6N\x0d\xe6\x99C\xfag#\x0f\xcf\xa5\x9a4\xca\xd6`\x1c\x8e\xda\xae\xc0\xc4Q\x0d1\x94\xd6 \xc5\x8b\x9d\x9a\xa7\xf1\\\xcd$\x93b\xf04\xd4\x82\xad\xfd\x9eo=\x98G\xb4/\x96\xc9#P\x9eJV\xf8\xeb\xcbu^h\x9d~\x94&x\xbd\n\xcfUm\xfe\x9b\xbf\x9f]\xe1\xf8\xef\xe7AJ\x9c3(\xbb\x88\xc3LJ\xc1\xebE\xd3\xfaBV=\xf3[\xff\xfd\x1cZ\xc7AN\xa3=\x10\xa9\xba\xbe\xa6\x18\xfeP\xf4\x0b\x0ed\xcd\x95\xb9+c\xb8\xa1\xed\xae\xe2\xfacm\xc3^C\xc4\x8c\x16WR\x84P()\\0\xfev\x9agC\x01\xd9\x93|\xe8A\x9c\xea\ne\\\xff\x80\xec\x96C\xade\x85\x16\xe7\x08\xe7(c\x90\x05\xd3\x888\x15\x84\xa9\x91\xb5\x0e\x87b\xa0i\x91\xd5I\x89\x0b\xff\xf2hg\x97\\\xa9$\xf6\x85\x8e\x8a\xc1\x01w{1\x1e\x9d\xbb\xdb\xd3\xf0\x8b\xf6\\\xeb\x07(\xe2\xe31\xb8\xe9\x81\x0bx 9+\xb6\xe5_\x870\xe4\x1e^\xb0\x9e\x8b(\x17'\xfb\xc6\xcf\x8c\x02\xcf_%L\xe0O\xae7\xa7\x7f\xee\x98\xcb\x8d\xbd\x08hU\xc5\xdc\x91B\x80%\xd1\x88\xcb\x13\xa8\xbf\xe7\x87d\xe0\x81\x0d9\xe5\x99\xc4\x9a?\x17n\xeet\x0e\x87\xa4T\xd6\x80Q\x9ep\xc9\xfci\xb5\xd2\x1b6\xaf*\xe5-\xdc\xe7@%\xee1\xaa\xbcW\xa4YZ\x08\xe5?\xb2m\x952\xa5\xe2IIvJe\xa1\xe3H\xa8\xdd4${\xeepGF\xdd\xea\xc3k)O\x84\xeb\xbc\x89V\x81\xad\x04\xbc\xce\xa9\xbe/\xf2\x85\xb1=\xbc\xf1T\x1a\xfeB}\x896\xf5\x92\xea9\xa9\xa9\xf7c\x02\xc1\x0b1\xe0\xf6\xda \xe4k\xde\xb0\x84\x83U\xd7H\xd1\x83F\x16\x1a8\xb7\xc9*\xda\xe5P\xbb\x1a.g\x1c6\xc5\xfcpH\xeco\x1d\x19R\x07v\x832\x04\xd8\xf1\x19\x13\x9d\xd1\xf4\xddn\x03\x11\n\xde\xed6*:\xc1'\xde@\\\x82O\xbc\x89E\xb2\xd2\xa2>\xc4!\x00\x99_G\x1f\x08\xd4\x81\xae\xf6Q\xae\x92\x01g\x1ds\x04\xd7\x84\x13BVrh\xeb\x831U\x8e\xff\xf1,\x8eN\xd53\xc7\xd3(\x9e\xc7\x0b\xe5\xc86{\xe0\x17?\x90\xe5\xba\xfe\x99\xf9\xa0k\xda\xbfC\xa11\xeaJ\x8d 6F 7\xdac\x82M\xc3\xa3\x81\"\xcfq-\x8b\xcf\xe2S\xa3\x9cv\xb5\xa3\xb5\xc0O\x9e>{v\x9b\xbenI\xab\x9b\x85\x11\xd4;\x1d$\x96\x93W\xea \xbdo\x1e\xd4\x8f\xea\xd5\x8b\xef\xae@Eg\xf6y\x96\\\x7f/\xccq\xea\xee\x81S\xfb\x18\xe8X\x10\x02;\xbc\xdf\xf1\\\x82\xf1\x0f\xe8\x8e\xea\x81\xde\xef-\xbc\x04#\xde\xdf\x10V\xa1\xa7r\xfd\xa5nsqi\xeb\xf1x$\xa7U\x8f\xc7r\x01j\x95\xa92\x04\x8c\xf5`o\x04~\xfe\xec\xd1\xf3\x1f\xae]K\xd1\xe6}\xf3\x06\x12n:ur\xfb\xbfz\xc5=\xe5\xf2\xe2\xc5\x0b\xa3\\\x82\x9a\xe9\xfb\xcc\xdb\xc7\x8dFt\xd2\x06\xa5\xa8l\xa3U^\xb54\x16a\xbe\xdd\xce+P\xf5\xdeL\x10\x8aK\xa2\x8b\x8cZ\x18C{\xdd_l^\xa6\xe9\x85\x18]\xe8_\xe0Oh\xffR\x0fhF\x17\xe6\xc9\xd2^\xe0\x92gTL\x1a\xff!$\xe85f\xe9\x95\xe4>\x80\x87\x9e\x1c\x0f\xf0y^\x0c\x81\x87#\xa8\xd1\xf0\x9c\x88M\xe5}\xf6L\x11\xb8\"\xfa\xdc\x12\xbd}\x14\x02\xc7v\xd5\xb9\xbf2z^/\xe7\x0b\xcdT*\xf2\x19\xdcWI1\x8167I\xe3\xd9)]2\x84^\x98-\xb8\x87\xb4o\x80M\x83\xa8n\xec\xef\xd9<\x8b\xe2S\xeer%#\xd1\x8b \xf4\xban\x1aZp8q\xf5ou\xea\xfe\xdf\xa6fWp\xee\xc2\xafX$\x95\x87&8}-\xce\xdc \xec#uH\xd5-\x12\n\x9cPy#\xa7%+\xaa\xdd\x92\xb6\x89\xb2\xda*\xf7\x1b\x95\xf5&\x95%\xf9\xe7\xaa\x1f\xad\x01&\x9e\xc1\x9b\xd9\xa8\xa8\x19o\xf2eY\xf062\x0d2\xcd[\x90\x0b@`\xc2h\xf9\xe9\xcd\x8f\x0f\xf0 6\x9f\xe2\xa8\xc8\x19\xab\x01\xc3\xbb\x96.\xbdx\xaf7[\x1a?@\x13%\x19\xda\xbe\\\x80\\5!\xe1\xeb\xef\x01\x0d\x16\xf8(\xb5\x1e\xdf\x9a\xc0\xe6\x1a\xe5C_\xaa\xc7\x86\x83\x12\x9aT\x18Ve\xc5i\x03!\"v\xda\x8c}8h\xdb2\x01\xc3\x87\xfbCn\xe8\xd9\\$\x1c\x97\x1a(\x00\x12\xe1\x82p\xcf\xf7s\x94\x80\xbd\xc8\"\x13B\xc5\xdb\xbf\xea\xe1sR\x02\x06\xfeXr\xc9\x0bw0.\x13\x8e\x1b\\jQ\xf6\x1d\xe8\xdb-\xae\x14\xe1\xa1 \x93r}\xad\xb5 \x9b\x99\xa8\xcbb\x1cr\x1as\x06\xf8\xc8i\xd2\x8ar\xe5\xc0\xf3\x1b\xdc\xda\xe7\xe9\xe5B\xb3\xdb\x93}-\xb5\xa5\xcaTR\xf3^\xaa:N}A\x13\x87\xa6\x009\xe3q#A\xcc\x81\x03C<\x85\xe8\x81b\xe9\x0f\xa4&\x14nv9\x18R\nRm^m\xcb\x16\x17ZQi,C\xc7\xb9\x0eN0;\x9f/\x90)n\xfb\x90\xcb\xc1%\x0e\xeb.\x0eQ\xa7\xcb\n\xd7\xf0\xec\x1b{\xf0V]-\x0dyv\x17\nq\x1eQ2D6\xd4'\x9b\x90X\xc6c\xc9\xed:\xbc\xaf\xfdZ\xf2\x02.z\x8b\xbc\xa5\xc6D\x92\xf9Rc\x93\xea\x18\xc9>*\x8d\x01Fj\xb5\xb6\xcc\x18`\x1c^*\xc0K\xacdl\xc0J\xd0W\xed\x85\xb9\xe8\xb5Y\xa0 \xc0\xa4G\xba\x07Lf|\x05\x94\xd7\xf9\xbfD\xc1\x7f\x87C\x94\xd8Fz\xcaf\xf1\xed\xbf\x84D\xa7@\x16]\xc8N\xd5L\x14p\xe6\x86\xebN\xe8\xfe1\xf0\xee\x01\x9f,\x18\x01\x01G\xffOt\x81n\x07\xd7\x80p\x1b\xb8\x1a0%\xc1\x85\xc0\x9e\xf7@\xf7G\x1b]\x0c/o,5\xfe\xb0\xa3\x8b\xa0\xdd\xb9]\xe9\xaa\xb2\xa0\x1d\x81\xea6\x80\x00\xe2\x05\xc2zVv\x00\x10\xba\xd4\x10jodGV\xc8\xe0\xda\x11\xb5\xa3\xf4\xfe\"\xddce\xbb\x8b1\x93_\xe7\x0b$D\xa3#\xa0c\x08\x12\xda\x98\x08\xe7\xb72\x01\xcdm=fT!\xa7\x9f\xeb\xe0\x10\x9e\x0b#\x1f\xf4U\x04\xf5\x87\xbaa\xee\xb2\x08\x99Z:\xc4\x0cn\xa4\x96\x97P\\A\xa8\x82D\xbd\xde\xce \xae\xa9\xf3x.\x8cS\xc7\xee\x1f\xbb \xf6\x9d\x8c\xb4\xb1\x1f7\xa42\xf2\x90;\xa6\x1aB\\\xf14\xf7\"e\xbe\xf9?\x99\xff\xe7\xbb7\xffg\xa2\x1cs;\x9e=y\xf1B\x05\xfbx\xf2L\xfe\xdaY\xb2\xdfZ\xa3\xe7\xd2\x06\nYY\xcf\xf2\xb5\xb1\x18\xb9M\xb11\xd2T`&\xf4\xcc\x87\xea\xc7\x1bvm\xd4\xfdZ\xe0\x12\xedk\xf5\xa2\x9a\xb6O\xa5\x86\xbf\x83\xb7e;\xa0\x9fm`#\x84\x9bGW\xa4\xde\xa9\x88\x05nL\x9c\x0cs\x11\n\x97\x97\xb2\x87`-\xa2\x93\xfdU\xc2p\x0d\xa1]Bz\x03\xc1\xae\xdb\xb3\xed\xee:o\xbc\x8fA\x10\x9b.\x98\x1a\xa6\xd4/\xf3\x1b\x08\x08\xda\x15v\xe8\x05\x80\xb8Ow\xae\xfa\xed\x9d\xd9(\x11\xdf\xd7\xa9i6\xd4\xb9y{s\xaf.Mex\xb5\x91:\xdf\xf8\xf1\xb8\xdbm\xf8X\xe7^\x9d\x87M$GA\xf7].\xe0Rw\xac\x81gB\xb8/\x86okb\xf1\x16\xd2\xf3?\x80\x97=L\x15\x14\x88\xda\xc6\xa3,eQv\xf7\xd6\xf1e\x04}\x96@\x9fG\x89\x95\xc4q\xb8\xe5<\xda;\xf6\xc1\xd2OX\xc1R\x03\xe9\x81v\xb2\xa7\x1e\x1a\xa6\x12\xa4\xb0mg\xb1\xc9^,\xb2\x9d\x8a\xf6,\x7f\x0b\xf0.\xe9p\x01\x8d\x1a\xb5\xe1\x91\xc1\x93\x7f\xe1w\x95\x04O\xcc\xfb/\x16\xc6c:\xe3\xde#Fs\x7f \x19\xc0\xbc\x18\x10\x87\x03\x0f\"^ \x98\xc2\xd9\x9f\xff\x14\xa9\xef\xbf\x7f\xfc+\x81\xeb\xf8?\x9f\x19\xb8-\x107\xfd{\xb6\x7f\xcc\x99\x88;\xef\xa6;\xbc\x01\xaf\x93~\"\xc7Q7&\x93\xab\xfe\x19\x1e\xab\xf4\x9d\xa5\xa4\x02\xde\x17:\xf5dx'\xac\nS\xec\xbeQs\xac\xa5,\xc4\xf5\x83\xce&U\xa2\x8a>\xec\xda\xff[\xf25\xec\x86\xd5\xf0CO\x8ek\xfd\xcas<\xae\x83K\xfe\x85\xec03>\x96N\x04*\xed\x0d]\xce\xa3m\xce\xd7\xce\xfb2\xf1\xc3,|M\x8c\x7f\x0f\xb51_\x8c\xcc\xf5%\xa1x6\xc7\xa3\x0b\xcc\x9d7^\xdd\xb9\x1cp\xa1\x05&_@\\\x18\xd5G\xac\xe1\x10C/\x08x\xf0\xcd\x9c\x9d\xee\x8c\xf4\x0e\xce\x10\x9b\xf6\xf04\xd4[\x12\x96\x9e\x14\xf5fC\x19\xe4\xc3\x01\xfb}m\x8b\x90w\"\xfa\xfb\n\"\xae\x18\x14V\xf5Ur\xb2/A\x116 \xe3\x06B\xdey\xbd\xda\xad\xb3\xd3!\xd5\x1aqf>.pMB\x8f\n\xc9\x00\x8cG\x05p\x03\x81&\xb7\xc2\x05K`\xfa\x03\xd0pd\xdc\x8fj\x13\x17\x12-|\x85\xf7\x8bSx\x9d\\n/PuL\xa6\xca\x0b\xdcT(L.\x15]\xae!\x00!\x10W\xb6\x11d\xed?6Y\xa1}\xd9\xb9\xc9NZ\xbcB\xe3q\xb2\x025h\x9a\xd4\xca:\x14h\x8e\xfa#\xae\xf0\xb2c\xcfF\xf82\xa1x\x85px\xdf\xc0g\xe7sp\xdb\x90\xcd\xc6c\xc9ljc\xf4\xca\xbbz\x11\xfa\xb6! [9<$4\xb5!\xaa\xcc=I\xc2\x9dX\xce\xc9\xab\xfd{\xbf\x12\xe6\xe8p\xf8$\xb5 \xb8B\xd4\x81\xd9\xfd\xdc\x0c\x9fo\xe0f\x8d~\xe3\xf0F\xc4\xeb\xdf\xde%\x02S\x80\xa8\xa6\xf6#\xf1+z\xd7O\xef\xd5\xb3u8x]e\xael{\xb2\x07\x13\x0f\xac\xfe\xfa;+k\x06\xdf\xbbX\xf2\x93P&\x8fF\x8e\x10\x0e\x87\xd1\xc0E\xe2x,'\x08Bm\xa7\xe3\x88\xd7\xaa(\xda\xc92\xb0\x9a\x19N\x18\x1b\x98\x06t,\xf0)\x0e\x9dc\x83\xd8\x02\xa0DY\xb3!\x9b5\xf3\xc1\xc7\x85\xf5x\\\x86N\x1d.\x02NmC\x85\x80\x1d\x83 \x02A\xdc\xb4\xd3\xcc\x84\xd9%\x1f1\x97\xc4yoMh\x14'\x8cp\xe4\x90\xd1 ?\xd90i\xc6c\xe6a\xca\x98\xfc\xd4\xa55\xc3\x8d0h[\xe8G\xbe\x91\xa1\x0f\xe6\xaf;d\xa2\xd1\x08\x93\x1f\x1b \x05!1\xe7\xad/2\xa8\xacS\x95cM\xc9\x9c\x9d[\xa6\x8d\xf26BW E\x93\xabd\x93n\xeb\x96K\xbaBY\xd0\xee\x83\\L\xf5\xbet#1\x0f\xdb\xd0\xc3M \xae\\\x1e\xf7iPLl\xef)\xedY-\xe4\x19[\x8f\xc7mG\xd1\x96\xbd\xa8\xcbj\xcc\x8e\xcc\x01\\X\xb5\xc7\x14\xea.k\x83\x19\x1a\x8f?\xc0s7\x8d.\xcc<\x98M\xef\xc2\x87\xfd}\x12z\xda\xd9\xe5\x92{\xd6.\x99R\xc6i@\xf6\xb0\xca^O\x9f\xf4\xbe9%\x0by\x9a\xc3>v|FE^8\xa5\x9dh\xc3q\x94xL\x07-\xf0j\xc0x\xc2q\x9f?!qD\xef\xf6\x05\x1f)O\x8d\xc7\x89\x94\x9308\x03Oo\x11\x8b\xf43\x14\xb8\xdb\x95+\xb4I\xa8\xd6[\xdc >\x1es\xef\xf7\xb7;\x04-\xd5\xa3\xec\xcb\xb9\xff\x1b\x8e/\xb7F`\xca \x1f\xbcH\xbe\xdeGD\xac\x1b\xfbV$Hkc\x1c\x93\"8\xcaAx\xc2\xea\x9a\xd9\xd3\xd5\xfc\xb0\xdc\xbd\xaf:\xca\xf5\xb9\xa4=/\xd8\xd9x|\xccz\x19\x18\x12`\x92~T1ns\x03\x98\xa2X+?L\xb8j\xa0~\xda\xd3\xd0k/R?\xee\x99\xbe\xc0\xb1NH\x03\xd5\xb7\xaa^G\xdbCw\xf6\x0f/\xdb\xef\xd1\x7f\xa9\xea\xf5\xfa\x07L\x7f\x1d\xa6\x03\xdfAK\n\x8d]\x1f\xad^\xe8D\xcf\x97`\xe29e\xdd!.\x9c[\xf0\xb5\x0fVG\x93E\xe6\xb3J]\xb0\xb3\xa9\x0bj\x91\x04\xba\xbc\x8e`\x0e\xde\xe3\x9e\xcb\x97\x1a\xdbs\xf9\xea5A\xb8\xfa7\x11\x9d\xb0\xc2\xeaV\xc2F..\xb9I\x89\xb5\xa4+\x9d\xe0S\x8f\xe3\x0d\x03\xc7\x00\xa0\xd30\xa1k\xd5y\x8c?&\xae \xc4\xbe\xb4\xe9\xb9;\xcd\xbbs\xc6#\xbd\x8cN\xa7\xf4\xdb\xe0pVF\xb6\xd4\x8cb\xe0\x0d\xb8Jg*{\xf6\xb2j\xfc\xdb\xa7\xf7\xef\xc9\xf1\xa7<\xe5M^|\xd1\xca\x92\n\xb4\xa0I\x19\x99\xa4\xb66oB\x88\x8dKY\x1e\xe3\xee\x0e\x80\xbb\xeevW\xd9T\xf6\x864\x15\x03b5\xbc\xf4\xc1l\xca\x12\xfd2^\x05qD\x98O\x13[W\xebC\xdc$1\xb5\xf4\xab)\x0b\xea\x18\xa5(\xac1\xedV\xc8:\xbd\x8am\xdej\xaf]\xae^\xe6kp\x9d\xf7\xec*/+\xfd2\xdf^\xe7\xd8\xf4Z\x01\xd0\xf2s\x12\x02\xa0\xe3\xa3\xe9)\x8f.\x90N&\xac\x0bL&4;\xed\xef\x84^\xc2\x06\x94\xa7\x01\x1cy\xe4\xebC\xa8\xe7\x10\x04zP\x81JU\xa8\x87\x89\xab\xb5\x1btx\x88\xc6\xe3(9\xd9\xef\xd2\xbaQ3\xd4\x11\x07\xd4\xe0\x08K\xfe\xb6@B\xcd\xc31\xaa0\xefjK\xf9\x07\xd8}6\x8d\xdd\xa5i\xc0\xb4GJ\xa7\xde^\x98\xe4\xcb\xae\xa2\xb0\xbf9\xda't\xba\xee\xa5Z\xc9\xd6\xfe-\xa3\x1fLvIW\n\xd7ra\x01v\xb5y\xd0~\x1d^L\x06-\\\xc5\xc3a\xddO\x80\x03D\x0ey\xe8\x82\xb4b\xc1v\xe9;h\xe6\xcbe\x14{\x1b.\x96J\x9dQI\x9c\x84\xfd\x00M\xd6\xbd\xcc-vo\xe0\xce(\xa2\x86<\xcd\xb7\xd1 E\xc2\xe1W\x11\xfe4|\xf5\x05\xb5u.\x05\x13\xb1BsM\xaa\x92Mk\x92\x83\xd7<;\xe5\xd0`\x87\xf0\xb5\x0c(\x04\x99\xd3\xb4`\xb0\x8f\xe5Y\xe8\x17\xabN07\x9d\x0dR\xf2\xa4\xaf\x0c\x01 7~\xae\xa1\x1a/\xe9\xca\xc4M\x9ch>S7V\xe2\xe8\\\x83B\xd2\x19:\"j`)1k\x1cP<:G8\xa9\xad\x82^\xda#W\xbfX\x82\xd0\xb7\xdaCj`G \xef$\xd14vl\xa0\x0b\x04\x91\x8b\xd5\x8e\x0e{\xf1\xc4\xbe\xe0\xe6\x9d\xfbsf0\xe7\x06\xab\xdcA0qk\xef\xaf\x1bgsQ\x8f\xac\x8cO\xc8\xbe\x9f\x82X\xc9=\xfd\xa3\xe5\xee\xdc7\x94t#\x15MY\xe6E\x01U\xe8\xefX\xcb\x80\xfcp\xed\xeba\xc6\x856\xb7\x8e\xd9\xda\x97\xd6\xb9\xd9(\x93z\xe2I\xc70\x95\xa6\xbb>\xbe\xc5\xc33L\x9aZ\x80`m\xa1\xec\xb6\x15\xc8\x87{$\x0fV\xedu\xd3\x05\x02\x89v\xf7\xb9\xd5\x82[\x18\xc2\xf6\x8a\xf2O\xf6\x9b\"\x10\x0e\xe1eu\xde\"\xfbQ\xce\xd4\x044\x84*\xb8W\x05t5/8m\x0d\x191M\x8b4M\x8d\xec\xabO-%\x10\xab?\xc4@\xee\x16~\xbb\x1e\xeb,\x0fZ\xef\xd4*\xac1D\x13:\xa9=\x9d\x95\xdd\xa9\xbfF.B\xc3\x8cv\xa3EB0'\x13\x9bx\x19\x04x\xd3\xa5\xf0\x10\xb4\xdbq\xe9\xc2.\xdb8\xde\x81\x19R\x15\x0e\x10\xb3,\xb6\xafxX\xe4\xfd\xa9\xd4\\\xeb\x13\xd5\xdc%\xdeL\xbe&\x14\x97R\xf3U\x0fI\x14\x99\x97\xc6\xe6\xdaS\x08\x16\xda\xa0\x945\xfd\xd7,\xf0A$5\xd8\x9bD\xf8~\xd8_\x92\x92;\x8b\x82fru'\x9c\xf8x\x9c\xc0\xbb,\xa6\x14\x9c\xe0\xc5\x80.I\xf47\xb2\xea\x1c|`\x91{\xc6\xeeR\x93\xc1\xfe\xe9!\xda0A9[\xef\xb2\xe1C\xe7\xb2!\xaa\xc1i\xf3\x8d~\xa8<\xb1r4\x9b2\x9d\xdf\x1f7(\xab\x8dB\xc4\\\xe8\xef\n\xaen\x8d\xbb\x87\xaa\xcaP\x16o\xf2\xa2\xa9U\x17U\n\x7f\xf4\xea$\xccD8>\x1c\\\x8fh<\x1e\xeeS\x04^%o4a\xffL\xce\xfe\xf3og\xc94\x9b\xfd\xe7\xdf\xe7\x87\xbf\x9f\x1f\xfe~\x81\xfe|r\x86O\xc8\xd9\x7f&\xb3\xf3\x87/\xe7\xa7(\xf9\xd3\xa1W\x05\x05\x91\xcf>&\x14C\x9cQ\x95c\x82{\xe9)X\x90\x8f\xa2\xd1\xe9zj\xac\xe2\xbd\xc6\xbe\xfc\xdc\xbf2\xd6\xc1re\xa5\xd9\xf9\\\x1dS?\x1f\x8f|\xf5VG\xbe\x92\x8a\xce\xc3\xadz\xcf\x9f\xe9\xf0\x91\x93\x1a\x9e\xdd\x0d\\K\xc3\xab\x1a\x85\x8d\x9c\x9c\xa4\xf4\x1b-\xb4\xe3\xe3\xa8\x9f\xfa\xed\xf61T/-9\xcdg\x17`.\xafI>{4\xc7*\x10X\x0d\x13h_\x91\xbe\x04X\xb9\x14bg\x90\x18:\xc6\xad\xf3Slf\xfca;\x17\xd0x\xb0\xad:\xbfZ\xf5&\xa5$\x0c\xea\xe3\x91\x8dk^\n\x9d#\xc9BX{A\x82\xbbO%ZD\xc7\xe3\xa4$\x86\x83IQ\xdfwK[\x0d\xc5M\x80@\x0b\x0b\x9c\xebV\xb9v\xbc/\xbd %\xb9#\x98\n\xc4?\x93G\xfc\xb5z\x94\x94\x17\x05m[\x93n\x9f\x89\xa8\x92\xd4\xd4F\xbb-\x8e\x8a]#\xb5xU\x14\x95\xadz\n.\x84s\x9a\xfa(\xf0\xb3'/~p<]\xcc\x07\xad+\xc6)\xeb\x93ow\xe8l:\xc2{\xfb\xf66/C\xe5nU\x12\x96\xbcxv\xa1Cuv\x9c\xac\xda#\x1e\x9e:O\xe4\x04Ly\xb5\xef\xd0\x12\xda\x1dM\xa8\x02\xbf\x8a\x98\x85\x7f[\x1f\x8e\xf9\"\xb8\x83\xa8\x92n\xbc\xb6\xc17\xf8\x0b\xef\x1e\x85\x8b8\x92Z$]JmF\xb3*?\xf1\xb0/\x8a\x99\x0b\xab\xe1\\k:\xa9\x87\xca\x15\xc3\xfa\xe9d\x18\x12\x92\xbf\xf5\xf0=$\xc6\x84\xefn\xed\x15q\x19z\xac\xeaL\x90\x84\xc2\x931\xe8X\x05\xb9k\xe1\xce\x0c\xeb`A;R%\x0c\xd7\xb8@\x13\xb0\x91\x98\xac\x86\x81\x089\x1e\xabF\x9d\xe2\xa4\xf0\x02\xfcl \xd3 #\xa1\x12\xe4 r\xe2\xa4\x91\xbd\x8a\xbb\x92\xd8\x0c'\\\xac\xc5\"L\xe7\xd3\xcds::\x17x\x8b\xe41\x9f\xb7m\xb25~4J\xb7V\x11\x7fp\x9f\xc0;B$<\x9fw8.,\x8ew\x06\xc7\xdb\x10\xc7K\x0c\xe7a\xb6\x92\xb8^\xc3\xf3\\g\xd9\xb5\xb2[F\x85\xf6\xcd\x90\x84lD\xbb\xdb\x05:C\x85}\x89n\xed\xbc86d\xb4\x1a\x8fm\x9a\x80\xa9\xfd\xa5\x16z\xad\x16z\x8b\x97x\x8d2\xc7\x07\xf0\x15\xa9\x92\x02\xef\xf0\x06\xe1\x1bR\xa8\xc7vf\xd1\xec~\xb9N\x181\x00C \x85\xfck^\xf2h\xa1V\xcd\x86)\xcf\xc9ZQ\x8cD\xfckuE=\xb5\x99\xae@\xaaw\x89\xaf\x14@-\x19%\xb1\x86\x14lu\xe3\xf1hu8\x8c.t\xfarPx&\x85\xd9\xf476\xa0\xca\xc9\xbe\x84\x99\xe9k\x01\x9d\x83\x1c_\x01%K\nI7\xf5\xb2\\\xdd\x94R\xc5\xb2\x13\x01' \xbd\xb6*4 \xab\xb9\xce}\xab\xc2 \xc0\xdc\xbb\x99\xeao\xc0\x0cDS\xcfDp\x83;\xea\xa7\x06Y\xcb\xcf\xd7 \xf2A\x18\x8f\xc1\xcf\xe8s\x12\xd0\"\xd26U\xab[\x19\x14{=\x1b-T/M\xb3\xab\xe8\x1b\x10\xd9\xd5\xb3&\xcd~\x8a\x9477\xaa\xf3\xeb\xc4[ \x84 +\xbc\x87\xbf\xd1\x05\n\xe2\xebxJ\xf2\xc9~\xdd\xcb\xcf\xac\xafK\n\xa7\xd4\x9b\x96\xe6\x86\xc3\\\x99\x14\xfa\xca\x84\xab\xe7\x8cT$(\x1b\x98\x87j~e\x9b\xbb\x19\xd8\x11\xd4\x9d\x9b\x9c\x87$.\xe8ir\x14\x97G\x99\xa2\xba\x17\xd2S\x1dz`c\xef+\xedk\xfd\xee\xe5\x9f9`\xba\x97>\xcek|\xaa\x1e\x8aH\x91\xa9_M\xeaXE\xce\xcd\xb3\x9c\xfe8\xf4\xf6aL\xfe`\x84\xf3 #0\\\xb9\xe0.% \x10B\x10\x12\xca\xef\xa3\xfer\x1f\xb2\x16\xb8\x7f\xf6\x87\"\x07\x19]\xd8\x00\xc5\xce\xa9\x83\xbb\x10 \x9e\x07\xfa\xb4\xfb\x86>\xf3\xfd\xda\xa7t<\x1erN\x1c\xf5Z\x99o\x10\x12\x88\x19\xa0\xd5KhqL\x88\xe92\xdb\x8c\xealf:\xc0}\xd7\xf7L\xd8\xa8b\xe1\xf8\xb51\x83\xa2\xe9\xc8\xfevw\xf9\xa5\xd4|t\xe9\x88\x90\xf2\x1f0)\xe5\xe08\xe2\x92p\x80\xd6\x07\x91Xr\x13b%w\xf8\x1di)o\xdb\xd4\xbc\x96\x98I\xd7y\xfb\xdef\x1f\xd4\xd1j)\xe8\x9b} F\x1dQ\xc6&\x00\xb7'\xeb\xfc\x9aF\xfe\xf8\x11\xec\xfdRH*\xce=_\x92\x05\x08\xe0u\xef\xfc\x1fu\x8b\x12:+\xe7^\xb2\n_n*E\xac\xafn\xbc,\xe7\x9e\xffb#\xe2,Z\x9c\x9a\xfcf\xbf\xd1o\xbc7\xa45JH\x05\xaa\xaa\xafb\xb8\xbf\xe9X\xc5\xbaS\xa7h\xc2\xc2\x04Z\x14\"\xe5>y\xf6O\x10\xab\x07\xacZ\xa4W\xaa_C\xf8\xe6\xb3\xbb_\xeat\xea{\x80\xdbD\xb3\xc6d*Au\xde4\xa5/]\xe5\x1d\xeaoC \xaa\x12\xbd\xd0\xc5\xf6w\x9f\xc2\x1f|\xae\xe5\xda\x19!7\xca\xd922Y\x14!\xcf>]\xe2\xa8f\xd5\x0dD)\xd6^k\x0f\xbc\x1cBr\x04\xe7\xf2i\xedg6xu\xe4d\xf2\xe9~h::B_\xea\x8a\x06_\x1b\xf5\xc5\xc9\xaeG\x8d\xca\xdf-2;\xca\x8c\xcd\xbf\x7f\xa0\xc1\xd0\x92\xf7\x1b[\xca\xb3\x9d`\x80\xd0\\\x08\x1f[e\xa8\xa9\xe4^T\xa6\xd6\xfb]\x0d\x04\xcbp\x90\xc78\x8a\x03\x08\xf4\xca\xf9\x94\x10GyC#\x93\xac\x00\x02j\xd8\xa5}`\x9f\xd4\x0dSXHQ]\x82\x13\xa2\x07\x1b-\xf9\x9a6\x1e!\xd5\x8d\xa3#s\xd1\xab\xe8\xe9\x81\x97\x16?\xdcO\xc1N\x06\xab\x8d\xde\x06\xe6'\\$\x94J\xbb\xcc\xbdt\xa1m\x98\x9a\xbb\xbb\x05r\xff\xac<\xb6\x05\xc0R\xa1\xb0h\x86\xbbu\x07x\xfa\x84 <\xd8\x10\xf6 \x1e\xf0*\x8dR\xdf\xd8\xe4\xde\xdf\xf1\xc9.)\\\xec\x8c\xd8\x88d\xe6\x15\xc2\x918\xa7X\x0b\x0b\x10\x82\xed\xd6\xec\xd1%\xae\xd2?Z\xd3\xc3\xa7\x1b\xc6\xf3o@\xd2\x03\xaa51\x02\xf9B\xfb\x17jx\xc9,M\xd3v\xb0\xc9\xdc\x8f\x1c\xcb\x90\xf6`%Lw\x00V7\xc2\xdd\xef\xd3\x8b\xc0\x8fu6\xc7\x869{\x99^\xcdC\xf3`D\xdd\x8bn\x0e&<\x80\x8b\xbb\xbf1\x9b\x0b\x7f\xd1\x93\xdd`d\xdd<\x0b0\x9e+\x8c\xda\x86\x15X\xfa}\x82\"\x15B\xb8\x0d\xfd\x7fI;D\xc6\xbfv\xb4\xcf\xfd\x1f|\xf9K\xd9\x16M\xb9)Y\xce\xeb&\xe3\xf8\x0f\xbe\xfc\x95\xf2\\\x9bHBu\xb7\xc1a\x96|\xcf-\xbc\x14hoal\x00\x98\xa0-i\xbc9\xd4\xea\xbb\xd7\x17\xa9\xbd\xcf%|v\xde6\xa5$\xa8.\xa8\x84\xabB\x03,aB\xe0\xc7\x8f\x1f\xfd\xf8T\xe3:C3\xe1\xa9\x0e\x15\xceJ\x88\xdam\xac(\xea7\xe1\xe9e\xf8\x00Q\x1f\xb8\x90 \xcf\xa4\x08?>\xbek\x18\xe3=e\xbb\x0dm \x88\xd1\xe8\x1c_Q\xee\xeb7\xd6\n\xef\x9a\x08\xa1\x9cwm\xf8\xb5[\xe6y\xcf\xee\xeb\xf4R\x08\x84\x8f\xf6\xd3\xf2\xe6\xde=\xb5\xbc\xb9\xab/\x85\xca\xef\xe9Q\xb5\xb8\xb5_VV\xf7\xee\x11\xdeF\xdd\xd2\x97\\\xfb{w&+\xdf\xda\x9b\xa6\xa9{w\xa8\xeb\x0b\xe1.\xd6Lrz\x88>v\xf1\xe4\xb1z\xa5\xaa\xa2\x94U\x84%\xcf_\x9c?\xd5\xafTA\xd0\xdb\xd9\x17\xa9[\xfb\xaeui\xdf\xa6\xae \xc3\xd1\x93\x97\x08\xaf\xc9,n\xe8\xa6\xbe\xa6?/\x97\xe0>\x91W1x\xd0\x1b\xa7XH)d\xe3\xfd\xc4s\xbc\xf1bo\x18Y9\xc6\xb1M\x18\x03\xc9\x91\x9aV\xfe\xfb\xb5\xc9\xb7[\x08\xc4\xa1^\xb7\xd8\x9c\xd8\x9e%\xd3%RR\xb9\x95\xe4\x80\x9d+g\x1dmT*y1\xd6\xe9\xce\xe7\x08_\x11u\xa8\xfd\xa2O\x87,\x8e\xb1\xea#\x8b\x17\xa6\x8b\xbf\xa8Nux\xb0ET\xe4\xcc\xc6\xf5\x92\xec\x98\xe6\xcbT\x19=`U\xfc(`\xd6>\xd6F\xedn\xbb\xad\x1b\xae\x1eI\x18}\xfa\x81NL\x06\x96\xfd6\x8b\x7f\xa1\xdb\x86\x16\xb9\xac\xd5=\xe5\x8e\x0c\xab8\xf6G\xba\n[\x0f>29\xd2\x85\xcb\xcc\xd5f\xf1\x87\xbcm#x\xa6n43\x90\xb4N\xc0M(\xe7\x91rU\x97\xbd\x18\xc7e^G\xf9\x1f\xd7.\xf7d\x1ac\xfdJ\x0f\xbc&\xe2\xdf[\x1a\xd5[8S\x17`P\x8e\xf6\xfa{\x16%\x90\xf6>r6\xc8H\x07\xbe\x88\xc8\xabH\xedY\xb1\x88\xb1z\xe4w\xb4;\xf59\x83\x00\xbeP\x1dx\xb7u\xd4\x8f\xdf\x82\xa3\xb5\xf1\xb9f\xf5W\x1c\xb5\xd4\xf5\xa2\xaa/R\xd3\xd0`\xed;\x1az\xe9\xb5\xb2\x07A\xb2-\x9f\x04T\x1c\xf6\xc8\xd0\xd52}\x80u\xd6\x02Cb\xf1/e+)G\x1f?\x10\x8dW\xca\x9eRp\x8b\x16\x10\xa0X\xe2{\xa1\x11\xae\x9a-\xa2\xa4n\xa2\x85\xa6\xfd\x85\x06\x0f\xa51.\xf2bM\xb3\xf8\xd7|+\x87\x87e\xcf\xdb\x08J\x0d\xd25\xc2e\xf9\x17z#q`6\xe1w\xb6\xcb\xff0\xf9\xff\xfahKc\x81o\xc8~\x90(\xe5\x96\xeb\xd2\xba,\xdb\xb1\x12\x96\xf7\x81\x97\x11\xed\xcc\xcb\x94\x16\xe5EQ\xef\x18\x87W%\xbarT\xac\xf3&/\xe4^\nv\x99\xf0\xed\xc5\xda\xcc\n\xf7\xca\xb8\xc6:\xc3\x01.\xf0\x0el\xd0+\xbc\xc6\x1b|\x85o\xf05\xfe\x8c\xbf\xe2o\xf8\x8bf\xa1\x97\x84j\x8f\x19\xfc\xde\xa6\x97\xe5D\xbd\xb0\xf3\xc3\xd1z\x99\x84M\x0ey\xfc\x89\xc0\x8b\xc1\xf7^\xb5\xf7\xd3\x8b\xec\xfd\xe1pnu\x17\xef\xdd@\xc6l\xfaZg+\xa3a\xf8\xe6\x8e\xc9\xec2Hn{848p\xef\xb1=\x96\xb6\xc7\xda\xf6h^\xccy]\xd6\xd3:\xec\xb2<\x1cJ\xec\xbd\xdc\xc8L7\xad\xed0\xb7\x1d\xfe\xa6#\xbb9\xf9u\x9ag\x97~A;m3\xb0\x98\x98>w\xdb\xca\xeb\xb4\xb0\x9dV\xaeS\xa8\xe2wRM\xab\xb0\xd7bZ\x04\xbd~\xd4\xfa\xa2\xedwk\xfb\xdd\xd9~M%\xbf\xa3\xddt\x17\xf6\xbc\x1d\x8f\xb7\xeaBL-\xf8\x14\xc2\xa0\xc3OlV9\xfb$\xb2\xbd\xf7\x07\xae\xeaz\xdb\x03a \x19\x89\xdd\x07\x7f\x94\xe5t\x99=:?\x87\x86o\xd8nc\x1b\xadt#Y\xe87XMW\xd0`C\xb9#\x9a5\xa1\xf0 \xd0_\xbe\xf5\xe1\xb0\xc6:\xb0\x8e#\x86\x0d\xd4T\x85~\xed\xcd\xe1\xb0\xc1.\x9d\xba\xad\x7fE\xa8\x9fe\xddkqu8\\\xb9L\xad\x06\xec\x1bkCy\x1b\xcc\xf3fz\x93\xc5'\xe52\xc6\xf9r\xf9{K\x97\x1d\xb2\xbf&4\x0d\xbe\xf8C]\x1f\x0e\xd78\xb4\xb1\xd9\x86\x9f \xed\x9a\xdf\xbc\x96\x9f\x0f\x87\xcf\xb8{\xae\x9b\xa6_\xbd\xa6\xfa\x9b\xdf\xf6\xeb\xe1\xf0\xd5p\xa5\x8f\xf4\xea\xcd\xb7\xadm\xf9\x8d\xd04\xf8\xe2\xb7\xfbv8|\xc3%\xe3\x8f\x1f59\xbb\xa2\xb6\xd1\x17@\xa5)\xf6[|9\x1c\xbe\x08\xa1^#|\x0e_#\x90\xbd\xd0n\x9f\n\xab\xce\xa7\xbe\xa1+\xf7\x87>\x0b\xec\xdfA\x16{\xab\x8f\xaaOU\x9d/Kv\xe5\xd5\x95|\x1e*\xfd\x9ao1ui\xe9\x88\x8d\xfc/\xb9\xa8\xc9`G\xdb\xa7\x19\xc7\x92$\xda '9l\x8d\x89\x86\xb5\xde\xaa\x1e\x8b\x14\xee\xa1?\xc9\x82d\xaf\xf2\xb8\xee\x05\xde6tU~\xa3m\xb6\xc1aw\xda\xa3S\x19K\xbb\xe9\xf5T\xc0W\xe3{\xf1f2\xe8,.\x81\xac+\x08\x0c$w\xd0\xd5xL\xe1-\xbb\xfc\x17d?\x9b\x12\xa6\x1f)W\x0d\xab\x0c>\xd6n\x1eU\xf5\x15\x8ed\x17`^\x81>\xa2\x0d\xe5\xebz\xd9\x82/\x9b\x86\xd6\xe5m\xed\x91\xd5\xa4WBF\x17j\xa6\xf0F\x94\xb46kX\x82\xf0W/\xeb\xdb\x15\xa68~\xf7\xfe\xb7\xe8\xd3\xef\x1f>\xbc\xff\xf8\xdb\x9b_\xe2\xb0\xc2\x8d\xac\xf0\xcb\x9b\x0f\x1f\xdf\xbc\xfeY~\xc5\xb1\x8446\xae\xdf\x92+\xbc\x97K\xf9\xc9\xb5\x91\xda\xb2&\x98\xf1\xf8\xd2/Wm\xf2\xe5\xf2?\xea\"\xff\xbc\xab\xf2\xa6\x04\x88l\xb9\x96\xb1\xa4N\xad\xed\xed\xb23\x13\x1e`<~\x1f$\xac3\xe5\x03\xe9\xfd\xa8~\xc0\x0c=\xe7\xcb\xa5\xd7\xa3fe\xf8K\x08q\x17\x81\x8d\xe8\x03\xba7\xddi\x99#\x89\xd5uv\x8c\xc4\x11\xe8\xb5\xa5K\xdd\x97S\xc5U\xfd4\xf9~\xca\xea\x8a\xca\xc5]M\xe2r \xf9:\xc7\xe3\xa4\x81-\xb2\x12\xb8I\xcb%i\xd2\x93riB\xac\xc1\x1f\x08sH\xcf=0\xcd\x06\xf2\xf7\xe1\xd1\x05\x12K\x07\x97\x85\x08 \xa1\x0e\x12>\x90<\xdbm=\xaf\x87\x81\xa8\x1bS:\xe3\xf3\xc3\x81\x1agU\x83JuQ \x89\x1b\x07\xf3\xd2\xa8]\xa7S5\xda\xb8\x0c Ex4\xe0\xa1\xc2\xea@\x83\xf8Bo\xa4$\xdb\xd0\x95\xcd\x94\xa8\xa2\xcd\xe9\xfe\xf4M\xbbs\x05m\x08K\xb81\xec\x9a\x85+Y\xc4L\xb6{u\xf5B\xcc\xfd\x0c\xc2\x8d\xb0\x9d\xf8n\xc1\x96Z\x0d\xbc\xd8v\x1b9\x7f>\xed\xb0\xaf9\xa5>;\xde\xb0\xeb\x84!\xd3\xed\xcf\x12\x84\xc4D\xb0p\x0e46\xb4\x87[\x00\x97\xc8\xbf\x7f\x0b\xa7\xe4s\xbf\x8e\xa7U\xe5\xd6e\xd8\\\xca\xed]\xbd\x90\xfe\xac]\xc7O\xee\xcf\xd1D\xb9fX\x89W?\xdaP\xd7\xeeu\x98AR-\x90\x0b\xb7q_T\x95^7\x0c\x89\xce\x885\x04 \x1f\x8fG=B\x19\x8f\x15\x18>\xcc{\x88)B\x05D\x84\xef\xf4T\xc2\xc3\x8a\xe6f\xefSx\x7f\x89(\x12E\xce\x8b\xb5\xceW\xda\xf1\xb0\xcf\xcdv0\x97\x906gj\xeb\x81\xc1\x11V\xb0U~a\x98\xe5\x1aa\x7f\xe2\xd4\x8f\x8b\xd1&\xfb\xa0\xaad\x1eV\xaf6!g\xb89\xa8gt\xde\xdf0?3\xed\x95\xac<\xf3\xca6\x92+O\x97\xd1\xe7\x1dW\x97\xf9.\xa8\xb8v\xd8^.z(\xab\x9c\x038#jFE\x00\xf4\xc4\x87\xe2p\xe8\xd3\x05\xb3t\x81\xc3\xaa\x86k\xe9\xe5d@n\xdd\xf1\x83\xc8\xf5\xdc\x970fT\x85\xab\xf7B\xd3\xbb\x95\x050\x92n}\xc2T\x82\xe1\x92\xe5Uu\xb3\xd7\xac\xb4[K\x08\x11\x90,\x84du{\xb1#\x0e\xf6\xef\xd5)\nsE\xab\xf4R\xe1d\xb9y\x9c\x06a<=r\x14*\xa4\xe7P\xc8\x86\xceK\xf2.\xd7\x06\xb7U\xc9\x8a\x03C\xb7\xe1\xba\x96\xa9\xd4}Ji\x0d\x99pao\xa3T\xb3\x85\x8b\x1cOvAJv~8\xd4\xe6\xe4\xd6\x91\x86\xca\xff\xdaQ\xfb*L\xcb\x933>\x1f\xe0\x02\x0cs\xdc\xc0\xeb\x1c\x98r\xe7\x80\x06g\x8c\xe3\xf8\xf6\xf7n\xb8N\xa3s\xf3tVt\xaf\xed\xf1\x9d\x19\xdf\xce'\xf6\xa4\x92\xaa\xb1\xa6Y\x87K6\x80\xcb\xfe1\x15\xebv\x16\x8f\xb9\xc6d\x8cT\xcfL\xd3}\xf7\\\xd5\xc5\xc1Y-\xcfA\x7f\xb6~\xe8\xa4X\x9e\xe0\x0f\xf5`\xe0\x85{\x9d\x97\xcaL\xe8\xbfGT\xca4\x1e\xb9\x8bw\xf8f\x8fhx\x90\"y\\3\x1e{\xf1a\xb5Y\xd4\xf3d\x80\x14\x0e\xae[\xf0^\x08\xdd\x14\x8e-\xd8\x80\xbb\x82?\x1b\xeb\xb1`\xce\x1f\xe1sx\x95\xdc\x1c<\x9d']\x01\"\xe1\xe4[\xc0\x8a\xd0\x04Q\xff\xb2\x91\xb8\xdb\xf7\xfd\xa0\xcc\x85\x1b\xd0\"\xaa\xd4\xf1~s\xe5\xbb\x17\xbe\x98\xa6\xf2D\x90\xca\xbclQ\xf5\xbd\xc1\x1b,\xc5\x16\x9br\xd4gt\x84\xdb=t\xb7t\xc0%\x1e6\xf55u\x18\xe8\xe6\x8c\xd2*ap\x84i\x83yU\xa9f\xad\xff\x08Yb\x06\xdfVM\xc2i\xea\x98\xa0\xd1\x1e\xcb\xc9[\x1a\xdb\xd7v6\x80\xf4=\xc6\xbd{T\xe4\xab\x88iQ\xd1\xdc<\xa0\x9d\x04a\xfa\xed\x01\x10\xae\xb7\x11\xe6\xba\x8c\x92k\x89X\xf7\xab\xd8\xbc}7\x8d\xb0\xcf\xf7\x0d\x9f\xa2\xf3\xa0X\xaf\x9db&A\xack\xf7\x1aj24\x88\xc9TNgnC\x18B\n\x02\xd2\xb1\x0eCe\xc3p\xb1\x01\xb8\xd8\\s9\xcd-\xb2!\xcf\xac\xd4\xa7\xa3\xcc:$\xc1#P\xca!F\x8b\xf05\x1c\xc8\\~\xf4\xd82\x1a\x0f\x0f\x0f+\xef\xcb\x9d\xc2>#\xb4\xaf\xa8q\xf3(=\xe0m|M[\xea@m\xc1Wci\xaf#\x94\xd9|Y\x17-Xk\x1d\x10\x92\xf5\xb9X\x08\xda\xe5\xd4;J]\xd0\x85\xaf\x9b\x16\xef[*w\x038l\x90\x18G*\xca\xf8\x7f\xe4M\xc6\x88r\x1b\x11`X4\x96\xb0\xf1X\xbd04\xcb\x9en\xf2-\xc4\x0c\xd3\xfe\xed4\x8ca*\xf5\x15cE\x16\x0b\x84\xd2\x86.w\x05M\x12\xf0\xfb%\xaf\xe8)?e\x08e\xf1\xbbZ\x99\xcb\xdaX\xc5\x01\x08\x85\xc8\x8e\xc6\xee\xa2\xa5Q\x02\x115\xe0J8\xe9\x04\xd7\x90\xf8\xf6\xa3\xa9A\x1eq\xbb^\x8d\xf7\xfa*ma\x1d.t\x10~B\xbb\xcf\xb18\xaaI\x1dR\x01\x0d\xa2\xb3q\xc2\xb4\x0e\xd3\xe3O\x1c\x155\xe3%\xdb\xd1\x89oAjD\x90\xbe\x10\x97j\x80f<.\xc7\xe3D\xfe&\xbf%%B\xc2P\x06\x15\xfd\xd3\x17P\xd3\x0bH\xba\xb7\xd6\xc5\x19\x83\xf7\xbc#\xae\x1e\xec1t8\xf4\xd9y3\xd5\xb4.\xabg\xcdxU\x12:\xcb\xe7\xf6\x98p\xfd\xff\xc1\x97}\xa6\xdd\x91\xecuwJ\x08\xee\x87e\xbdg{\xc9\xe6Mc\x04\xca_K|\x0c^Q\xae_5\xba\xab.\xc3\xee[\x1b\x89~\xe7\xcc\"\x1f\xe9\xaa\x1d\x92\x92\xa2\xae\xc0Q\x1e\x0e\x0c\x9c6\x8eH\xc0\x9eu07\x96K\xf5\x96;c\xb8\xaa\x8b\xbc\x82\xab\x9cB\x84R\\Kyb\xe3\xdf\xb4\x08\xd7*L \xcf\x1b\x0ew\xb4I\xfc\xa7\x18\x02/X!\xcd\xd3\x1e\x99o#`s\xd2\"\xdc\xe8z=\x8dN\xaa\x8f\xad\x08\x9aSg\x16qr\x9d\x96\xb5\x8f\xdaI\x06\xac\x8a\xe5R\x1b\x15\xa3\xbcjh\xbe\xbc\x89\xe8\xb7\xb2\xe5\xed\x02\x89!k\x91z\xc7.Q4\xd5SRu|~\x84\xb2*\x0d\x9a\x06k\x84G\xce\x02\xfd]~\xf6f\x9f\xdb\xd6bp\xf0\xf0\\\x84\x1da\x7fir3\xa6|\xb0\xa2\xdc\x06\xab5\x9fx=\x08\xd1 \xca\x0b[9\xd6Pz\xdc\xa6\x0e\xb8MI\xeaI\x19\xa9\xc7P\xdcI\x81\xb3f\xaeB!e\xc67\x02\xe2\xc7\xcasaV\xceE\x10@\xf6\x9b\x17\x1a\x9bv(\x9cvl\x11]Z\xf0\xc3\xd0:\xdd\x97w\xe4v`\x1e\x10\xb1\xb9g\xe6\xe1\xeb\xd0\x06\xa1\x03Gur\x1a\xf4\x8c?`\xa4\xe1A\xa4H\xb4\xef\x9c\x12\x0e\n}0\x0f\xac\xa1wfO\xb8\xbb\x05\xf0\xc4\x00\x11Dt\x1c\xb6U\x99f\x81&\xa0x\"\xefI\xe6F\xda1\x0b\x93\xb7\xd1F\xb9u\xf8\xe29\xf8\x97h\x91u\xd2\xc3\x86=\x97%\x1e&6(\xe5\xe1\x90\xd8\xdf\xc4\x98\x91<\x05\x83!\x9f\xca>y+f\x03iH\xa4\x88IG\x89Y#{\xe88\xbf{*l\xc8E\xf2\x19\x7f\xee\xbe\x06#6\xd5)\xfe\x9c\xfej\x0d\xaf\xea\x9b5\x00k\xf6\xfb\x86\xec\xab\xfa*A{\x81\x01I\xf2\x87~\xac\xb4\x17\x02\x7f g\xff9\xcb\x1f\xfe\xf7\xe5\xc9\\\xfes\xfe\xf0\xe5\xe5I\xf6p\xfe\xe7\x93\xb3\xd2\xf9\x91\xfc\xec\xbf\xeaR\x92&s\x91\x12<9\x9a\x82\\\xaf\xa2\xc0x\xa2g\x9f\xadi\xb4Y\xe3\xaf\xe1d.\xd3^\xb9JF\x1f\x8e\xbf\xca\x0f:X\xe7\xeeM\x0b\xcb7T\x05\xddU\x81/\x97\x10\x1ca\xe4\x85!C\xf0\xa7u\xc5\x83\xa2\xbeg94\x0c\xb5\x1fx\xb1\xa3\xfa\x01\x1fy\xdb\x855\x08?\xf0\xb6\xcd\x89q\xb1\x05\x1fW\x1bWE\xdd\x88{^3\xdb\xba\x05\xab\x10\x1b\x8f\xfb\xd6\xcf\x07\x06\x00\xf5\x04@\xd6\x8d\xa3U\x95_\x19\xf3\xb8\x82\x89\xebD\x9b\xfe\n\x99\x10E\xea\x91~=-a\xa4\xac\xf4\xa4\xfa$IT\x10]H9D\xe1\xf15`>?\x1c\x92\x9c\xe8\x00\xbb\x18\x1ad\xb3\xb9\xc0\xa61d\xef\xcc\x11\xc2\xa5\xbf\xccdt\xeeY\x99\xd4\x84[b\xdf\xc7P\xec\xa92?N\x9d\x13\x13\x9e~\xa6\xab\xba\xa1\xd3\x8f\xdeQ\x90\xe3\x16\x9b\x0f(\xcb}\xc0!\xf6\xa3R\x82\x88\n-\xaa\x9c\x8f\xf8\x91\x8c\xdb\xcd\xe1\xe0%p\xa1:\xae\x87o]\x08^\xb5\x7fL\xfc\\>p%\xdeS\xa4(yE=EJ\xa2\xbdyE\xce\xa74\xd4\xa3\x1a|\x8e9\xca\x12\xea\x83\xcf\x03?\x01\x1d\xab^~W\xf1\x0d\xca\x16,\xae.\xde\xa7\x83\xec\xb5\xb6Y\xc2\x05\xab\xb6\xbd\xf00\xd4+x\x97\xfb!\x16k/\xe6b\xc2\xc9o\xa0\x93u\xddN\xc2[M\xc8w\x8c\x84\x9a\xfe\x1fD\xddy\xc5k\xce\xb7mvv\xd6\xe4_\xd3\xab\x92\xafw\x9fw-m \x826\x83W\xd2g\xf9\x1f\xd7\x0fu\xbfu#\xff:\xdb\xe4-\xa7\xcdYU~>\x93\xa7\xe2\x99\x04#\xfd\xa3\xad\xd9\x9f\xfc\xa4\xd8\xbf\xb9Sv\x9f\xb3\x9b\xf7\xablF\xf1\x1fs!\x04~\xfa\xe4\xc9\xcb\xcc\xf7\xa4\x08\xfc\xddiJ\xbfm\xeb\x86\xb7\xbe\xce\xf5`\x0f\xbe:?\x1c`\x1c/i[4%\x1cMq\x16\xff\xea\x99\xc8Wu\x13)\x86\xd3\xd0\x15m(+h\x04\xca_\xe4\xee\xc9\xc0\xf9\xb5\x95\xf3\xdd6\xf5\xb6n\xf3\n\xc5:\xc9\x96}\xdf\x89c\xf3f(\xcef\xb1r\x07\x9e\xe3\xd8%>\x8a\xb3\xbd.\xce\xf6\xa6mk\x12\x02\x02\xee\xe2l\xb6\xd7\xae\xc5q\x167\xb4\xcayyM\x1f\xca9\x98\xc8$\xb1\xc0^\x95\xf0\xcb\\\x08\x1c\xe7\xd67\xfa\x8372x\x14\x8b\x07H\xe0'\x17A\xee\xad\xfb\xae\x8aB\x96^\x99\xec\xec\x0cFV\x85i\xdd\\\x9d-\x9b|\xc5\x1f\x9e??Se\x12\xe5n%\xefW\x9f\x97\xbc\x928y]76<\xb1w\x97\x01\x8bhx\x18 S\x95\xff\xac\xf2\x12Z\x94*\xe9\x02\xc7\x9b\x92)\xcf\xd8\xec\x02\xc7\xa5\xfa\xb5W!\xba\xb3\xf8O\xb1\xc4\x15\xab\xd9;z\x05H~k\xd2\x0b\xda~\\f\xc6M\xc9\xca\xcdn\x13g\xe7\x83m\xb4w\xc7\xb9l\x9bW\x95^F3\xd0\x99\x07\xf4\xd9\xc0\x80r=\xb5\xd4 \x07\x98\x0b\x1c\xb7\xc0\n\x95\x0f{\xb6\x8f)\x93c\xcf\xec\xc4\\\xa2H\x07\xa2d\xa4~ZIK\x93\x9a\xc0\xa0[\xf8y\x0c]\x16C!e\n\x1cx\x19g\xbc\xd9\xb9\xb0\xd2\xb1<\x98\x84\xd9\x0837\xaa\x01\xb1O\xff\x92&\xfa\xd4o z\xd7\x94\x0f\xed6\x94\x83[\xc2\xbb\xbd\x11T\x05\x8c\x7fW\xe7:\xb2\xd9\xe0\xb459\x0e| x\xc9\xe0w\x8d\x1d\x85,)]\xbdg\x95\x8ft\xb7\x84\xb6\xae\xda\xa18\xa6\xdfr\xb9\xfa\xed\xf1%\x02\xefs\x1cov\x15/\xb7\x15}\xefO\xda\x12\x00\xfdVT\xbb\xb6\xbc\xa6\xbf\xfa\xc4\xbb\xc9\xbf\xa9?\xba\x0d\x84\xdf\xe2\x96Jv+\xdc\xda\xc1-\x95\x9c_u\xf6={\xc4\xf3\xcd\xbe\x7f;\xbb1\x85{\xbaq\x1b}4\xf4\x8a~\x8b\x03\x1e\xfa\xb6\xcf7\xbc\xad\xe2\x98\xb6\xf7\xf9\x08x>\xb3\x12\xf3\x0e\x91(\xc4\xf4\x06\xbb\x1f^\xbe\xb7\x99\x8f\x96`o\xdf\x87<\xe5\x11\x9c\x97\xac\x87\x93M\xfe\xedC\xb8\xd3\xef\x07\x8c\x9e\xc3?\xd4\xd6\x9f\x88;{\x8f\xe1\xdf\xe3~G\x8f\xc9pN\x9d\xe3\xa6{\xdc\xdf\xb3\x0b\x85?\xa9\xefux\xe1\x0f\xe8O\x11\xf5\x87\xffq\xb7\xfe\xabM\xf8\xd8\xdf\x13\xe1\xc8~\xec\x84\xef\x19\xf4\xbbv\x8c\xbfbs1\x04\xa6?\x07\x10y\x0d\xcfUg\xe6m\x1c\xb4# \xf4\x0e9{\xac\x0d\x01\x1d\xc2\xe9\x1d\xd7r2\xc7\x0e\xd6{4\xbe\x0b&y\x8c\x9b\xa5\x198x\xb4|\xfc+]\x96\xa0\xa0\xddV\xe9\x0d+\xea\xa5\xbaC\xef\xd7)W]\xec\xf25e\xdd2H\xbe\xd9)\xd3\x02\xd0}\x98\xa0\x15z\xefW\xb9f\xf4\xfe\x95Y\xcd\xe3\xae\xb4\x17r\\%\x0b?\xfa\xb1\x8fr\xfd \x16\xe7\xcf\x1e\xa3I\x03\xce\xe9\xe4\x81fO`\xb1=[\x96-?kv\x8c\x97\x1bzF\xffk\x97W12\x96\xa3\x07./)i\x04~\xfa\xe2y\x08b\x07@\xab\x87u\xc2\xb1\xaa\x0b5\xe5q\x80\x1br\x8ekr\xae|e\xea\x9f\xf8\x045\xa7\xa7\x98\x11\x9a\x16\xeb\xbcy]/\xe9\xcf<\xa9OO\x11f\xaf\xc8\xd3\xa7\x8f^>\x1b\x8f\xd9O\xe4\xe9\xb3\xc7\x17/\xc7\xe3\xfa'\x0eN am\x84\x9f>{\xfc\xe8\x9c\x90\xe4\xd9\x93\xa7\x17\x8f\xc6\x0c\x8d\xc7\xb2\x0b\xeb,*\xbe\x17w\xde\xc4\x19fw\xe2mW\xb4\x8f\xd4,=\xe4 \xfc\xe2\xc9\xd3\x8b\xdb\x10\xf6\xbdP\xe9\\\x0dL\xa9\x80\xcbV\xd9\x86\xc2\xb7\x12h\xdf\xee\xb6\xb4\xb1v-\xb9\x1e*N^\xc7\xe3J\xe7\"\xc8\xff\xb8\x0e\x9c\xad\xca\x9a\x91\xd1\xb9\xf0\x0c\x8fL\xe0\xc7\xe7\xcf\x9f\xfcX\xe2\xf4\xa2\x06\xfd\x1c\n8w\x86`\xc1\xa53%\xf5\xa4#eI2\xfc\xce3\x1d\xcd \x8c\xed(g\xca>\x0eq;\xd55\xc3\x03$<\x8bK\xde\x8f}\xa8\xef\xe5l\x84\x0f\xb3T\xad\x84\x1f\xb2UW:t\xafu\xf7+\x88M\xefPQf\xe2g\xe4.\xe0\xd6\xc4\xbc{)\x11\xf5c\xf6Kd\x9a X\xc2F\x18\xb4)\xa2\x7f\"\xd1\x89M\x85&\xfc\xfc\x83\xddK\xd6\x12\xa2(\xa9\xa7\xaa`d\xd7w \x15.\x91\xbb\x06b\x10|Y\x87\xe3\xc3\xc7\x87a.\x94]\xa9\x03\x83\xd9\xcdS\xa2=KWu\xf31gW4\x89\xcb\x18\x9b\x96\xb8\x80\xd8p\xfb 4\xa3\xc3\x9e h\xa2#s\xdaP*u\n\xc1\xcb\xdf\xed6\x02\x97\x08W~4\xfe\x01@X\xfa\xb9\xa1\xf9\x17\x88P\x86\x90\x80\xdc\xa5*S\xf9\xd5\x0bw\x89\x9c\xeb+/\x9b\xbd\xaa\xc0>\xd1\x07j=\x9a\xb4\xa4IK?8a\xc21\xc5\xa5~\x83\xd6\x123\xc2\xb4N\xeb&I\xd3te\x9d\xde\xea0\xc1\x00\xb8\xb8I\xb1\x82\x95\x95\x11\xab\xd7.\xa9jK\xa0\x87\x16\xa7i\xbaV}p\xd3G\x93\xeeZ\xfaA\xed8u\xdd\xafnsuR`\x04\xa9f%\x01\xb4p\x1c)\"\xb8\x82\x83)\xbbR9\xc8\xd5\x01\xa5\xba\xab\x0cH\xf6\xf2\xdb\xcby &\xee\x94j\x05~\xfa\xfc\xe2\xd9?\xed\x94R\xe7P@\x86\xa0o\xfa\x07\x8d\x11D\x87\x98wk\xd8\xb6\x89\xb0\x0d\xf1\xe7;\xfe\xb9\xdf\xcf\x82\xa3\xb2\xb7\x81\x99\xbb\xb4\x94{\x08\xa9\x9b\xf9f\x80\x11\xd4\x98wX-D7\xe8\xcb#\xe1\\a\x971)\x7fL\xb4(\x81i7\xdfA\x0e\xf2\x86\xbf@\xb5\xc0\x17\xcf\x9e\xfd\xe0\xe0\x8f\xceO\xd8\x81\n\x9a\xfd\xd0\xb2t\x0ex\x08t\xa0\xc5\x0f+\x08A.\xdc\xe1\xb3\x7f\x93\xf3b\x1d\xe5^\x86\x0f5T0\xcbF\xe0\x97O\x9f\xfd`\xf5\xe9\x9e\xda\x915\x90\xde\xa2\x16\x0d\xdc\x93\x0c\xaaE\xb7\x0bCN\xc1\xd9\x94,\xa3x\x93\x7f\xcb8\xa89\xee\x91\xcb\xd4S\x9b4dQ\xce\xa3\x8a\xe6-WJ\x93\xf2\xdc\x90\xdaA\xd2\xa2Evg\xfd\x9c-#V\x07\xaa\x17\xef\xf6\xd2W\xc1n\x85\xf0r!\xbf\xbf\xd6\x883\x9aY6\xfc\x01G\x9b\xfc\x9b_\xc4\x8f\x8ajv\xb7\x072\x9b\xd5\x92t^'\xa6\xc9\xc0 bnV\xc0Ql\xabUY\x0e\xbf3\x06\x1c\xdb\xaa\x00\x10\xe3\x7fj\xefb\xe2\xcc\x97\x7f]\xac\x00{\x8c\x80\xa6~\xb2\xafu\n\x18\xb0y\x99\xc6\xd6\x07q+\xd1\xcc\xf8B\xf4\x8f\x8e[A3o\xdf\xad\x8eV;;\xdf\xd6W\xf1\x05\xfe\x97(\x8a\xa2nu\x00L}r\x9d\xc3\xa1\xe2\n3\x00\\,\x84\x15\xcf\x1c\xe1\x05\xf7`\xfa\xc47\xa7\xbb/\xfc\x982u\x84\xeb\x85\x08\x0f\xad\x19\xc7l>\x10\xc2]8\xbb\xfe^`F\xf6\xa2\x9b\xd5\x9f\xa2\xf8\xf2\x12b\xa3_^\xc6:\xcai\xd7\x9bw\xd6\xcc\xd1\x94g\x0c\xcd\x9a9\x81\xbf\xf4R\xc1\xb0\x90\x18M=\x00\xc1*\x93\x8foq\x84\x0f6\xbeRhz\x84\xb3\xb4\x96gi\xae\xe5i\x888\xa6(\xff\x0b\xbd\x91\x9c\xd6\x7f\xfeD\xf3\x8f\x97/t\x0e\xbag\x8f\x9f\xe8\xbb\x9c\x97/\x1e=R!\x99_>5!\x99\xa5,\xabC2\x9f\x9f?R!\x99/\x9e\xc8z[Y\xef\xd9\xcbs\x15\x92\xf9\xe5\x8b\x17\x8fUH\xe6\x17O\x1e?Ex-\xeb={\xf6\x02\xe1\x0d\xd4{\xf1\x04\xe1+\xc2\x92\xa7\xcf/\x9e!|#\x7f]\xc8\xb2k\xf9\xeb\xd9\x93G\xc8\x13\xa1\xdd\xec!\xbf\x8e\xd9(\xb3\x95}`\xb3\xb6\xbf6\xf6\xd7\x95\xfduc\x7f]\xdb_\x85\xfd\xb5\xb3\xbf*\xfb\xcb\xa6\x8a\xc4K\xf3\xcb=\xfb\x99r\xe5\xe1os\x10a\x17\xce)\xd3\xdf\x1a\xfb\xcd\x1aB\xe5\x96Q\x0f\x1b\xbc\x12!\xb0\xc4\xf7\x8f]`\xef\\\x82\xf8\xa4\xdf!\xf9c_d-\xef\xba\xb4wN\\\x1d\x87\xe3#V\xaa\x90\xbdk\xb1\xd5^\x9dO\xfe?\xf6\xde\x85\xbbm#M\x14\xfc+ \xe2\xc3\xa0Z%\x88\x94-\xcb\x06\x83p\xdd\x89\xd3\xed\x19\xc7\xf6\xdaN\xcf\x9d\xa1xM\x88(\x8ah\x83\x05N\xa1h[C\xa2\xcf\xfe\x8d\xfd{\xfbK\xf6\xd4WO\xb2*\x9e\x8b;\xa6 \xc72N\xe28&\xa1\xb6\xea\xea\xf7\x03\xf5B\x19{\xaa,od\xc2\xa7\x808X-\x00m\xbf\xdf+\xad\x1ab\xe6\x0bF\xda\x97\xa92\x93\xea\x98\x8b:\x18bv\xe9\xf6\xbd\x82y\xbaiH\xad\x02\xe11h\xc1\xbdrM\xe6\xd9\"#\xa9\xa8\x92f\x0b0\x82\xe6n\x12\xa2\xac\xf2g\xa36r\x9dc\x82\xeb\xa3BU\x15$\x08+\x9df-G/5\xda H\xcf;7\x99\x83\xd5\xaf\xb8\xe8\xce\x1c\x9ca\xb3ds\x9d\xd2\xd7\xa1\xeakt(^\xc7Y\x87P\xcdI\x15\xd6%{\xef:Es8EAf\xa9\xef\xb5\x14|P-\xae\xe8DLy=\xd5\x90\x118\x00\xc2\xd2\x04\xe6F\xaa\xfa\x9bW\xb6\xacS\x91\x02\x14\xdf/\x90\xb8%4\xd08\xa2\xfc*\xb8p\x03<\xf8\xefc\xccc`Q\x9b\xdad\xa0\xa1\x97\xe1`e8\xf5\xb2\x8a\xe9\x88\x1d\x06O\xcdK\xe5\x19\xed\xe2\xf5\xeaB$Y]\xc6\xbd\x90yR\x03\x97\x15,\x1d\xb4Dq&\xd0\x92\xb4;\xe8\x824 \xa6h\xccAr\xb1\x01\xb1z\xb9\x87\x85\xac\x9d\x05@DY\x87\x84{\x83p\xf6\xe3\xa0\xdf\xe7MQ\x13\x08\xe7M^\xce\x1c\x04\xfc\x86\xe5\x12\x15'\x0f\xb6\xf3\nCr\xc4\xe9\x0c)\xf1\x92\xe6\x13\xa5\xc8\x86;\x9f\x0fD\x99i \x03^\xb4\xc5\xaf\x96X\xa6\x94\x02\x1c\x89\x94\xb5\x81\xba\xaay\xf3jv\xb3gun\xea\xc9\x93\x87\xdf\xec\"vY\xc6\xc9+\xd9m\x19\xd7v\xca\xb8\x85\\\xf8\xe0\xb5Qti\xed\xf68ff@\x8an\x04\xe9\xb9\xdeg}%\xb8\xb7u\xb8\xc8rN\x18\x98\x9ad\x9d\xf4\x10\x9d\x90)\x92vL\x838\x8e\xd7\xc6r&U\xbf\x9c\x97\xfd~\xd0k\xd3\x80\xbb]O\xcah\xc1\xf2\xaceB\xb6\xa9%\x96\xe8\xf7{\x9b\x10L\x00\x7f\x15 \xc9\xca\xe53A\xfb\xe6\xae\x8d\xcd\xb2\x85(\xdc~v;\xf5\xc3\x8d\x86(\x93\x1d\xedv\xc6\x0c. \xcd0E?\xe5\xfbBT\x08\x04\xd7\xa8F\xabT\xc0\xf0\x14\xad\xaax>r\xac\xce\x1aA\xf02\xea-\x90\x13.\x8b ib\xc3\x91\x00;m2z\xe6\xe8\xc0K\xe0\xf2%\xa0\xcd\x9a\\>\xbc\x0e8\xceB^\xfc5)\x97\xc1\x065\x81\xae\xb7\x8e7.\x82\xea\xdd C\xd5\xf1L\xdaB\x16\x8dp\x8bk\xb4\x08(\x1a/\x03\xaa\x0d\x1f\x8a\xa6\xa2\x8a\xe3\x1cS\x0d\xa7\xea\x8a*\x84\xc5\x87\xb8\x01\x88$a\x040#Ud\x10\xa1\xe9\x8bE\x00\xc4M\xc6\xf7\xac1U\x02\x83\xd4\x91\x94/\x9c\xc8Uz\x03l\x92\xbb~\xbf7\xaf\xa7\xb0t\xf33M\xc8T\x1f\x11\xd7\xa6\x82\xa3=\x96\x13\xebnH\xce\x1dC\x8a\n\xa7\xa8jB\xbcG\x83\xc1\x1f)\xbah\x0dX\xf9\x80\xee\xbf\xfc\x9d\xacm\x93\x1f28Y\x1c\x17\x13\x7fO\xf1\x02\x07\x98 g\x0c\x8a\x05r\xde\xdc\xcc\x07\x01\x8c\xa9\xf1?\xfbX\x80&\xc7\xd2<\xd8u\x1a \xc3\x01\x9562m\xd56\x8c\x956\xac\xa6\xf7.k*\xb3\xac\xa6&U\xf0\xc4D\x92\xa8\xe7\x0cnfb\x15\xccF\xa9p%S&\xc6\xc6*\xdd\x90\xf0\xae\xfa\xdc\xb1\xa07\xbc@\xf11([T\xfe\xd9\xe3G\xdf\xee\xc8\xb5d%\x13\xa5\x01\x93\x8a\xac\xe9\x8dG\x0b6\xdc\x89\xb7\xd4\xe5H\xa63\xd1\xc6q,\x16\xa8\xdfg\x1d.c3\x15`\xd0\xa83\xb3\x85\xab\xc1\x9c\xb5\x0cz\x05\xc6\xbc\xdfuqT\x0d`\x8a\xeb\xd8 \x01\x7f\x1es\x87\xb4\x8c9D~Rq\xd2 yb\xac\xa3DY`\x17\xf3.t$\xces\xf1\xa6\x06yc\xde\x00\xc5b\xa9\\{\xfa\x98\x87\xcb\x04\xf2\xf8\xfd\xb2\xa1\x82Wo\x99B\x88\x115\x8c'\xf4\xab\x96\x15\xc6\xed\xb4(\xe0 US \xda\xd0\x822\xe9\x14d\x9b\nT\xf6\xcf-#\x8bH-:\xd8\xe5\x08(%F\xedLC\x12`\x02\x9c\xdcPqV\xa1\xaa\xa9\xcfpr\xed\x82Ei@P%\xe3o\x81\xe9\x12\xc8\xb0\xd1\xaca\x02\x82A\xff\xaa\x05o\xdaN\xb2#W6\x18\xfb\x9b\xc0\xee\xc6\xd0\xb2\x18\xb3\xb0`A\x86\xd5\xbdVCA(\xcalOswi\xc6\xae\x1d\x10A.~\xaf[,\x11\x84\xa2\xc9\xb4\xda\xbbI\xee\xe9\xdeg\x7f\x04\xf6\x03`u\x92\x83\xe1\x8f 7\xf6\x9b\x994\xacn\xebVazmf\x90+\xc6\xfa\xfc\x08\xf8\x84;\x0e\x97\x19\x1e\x0c\x8a\xc8A\xc1\x9d\x97\xcc9\xad*\\\xe0\xcc\xd95\xe9\xfaQH\xb7\x8dB\xa0\x95\x84\xa6\x81\xdc\xa6\x02\xd3\xe6\x98\x99\xf1\x0c\x01\x835\xf0\xe0\x10#i\x1f\xfd\xfaJ\x1d\x9c%o\xce\x0e\xd7oV\x82\x9b7\xaf\xc4\xad\xcbY\x87;\xb7=`\xbd\xbd\x07L\xcd\x13$S\xfa\x84U\xb3(\x13\x83k\x81\x8a\x1cwC\x959\xee\x00@\xf5\x95\xd1\xe4U\xc0\xed\xb1\xa4\xf1\x8f{\xd4\xf7\x1c\xa2\x12\xcb\xcdo\xc2:\xbb\xf9\xb2K\xc8\x1e[;\x03\xf2\xa4\xf2b-\xdb{K\x16Q\xa1\x89-\x99\xe4\x1ev\x00~\x97\x95\xf4\xd9\x95iB\xf5j\xa6\xf1z\xacMj\xb1\xa7\xefxQ=\xd8&\xd5,\xe2x\x11O&\xd67\xc7\x8d\x99-\x95w?\x15t\x9e\xf0`O\x95\x12M\xb1\xf3\xb9\xcd\x1d\x8fs\xe7aO\x1d\x03\xcf\xf2\xae4\xf7\xee7\xac(d\xab\xedW\xd3\xe9(W\x0c\xd25MV\xd9\xfc-Y\xf4\xfb\x0b\xa9Yw\x9aP\xa5\xcf\xe8|Y\xb0\x12\xef+\x98j\xcc\xbe4f\xe3\x00\x13C\x89\xb7\xc1\xeb\nY\x0b\xf2M/\x8eYH\xb3|\xac\xfd\x8b5,\xdd\xc0w\xcb\n\xcd\"]\x14\xc8gq\x14\x1c\x1c\xd8\x84\x00\xe6\xea\xf3\xaa\xb2\xe1\x08\x0b\x818\xdd\xf4\x8dc\x7f\xe3G\xbe?\xea\xc4%&\xdb\xb4\xa0*\"\x8a\x05Rq\x04N\xe2\xb2Y$\xe2\x14\x08\xe0/\x8f\x07\x12\xb8\x037\x91w[\x99-\xc9SE\xf3i\x12\xc6\xd0\xa7\xb8Mv\x82\xc0\xddPpVG\xdd2\x90\xd23\xcb\x83\xba\xfd7\xc1\xbd!(K\xdd\x0c(,(\x01\"\x99\xca\xd6\xd2\xbc\x1c9\xb8Lk\xf1\xbd\xbc\xd3\xbf\x82:\xaa\xe0\x96\x19ynH\xe46\x11\x9c9\xca\xdc\xfd\x0e\xdf-\xeaVyY\xb5\x88\xa6}\xebl\xd8\x80\xd6J\xdf\x8b&\x84\x86e\xb1\"\xca\xa1\xb0\x8b\xab \x08!pJm\xb2\xf6mf\xa3\xa9\x1a\xc9\xdb*\x10\xa3\xe9\x90\xa6\x96\xae\x8a\xa3\xb0\x02\xc6=.m\x99\xcbs\x16\x1d\xacD\xee\x98\x80\x95F\xd5\xef\xedvJq\xb1\xc7$,\xc19R\xd2A\xbdM\xe0\x06\xeb\xe8\x19\xca[\xe9\x19\xf0\xd9\xe0\xf1\xe0~\xe3\x89H1\x84\xabxO\x95\x84\nm[!hk\x198mB\x10\xf8\xc6\x13\xe3\x80\x88z\x10\xc3R)\xf1^\xfc\xfc}\x9dC\xa0\x15~rz\xfa\xed\xf4#b\x85\x94~dp\n\xd6f\x13\x13\xb5O\x06\x81\xc4\xfe\x83\x94,J\xf1\xf7\x93 %-\xc1\x9a\\\x01\x13\x87\xaf\x11t\x0b[\x83+c\x965\xad3\x85\xa2\xcf\xfb\x9d\x9a\xc2\xf1o\xc9\"\xe6\x82p\xd1\xc8\xbe\x83S\x18>z\xd8\x14ZJ\xee!1\xd1\x13\xca\x98\x06\xe7O\x06g\xd2\xceNr\x14sg\xf3!BQMh\xa9\xf8\xec[\xe9\xdd\xf1V\xc5\xdd\xd7\x86\xd1\xcf\xe9\xa7(7\x89\x87\x81C\x9f\xab\xa0\x00\xb8$\xf9\"ZTq\x81\xb7\x02\xefF\xcb*\xce\x05\xc0\x08\xfc\xef \xad\xe8n\xe7\x7fw\x02\xbfP\xbf\x9f\xc4q\xbc\x0ce\xebZ\x83\xef\xc8\xd1\x05\x95-j\xe8\"i\x9d\x9e\xe3<\x94\xf93\x9dL\x8f5\x9c&:V\xfc\xd1\xb22\xd8A|\x9di\xd8\xad\x07?\xc3K\xbc\xd4\xcdU\xc6d`\x15\x97:\xd7\xd6[\xb2\x90\x88z\x81\x978\xc1\xb4\xee\xaf\xb5r\x00\xa79G T\xd1\xdd\xae\\uQi\x13\x1d\x8c\xcdD\x1d\xbb\xcf\x0d\\\xfe\xd1Z%\xa9\xe3vd+d\x0f sQ\xbd;q}!@m\x95\x82|7,\x8b\x0d\x9b\x931\xac\x86t\x06\x892'\xe3\x08CU$\xcb*q\xa2\x1a8\x187\x14\xc2\xeah0Wf3u\xa9\xccLP8M*\xb4n\xbfF+\x9ct\x98\x17\x97J$\x93\xc0d]\xf3\xbaM\x8b!\x13X\xccA\xe9r+\xc7\xb4\xb6\x16\xfa\xb5:\x08\xb6^\x85\"u\x0cj\xf5?\xb3d\xbd&LW\xaf\x90sH,\xe7\xb9V,\x08s\xc7SZ5\xa9\xb5\x0e\xd98\x97\xc5 \x99\x81\x17q\n\xb6\x0c?\x15\x94\x93/|l\xc5\xf1|\x99\x95r\x01G\x8eP\xd5\x89\xb8\x95)\xe2\\\xf9\xc5\xcfF\xa5\xc6Z\xb6\x91O\xb2{u\xd2[\xef%\xdbM7y\xee\x8d\xa5\x8e0\xf2\xba\xaa \x8aG\x10\xf3\xa2\n\x9a!\xdc\xd1\x139\xdc\x91!\x8f\xec\xe2A\x04\x8eO \xf3 \x1cz\x87b\xb7N\x1b\xb0XG\xee\xe6\xea\x17\xd5A\xd5m\xf6V7\x8c\xb7\x13s\xdd4 =9\x1a\x04$\xb05\xe4\x8bQ\xd4\xfc\x1bxkd\xdb\xac\xa5h\xc8\xbb\x15\x0d\x82P\x80_\x8e\x92\x01<2\xf5n\x952\xa8\x10\x94\xf9\xd8\xee]\xbd\x9d\x19\x1a\xdd\xd8\x91Q\x1e\xe3LY4\xd8IIC\xc6\xe6\xa4@\xfd\xe6N\xaai#\xd9\xeaK\xdaH\x8aI\xc1/\xc7D\xb2kR\xca\x8c\xafcR\xd2\xa2NL\xea\x86\x8e\xb8\xee\xc2L\xaab\xe3:\xf0\xef\xad5\xfckS\xa7\x90\xa6UQ#&\xdcn\xea]^{N\x89o1D\xe9\x92\x99hT\x86\x9c]Krr+s\xbb\x07b22}\xec\x83m\xd1\xe2\xc0\xe1\xde\x0b~\x0e\xe1U\xc0\x11\xde\xecv\xe6NPH\xf6\x8bdj\x84R\xba$}\x98\xf5\x02ibh\xa1\xff\x83\xed\xbc\x99\xe9\xc1\xe8\xc8\xcb\x10\xe6\x08\xf6{X\xdc\xfaf\x0fC+\xb5\xa6\x02SE\xceZ\xd9I*\xe8\x9d \xfa6}U\xa42Z\x88\x9d\xa0\xac >\x92\xb1\xe7V\xfb\xa5`\x02\xd3]\x11u\xe7\x05\xf5Kef\xfd@\x02\x00=-\xc0\x9f\xcb\xa4\x14\xd3\x0b\x05\x1e\xb0z~\xa7\xa3\x8e\xb6K\xd5\xb6\x96\x1c\x8aF\x1b\x03\x13\xcd\x89O@\x04\xa5Z\xaf\xd7\x83\xde\x934\x0dtU4\xb3t\xa2\xa1\xbb\xf7\xee\x9f\x1c\xe8\nb\xdc\xc3\xcf\xa5\xf8\x89\x9c\x14\xca\xb5\x8eT\x02)\xa7/\xcc*\xa9\x9c\xaf\x93m\x1b\x87\xa0[;\xf6\xb7\xf3\n\x9f\x9d\xfd1\xf6\xb7g\x8f\xce\xeaJ\xac\x9aU\xdam4\xd8{mj\xa1%8\xaf\x11\xc1<\xb9\x02\x92O\xc6X q\x1c\x17\xe1\xcf\xa6B\xf8>\xb9\x1a\xcfxr\xe5\xf9b\xaf\xfdfF\xdfh\x06\xf3\x80\x0ce\xedJ\xda8\xb0\xc3$\xb79\x86\x88\x9b\x91Pk\xa9+\xa7\xa0b8\x88Z\x9e\x14T\xf0\xe4\n\xf0\xfc\xe1X\x0eJ8\xa1\xa8\x9c\x96\xe9\xbev[\xdc\xc2\x18\xa3\xbc\x8a\x13\xe9\xc6\xd5a\x16\xd8\x06Y\xb5\xe2\xc8SA'K\xaf\xf6^%\xb61\x80k\xee\xf8\x9b\x8a\xb9\x8e\x9c\xe4\x96&\xd9W\x07|\xdc\xd7\x99\xdb\x96rB\xeb\x88\x06\xb6\xefk\x98\xb7\xe6\x0f}k\x05\xd0\xe6\xe1\xd7Vh\xc2\x93++4i\xcai\xe7\x02\xa2Zr'\x0djb\xac:-\xba\xc7\x87\xab\xc38\x91V\xb8p\x92S5(\xcdL\x1b\x06\xe2\xc2\xd2&\x8b\x9a\xb6\xa5\xae\x1c $\x03%\xee\xbc2lT\x0b\x0f\xc6\xfcq\xec\xe9\x1d\x995\xc2(X\xc8\xec\xbc\x12\x04\x90v'V\xde\xd6E\x90\xc8<~,\xee\xc9\x08\xaa2\x1c\xc5`\xc4\x7f\xc8u\x98U~t\x84\x8c\xa0#\x9f\xf0)|\xb1\x06W\xc0 A\x801\xb3p\x95\xac\xd7\x19\xbd\xd2\xe7Z=F\xa4\x8a3\x9ba\xba\xa91\xd1\xe2\x14\x97%!\x13>\x8d\xe38 \xc5\xdc!6+8\x12\xe3^;\xeb4\xd0\x7f\xa2Z\xa5S\xff\x83\xad\xfd\xbc`\x8c\x94\xeb\x82\xa6\x19\xbd\xf2\x08\xe5\xecZ\\p5\xa4\x19\x1am\xc0\xc7\xa6\xaat\xa0\xb4\xb5!\xf8H\x9c\xb8\x11\xdf\x1c\x1a\x8fh\x1a\x8fL\xe6S\xdc\xca\\\xb8n\x0f\xaeq\x98\xe5\x19\x96\x87\xa5t\xd3\xfe\xd8\xfeN\x1el\xe7\x95?C#\x06^\xeet\xb7+ \x17N\x19\xaca\xbc\x90\xb0\xfa\xc6\x8e|h\xc5\x806\x1d;|fS\xd8\xdas_\x04[]\x0e\xbe\xf8\xaaF3YV\xbfO\xac\x05\xdd\xbc\xa9\xb1S\x89\xe0`\xe3\xd1F\xff\x12\xfc\xa4\x89DGBB7\xab\x9b\x87\xde\\\x8bzz$Zr\x99\x1f \x02`\xcfZ\x96/\xaa\x17\xbd\xbd5FN\x85\xd5k\x820\xb2\xdb\xc9\xbcc7\x8fM\x0e\x08\xb0HiVWZ\x9d)$#\xe8O\x0e\xf9\xf6+\xc1\xd2\xc3\xad\xed\x0dQ;\x13\xa64\xa8y\xe1x\xe6\xd8\xa0h\xd6\xc2x\x83\xd3@\x9a\x04\x8d\xb4\x05\x8e\xd1g\xf5\x86\xd8\xc5L5L\xf8\xab<\xe8\x80\xac\xd6\x06YI\xc3me\xb5S\xb5E\x82\x07\x1a|\x9ft4f\x9d\x81\x9a\xa6\x0c\x82\"8$U\x14\x80\x88\xde\x99\xf8\xc0\xdc\x19\x92\x12Wa\x01\x1d\x9c\xd7\xbb]P\xab\xb5\xad\x10\x12\xa3\x8f%2\xa0zib_\x01\x03\xbf\xc2\x8f\x1f\x9d\xdf\xb3\x81\x81k^}z\xaa\x84h\x0f\xcf\x9f*!\xda\xd3\xc7\xc3\xc7\xcaM\xe9\xc9\xf0L\n\xd1\x1e=9}\x8cp\x1eO:d\x82V\x11\x14 \xc7D\xae\x84\xcc\x8b\x82r\xb0\x19\xec\x80`\x85\x00\xe8\xf6\x9d+R\xcc+<<\xbb\xe7\xb8.\x1dD\xa1E\x91*\x9c\xbb\x0e\x9dj\x12x\x18s\x9b.\xd9\xa0L\xfa\xda\xe5\xdb\xef\xea ;\xfd\xfbe\x7f*\x8b\xa5C\xcc\xb5?\xfc0\xdb\xca\xcaM\xf7\xaa=:\xf8\x07\xca\xac\xa9\xd4D\x99\xd3\xa4\x89D\xac\xcc\xd5\xe7\x0d\xc9S]$\x03\x92\xca\xb4\x8a\xf3\xd1\xdcH\x13d\xeeB\xc1(g\xe3\x16\x16\xcf\xe2\xba\xc4H\xa5?T\x12\xa3T\xa7C\x942\xb6\xb9\x94\xbe\xa9w [3\xb1\x90\x17?\x93\x85o\xd4\xed\x93\x07\xdb\xb2\x9a\xce@v+\xe9\xa8\x05\x84\xd5\x07\x07i\xf5Bn\x9f @\xec\x10 \x89$@\x14\x1e\xf4\xfa}O\xf0\x9dI\xd5\x91\xb2\x7f\xa6#U\x18G\ne\xd8QAB6\xc1\xf1\x19B\x06Y\xe0g*\x19q\x18B\x9d-u}\x9cH\xf8\xb4H\xb2\x1cv.\x00\xab\x04e\xac\xea\x9a\xe9\x8fA7\x1a\x19\xe5\x8b\x98\xc8\x83\xed\xa6\x9a\xe1\xd6>\x90X\xcb\x05@\x95\n\xd3\x0d\xa5@`\xeci\x0e~S\x05\xa0\x9c\x04\xf9\x96~0\x1aV\xfdb\x86)(o\x03\xb3\x9e\x1b\xb9\x9e\xbaS\x1f\xc4d\xa4R\xcdh\xdbvhkT3\x8f\xd1\x9e.\x1bix\xc0\xd9\x86h\xd7\x17\x85U\xb8\x9e\x15\xadf\x15\x98\x8ewq\xf1YlN\xd2$\x81x4\xbd\xac\xe6\xdd\xd6\x90\x91\x0c{\xcd\xa5l\xa1P\x12\xb8!\x12H\xa0\xe9\x8b\xd9\x86~\xa4\xc5g\xea\\\xd7\xa4\xf2M\xe0\xf0\x8cj\x01\x8b\xe3\xc1\xbb\xa9\xfcY\x95\xd6R\xd3A$\x18\x19_\x0d\x04\xcfYM\x8c7)q\x8e\x17\xd3\xb6\xa2\xd2\xe31i\x9f\xd21\x0b!\x1b\xc8Z2\xed\xa8q\x91\xb4\xf2\xbc~\xbb\x9a\\E\x82\xaaY\xa4PS\xb1\xf7\xd6~$\xd7Q\x02\no\"\xef,7\xca\x82\x16]\xa9\xe8\x93\xe6`\x8d\xc1\"&\xb8\x98F\x13\x027i\xb7\xb3\xaf\xcd\xadQ\xf7\xa8p\xee\xd1\xb4\n24*c\xc8\xca\xa7\x02E\xd4w\xb73\x9ey\x90u\\\xee~?\x93w\xe0v\x923\xb5\xe3b\x8bk\xe22\xe7H\xeb\x9b\xb4\xd0wEi\xd1\xed\xdd0\xa3\xd26\x0d\xa6j\xa4\x9f\x9d\x0b\x03g\x1e\xfeo\x98\x16\n\xf4\xfb\x8dp\xe1\x84\x06\xc3\xb3s\xd4\xa5\xd6c\x15\x16\xd8\xfe>\xd5\xae\x98\xb7\xd1~\xcc;\xe8\x03M6u\x96MTR\xb0z\n0\x9bY\x04\xf2\xe2\xa8\\\xb7\xbe\x93\xf8\x0b\xfb\x9fY\xc6\x89\xfam2|M;G5i\xa7qi'm1o$\\\xf1\xa7\x15>?\xfb\x86\xae\xc4]F\x91\x8f\x86\xa7\xf5\xc8\x12\x92\xfd\xd8K\x9c\xf8\x9a#\x80\x94'\x1e/<\xf8 \xa1\xdc\xbf\x81\x0c\x01\x97(\x92\x1a1\xd1~\x13k%&\x92ChP \x8a.\x81|\x08\xc9n\x97\xf7\xfb\xad;\x9c\x8f\xeb\x08\x11d\xaaE\xb8)\xc9/\x1b:\x0f\xdc\xb8\x1f\x95\xb1\xb3)+\x04\x81f\xc0\xb3Y\xde\xae\\b\x1a\x19\x83\xa6v\xa9\x92\n?\x1a>\xfa\xf6\x04\xe6\xc1\x8d\x02\xe6\xb0\xcb}\xf8\xf6[WP)(\\*\x875\x92*\xbe\xef.{Y~\xc5f\x9a\x8d\x84v\xad\xa3\x8e\x00\xad\x89\x0c\x93Zj\xaf\x90\x16\x84\x15\x13w\x18fZ\xd0c\xb2Z\xf3k\x93\x92Z\x8b\xcdt\x13?j\xc7\x9d\xbc(\xd6\xcf\xe9f\x85\xd7q\xf7y\x00\x11\x0e\xe8\xb46\xbb]\x82\xd2\xba\xe4MPZ`'#OV\x8a]lb\xd8\xd9TEt_\x14\xec\xf5\"\xf0?\xf98\x07\xcd\x05wCT\x98sG\x8ct\xdfm\xc0\x8d\xea F/V\xc4P\x97Y\x94w\xb3,\xd2\x04\x9e\x11\x1e~R\xa0\x07\xe7h\x94\xc6\xda\xa4\xb5\x94&\xad\x01\x07\xeb\x9f:\x04\xd7\xd2\xc3\xd2\xc6Nj\xdd\xc0\xa2\xdf\xa7\x9b<\xef\xc5\xb1\xb6\x06\xad\xcdx\"h\xb5\xa9\xc1bT\x13p\x85\xa0\xdb\x08.`\xce\n_\xa7\xad\x9b'8\xccov\xf3\x9e>~\xa4\xec`\xce\x1f?=\x957\xef\xe1\xf9ce\x0d\xf2\xe4\xec\x89\x8a\xba\xf4\xf8|8\x94\xd6 \xe7O\x1e\x9e\xc9\xa8KO\x9e\x9e\x0dd\xd4\xa5\xf3\x87\x82\xcd]\x8b_g\xa24\x95v&\xe7\x08/n`}k\x8c\xaf\xfee\x83\x1fu\x85F\xb2\x10\x012\x80\xd5}\x1cJ\x93\x9aV\xba\x11VNu\xb1E\xc9e^\xff\xc48CT\xdd\x91\x96\xecV,*,f\xfc\xcd\xb6\xa2\xc5eOlzE'\xc7\xdat\xaf\xef\xa4a\xc3\xf7\x00D\xd7\xd1\xc3\x81F\xbc\xb2be\xdb#\x88F\xfdU\xc1\x88\x1f\xf9\x0b\xf2\x99\xb0\xae0\xa9&\x0e\n\x9cj\x1bY[jm\xab\x1b\xa0\xea\xc10(z\xac\x0d-\n4\x01VDY}\xb4|\xccB\xb1\xdc /X\x19\xfe\xe5}\xe4>\xbe|?j\xe2H\xc7\xe4\x12\xe2\x04(\x1b\xf5\x161y\xfe\xf8\x8f%P\xce\x9e\x9c\xd7\x11\xdf\xc4I?\xea\xa6\x14\xd5\x07A\x1f\xf9\xfb? \xaa\xa3\xdfw\x14\xe6\xcb\x84%sN\xd87<\x0fn\x04\xd0\xfa\xc0o8\x15x\x1e\x83\xec\xa0\xd4\xa6#`\xe6\x85\x12 \xd2\xbc\xdd\xce\xcb\xcaW\xc9+uD\xdba\x00\xce\x87\xc3o~\x04\xeb\xd0\xcc:\xb8\xf8\xcdD\xba\xd3\x03v\x05\xf7\x03\xd5\x9c\xce~\x1fd\xfb\xe3\x90\\}\xc8w\xc5t\xee\xc1\x843p\x0b\xb4'\xa8\xc1?\xeeP\xb8i\xc1\xef~qn\xa7H\xb8$\x9e\xee\xc5\x03\xc9,\xa9nR$\xd8Q\xdd\x8a\xe5s\xf7N\xfb\xf6\xe1$V\x0e}\xb6\xb17\x8c\xcc\xb32+(6\xde\n\x8c\x942\xa0/\xa0\x9e_\x13\xbe\x0c\x93\xcb2\x80\x1f\xac\xd8\xd04\x00\x8e\xdd;\x96\x9c\xbb\xf7\xa37$\xc7\xd2\x8f\xcaH\xb8\x05\xef\xbeNXI^P.\xab\xb7\xd1\x11H\xce\x80\xfb\x18\x08\xb8\x00\xd5<\xc9\xf2\x9f@Py\xc0U\xa8 %\x8a\n\x0bV\xe0\x9b\x1d\x88v\xb4\"\xc7\xc7[;\x14\xed\xa7v\xee\xae`*\x9a\n&\x1d\xd1\xe6F\x0dS!\xe3\x89A\xed}\xa7\"\x95^t\x0f\xd2\x86\xf9\xcf\x1e\x8a\xa5N|\xd4|\xac\x04\x9f5\x16]\x065W\xa9\xc4nT\xd4\x08\x98\x03\x99\x95\xec\xa6\x17R\x1a47\x82S\xdeB\x01Y\x85\x05O\xf7\x07n\xae\x8d\x92b\xb7\xd9\xa4B?\x00\xffo\x90\xf7\xb8\x89{\xeaN\xa32\xf4b\xd1H\xef\xa0\xbb\xb4\x89\x1d\xbe\x17\xfb\xf9}g&\xa0\xee\x06!\xd7O+9\xc3-\x82)\xd4\x8eB*Ce\xc9yu\xc5\xc8\x92vURND;\xa3\x87\xac\xcd\xfb\x1f\xe3\x0d\xc8}\xde\xaa\xd9\x8d \xa7\xa2\x8d\x13TW\x08\xacw\xbb\x1c\xd5\xa4<\x90\xb9\x0d\xa7*\x07j#1\x00E\xec`b\x80n\x05\x14o\xe6L\xd0\x1d\x1b\xbc\xdcv\xc1\xab\x8d\x896\xec\xa0(\xcenp\x13\x96a\xc1\xa5H\x8a\xe2\xa4\x19\xf3-S\xc6\xd6\xc4\x8d\x9dRb\x8a7\xad\xb0)N\xb4\xa6\xac\x19\x14\x02B\xe69Q 0,\x1e\xaa\x82\x0c\\\xcc\x8du-,\xa5\x92\x87udH\x10\xd3A\x98u\xa6G\xc8\xc0\xba\x03\x8cD\xaa\x00a\x1d\x8bL\xef\xae\xa3\xfb\n]\xebB7\x0c\xd9\xb6\x15\xc4\x05\x02\x89\x86\x19oF\xd5\xa1\xc8\xf5E \xa4\xf5\x94\xb5\x82\x9f\x90)\x02\xab\xf0eR\x06\x04\xd9\xbeg\xed\xab\xa4\xe2A\xa8\xfc\xc0j\x04\x9eT\n\xce\x95\x9f\xf3s\xfaI9\xeb\x1c\xcd\xc3\x9aj\xbd\xf2\xbd\xa01\xd1\xd9\xa8+@\x19\xd7\xd1n\x1a\xb5\x1d+\xa14PQ\xc7^/\xa4\xf5\xbc/\xceC+\xe4H\xf7 R\xbexonsV\x9a\xe1:\xa5\x87e\x83\xe1;\x7fx\xfa\xedb\xa8\x9f?==\xdf\x1f\xf5\x0f$\xean<\xaaz\xda\xb6}R%\x93\x01\xf7f\xb8\x9bE\x04\xff]\x19\xf2\x16\x1d\x04t\xbaY\xe7\xd9<\xe1D\xd2\xce^ \xff|\xf7\x9d$\xa8\x13\x9a\xaatm\x8cxYJ(\xcf\xe6I\xde\x95\x99\xad\xde\xd1\x87\xd96\xd36\xba\x7f\xbf\x95E\xee\x03\x05r\x15<\xce\xeb\x96\xb9s\x17\x82 \xe3V\x90\xe0\x12Uy\x10\xb0\x98\x85\xc9z\x9d_\x8bE\xd8\xed&S\x84\xe4,$1~g\xda\x1a\xf3p\x95@4\x95\xf7\xc5O\xc5j]PBy\xcc\xc3\xcb\x0dMs\xf2s1\xdf\xac\xdc\x171\x0f_'\xe5\xdf\x08+\xb3\x82\xd6C/\x08\xa2\xfc\xf4\xe1\xe0\\\x1b\xb7<9U*\xf6\xc1ce+~v\xfaH\xa9\xd8\x1f>y\"5\xec\xa7\x8f\x07O\xa4\x86\xfd\xec\xf4t\xa0\xf2\x1a=z\xf4Pj\xd8\x87g\xc3\x81\xcckt\xfe\xe8\xf1\x13\x99\xd7\xe8l\xf0p \xf3\x1aA\xfc\xdd+Qx>\x94Y\x8d\x86\x83\xa7*\xab\xd1\xa33\xd1\xee%\x84\xe9=\x1b 8V\x9f-\xae\xf9\xe2\xf8.\xb1@\x9c3\x95\xa9U\xff1;\xf1\xa7\xc0\xc8\xbc\xd4ZD\\\xdc\xd0Ev\x15Q<\xdf\x94\xbcXI\xb7~\x86\xc9\x17qy\x92\xfc-Y\xbc\x95\xa1\x10XT\xe0\x94\x18o\xdbh\x11\xf7\x86X\x00\x80\xb7$-\xe6\xf9\xf5[r\x95\x95\x9c]\xbf\x15\x00f%\ne \xdb\xdf\xe8\xa6$\xa9\xd9\x8f2\xba\x8a{\xc3*&\xf8:N\xc3\x94p2\xe7\xaf\xd7\x84>{\xf3\"\x80\xa0O%I\x11\xfe\x12\xa7a!\xdf\xfe\x9a\xfc\xbd`\xc15\xc2\x1fc*(\xf4\xb7\x9b\x1c\x9cJ\xed\xde\x05_\x10~\x1doB*\xaey\x9e\xfd\x17\x91\x847\x0d\xc5$h*\x9f\x02i\xf3\xc1\xc6,\xfa\x02\xf1\x11^'%4\xad\x1a \xd5\xdf\x87h|\x1d\xc7\xf1g\xf3\xfca8\x9e\x8b\xca\x0f?\x0c\xe5\xe2\x94\xf0$\x7f\xe7\xe2\xf7)\xfc\xc6\xd7\x08S\x84\xdf\xc5\xcbP\x00V\x18f\xf0\x11S\xec\xaf\x19Y\xb3bN\xca\xb2`\xa5/\xea=oWJ\xc9\xbc\x90Z\x01\xa8\xf1&\xde\xaeYq\x99\x0b\x804\x99\xe2\xc2L6\xba\xc6\x8c,d\xef\xe2\xa6\xfd\x9a\xac1\xb8\xdb\x16\xac\x14\xfcD\xb4\xad\xaa\xd1U\xbf\xff\\F\xb6\xda\x96\xe4\x13a\x19\xbf\x8e|if\x83\xd9&'/@\x86'v\xe7x\x03\xdbs<7\xfb\xe3\xeb\xe6\x0e\xaf\xd3\xe9\xf8S\xf8\xb6s\x83\x83m\x85\xa2\xcb\x03\x85\x86\x0b~\x16_g$O\xbdL\x87\xdb\xd0w4\x80\xf0!?\xdbS*\x1e\x81\xc1}\x1d\xfel\x10\xd7\xdb\xa2\xe0\xdd\x07\xb5B\xf8A\x9c\xd8\x03\xf17\xb5@\xc1$\x0c\xc3wx\xff\xa2H\xc8\xc0\xec\x1a|\x08\xbe\xe0\x05^a\x8e\x9f\xa1\n\x87a\xf8|\x8a_\xdb\xa8\"\xe1\xe7$\xffhG\x9d\xdef\xc4fT\xa9\x1eV\xf4\x00\xab\x05H\xdf\x92\xc5\xaf\xc9:z\x86\xe7\xfcK\xf4\xa6Bx+\x87\x14ql\xce\xc3\x9bP\xff\x94\x96P\x04\x8c\xf1\xd3\xf4\x8d|\xfb\xbex\x016\xdc\xd2\x9b|\x91\xe5\xe4g\x17s\x17\xe2\x12\xfd\x92\x89\x83\x87\x0e\x8c\xd2\x1c\xb27\xa1\xfeY?goB\xf7\xb1\xaa\xf1b\x1f\xa55V\xf99\x13\xb8\x85\xa3\xed<)\x89\xb7\xff\xceE\xaa&\x915}e\xf7\x15)\x0b.\xc9\xe0\x97\xfe\x08\n\x81\x85!\x82y\xd3\xe5k\xfdFWy\x0b\x9e\x87%15\x98z\xa1+<\x97\x06\xb2\xa6\xdc\x18\xcc\xea\xef\xffsCJ\xfe\xe7\"\xbdv\x9a\xd0\xef2S\xef\xaf$I\x9dq,\xe1Q\x17\xbe#\xf3\x8d8d\xcd\xc9\xb8\xafMK/3\xfa\xd1T\xc93\xfaQ\x17\xfc\x94\xe4\xf9e2\xb7\x85s\xf5\xa2\xf4G\x9a\xe0\xd2\xa4\xc3&\xcf\xab\xc3+}z\xc3J\xbb\xa1\x91\xeee\xb5\xbb\x86\xe8\x10\x19\x1f4\xfd\x83\x13\xa4R\x95h\x06\x1e\xfcj\xb69I>\x91\xa0\x10T\xb8\xb4m\xcf\xc3\xbc\x98\x83\xdd\xa0\xe3\x17\x9a\x87\xb4HI\xcdQb\xa5\x04\xb4\xbfQ\xe7j\x059.\xd5{\\\x9a\x86@\xc4m\xdbUAs\xe28f\xeag\xbf\xdfUZ6\xdf\xf5\xfb~9O\xf2\x84\xf9=Q\n\x81Vi\xb2\"\xfd~\x8fk)T\xb6\x08h\xbf/\x18\xb5\x06\xda\xfc\xed\xed\xcb\xa0\x00?Z\xd4T\x16|\x0c\x9c\xc60A\xa3\xf5\x98\x8f\x83M\xb0\xc69.\x11\x9e\x07\x05\xfc@\x91j 6EM\xf2TS7Y\xb8J>\x92\xb7d\xf1\"\x0dhs\x1aarY\x16\xf9\x86\x8brL\xe4\x90F \x04p(\xb0\x05q\x0c\x8b9\xac\nN\xa2\xde\x10SP\xde\xc36\xc0\xef7EF9a\x91\xfc\xde\x807\xa0\xd3*3`=\xf4\xaa\xc2u\xf0\x13m\x89\xf8\x1c\\\x91\x0fb\xebq 23\x8d^j\x0f\xbb\xdd\xb6\x8a\x0e~~\xda\xef\x07e\xccA\xf0k\xce\xe4\\\xaf\xd6U\x98\x95o\xf2$\xa3\x92\x10\x0d\xe4\xf4\xd08\x90\x81!<57E\xa6\x9a\xb0\x83\xaa\x1a\x8a\xa8\x12\xf2O\xa8`\x1b\xa7\xb1,p=b\x15\xe9_N\xf8\x14LV\xc5\x88\x0d \xda\xb9y\x13\x86\x8biQ\xb3\xdf\xef9\x9f\x8cP\x12\x83\xe0\xf0Xz\x93m\x8e\x8e4\xea\x96\xcdS\x05\x0d\x02#\x1f\x9f\xbd\xff\\\x18\x07\xf1\x84\x117\xbe\xcc\xe7\x8c/\xc1\x1e\xbdLVD\x06t\xbf\xdcp'\xd9\xa1\xf2\x98\x08\xbd\xb7D\x94\xa6 \x1b\xf5x\x01\xf6d\xe1\x0c\xebm\x89\xec\xa5\x13\xcc\xe9\x9c\xbc3\x04\xc9\xe7\x84Q\xbfB8\xa9\x02\n\xc2,\x13\x9dd\xc2\xa7\x93b\x1aSy\xc9n\xb8\x16\xb3\xefN\xecE\x80D\x8d`20\x8bf\xdf9O\xad\xd0V\x92\xe3c\xaa\xcf^\xd0[\x00\xa4Z\x04\x04\x12n+\x07}\x16SM\xb1\x05\x04Y8\xea@d\xa6\xf5P\xcc\x9cL\x05\x12P/\x8e\xb9=\xa0\xcd\xd2\xdd\xae\xb0wH\x87\xee<<\xd9~?\xc8\xa5\xc3\xb1v\x14\xd7\x1e\xc6\n}\xc0%\xb3\xda\xb3\xc2+\x16\x9ekgC\x91\xe3\xe59)\xa68\x89\x99\x99\xe0V\\\xf2(\xab\xa4\x8b[\xd2\x85~\x92\xdb\xa2\x9f\xc4\xe8\x0d1\xb3K0_fy\x1a\x14&OE\x19\x7f\x0c4b\x16\xe0\x9e\x8f7A\x89\x13\xccP$F\x17\xeb\xa7\xaa\xaa\x10\xce\xabZ\xeaPb@[\xec\x17Iy\xeacb9\x99\x01\xbc{\xf8aP{;To\x87~\x15|\xae1\xc5\xe0\xc9\xed\xf0\xc8\xdb\nT\xac\x8a}v\xbb\xbd#\xff A\xd6pZ\xcc#\xdaI\xc0\xb3X\xb06Y(\xe0\x83~)C\x1a,\xb2+\xbd3\x08_&%\x89\n\x88\x1b\xa1U>\xbc\xdf\xef\x88Q\xe1k\x12\xdd+\x98\xbd\xd0^V\x1a\xb3\x82\xf0\xc2\x86]Ib\x9b\xecbL#\xc9\xa3\xb0\x16\x8fR`\x0e\xcao\x01\xce\\\x19\x08t\xa9\x86\x90\xe8\xdb\xfb%\xa8\xa3\x89\xfa\x93\xc5\xaaI\x85 \xc2[\xc5\x95\x9b)\xe7\x19\xedfu\x98\xca@\x84[b\x8e/\xdd\xe2\x90\x8f\x15~\xfc\xe4\xfc\xfc\x9e=\xdf\xb4\xe4~+\x18\xa92\xda\xfa\x19]\x14\xc7\xae\x0b\x9ba\xb5d\x11HH\xe7\xbc\xf9Z\xa0\"\xa0$;_\x1foX\xee\x14\xf1\xe4jO\x17<\xb9*\x8f\x93|\xbdL. \xa8%\x9d2C\xbe\xee\xf9\x96\x16\xc7F\x9by\xbcN\xf8\xb2\xac\x17&\xab\xcb\xecjSl\xca\xaeB\xf1\xea\x983\x99\xae\xfe\xb8\xcc\x93rY\xeb\x9a/\x8fKr%\xf6\xe7x\x9doXc`|y\x9c\x92y\x9e0\x80\x0b\xc7\xabM\xc9\x8f\xc9\x97\xac\xe4\xcdZ\xb4\xe0\xc7*\x14\xc8\xf1\x7fn\x08\xbbnV\xb04\xfa\xb1\xd2\xe6;5\xa4\xfd\xa1\xe8\xa1{\x05l\xf9\xe9\x97/\xc7\xccP\xf7\x1d\x15\x1euVH\xca\x920\x0e\xa2\xe5\x8eo\xcc\xaf\x17\xdd\x83*7\xabUR\x9bR\xe7\xb7\xc7Rf{s5\x96\x1f\x97\xc9\xa2\xbb\xa2\xb3N\x07\x9a\x93\x07m\xff2j\x96\xeep\xa5\x8c^m\xf2\x84\x89\xd6\xea\x87fcp\xc41#\x8b\xc6\x89\"t\xb3:\x16\xd4\xff\xf1*+\xc1\xfc\xcd)W\xda~;\x8dc\x99\xb7\x8b\x94\x8d\x03Q\x1e\x7f$\x97\xc9\xe51\xf0k\xb5\xf6\x97\x9c\xaf\x8f?\x11vY\x1eg\xb4u\xa4\xe10\x81\x14>%p\xe0\x05\x04*\xfd\xa8-A\xd1e\xd1dZa\xcd,\x1f\xaf\xb2\x15\x81\xd1\xdb6\xcb5\x99\xd7o\x1b\x05]\xfc\xb1$\xba\x8e\x0d+\xdeY\xc9\xce\xb4U\xaf\xc2\x12\xb9\xbdU \xc8\xf9jE\xd2,\x91\xab\xd8\xdd|I\xd8'\xdb\xa6\xe0!:\xcb\xf7\xdel\xb1Q\xab5\xbfV\x15\x9b{(\x9b=\x06\x90y\x9c\xd0\xf4X\x83r\xf0Ql\x9e\x86\xa6@\xaeQ\xac\x0e\x99\x1e\xd3\xa7\x84e\xe0(\xd51\xe0R\x8d\n\xbc1\x1b\xeb4t\xd6\xe9\xff\xa8\xe9W\x15~|z\xdfy~,\x0e|\x93o\xae2\nZ\x86,\xe7/\xe8O\x80\xc1\xcbvl\xe7'\x833e\xff#\x10\xb2\nK3\xd0aiNO\x1f\xab\xd0\xceg\xa7\x0f\xa5\xa6\x01^\xcd\xcd\xabML\x83\xe1\xf9\xd9C\xe5\xcb7x<\x80P\xe9\xf5^\xb7\x8c\xc8\xc8\xd7)I#\xeb\xdc\x07z\xb7$\x8f\x1c\xd7\xbe<\x8f\xac\xcb\x9f\xcf\xa4t\xe2\x98)\xf1\x84\x1fm\xad\x84:\xda\xfa\xfa\xfd\xb1\xab\x15\xf4#\xbf\xa0\xb0\xc0\xcd\xd5\xd8fi\xe4K1k\x19m\xc5\xf9\x8b\x92\x10\x9e\xc4a<\x8dJ\xf9P\xe1\x9a\xac\\\xd5\xcc\xc3\xda[\xf9\xc5\xbc\xfe\xb2\xc2\xee\xf0\xe0\xb3Mh_\xc9o\xd6\xce\x9bJi>\xca\xa8\xb9fU\x85\xcf\x0779\xfa\xfcS\xb7\xc7\x7f\x8fn\x0f\x17\xf5\xb5c\xa4fU\x014)D\xa8\x8a\xb7\xd5H\x1b\x0e0/\xa3\x1eA\xeaj\xeeKf$\xe3u\x13\xcc\x10\x987\xd1\x94|y\xbd\x08\x18\xfaa\xd0\xef\x07t\xc2\xa61\x99\xb0\xa9\xccc\x00*!\xd2\xefw\xd8\x8b\xa8^\xae\x08w\xda~w\xbd\xba,\xf2R\x8e\xad\x88e\xb4>\x16\x1f\xaa\x1b\x104*~`\xda\xca\xa28:B\xce\xa8&\xc5\x14\x06\xd6\x9a\x93\xb1w-\x9f\xd3\xcd\x8a0\x01\xe2\xcc\xcc\xc4Wr2\x93b\n\xf3\x11\x7f\x0d\xb7L\xbfJu\xaah\x907\x90\xac 6\xcf/3\xea<=[g\xa5}\x92\x97\xdby!oP\x1d\xd4\x81Y\xe3\xa3\xf3\x81\x04k\xe7\xc3\xd3\xa1\x82k\xa0\x06\xcd\x8d~U\x006\x01\x97%`;={|\xa6\x00\xdb\xf9PjP\x1f\x9e\x9f\x9f\xd7S\x18b\x1e\xfb\xbe\x14\x0bk\xee{2\x1di3e\xc5\xdaa\xc9L\xfe\x9a\xac\x9d\x98\x90Jm\x02F\xd5aV\xbe\x03k7\x88\xb1W\x86Y\xf9L\xc9$~c\xe2\xa2\xb4\xb8\xc9$d$\x0d\xfc\x7f#^Z\xd0\xef\xb9Wn\xd6\x82\xa5\xf7\x18HC\xbd\xb5\\\x15\xef\x9a\xf0\xd0f\xcb,\xe2ZGc\x1a\x18\xadW\x90\x85i\xc6\xc0*\x8d#L\x10\x8a\x08\xce\xe3\"\xcc\xd2\xce\x80\x9f\xed\x90\x9dr@3\xb9\x1d2\xf8\x80\xdcy\xefb\x96\xa5\x173k\xe8\x9bQ\x08\xf8}\x99oH@B^\xa8\xf1 T\x853\x99\xf3R\xda\x0b\xe7\x8e\xbd0\xd8E\x069\x1a\x1d\xee\xd6\xcfR\xbf\x11\x91/\xf4T\xd9\x9e>\xbdMIJ/K!\xf6\x90\xac\x90\xa3\xca\xf7\x92\x9c\x91$\xbd\xf6JBhm\xc8\x1cU3\x84*\x06\xc2\xe8\x1c\xd7Z3R\xc1\x83\x8cv\x96Fy\x85\x0b\xc5W\x97\xe3\xad\xc6\x02\xe6U\x15m\xc1VM\xac\xf6\xf3/\x9c\xd02+\xe8x[{\x8c\x1a\xc5\xf0\x8dL\xb2\x08xL\x9eI\xf5\x10\nl\xd4\xef\xbb\x8f\xa7\xed@\x87j\xa5\xa0\x8a\x13?\xe2b&\xbe\xbe\x98y\x05\x93\xbfO/f\xaa\x12\x18m\x87\x10m\x1b^\xc4[11\xb7\xcb`\xee<\xc6\x9bP2\x07R\xe9\xec\xd6\xc49B\xee\xa7\xa7\xf5OO\xf7\x7fz*>\xadTvS\x07\x1d\xeb\x05\xa8\xbd\xb4\x0b\xd1z\xbd\x7fA.f\xb5\xca\x17\xb3\x9b\x16\xa7V\xdd]\xa4Z\x81\\\xac\xae\xe1\x05\xf3\x8e\xd7\xad\x15hWQ\x8b\xd8\x9eZw\x93\xedEmW\xb1\x8bk\xe9\x16\xbd\xb2\xf6\x8d]\xd6\xfa\xbbCkjk\xde\xbc\xa0\xb6\xae\xbb\x9a\xf6\xad\\\xca\xd6x\x82y\xf3]k\xc6\x8dr\xb5\x82\x8dYt\xb4\xd4^\xbbF9,\x9c\x82\xf6\xf3\n\x19}\xc6:\xa4\x05\xffM\xb3\x10\xc8M_\xbbe\xc9\xe7\x9f\x94\xd4M\x91\x86\x106P\xa0\x18\xad\xbeb2\xc1\xa6\xc0\xfd8\x1b\xddQ\xe6\x99\xac\xb32bb\xb1\xf2\x8c\xf2(\x89\xb7U\x15\x13\xd0`\x94\x9a\xca\x91*\x1e\x82\xf3\xa9\xa5@\x08\xe5,#e\xc0v\xbbm%\xcd:\xb5\x1c>3!s\x8b8\x07\x19\xa1+\x82/\xb4\x08\xbeP\x860\xb5P\xba\x99.\xcd\xa4)\xaf\xc0N\xaf\n.\xc1iG\xdc\x16\xf8\xe3\xc9\x85\xd9H\x91\x86\x8e#&}F8\x99s\x197N\xf5&\xa3\xf5\xc8\xd3\xa5\x0c\"u\x88V\xdf\xfaA|\n\x12\xac\xc6\x8e\xe7\xca\x1e\xe4*\xd8\x8a\x17j;Xm;j{1*'dz\x18\xe0W8G\x18\x9a\x8b\xe6\x959\x14e\xc3t\xdc\xed\xef\xd0\xf6\x03)\x91\xd7\xe4\xd2\x15N\xe2\xc9\x14\xa7\xf1d*\xcf\xc6\x12_\xe1O\xb7?\x1d\x90\xe8\xcc\xc4\xf5\xe5\xed\xa5\x9f\xfd\x94\xb1\xf9&O\x98gx-@\xe4r\x94\xde\"\xcbI\xa4B\xa9\x9bh\xf8y\xbc\x11X\xfb7@\xc3\x8aL\x0b\x16`\xfe\xa2N\x8f\x0d\xa5\x1c*\x82\x05 2\xdd\x06q\x91_M1G`|\xa6\x0e\xda2>\xf0\xb99\\K]\xba\xb47O\x13?\xc8P_\xfb \x84?\xc7MB\x8c\xa31\x8fx\xbfo\xbf\xe2\x08\x7fQ'F\xf1S\xa1 \x90\xcd\xf5\xb8j\x8f\xb5\xe3\"\\\xe9\xd2+3\xb0[mZ\xafM)\xf6\xfb\xbdLt\x013!Fa)x\xa0\xdc\xd2\x81\xed\xef\xc6$\xea\x98\xad8\x01\xbf\xbd} \xccP\xb8\x04%\xd4\xbe\x0537\xa7\xceA\xdd\xfa\x0c\n\xceQ\x93\xcd\xb2!\x1e\xe6E\x92>\xb7\x1a\x87\x80 \xcc\xe2M\xc8YBKq\xf1\xe5m \xd6\xd2f\xef\xdf\x93U\x1e\xd0\xf0\xb2H\xaf%\x1d\xd9c\xf2R\xb7N\xb3`(n\x86#\x91v\xeeu\xa2\x12\x8a\xf6\x14K\xcb\xdb\x89\xccf\xbf$YNR\x8f\x17\x9e\x18\xba\xfa\x1e\x1c\x8cB\xa5\xdc\x05\xd7y\x04\xf6\x076E\x93\x9co\x1d\x04\xcc]\x10P\xb8 \x07\x8b+\x94\xe0\xcfS\x9c*'\x0d`n\xf1\xc7x\xa3\"\xcd\xcb\x13\x06W\xed\x0b\xbe\x014\x11\x84\xb7\xea\xfaD9V\x87S\xc7\xae\x94\x8fb\x08edz\x95\xb5\xe5\xcb\xcb\nM\x9d\x06>\xc4\x93i\x15\x7f\xc4\xaf\xe3\"\xf8\x88'\xbez\xefO\xcdTo\x18\xcdk\x84\xb7n\xa7\xfa\x1e}\x8a_\x87\xce{\xf7\xf2|\xd2\x97\xe7\x93\x9by\x97\xf4\xfb\x1d\xb7\x03!\xac\x87\xda\x01\x9c> \xec\x88\xaa~QFNQ\xeb\x06wT\xc2i\xf1\xaa\xe0\n\x1e+\xcb\xae\xb2\xfdeW\xad\xaa\xeeCt\x05<\xe5d\x8a)@\xf3[\xdf\x1f\x8d\xcc\xf4Y\x92\x12\xa3[.;CX\xa9\xcd\x98$\xac\xfb\xfd\xcb@\xfdD\x8d\x01^;\xa2\x11 P\xd4\xf6\xbfH\x0d\x9e\x84\xd8\xe0E%h$q3%C\xffJ\x82$\xf0\x08Zd4\x95\xfb\x14fi\x1c\xc7L\xdd\xd8\xac}Y_H\x01\xba\xc65\x82\x11\x13<\x1fAU\xa4\xf8\\p\x86\xd2\x9e\xa3\n\x8d\xa5\xe1\xcc\xea\xb2\xf5)\xa2q\xa6Y,\xf7\x04\xd9\xacN\x93B\x06\xbc-[\xc3`\xe3[\x0f$-H)xr\xe9\x19\xa4\xab\x83\xe1\x06\xd8k@\x0c\xd6Yt\xb0=\xbe$\x8c\xc8)y\xe5f\xbe\xf4@>xlPnh\x81Ri\xb7\xe6S\x0d\xe6\x1e\xda\xf3.0\xc0\xcd!\xb8\xa1n\xfbB\xc09\xc1M\xf7_\xfd^\x90\xc3o\xbf\xaaa\xf3eG\xe3N\x99\xabt\xf9\x8a.\xf4\xb7\xdd\x9d\xd8RWg\xf1U\xdd\x0c\x0fv\xa3K\xeb\xf2\xe7\xbbvT\xe7\x81\xdb]5\xca\xc5*\xbe\xf9]\x1d\xb6Z\xd8\xb3WoZ\x1d?\xfc0\xf8\xdd]7\xdb\xd8\xbb\x87]\xdd\x0f\xef\xa1\xfb\xe1\xad\xbao\xd6r4\x05w\xed\xd5\xe1\xc3\xdb\x9d\xb9\x85b\xd1\x7f\xfe\xfa~\xea\x9f\xef\xd9\xd4\x9f\xeb\xfd=\xfc0\xf8}=\xd6\x1a\xd8\xbb\x97\xad^\x87\xbf\xb7\xd7\xe1\xcd\xbd\xd6\xaat\xd1 \xbdV\xfc\x03C\xeb\xf7\xfb\x9dTC\xe5\xa0\xd5K\xd0\x918b\xe4f\x8e\x9e\xc9\xd4\xe1\xcf\x19.:\xf8s\x82 \x11_X\xf2\x84\xf1\xf2\xdf2\xbe\x0c|i\x08q\xe2\xa3\x0e\x87H'\x0c\xa9\x8dm_\x8c\xa8\xf4\xdb\xb8\x19cl\x8d\x95\x85\xc0\xfd\xc6A\xd2\xf4\x89}\x1fh\x07\x19\xceb\xc2\xa6q\xa1\xb1\x16u\\y\x03hV\x99k\xc4\x14a^5\xc5\xf9\x1dj\x19\xed\xdbz'6WS\x02\x85C\x13\x90\x96\xd8\xc2I\xf3\xd8\xc1\xad9B\x8d\xff\xa5b\x8b\xb6\x1c \x00\xa2\xf6\xad\xbbr\x011\xb6j\xa0\xdf\x90\xdb\x1d$f\xfeY\x9bCm.\x87#\xa7\xb1\x07Z\xbe\xea\xc5q2N\xa2\x89\xef\x9cn\x7f\x8a\x17q\xcf,uys\x07\xa5.*M\x07xu\x93L\xa5\xbbU\xcd>\x94\xd1\xbc\xf3\x92.*\x84\xaf\x15\x91\\\x93\xb8\xdd\xe2\xb4\x83\x04gU\xa1=\xc2 V!\xfc\xa9S|\xb4\xda\xff\xc5\xc8\xeae\xbd4T{v\x8b\xb1\x80(\xefZ\xca\xf1>U\x82xS&x\x0d\xbd\xd8\x02\xd7\x15gK\\W\xab]\xb5\xd4n\xd7\x15~x~~\xcf\xb1\xbb1Ws\x8by\xf8\xd2,L\xcc\xc3g\x7f{\xf6\xe2\xe5\xb3?\xbf|\xfe\xe1\xed\xf3\xbf\xbcx\xfd\xea]\xcc\xc3\x9f_\xff\xfa\xec\x85\xfc\xf5\xfc\x97g\xbf\xbd|\xaf\xcab\x1e\xbe\xf8\xcb\xab\xd7o\x9f\x7f\xf8\xe5\xc5\xcb\xe7\xb1\x80{\x9f\xda6\x0dg\xc3\xc1P\xd94\x80\xca\x0fb\xa4\x9e\x9e?T\xca\xbfs\xa5\xfb\x93\xce\x90\xb9\xd6\xf3\x8ddk\xbe1\xeepRzI\xbc\xdd\xefo\xab\xddn+\xd6\xd8\x1d\x85\x1f*;\x058\x7f\xc72wEx\x9d\xacr\x1f\xb7&\xe0oJx\xab&h\x96\xd8B\xdf\xed\xa6\x8c\xb4\xe5\x03\x18\xc1`\xb2\x89|\xb2 \xddw\x02\x1d\xc0x\xc3\xb7\xcf\x7f~\xfd\xd3\xcb\x7f\xff [T\x87I]=\x17\x8a\xd1T\xa1\x03\xd3\xce\xb2(\xb9\x8fP\xbf\x1f\x90 \xd5v\xf7\xa1\x8f&\x83\xe9T\xc0`9\x88\xb0\xa0yF \xe4\xcb\x96U\xa1\x90T\x107\xa2\xbdy\xea\\\x80I\xb3\x99'\x1a\xcd\xf3\xa4,\xbd\xb9\x9c%\xdb\xccy\xc1d*.\xd0\xbd\x9bK\x18\x13\x0c/\xe4m\xf9%\xcbIL\xe5\x1b\xb9\xac\x02\x11Jm\xfd\xa6$)\x90\xcb\x00\x05\xdf\x11\xee\xbcW\xa6\xc2\x8d\"\xc5\xf7\xc7FX\x08\xa2F(\xea\xe2\xca\xe3^\xaf\x9b]\x97\x9ft\x80\x96\xb8\x13\xc5\xefv\xbd\xa1\xfaD*\xc8&\xa5c\xcel,\xa5\xa77\xc2\x1f\xcdL\xd5\x98\xa2\xce\xc6\x1e~\x18\xdc\xb19\xcb\xe2\xecipx\xe7\x06\x153\xa3\xf6\xab\xa1\xf7\xfa\xea5h0/\x9d\xcc\xc7\xefX\x93\xae\xe6\xdb\xac\xc3\xefX\xa3\xee\x0e\x1a\xcc\x81Z3W\xbb\xf5\xd5\x0b\xe6\xf2\x03m\x92\xfew,U\xab\xe1\x06Y\xfe;\x16\xa9\xa3i\x97\xf6V\xcb\xe3H\x03c\xe2>\xd9{\xed\x08*\xcd\xb57U\x8c\xa1}\x03\xe2\x8c\x0b+\xd7\xae\x97\xa0\xe8 vP?\xc2\xf9\xe74@\xbb\x9d\xef\x83\x01\xc5\xdf\x8b\x8c\x06I\x1dgX#\x87Z\x8eO0\xb3.\xdf]\xd3\xb9 \xd6Yh\x9f\xc1\x16\xc2\x85\x83\x99#\xf1\x16tw\x92\x8a\x01\xca\xaa\xd8\xdf\xf0\xc5\xf1\x13\x1f!p\xe5jDl\xab\x01h\xdbb\xbd\xfdIa\xa4\xfcv5r\x84 \x9a\xc6n5\xe2\xb0$2\xde\xdf\x9e\xe6!ya\xfdy\xc2\xa7\x1a@\x07\xad\x124R\xfem\xf5\x92\xaa\xaa\xca\xe4\x13Q\xbe\xc5\x16i\xdea\x0bk\xbb\x84\xa9\xde!\xd2\xd8!\\\xd7\x87\x1e\x9c\x1c\xb2a \xcbI\x12\x82aj V0Ox\xf6If\x92k,\x1c\x9f\x1e\xda\x17\x8a\x10\x9d\x90i,\xe3\xe9,X\xb1\x92\xe9\x1f+\x16B\x86\x1d\xb3\xd7\x14\xfb\xdfy\xef\x97Y \x1a80\x94\x13\xc8\xb5\xf4\x94c\xe7\xf7\xa5\x97\x83K\x93\xc7\x0b\x95U\x0b|\xc7\xa4\xf1\x86\xe2,H*\xb8\x11\xaf\\\x93y\xb6\xc8\xe6\xdeZ\xf0\x8ebH\xd7\xc5\x86y\xcf\xde\xbc\x08/\xe8w\xde;B\xbc%\xe7\xeb2:9\x91\x94A~}\x92\x16\xf3\xf2d\x9eg'\xd0\xc2J4\x9fQ\xc9\xda\x88[\x7fA\xfd\xa3,\x94\x8cK\xb6\xb8\x86\xd3Z\"T%ij\xdc\xc3\x8d\x89\x8f\xb3<\x18x2\xe5\x9a4\x19\x80H\xd6\xf2f\xda\x9f\xb0\x99\xab\x9fO\xba\x1c\x11\xa7\xfb\xde\xc3\xe5\x08\xd8D\"\xae\x17\xe94v~\xefv\xeah\"H\xf5m\xfb\xac:}\xdc\x9d\x98\x8a\xfb\x86\xcd\x1b\xc36\xdc=\x8dk\xc7\x9f\xef\x1b+\xb2\xa3\xc3L\x10c\x14\xac\xa4l\xbb\x86\x0f\x1e\xdf\x04a\x11\xde\xaa\x14k\x82\x03\x89H\xe5\x06\xa9\x00\x06\x1b\x12\xf5\xc6\xa4yH]B\xcaF~\xec\xc51\xa9\xdb\"\xa1\x86\xd7\xfd\x1e4\x13\x1d(\x1cF2]l\xad]@\x06H\xc7\x91\x1b\xd1f\xbfP\x0eI_G{\x9b>\xdd\xd7\xf0\xe9\x0d\x0d\x9f\xca\x86\xb57y\x8b\xcd\x7fUp\x9bU\x86\xa4\xbec\x0b\xa9B\x86\xbc#\x9c\x0b\x1e^\xaeq\x83\x90\x85\x83FP\x07\x1d\x0b%\x1c\x99\xf3b\xa9\xc9 \x9fN\xc8t\xb7\xf3\x8b\xc5B\x07\"\xd7\xb6zF\xc8C\xc7\xd6S\x82V\x0d\xf4\xdbr\xa2\xa80E\x15\xa4\xb2\xb3$\xc9}\x8e\xbbF\x01\xddy\xfc>\x98\xc7\xc6t\xacF{\x87 \x19\n\xe2>gcI\x95?r*2\xa0\x89\xb4;\xb2HPP=Zo\xe8\\\\&.\xae\x83I\xda3C\x88H\x81_\x18\x86-\x14'\xcf\x19\x9b\"W\xb9\xdak\xae\x9a\x8a\xef\n\xae\x99{\x9br\x16\xeb\xf6\xed\xd1\xfd\xed\xd5\x8f\xd2\xad\x9bT\x9b\xa3T]\xa4\xa1n\xa1\xaeh\x9eWUw\xb4\x1fb\x02\x8b\x10\x17\xc4u\x07\x16\xb1\x1bd\x12o;p\xd4&?\xe7\xf1\x8fJ\xabZc\xe3c\xc8m\\\xe7\x1c\xbae\x95\x00\x1d!\x91\xa3X2\xdea \x08 \xd4\xbf\xa2w\xc9\xdb\xdd\xaeWk\xd3\xf9\xb5\xbd9\x0c\xc0\xed\xbal\x18\xf1A\xbfdtx_N#\x8d\xb4o\xda\x17\xb2\x7f\xacM\x8en\xefpO\xc1\x13\x00\x86K\xbaLO\xf7\xaf\xd4\xc1\xdeo\xd8\x97Z\xaf\x8e\xe5\xefW\xf6v\x9b}\xa9u\xd94\x06\x85~\xab\n\"v\x01\xf4\"\xaeO<\xd0\xd8\x04lY\xba\x89c\x99z/p\xb1\xba\xe2*$\x94\x02\xd6\xa1\xdf\x0f\x9a\xafb\x00\xca\x08\xfa\xad\xb1\xda\xf7\xd6\x7f\x1d\x14\xd5\xc6\xd1Q\xe4\x8e\xc72\xb6\xf76\x18\x07\xce\xd6F\xd2|\xaf\x87Q\xd5D\xb2s+\xaa\x05\xa9]Cf\xc7o!\xb3S\x12\xb7d\x9d \xbe[\xfc\x91rS\xf1R\xf0#\xc0\xf7\xcd\x03)\xb1\x97E\xf2\x0e\xa4\xa9s\xcc,\x8e\x96?\xb5\x82>\xe6\x08\x0c\xc6\x9f\xaf\xd6\xfcZ^\xc1\x80Y\x03s1\xdd$Tb\xc8\x9f\xf2\x8cP\x8e3\xd5\x17D\x7f|_|$\xb4\x94I\xfb3\x9d\xa1fk\"\xdc\xecv\x81\xf9\x0d\xd1\xd2\xcdS\xb8\xe4|\xed\x16\xc3\x8b\x8e:\xa1\n\x85\x18O\xc20\xd4v\x0f4\xee\xae\xe4\x1a4\xd01\x8d&\xd3\x96\x846\xb3b\xbe\\k6'\x9a\x06\x98\x8e\xba\xdbU\x11P!h\x06)\xa3\x99\x16\xa1&\xeb,\x84\x18X\xda\x89\xfd\xe4O\x7f\x9aa\x9a\xacH\xe4?\xdb\xf0e\xc1\x14\xed\xe0cB?\xfdM\x05\x18\xd0f\xd9\x12\x98\x91\x90\x8bE\x84\x90\xa0\xfeF&\xa7S\xc3\x19OL\x97\xbe\xdb\xa5\x91\xdc:\xdd\xfa_\xd9\xed4\x9aLQ\xa5\x85\\\x9b\xba\xc1N\xc00\xd1\x16 m\xa0:\xf1\xddK\xedc\xfb\x08Oa\xa34t\x8b\xa7\xb8\x06\xb3\xd75p\x9eV\xf8\xe9`x\xdf9\xf5o\x13Y\x08b\xa6\xb5\x02\x0b \x02\xbb\x15V\xa8\xfdR\x05\x15\x92\x05\xed\x90B\xaa\xed\xae\x88B\xf2\x93}\xf1\x84d\xe9\xde\x98@\xaa\xdd\xcehC\xb6\xac\x1dlH\x95\x1d\x0e\x16\xe4V\xea\x8a\x15\xe4\x96w\x86\nR\x15\xf6E\n\x92s\xdb\x1b'\xa8\xf5u#L\x10|\xee\x06 j}P\x8f\x11\xd4*\xb6!\x82\x0e}iC\xfa\xb4ju\xc5\xfdiU\xaa\x87\xfdi\xce\xb9#\xe8\xcf\xe1\xc1\xd88D\xed\xf9\xd4c\x03\x99\xa3s\xf7\xc8@\xaa\xe9\x83\x81\x81\xf4\xb9m\x85\x05\x82\x027>\xcf]C\xea8RS9\x904+\x81&y\xd6\x9d\x04\xa1\xda\x1f|\xc7\xde\x81\xaf\x08>c?\xbe9\xf6\x8c\xad\xdb\x15z\xc6-\xdd\x1fy\xa69\xd8\xdf\x15w\xe7\x7f\xc3\x99\x0b\x1e|p\xf6\xbf\"\xe8\xdc\x1dP\x83[\xb5\x8e\x1b,\x0e\xf8\x83\x90\x83\x1b\xf8\xean\xb1\xe8n\x85\x1et\x0b\xdf0\x96\xdc\xad0\xc4A\x14\xf0\xe8\x06\x9crk\x14\xd1\x1ej'\x8e\xb8\xa1\xda}G\x91\xbb\x05:i7q\x7fxB\x97\xff\x1f\x8e(\xee3J\xd9\xed\x00\xe6-\x83\x94\xfd\x11\xb8\xe2\xbf\xed\xe4\xab\n\x9f\x0d\x1e\xdes\xaa}\xccm\xca\x8d\xb6\xe1\xf2\xf9\xf9\x10\x8d\xdc\x1a\x0d\xe9_a\xc4\x19$\\\xe4 \xffU\xb9\x8a\xbb\x8aQ\xa2\\\xdbY\xfc\xa3 'L&l\x8a\x93\xd8\x07\x14%u\xce={|\xf7\x04N\xff\x0cT\xd6\x98\xd3\x1f\x1f\xa8\xac\xe9:\x1e\xf3\x96\x12)\xe6M\xa9\xa0\xac\xf4+aW\xc4J\x9c]\x87}\xa9\xe6\xd7!e\xdc\x06\x9e\xad3\x9b\x9c\xa0|_\xa8\x18h\x0d\xe7\xea\xb6|Z\x86:\xcb\xb4,:i\x870+\x03\x90\xaf\x81\xc5\x17\xaf\xc7\x80\xa1\x98u\xfb\x98\xf1 \x9d\xc6\x90\x1e'bF\x08\xca\xab\xf6x\\\xe1~\xb6\x08\x88\xd9K\xff\xc4G?\x1e\x0fuB\x01\x8e\xe94&N\xf0\x7fm\xa3a\x1c\xcb\xb9\xebXN\xb5\xd4\xc9\x96\xfb\xbe[\x81@\xf8\xc7\xc3\xabW\xe2\xfaj\xd7\xef\x13\xc4\xf1n\x9b\xea\xd5lBY\xd3n\x93 D'3\x15\xda\x9eU3y{\x8c\x84Z\x8c\xa9\xb6\xdd\xee\xf2h\xd1\xa2f$*\xc7kz\xdb m\x1a\x98\xb9\x15\xb1\xb2\xea\xf0\xea5mt\xbf\x1e\xb6^\xbb\xb1,\xab\xa6/\xa9i\xad\xe3\xdd\xb0\xfeN\xc7[\x98\xd4\x03GL\xa6\xf5\xe0\x12S\xb9\xb2`x\x08\xaao\xe9\xaeg\xfc\xc1\xdaJ\x89\x99*\xba\x98i\xd7\x7f\x15\x04O\xba\xd2\x95\xcb\x84\x11\xed\\\x0f\x91\xf0\"\xef\xc1\xf6_\xde\xbd~e-R\x03\n^d\xf8\x14b\xcf\x8d\xea\xe6W\xca\x92\x05S\xed\xd9\xd0,6\x1b\x84\xa9\xeb\x93\x91\xa9\x1a\xcf\x05\xa7\x93\xd1\xabFMh\x0c\x0c:\xbb\x1a\xd4\x9b,\x9b\xb4~\x19\xdd\x8d:\xb5ojvXkvxC\xb3\xc3[4[;t\x986}\x1b\xbaV\xebM\xe3\x93\x0e\xef\x8d=\xab\xd7\xfc\xb2\xd6\xd9\xa1\xd5\xec\xe8\xb2\xed\xd1\xb1wu\xbf\xb6\xdbag\xb7M'\xf0\xbd\xab\xff\x15\xdd:qfi\xcd\x83\xa2k\x1f~v+7\x9dB\xf6\xec\xc0\xcf\xdd\x1d\x1cZ\xfbf7\x0d\x17\x91\xbd\xab~\xf7\xae\x86\xed\xae\x86\xb7\xe9jx\xb0+n\xec\xa3\xb4\x0d\"u\x9d\xc7l\x05\x80a\xadJ\xc6\xd5\x042\xf2[`g+*\xf7\x07Z\x0bmcH\x13^\xe16\xc5\xd0A\xf6\xa94\xbf%\xceM\xfc\xc9\x89\xb5\x97TvB\xd2\x0e\xc7\x06\xbeR:{\x8d\x9b\x94\x95\x17\xbf\xd9W\xb7\xe5\xdd\x0e\xa3\xae\x90v\x9b\x87\xd4,\xae\x89\x9a6\x14\xdac3\xd6l\xdf\xc9\xda\xe2\xb4?\x05*=he\x05\xc2\x9b?h\xae\xce\x96\xbasu\xc3\xdf\xed\x99\xab\xe3.~\xc0\xb1\xdai\x7f\xdf\\\x0d\xa55\x96\xda\xd5[:\x0b;\xa3R.\xcc7~!\x96o\xc2\xa7c\xf3\x0bF\x1e9M\xd5\x9d\xad%\x0e\x9f\xd7\x10\xfc\xa6B\xb8m\xb8uc\xdf]\xc6^v\xb9\xb5=\xd9\x84O\xbb\xfd\xc7\xbb?\xef4\x05\xbb\xcbP\\\x0b2;\x9a\xbc{4\xb9\x1eM\xbe\xaf\x85\naR\xf3J\"5z\xb5u\xd5\x15\xf5,\xfa\xea\xf7\xe1\xafC\xcfve\x9a\x01r\x08\xac'\xeau\xbf\xf7\x16\x19\xc9\xd3\xd0\xfbM\x95\x95\xaeE\x85\x0f\x8c^\xe7\x16\xc8\x00\x16*i\xcd\xcf\xc5\xfc\x86^kU\xeb\x9d6\xdbn\x0c@\xd3\xc1\x04\\\xdc\x9d\xa1G\x14\xd7Z\x8d\xb2*\xe68\x89Y\xc0\xf1\xc4\xaf\xd7\x05\x8d\xb2S\xd7\x89?F\xad\xa3^\xc9S\xc2\x94KU0{\xbf\x84\xc8L\xe15\xc9\xf3\xe2s\xd0l\x11Ur\x16\x82\xd6L\xc9\x9a\x91y\xc2\x89\x9a\x93\xf8\xec\x8a\x11B\xe1+\xa8\xab\xe7\xe4\xbd%I*=\xa3\x92\xcbb\xc3\xc1\xc4\xd8\x9b/\x13zE\xa2\xbaC\x95\xf4\xed\x96>U\xc9:3a\xefO\xae6YJ\xca\x93Uv\xa5D\xb0\xf0\xe2X\x9e\x9f\xe3E\x96\x93\x93\xefd\x8b\xe9\xb1\xcd\xa1}Ag\x08g\xb7\x9dm}\xb9n9\xd9\xd61\xf9\xef3\xf1\xc6m\xee\x00D\x19\x86\x10\ne@Q\x85\x13\xa4p\xed\xdb=QG\x94\x8d\x1b\xd6\x066[1\x83h\xab\xac<\"k^r\x00\xbb\x88O\xf6`\x97\xbdV(*%\xf2/\x84\xcf\x97\xca\x0cC\xe66hI \xba\x98I\xed\x00\xdf\xe5\x12B\x10\x07\x9f\x08\x16f)\x1a\x8b\x7f\xf7\x9d\x95\x9f7\xeb<\x13'@G9\x93\xd1\xb2\xcd\xe1\x81\x16*?\x14\x0b\x1f\x05\xcaa\x83 \xa2'ISYj\xaf_U\xe1Ggg7\x08\xbd\xbeB\"\xf3\x82.\x8a\x9f\xad\xfa\xe7\xf5'\xc2X\x96\x92\xbdR\xd6}\xf5\x83\xad8W\x10\xa8\x83T(\xfe1\xd8\x8a\x9a: (\xc7[\x99;-\xa26\x91^Qi\xf3\xb1&L\xfc\xded.\xf5|\xdd\xac\xaf\xb9\xd55+>e\xa9\xf2\xbel\xe9\x0d\x8f\x0b5\"\x1f\xbc5\xbfG`\x92&\xd6\xc4T\x89\xad\xe7\xef3\x15\xd8\x14\xbcB\x89c\xadI\x9d\xac\x8268%\x83\xbb\x99\xb0\x8fi\xf1\x99z\xba'i\x83fF\xe3v%6\xf7\xc1\x96X\x8b4g\xf6*w\x9c\xefVG\x15\xaa\xaa\xaaB\x15>\x7f2\xb8\xff4'\xaf\xb56\xea.;~\xf0\xa3`\xebh\xdaJ\xbd\xf5\xe6\x93[\xed?\x0f\x9d6\x9cd\xab7\x1c\x0c\xb7\xe3=\x87\xa3S\xc3\xd9>!Z\xe0_\x1b\x88D\xe9\xd9\x14\xdd\xfe\xfc\x88\xda\xbf\xf7\x08\x99\x11\x08P\x91U\xb79@\xae6\x15\x85\x1f\xc9u`\x8f\xd1\xe9\xe9\x93\xfb\x8fH\xa3\xf3\xde\xba\xb9\xa9\xdb\xc7\x07\xecyG{j\x07(\xfe\x11d\xa7D\x03[\x8d \x9a\xc9d\xf5\x01\xa2h\x0b9\xe4U\xe2\xed\x9f\x13\x9e\x04(\x84t\xcb\xae\xc37AU%\x08\x9e@\n#\xb9\xcc\x81\xbb\xb5v\xbf\xe2YKL\xbf;\x81\xb8-#\xd6\x9d\xd3\x97\x82\xaf\x1482\xc3zV\xf8\xec\xc97Pm\xc9l\xeb\xff\xe3\x05\x95Z\xbb\xee\x8b\x08\x81y \xef\xc6\xa8\xfdE\xb0\xcd\xd4\xcf_\xf2\xe4J\xf7*o\xa3\xf5\xb1\xde\xed\xfc/\xc7\xba\xa2\xf6\xb5\xdc&\xf4Ze\xec\x8d \xb4L\xfc\xe3\xd6\xc9J\xa9\xd3\x8aB\xc40\xcd(oen\xdch\x8e?\x92\xebhS\xc5\x14B\xa1\xaf\xe3\xdeP\xdc\x9a\xba6\x8a \xa4\x05\x94,\x1e\x8c\xd8\x0fD\xab)\xd8\xd1\x11*t\x8e\xd2 \x93\xea\x06\xcb\x1fZ\x1bl\xf0Q\x844\x9d\x9d<\xa0`#\xfa\xfd@\xca\xc1\xe7$`x\x88\xf0:\xee\x0d0;>F\xd8\xb4\x99H\xa5\x8c\x9b\xfcS\xb7\x91\x1cnc\x04\x81\xd8 \xf8D=\xad\xb0\x9a\xdc~\xb96\x89 \xde7\xc7\xf2\xc69:\xfc\x99\x1c\x9f\xce^\x8d\x92}\xc4\xb4\xe0\xc2\x05\x80?v\xc0uT6\xa1~U\xe1\xe1\xf9\xd9\xfd_\xbe\x7fn\xd6\xb7\xd9\xac\xb3\xd3\xf3\xfb\xdf\xacZ\x90\x18\xad\xd9\x86\xdf\xad\xbd{\xf8\xf0t \xf6\x8e\x85\xff\xf2\xee\xf5\xab\x0f\xef~\xfa\xeb\xf3_\x9f)Yq\xb0\xcdV\x02\xf1e<\x9a0\x08\xe1QJ\x95\xeb\x14\x93/\xcd\x82\xcb\x8c&\xec\x1a\xeb\xc7b\x95\xac\xcd\xc3:\xc9Xi\x9eJ\xc2\xa7\x958\x08vX \x7f\x8f\x7fd\xe0\x93\x13\x90\xa6\xc0A&\x12\x8d\x8a\nrW4\xe7g>N7+\xc8z\x8e*<<\x1b\x0e\x0e\x19\x97(Q\xff\xd7,n\xb1&\xf4\xd9\x9b\x17\xe0\x05\x0f\xee\xf5\x9c\xcc\xf9k\xf9R&\xdbv\x1d\xe4k\xe9\xb7\xd5\xf2\xe3\x9a\x9b\xde\xef\xcb\xefMo\xce\xef}\xdb\xded\xab~\x15\xb0\xf64t\xc3\xb5\xa9\xa9\xec\xe1\xf5\x15h\xc8Yu\x94\\\x13\xe1\xab\x8dPm.o\x9dlL\x1cEO~\x88\xbd\xab\x82{\xfe\x91\xf9Z\xf2\x80Z\xf2\xd4\xef\xf7HX~N\xae\xae\x08k7\x0c\xc1\x9c \x80\xfc\xff\xf7\xff\xfc\xbf\xdc\xcb\x8b\xe2\xa3\x97g\x1f\x89\x97PO\x8d\xd7\xd3\x89\xba\xad\xc4\xd6\xb6\xdd\xca\xd4f\xca\xf6\x07\xd6\xd7\xed~\x92\x8b\x14y\xe5\xb2\xd8\xe4\xa9\x98V\xa2\xc2\xcez\x97\x1b.\xa7\xf5`\xdbl\x18\x12d\xd4Ga~\xd6\"\x11?\x0c\x07\xc6\x81\xd1s\xe3\x00\xdd\xf2\xeba\xe7\xd7C\xf9\xb5Z\xd1~\xdf?\x0d\x07\xd2\x15J/r\xf3\x9b\xd3V\x16\xb9\xd9o\xd4\xda\x0e\xe8\xe5\xf8\x9b^\x0eA`\xa8\x11\xedv\xa6\xd9j\x062\xc3\xda\xddrO\x92\xb6\x1d\x81\x90U\xba\xe71\xb3\xe1'\xcc\xcf\x87\x02\x03\x0e\x9e>\xba\xb3!\xd8?\xdd\x84\xbf\xad\x9bp\x173\x1d\xf3\xbaWc\xdb\xe6\xeat8|\xdc\xf4 ~\xfct\xf8D\xf9\x04\x83EV\x1e\xd3`\xf8\xf0\xe9@:\x05K\xf7\xe0\x8d\xe6\x90\xd76\xa6\xac\x92u\x87\x7f/\x0b\xea\x8f\x9a]w\xc4gP\xd1\x19\x92\xf9\x9c\x94\xa5\xf4\xb1\x8cm\xc0\x03\x08[ \xc30\x14I\xfa\x16\x9eM\xb4#\xf1J{e\xea\xb8\xa8\xab$\xa31\x19\xcf\xad\xbf\xe34\x9aw\x04\x9e\xdd\xedl\x95y#\xe8\xed\x14w}\x11;=\xd8\xe1\x89E~\xb6\xceTh\xeb\xb7\xf6M\xd0\x9a\x96;'T\xd5\xe6\x03\xda\xb2~\xbf\xe7\x0e{?\xf8K\xd8\x15\x80\xd3\xc8\x93\x8d5\xf2Z\x85\x17\xf4/\xd9'\x02p\xa0T\x9a\x0f\x82*\xec\xcd\x97E6'e\xe4AP_\xcf'\x1b\xdf\xc9\xca\xd15\xe7\xf1\xbc\x1d1\xd7fBqG\x1b\xc7qW\x03\x08\xc1B\xd7\x967\"\xedw\x10\xb5H\xae\x86\x0d\xe5`\x97\xabZ&\xa5\xde\xe9\xad\xf1\xdf\x84 \xe6.\x03\xddZrd>4\xdf\xf5z\xadZ\x13\xa7\xa7\xa9\x18I\xcd\xb1\xf4\xaf\xa0\xe9\x08\xee\xe0\x99\xed\x8e\x7f\x7f?\x08U%\xe1\xcf\x9c\xf2\xee\xcb@*\xf7\x9c\x9b\xe0Y\xd6S> \x97\xc5\x8a\xa4\x19\x0b\x10^#\xac\x02\x13\n\xb6\xf4'F\xc0\x11&\xc9K\xc1\xe0\x06\x04\x8d\xbaV\x0d)\xf8\xdc\x1c\xce\x0d\xeaf. \x0ex\xd6\xf6\xfb=^\x9b\\\xbf\xbf\xad=G\xaa\xa2 f\xea\xc7\xe4\xd9o\xef\xff\xfa\xfa\xed\x8b\xffx\xf6\xfe\xc5\xebW_9\x8e\xd6\xae\xe3F\xef\x07\xba\x14\xdb v<\xcf\x9b\xe7K\xf5\xa3\xadH\xdb\xbd\x98\xe0]\x81\xb8\xad\xe2:\xb4\xef\x8aIQG\x04\xf8\x07\xf3\x8e`B0\x9f\x82TD\x8e/\"\x18\x16'\xe2\x02G\x88\xd1\xfcM\\\xf3\xe6xn>w\xfah\xc0P\xeb\x93\xc2\xbc\x9d\xf3\xed\x1d\xe1<'i\xa02\xfb\x06[9\n\x82\xd5\xb0x\x85\xe2\x1f\xa1\xadO\x84e\x8bky\x8f 6\xa8U\x8f\x11\xbb\nR\x86\xe9/6\xf9\"\xcbs\x92\n\x9a\x86O\xe8T\x10E|S\x9a\xf9w\xf6\xd3~\x8b\x01\xd8\x01f\x93\x08\xd1\xf1\xc1\xbf\xfd\x9a\xb8w\xd1\x01\"c\x95\xb0M\xadTm\xc1\xa3 \\\xce\xac\xd4`\x80\xa4\x82\xa0S\x98\xec\xcf\xd7M8u\xf3 @\xd7\xd2\x18\x81\"\xf2z\xc3Qm\xdb\xf6\xc2\x8b\x91\x1b\xef\xa17\x04\xe5\x9a\x1a\x803\x97\xc6N9\x08\x07\xf7\x06\x96\xd6\xd1\xadT\x07&z\x97 \xeeY\xe5~\xbf\x03\xdc\x1cXy\xd8\xe6n\xc0\xa5\xbbp\xc3\x80\x04\x04\x8d\xc1<\x16\x98\\\x08`\xeb\x84\x15&6\xacp\xb4\xad\xaa\xc6\xca`\x1a\xf7\x86_9C\x07\xef\x87\xc9\x86/\xdf\xc1\xf9V4\xb0\x98B^\\\xc9\x08\xbdw\xebC\xabJ\xf6\x81v\xd8\xf3\xdbl6\xe6\x0e]\xdb\xe2\xd8j\xd8\xcd[\x80 3\xd4\x01L\xe6K2\xff\xe8e\x10K\xd7\x03\xe5\x04I\xbd\xc4\x93\x84\x87`2>\x92\xeb\xd0G\x95\x96n\xdc\x066w\xed(E-(\xad\xc1 \xa9\xd0\xa8\x8d\x06Y\x8b\xe6j\xe1 \x86p\xd1\x8a7\xdc\xb0\x9ff\xda~ZoT\xb1\xe1\xb7\xc0\xaa\xa3\xc6\xb9\xeb\xf7\x8bpC\xf3\x8c~\xd4\n\xecj\x1f\xf9\xdde\xe6pw\x8a\x94\xc6\xb5\x1c\x0b`\x8c\xe1\xeb\xe0\x18~\xa4\x95x=\xc1\xb7;L\xe8\x81\xf0\x1d3$\x19\xfb\xbd\x95i\xad\xb2\x98\xa1`\x00\xfe\xc9\xf3\xfd7\xe3\xf9\x1c\x9e\xa3\xc3\x9d\xe6|p.Y;\xc9\xb2\xd5\x12\x8a<|x\x8e\xc2\xec\xc9\xa8\xde\xc6\xa1\x18zu\xc2\xb4\xce\xa4 \xfc\xec9\x15,\xd0LnC\xa9\xab\xf3r\x90.\xffsR\xca\xb4\x98q\xd6\xb8 \xba\xaf\xc6\x11\xce\x1c\x0e\xc5\x9e\xe6Y\x17\xe1\xbd\x8fhW\xd3\xac\x18\xf9\xcf\x0d)y@b\xdf\xc72\xc1\xd5\x9dA{\x13\\Bj\x16eI\x05\x11\x8b\xb6\xfe\x97c\xc3H\xe7\xd9\xb1\x12p\xf9QY\xe9\xfc\xb0\xcdX[I-\x08NG2\xa7\xdfhb\xd0\xbboM.td#\x15\x0f \x98=\xd8j\x9c\xac\x97\x99\xa2\xea\xc1\x96T\xb3\xa6\xa8\xb8\xc2\x1c\x1bC2V\xc9D\x98\x8f\x06\xc38\x8e3M\xec\xdd4\x0c\xf8\xe2\x91\xfb\x85\x81\xc1rd\x19\x88\x10\x02\xd4\x12}\x91p^\xa4\xc4\xd8\x9cg\xe2\xde4\xb1\xf0\xdd\xf0nG\"_y\xf0\xe4\x8e\xfb\xbe\x9d\xed\xb6\xb6\xdc\xd2m\xab\x91\x14\x97\xaa\x81\xb70p\xbf/:)r\x12\xe6\xc5U@\x10&@~\xad\x19Y'\x0cP\xd6ok\x90\xcdo\xddP\x8c/\xd2\x88\xc8xG\x1cky'\xc5\x10\x8e\xec\xafI\xb9\x8c\n\xf8\x0d\x152\x9c\x95\xbf\xadK\xc2x\x94Tw\x98\xbf>\x9c\x1ds\x9f\x9d\x88\x13p\xa2<\xc4hu\xa2F\x0b\xb6\x8c\xc7\x1b\x18\xef\x0coW\x84/\x8b4\xf2\xdf\xbc~\xf7\xde\xc7f\xb1\xfcyA9\xa1\x1c\x1c\xd9\xfd\xc8\x17\x90/\x93F4' \xc2\xf5\xe5l^\xbe\n_\x16\xe9u\xd4@\xe1\xdb[L\xbe&@R\xd9+\x8a\x8fZ\xb0\xca\xf6\x9d-\xff'\x90#K-3LT\xeaq\xe5Dej\xb8\xf5\xa6\\>[g\xb7\xd9%V\x14\xfc\x17m\x9c'\xc7*M\xcd3|\xc9\x12:_F\x89\x1du\x89\xb3\xf2\xcd\xe62\xcf\xe6Q~\x97\xdd\x13`!\xb8\xc5\xd6\xb9\xdb\xf4\xdb\x1f\xb0K\xbfc\xf2\xf5\xddCb\xe7\x0e\xed\xd4\xa6\\z\xd2\x98WP)\x15>\x7f\xf4\xf8\xc9!\xc5\x94\xc1\xf7\xaaP.\xb5\x0f2\xf8~_@\xf8\xefN|\x84\xfd\x13x3\xd1f3\xc7\xc3\xe9\x98\x1c\xf1\x88\x1c\xf9'\xfe\x11\xaf\xbe\x02Wg\xe5\xaf\xc9z\x9d\xd1\xab\xb7d\x11\xf3z\xb2\xe7\x98\x87\x8c,\x04\xec\x05OT\x93&\xc1}\x03\xde\xaa\xf2\xb5~\x94-\x91r\x9e\xac\x9d\xa2\x0dm\xbey\xa9\xac\xd7bI\xa6\x8a\x8f\xfe^dTWP'\xab\xfe\x92b]\xb9KO`u7\xb1\xd5\xdd<`dQ\xa9\xecYl\x0f\x15!\xf3Eh\xfaa\xad\x87XI\xab:\xe2\xd2\x85\xea\xfc\xabO0\x0d\xdcOp\xcb\xe0iL\xa2 \x99JAC\x86T\xa4\xc6\x13\x1f!T\x81u^C\xb6s\x88kA\xdaL\xe55\xfdWr-\xbd\xdf\x81\xc2Q;\xa6\xd6\xa8\xc1\x1a\xb6Sa\x1c\x81\xb1\x9b\xa0\xd7\x9d\x91\x8f}?r\x9f]\"\xb4pV %\x02\xd7\xfd\xf6\xf6\xc5O:l\x04dG\x94I+O\xfe1<\xb9\x12\xa7\x149\xaf\x06\xe2\xd5?|7\xfduf\x1b\xf4\xe9fuI\x98\xb3ac\x12\xb9-\xc2\xd7\x03\xb7\xc5\x8b\x13x7\xf4Q\xe5\x1c\"\x86\xdbg\xac\xc0\xcds\x98a\xe7\x90\xb6\xf8\xa0\x86\x13\xf5w\x8e\x17\xf5\x86e\x11\xdf\xed\x80USK\x14\xd11u\xfc\xada\x8b\x8b\x96\xc7Q4\x99\x02'V\xbb)]\x877,7\x97%g\xc1)j7\n\x0d4._\x17\x17\xd7\xe1\xff\xed\xf1 \xb7\xe0Bf7\\\xdc\xaa\x91\x93\xc9\xc5\xc9\xc5\xc5\xf4\xa4\xbb%g?\xc2\xc9\xff\x0c\xa7G\x0fN U)n\x02\x91\xee\xb9:ZIp\x0389\xf1\x11h\x06\x1b\x05%\x94TMHuc\xa3\xdf\x1dj\xaeY\x12v\xbd\xd3/\x1b\xfe\xf6U\x85\x1f\x0d\x9f\xdc`\x8f\xfdO\xa6\xf3\x0fg:\x95\x94D[\x15\xc4\xbc\x96\xd55\xe6\xe1*\xf9hJ\x7fa\xc5J\x9a\xd6\xa9\x82\xb7d\xf1\"\x8dy\xf8\xef\xc9*\x7f#n*\xe0tPT\xca\xcc\x85\xea\xf1\x9dD\x14-\xae\xf6\xe1\xf0\xe9ySa \x16\xba\xd2\x06\xea\xf4T\xe5\xc9\x04+\xc5\xeeL\x8e\xdc\xe4rt`\xb5FI\x82\x9e\xd11\xe1W\xd9\x8a\xbc\xbf^\x93\x18\x92\xe2<\x13\x1c \xaa\xbbg\xca\xe1i\x08\xff!)\xb9\x8e_/~\x9b\x04\xb6S\x1f[_\xe1h[U\xf8JW(\xe7I\x9e\xb0f\xf9\xa8M\x9fuP\xf0\xb7\\9\x90\xe3\xe8v\"\x8e\x89\x9d\xb6\x06\x86J\xd2\x057\xb4\xa8b\x823\x0d\xdc\x04\x15\xa6\xb2\xa0k\x0d\n\xcc\x10f\x15l\xa2\xdb\xd7\xc0v0w\xbb\x05LO\xe4\x12\xa4\xf0\xa48\xf2H0\xfb\x15^\xc7sUh\x0e~ibjA\x06\x83U\xb7}\xf3\x1am\xd7\x9a+\xb8d$\xf9X\xb9\xa9=\xd7\x132Ek\xf8\x837\xa1\xd3m\x9c\xb8\xd2\xad\xa0V\x86\x93\xba\xecB !p>\x03\xf9j\xa2\x1c\xc9\xd6\xa8\xab\xe7\x8dII1\xc7k\xbc\x0c\n\xbcF\x08\xcf\xe3M\xa8\xd7e\xb7\x9b\xe3\xd6,d\xff\xad\x06\xd7\xb1,\xf8\xdd\xc3\xaf*Y%^c;\x12AH\xc3Z_\xddr\xeb\xed\xa7\x92t\x90\xcb\xd0\xef;\xb3\xb6U\xec\xf4\x11\x96g\xe6\noZ\xb1\x0d*\xbc\x01\xc6\xd3\xc2\x01Ar\n8\xd8\xb9\xdbT\n\x82\x04\xf6\xaa\x87\xe2\xdc\xc4\xb3\x07[&\xfd\xaa\xa2\xe8\xc16\xabf\x804s\x08\x13\xb0A([\x049x\x91n\x10\xae\x8b\n)\xb2\xfa&\x16f\x9c\xacJP\x12\xf4\xe2x\xa5\xb9\xaf8\x8e\xb5\xbd\xcd\xa8\xeeHI]GJ\x0ea'1\xd9\xedV\xb8\xbeC\x19f\x08Up\x88\x0e\xe7N\x06\x7f\xdc\"\xa6b\xcb\xf3\x98\x85\x16\x9cO\xc8tdF\x93\xf7\xfb\x81(N:\xc2\xfd\"\xdc\x11\xe5R~\x90\x07\x05&\x08\xe1F;+\x84{e\x98\x95\xaf\x92\x15\x81L\xbaAn}$\xad\x07\xa3 \xfe\xc8\\\x87\x99xV\"\xd9f\xf35.\xe2\xad87QQ!\x9c;K\x98\xc3\xfe\xf4\xfb=\xc1\x89\xe6\n\xba%\x979\x81v\xae\x10n\x8fA\x9f\x003\x8f\xa2\xdf\x17\xd0'o\xado\xc7\xa9G\x95\xa2(\xc5A\xb5\xdb\xcc\xe34(0\xc5\x92\x0b\x01\xc1\"\x80'Zi\xd4\xcd\xe3\x1f\xb7\x06q\xa6\xfd> 8\\\x1f\xcc\xed\xf1\xe6\xb5;\xc7\xc4)\x1e\xcdUNGTUU n@\xd1%\x05\xde\xa0*\xe0\x1a\x14r,\x00 .\xd0(-\xb6\x9b\xb6e^0G\xd5\xe7\xa5 B\xe7\xea\xa4\xf5\xe2x\xa3s\xce\x18\xa0\x0c4\x03>?=\xbf\xff\xe0\x14`\xef\x93p\xf2/eA\xdf\x81g\x10\xa8'\xc0F\xe8\xd9\xdf?\xbdP\x92\xa8\xb6\xaf\xd3\xd9\xa3\xa7O]\x97iq\xb2e\xc8\xa9Qg\x03f\xe0h+\xabU\xdd\xbd7\xe4x\xe0\x13\xad\xf7v\xde\x11wX\x96$\x0d^Q\xaf\xdcn\x17H\x1a\x85\x19\xfd\xb7r\x80z\x91F\xfe\x83,\xf5\xf1\x8a\xf0D\xa0\xb6$\x97\\x)\x1e\xe4\x8a\xca!\x01\x8e\xa5\x82q~K\x16\xa5x\xd2\xc3\xb6\xe5iV\xceY\xb6\xcah\xc2\x0b\xa6Z+>\xffF\xb3\x82B\xeej\xf1J\x7f\xf5\x0bd!\x87\x86\xd4\x98\xba\xc3zs,\xa8O\xd9\x07\x18\x1f\xc1\x86\x1bN#\x90\xd7\x10bwj\xc9\xba\x14-\x00\x80\xeb\xf7\x99\xc9\xf8\xad\x89\xdb\x06x~\x90\xa5\x91\xad\x146\x14\x1e\x15f\x12oU8/\xae\xae\x08\x8bz\xc3J\x80\xfb*\x10\x0b?2\xdc\xe7\x15Q\x0b\x15\xf0f\x1bh\xb7K\x04\x14S\xe5\x1d\xfd\xb7>\x81$\xe0\xed\x86\xf0\xe1~\xc4\x85\xa4pT\x8c\x95\xfbx\xab\xecJ{\x82\xfd\xdbj\x99*h)\x13,\xfd\xeb\x7fNx\x12m\x17\xc9G\x02\xe4\xb6}i\x1c\xfc}Q\xe8\x03\xd9++W8\xbd\xa6\xc9*\x9b?\xa3\xf3\xa5\x0c$Z!Ih\x95Q0\x0f\xe5/\x10\xbeJ3X\x97\"\x97\xa1l\x8dL\x08\xd3\xd8\x87\xd8\xde\xe0\x14\xf4\x91\\\x7f.X:\x06B*Y\x95\xa1\xcaW\x061\xc6KE\xd2\x8d@\x9aw\x14\xcf C\x99\x0e#7\xf3\x1flI\xe5\xcf\x10r\x93\x96\xcd\x10\xf6A\xd5\xeb6/>\x8fg\xe2\xb5\xf7`\xcb\xab\x19rxWw\x8d\x14\xf3\x9a\xd1\xab Q\x00\xe9\x08\x02\xf62\xa7\x84\xd5\xb9\xd9\x13\x1f\x1d\x0de\xde,\xd9\xcd\xc5L \xeb\x8b\x99\xa7\xe3 \xab>\xb1\xdf\x85\xdaj\xe3\xb4\xf2\x1e\xbb\x1e\xcdo\xaeG<\x86\xa0\xb6\x9e\xe8\x88V\x17\xb3\x19\xae\xcf\xe2(\xf6O\xfc\xa3\xa2\x81=\xact\xe0\x06\xfd A\xd8x\x82s\\n\xae\xaeH \xee\xec\x02\"G\xfa\x80\x0d\xf4\xf6O\xa6UU\xe1\xa7\xe7\x8f\xee\xdf\xbf[&\x83(!\xe11}M\xe5\x99xG\xb8~\xf1\xaf\xe4\x1a\x1e\xdbp\xfa\xfc!\x04\xb4\xa8\xd5\xd2\x82\xa7\x89\xbf\xda\xf0M\x92\xe7\xd7\xcf\xbf\xcc\xf3M\x99}\">6\xef\xde\x92\xff\xdcd\x8c\xa4>\x96\xa7\x14\x92\x1d\x08\xa6P\xd4\xc9\xe8K8\x14\xe2w\xf2\xc5\xfc\x9e'eF\xaf|\xec\x97\x05\xe3\xafYJ\x98\x8f}\x9d\xbe\x00\x9ab\xbaU\x08>\xd9\x98\x8d\x1d\x98\xedJ\xf5\xad3?`\xdf\xc4\xd0\x87X\xf9\x14\xcc\xcd\xee6\xa4\xa9\xbb\xa4[\xd5U\x14H\xdf\xd7\xad\xe11\x1c\xc2\xb070\x91\x96\xdb\xca\xf0\xf1\x84L#\x82\xa5:D\n[../N..Q\x10\x1e\xa1\x93+\xb4\xdbM\xfc\x13\x7f:\x12\xdbUB\xf4\x8b\xa1\xd5\xbc\xb2\xc9`\x8a}\xbf\x9e\xa1\xee-\xb9z\xfee\x1dp,J\xcd7\xa8\xce5Q$\xfd7e\xa7\x85cj\xae\x07]a\xb1z\xbfwf]\xbd\xf2\x9a\xcbCG\xc7j\x8f\"))\x1b\xd88)\xdas\xb7\x17\xc7\xc4 \x1c\x19\xf5h\x85\xf5\xe10#\xb6\xf44\xc4^\xe6j\xc6\xa6o\xda\xdd\xb79p\xdf`\xea7\xce\xdc\x9c\xcf\xfds\x8f;\xe6\xae\x8fr\xd7W*b\xdbn'\x8dW\xec\xa7=*(\x00s\xf4\xf5tm/\xbb\x9d6k\xf91\xe6\xd8\xdc\x8bC\x15\x7f\x889\x96\x97\xe6\xbeW\x0f\x10 \x8d{\xc3\x91\xcaQ\xcfe\x8ez\x7f\x9e\xacH\xfe\x13\xa4O\xa1q\xcf\x1c\xe9\x93\xff9I\x8e\xffk*\xfeyv\xfc\x1f\x83\xe3\xa7\xd3\xa3\x07'WH2\xd0\x90E\xddw3\xaf\xd4?\x0d\xcc\xb7\xe2\xc3?\xa1\xe0X\xff>B\x7fj6S\xd2\xe4#\xf9p\xabf>\x1ch\xe6MR\xce\x93\xee\x89<;\xfe\x8f\x83\x13\xf9\xf5\xd9Oo_\x7f\xf8\xe9\xd9\xbb\xe7\xed\x11\xc0\xb7\xeaC\x18\x81n\xa4=\x82\x9f^\xff\xf9\xf5\xcb\xe3[5s|\xa0\x99E\x9e\xf0\xae\xd5\xa8-\x06\xccA\xb0a=j\xeeAe\xef\x81\x81\xb7]\x87\x8d\x85Y \x85$\x95\x92\xd9\x16&\xd2_1A\xf9A\x94\x87\x92\x00N\x95'\x18J\x7f8\xc5Ml\xa5?\xeb\x05\x87>\xfcq\x001x\xf6W\x88\xe3X\x9beT\x15~4\x18\xde?\xef\xf5\xcc$xj\xa3mADH\xf6J#p\xa76Q\x91\xbdx<\x99\x9a;\xa8\x06\xa0\x03\x0d[\xaf5\x12\xff\xd8b\xb4I\xbf\xaf\xa4\x93D!\x15hfBp6\x157\xd5x\xc3!\xd7[\xc5d\xa4z\x91\xf6\xfb\x82\xb4s\xdfT\x9ey\x98\xedv3\xf3\xe0}\xf7`K\x8e\x86Jd\x93 \xeaQ\x8c\xa5\xed\xf5*(\xb8\xc8\xfb^\x95\x7f\xefe\xa5\xa7\xd1\x81\xa1R\x93\xb8.\xde\xb1\xcd\x8d\xcd\xcfhb~Nq\x19\xbb\"\x18\xa6\x91~mu\x0c:\xca&d\x8a\x90\x93\xd8E\xd6~\x91FT\xda|\x12\x17\x80\x05\xa2\x8e|\xcf\xbd\x15!\xdc\xc0\x04\xcf\xb6\xe5\x84l\xa4xQ\xb09y\xa7/!\xb7Y\x96\xf4\xdd\xe3\xfa\xee\xe9\xbcKNW\xa8\xea\\\x81\xe6\xf6\xb89X\xb6\x82\xd2\xa1\xd5HJ\x8d\xb7\x95!\xe3\x99M\x1b\x12\x0fF\xf4\x07\x8dNF\xf4\xe8H\x1f\xb4\x02\x1cgG@U\xca\xd28\x8e\xe9\xd1\xb0\xdf/ \xc0\x0f\x90[\xe2\x08etC\x8cj\xb2\x90\xe8\xf8\x0d\x88+\xc4\xfd\xc4I\\\x84\xe4\x0bP\xa5\xf6\xadb\xc4\x93\xb6\xa6\xeb\xcf\x05_z\xdf7\x1a\xf9\xdeKh\xea}\xdfj\xe6{\xe7\x8e\xd1\x940\xaf\xa0\x90g]\x1ck/\xe3d\xe5\xa3\x11\x9b\xc8\xf1N\xe3l\xb7K\xc6\xdb\xf2c\xb6\xd6\x888\x1b\xf72K2s\x14%\xe3\xa4\xf6,\xcfW\x15m+\xccb\xd3\x92\xbe#lB\xa61\xc5E\x85\xbb\x8flso\xd4g\x8e\x85\x9f\x0eC\x97\xd8cRB\\\xc5\x1c\x8b\x9e\xa29V\xc2\xe0hSI\x85\xfe\x1a\xd2JY\xcd\x01\x9dPk\xa2)\xa3\xba\xa8\xdd\x91\x10\xcf\xb5\xf2ln\x0d\x8dI\xf7\xd6\xf0~\xdf\xe5\xa2r\xe4\x04f\xa5\xfd>\xed(\xaa*i\xb7\xbe\xc7\x1cz\xd4\xc5-\x11'~\"\x97\xe1\x95\xb3\x80)\xb9y1\xe1S4\xd6\xc6\x04\xebx#\xdf\xb8\x96\x04k\xad!X\x8380\x12\x150\xc5\xa5\x8a\x8d\xca\x11Nt\xf4\xc6\xc0\xc5\xb5\x05\x82Z`\x8e\x8d\x13\xa4CCw\x80\xa2\xfdf>\xef\x08\x0f8\x1ai\x85Lk\"\x14p\x1fG\xfd>;:\xd2L\x11\xabj\x00\xb0\xbbu\xae\xf4\x1a\x10\x8e\x89\x03\xeb\xaeA\xbb\xb9\xb6<\x1e\x8e\xb8\x0d\xa6\xc9\xc5\xb5\x95\n\x1c\"\xd6 \x13\x7f\xd4y`*\xc0\xe1\x84O'l\xba\xdb\xf5d\xd1\x84M-\x83(?\x9b0\xfb\xe5\x84M\x81z\x0e\xfc\xa4\x9c\xcb\x9cv\xc5\x8fq\x16\x15?\xc4\x19\xea\xa0\xa8+\xfc\xe4\xf4\xa6\xacl_\x81,^\xd0E\xf1\x93\xcc\xfe\xda\x01\xeb\x9f\x0ctPj]'0\xc1\xa7\x03b.\x17w`p\x85\xb6\x90D@\xd4\xde\xed\xb8\x05\xf3,\\ee \xc6\xc6\x12\x88\xff\x92\x91<\x0d|\xd1\x96\x8f}\x9d\x82\x169m\xe9\x10\xbc\xa6\xcc\x86\xdfE\x15~\xf2\xf8\x1b\xe8D\x1aa\xe8\x0e\xae\x89[\xaf\xb6.\x1cm\x99\xd1o\xfc,\xe5\x01\xcfh\xfaJ1\xf9\xf5\xa0\xd4X\xd4\x87 =}|z\xffA\xa9\xc5\x90^\xca\x9c\xbd\x07'\xa3\xebto0\xec\xaaJ\xfd{\x97]\xd59\x84\x9d]mz\\\xa8\xdd|t\xfe\xf8[\xce\xfd7\xd6\x15\xf9\xb75}QM\xae\x80zq\x9b\xdd\xdc\xb0\xdc\xd9\xc5\x87\x8f\x1e\x1fL\xe7l\x08\xa6\x06Tr\x1d\x0d\x00&9~\x07\x90s\xcc( u&B\x0b^$d\x1a\xe0,\x1e\xe0$\xee\x0d\xac\xec%\x1e\x8c\x88Ue\x13K}p\xd0D\x1b\xde~\x1b\x1e\x8d\xab\x07'\x08\x971\xebz?\xe2\xbb]9\x16x\xab8:\xc2e\xbf\x9f\x1d\x1d\xa1H4!\x064!\xd3~?H\xe2\xde\xd0H\xd7\x93~\xbf\x88\xe38\xfb\x1a\x0f\xaaW\xc53\x9d\xbe\x19\xbc\xc9\xac\xe3R\xabDn\x96\xf8\xfdk\xb2\xee\x06I\xac\xb2\x14W-\xe1@\xd6\x11Q\xd8\xa0\xfd\xc2\xb2Gb\xa32\x84\xd0\x88\xf4\xfb\xce\xd1\x9f\xc1\x08tX:EFx\x1bjRO\xe7\xd7\xa1\xf7K\xb1\xa1\xa9\xc7?\x17\x9ey\xedA\xda\xe0\x08\xf4\x16\xa4\xba\x98\x01\xe9\xa5\xb5%\xa1C\xcf2\x05\xff&\xd9\xd4@>\\HF\"C*\x02\xf9\xc3\xe1\xd3{\xbf7\xaf\x8a\xe7t\xb3z\x7f\xbd&\xbf\xaa\xbc\xc8{\xefNGU\xb9%J]\xb7\x17IHY.\xa1\x9b\xd5n\xd7 i\xe0-R\x86]\xe2w\xbf/i\xae~\xbf\xd7\xac\nF\xd0v\x7fe}\xc3\xe0\xf3\xf8\xc7\x1e\x93g\x99\x94V\xd1\x0cF\x08\x1c\xcb\xaf1 \x05\x0d\x94\\\xe6\x04\xb9\xf2\x10y<\n\xe4\xee\xf8\xb3<\xf7\xa4\x90E\x94]\xccDg\x173\x95\x95D\x07]\x14\xc4\xd7\x92xe\xb2\"\x1e\xe8\xda\x92\x12^\\\x80\xe6MW\x8f<\xf2eM\xe6\x9c@\xd6\n9\x94\xca\x87\x88\x86\x8c\xccI\xf6I\x16\xb0\xb0H\xca\xf7\xd2\xf8;C\x95\xef\x9e\x0f\x8d\x1f'JM\xa2&\xaf\xbdk24\x15\xa8\xb2c\x15oX\xc4Z:IIm\xc9-\xd9\n\xfa\xaf~\x87dVD\xd9\xc2\xfe\x95\xa6\xee\"\xefv\xa2\x19y\x8c)\x1a\xc1\x83\x81m\xb2)\xf5l\xa2b\x8b:\xd5\x81P\xe0\x05\xaam\x938\x92r\x9f\xe0^1q\xc9\x9c\xdd\x11<\x0c\xf4\xe2=\x93\x8a\x02x\xd27R\xeeD\xfd&\xde\xb0\xd2L\xae\xb4\xbc\x91g\xa7\xf7O\x95\xbc*\xfe\xca\xf9\xfao\x84]\x96/\xa8\x0b\x12\xdd\x0b)\xc3\xd8O\xfc+\xc2}\xec/I\x92\xfa\xd8_\x17\xa5xZo\xb8T\xe1\xcd\x97\xa0N\x13\xab\n\xf9\xd3\xb9JL\xc4Y2'\xfet\xd4\xd9W\xb0\x05\\\xf4\x82\xf2\xe2\xdf\nf\x13Q\x88\xd2\x17\x9c\xac\x02\x8e\xb7\x82\xa7\xa2X\xdd\xf5\xcc.]b\xa0o\x19\xd3\x90\x17\xd2\xbc?\x90\x96\xcfe\xcd?\xec\xc4D\xd2T\xd3\xca\xe3\xd2\xc5\x82\x8dC\x99+^\\\xca\x93\xc5XL@\xf1\x80\xa3&\xe7Lc\x1a\xffH\xc6L6\xf8\x93\xd69\x989\x05\x1c\x01CA\x11\xc41{Y\xcc\x93\x9c\xbc,>\x13&\xaa\x05\xc8U;5eG\x05\xa2\x10.&s\xce\xa0\x00\xf2p\xa0Jq\xfa\x14\x92\xa0\x05\x07\xee9\xc9($\x1b\xf2>\x11v\xe9\xc9\xf8\x0bv\xc5\x9c$\x13\x820z|z\xd0\xd1\xf9\xab\x8e\xd3\x0b\x88\xd33O\xf2\x16~m\x94\xdc\x02\xbf\xd2\xcaZ\xa6(\x93`g\x81\x8a\xc3H\xd6\xb8<\x02\xa1qr\x85\xfd\xed\xdf\x9e\xbd}\xf1\xec\xcf/\x9fW\xbe49\xb8\"< h\x94\x8d\xdd+\xfe~I\x00\x8fzI\xceH\x92^{2r\x8f\xf7y\x99\xcd\x97^\x9a-\x16\x84\x95^A\xf3k\xef\xf2Z\xd64\x89\xfc=\xf0s(Qd\xb0\xaeA\xc1\xc5\xbe\x8b_X\x14\x1c10z$\xb8P;4<{|\xfft\xfb\xabBE\x824\x87\xfa\xb9\xccD\xdfu\xf55.\xde\xfb\x89M7hn\x83\xc9\x08EB\xad2\xed\xb2E\xaa\xa5\x86\xda\xedL\"\x11\xd3\x87\x0e\xf9OT\x82b\x12\xaa\x94\xf9\xfd\xbe%\x9b\xd5@l!&\xa1\xb4\xc5\xc2\xdcZ!)vOU\xf1\x11\xac$6\xdf\x94\xc8\xcd\x02]te\x81\xb6U\x91\x0f\xcb\xe9g\xd4+\xbaFR(\x8f\xcb\xfd\xe3\x98\xe8\x81\x94>\xa6S1\x18A\xdeBV\x86\xf3\xfb\x97\xda\x9a\xcd\x93\x88\xf3\xf6\x9b\xdd\xa8\x7f\xff;\xad,\xdd\xf6m\xb3\xb3+\xf2\xb2;%\x1d\xcb.\x18\xa5C+m\xbf6\xe8\xb5@Sy\x14F\xb7=[7\x1c*\xbb\x8f\x83\x83\xc1\xcd\xbfj\x1b\x05\xac|\xcf\x92,\xcf\xe8\xd5\xbb<)\x97.tm\x17\x06uL\xeaBX\x89Rk|\x0c\x0d M-\xba\xec\xf7\xfd\x13\xbf\x17\xc7\xb4\xce\x98h\x8b(\x17\xed,\x93O\xc4K<\xae:\xf7J\xd1{\x9d\xdbp\x85+gO\x1f=\xbe\xe7\xa51 \x05N\xbf|yK\xcauaE\x12\xfbJ\xe5\xe2\xe8\xc7\xb2\x81\x82*\xb4\xad#\x96\xb0,VD*=\x95u\xa5/\x15\xce'\xa7\x93\xff\xf1ep\xfct\xba=\xadNB\x0e!\x9e\x10B5I\x86oF iE\xb9`\xdc\xcbI\"N6%\xde\xec\xf4\xcb\x97\x99`\xf4`4\xa1\x7f\xa3L\xe3\xec\xf4\xc9\xf0[-\xe2\xa3\x83\x8b\xf8\xe8>\x16\xf1\xe4\xd1\xbd\xac\xda\xa3;\xae\xda\xc3G\x83\xfb\x07\xaf]\xd9,\xf6\xc2\xd6\xce\xcaA=\xf7\xdam\x04C\xddb\xbe'\xe7\x8fN\xbf\xd5\xa9x\x91\xca\xf4\x8b\x1dG\xc2\x14\x05\xd6\xb8\xa8\x95\x1e\xccN\xaf3\xa7\x9c\x00A\xb54n\x90\xd4 \xe4\xf0\xb5,s\xfd\xbe\x93F\xc7\x7f\xfe\x89\xb0k'\xf5\x9asP\xbc\x0d\x8c\xc9\x9b9_\xcf\xdc3bd \xb5\x0eT\xae\xda$M\x1b\x1d#\x99Gl\xf0\xf8\xd17\\a\x96\xbfK\x16\x0di*\x8d\xa5\x99\x8f\xb4\x8e9\x0e?\xfc#:\x19\x7fw1\xb9\x98\xfe_\xbd\x8b\x07\xfd\xef\x03\xf4\xa7#<\x8a\xa7\x7fzp2\xeal\xad}\xbc\xf6\x88\xb2H}\xfd{T\xdd\xcc\xc6\x06t\xdf\xd1\xda:\xb7\xd0\xc3oo_z\x99\x8a?>_&,\x99s\xc2\xca\xce\xed\xa8\xa5\xc5\x9b\x1a\x91\xfc\xf9\x93\xfb\x97\xe2\x9a\xd1;\xabv\xf3\xd5u+\xcb\xb5m\xa6\xbe\xd387\xba\xdb\xa5v'\xae.\xb5\xe4\xd3\x86\xc3ov\xad\x0d\xb1]\xee\xbd\xde\xad*6\x07 v\x88v=e\x88\xfa\x1a\xa0\xad\x81\x00\x15v\xb8g\xe7\xee\x0b\"\x84)\xebx\x1d\x19\xa8\x84\xe4\x92JJ\x06V\xd8aF\xab\x0f\x1f>\x98\x0cX\xb3\x91\x04\x0bY\x1d\x14(\x91\xa9\x05\x00\xea\xfa_\xcc\xc4W\x173\xef\xc8\xbb\x98e\xf4bf\x99\xb52\xbc\xa0o\xc9\x9a$\\\xc9\xdc2\x1a\xa9\x0eU}\xb0\xce1=\xd7\xf9\xb7\"\xd4S6\x07\xd7\xb6\xecc\xe6\x00\x92\xcei\xa0\n;\xd96\xf5\xa2\xf1\xaeE#w]4bz#z\xd1x\xe7\xa2\x99\x11\xdcu\xe5\xbc\xf6\xc2\x91\xf6\xc2\x91\xee\x853\xbd\x1eX9\x99K7\x93\xd4\xb4`\x8b\x9e~\xb3+\xf0\x8e\xcc7,\xe3\xd7\xeaJv\xdc\x80f\x8dF\x12\xcc_\x93\xf5MI0\xdd\x9cu\x96\xd5\xe4\x98M\x95\x0cT\xdb\xc5\xc9(\x9d\xca\xd2\x175\xa4A\x0c\xa29 Z\x97V0\"S\xdb\x81\x98\x81\x03q\xae\xc6\xeb\x01\x03J<\xd5\x9c\xbb\x0b\xc4\xd2\xe4XO\x0f\xd81bDn\x80\x11J\xc2\x03W\xb8\x86\xb7\xda\n\xb97\xc0b4\x10\xee\xdc\xb6\xa1\x94u\xe0z\xcc\xf1\xb6&\xca9 f\xe5\xc85v\x90\x1e\xf4\xb8\x88\xcd aS4\xe2c\x0e\xf3\x97\xf2\xdd\x02E\xda\x01~+\xc7QL+\xc5|=y<|\xf8\xcdNKF\xaf6y\xc2\xde'W]'\xc5)\xbd\x15\xde\x95\xab\xcc\x93+Ht/\xfej\xbb\xea\xe1^L+j\xcdT\xf2%\x8di\xe1\xe6\x82P\nd\xd0\xc9\x95\x8b[\xedE\x13\x9f\xfa\xd3\xba\xb6\xfb\xe9\xd97\x10:\xd8\x15\xd9\xacV \xbb\xbe\x19\xad\xea\x8a_A\x0d\x97\xf2S\x87\x12>\x1b<=\xa8*\xfd=3\x82$t\xfb@\x85Sh\xa1D7t\x08\xb8\x8e\xf3aPe\x10\xd8\xc4\xea\x1cNC;C\xba\xb5$\x95\xe0\x15!\x17\x95\xec\xa7\xae\xc1\x1a\x0c\x9a\xd4*\xdc\"\x1e\x8c\x8a\x1f\xb8{\xeaF\xc5\xd1\x11\xd2t\xb7x?)\xa6h\xb7\xa3\x9d\x07Q\x94;\xb9\xb3\x14`\xf02\xea]\xe5\xc5e\x92C\x85n\x1a\x0f\xce!.\xb4r\x03?<;}z\xcf\xfbe\xf0g\x9b/\xdbW\xaa%&m\xc4\xdb\xb8\xb1F\x9aE\xdcd\xa0\xae\x18\xd9\xb7)H\xd5Eu*\x1a\x95\xd1\x9a\x91\x92P~\x98u\x8dj\x9d\xd4y\xe4[\xf5B\x0bzL\xc4MQ\xc9\xcd\xbaA\x83\xcbR\x1a\xb2\xfb\xfc\xc9\xd3\xfb\x96c \xb2\xe9g2\xcf\x13y\x8a~\xdd\x94\xfc\xf9\x97\xac\xe4\xee\xde\xec\xa9q\x93D\xabB\xdb\xe3\xa1\xb8(6\x0e\xe0\xb6\xf2\x1b,\xcb\x9b\xba\xc4>\xb5\x1d\x95\xed\x15\x0b\xbd\xd9\xb6\x9a \xfc\xaa\xb8\x97\xdbH\x19\x1e?\xb9\xff\xb3\xcc\x97\xcf\xa5\xb5_\xf9F\xfa\x95\x95\xf5\xf5j\x95\x06\xda\x01\xadS\xa7\xd6\xa0'-qv\xab\x9c\xba\xba\xe5=9u\xd7 _\x1e+\xe3\xc4\xf2\xd8Vndmg\x0d\x9d]\xd6R\xd99$\x81cX\x9f)\x13\x92\x86R]\xaa\xc7k\xc4\x91\xd1\x94e\x0d\x91%4\xe01rE\xbex\xdaO\xcfXM\xd4h\xd5\x9a\xc2\xec\xf4\xe1\xc3\xfb\xa6B\xc5\xa6\x18\xad(\x18\x176\xb9\xff\xdf\xadv\xed\xe8\x82\xb8\xe9\xc5!\x01\xa1x\xbd\xdb\xc9\xf4\xfdu%~WL\x1b\xd8\xe1%\xe7\xeb\xe3O\xa2\xd1c\xf8\xdc\x9b\xc1\x9f\x99W\xd4\xc1OB\xbdD\xb4d\xe3\xb3v\xdc`\xdamU\xd3\x10 :\xa7\xa0\xee/\x87\x1avI\x851\xacu-\x93\xb2\x98[\xd1?\x98\xb6\xd6\x9e\x8f\x86S\xf4CV\x970Ylg\xb4\xaa\x16L\x14\xd2\x18\xd4\x85 j\xc0\xda\xd9\xb7\x01!\xb0\xc6\x80\xaa7\xa4)\xd6\xb3\xc1\xe9}S\xacb\x91_\x15\xfc\x85\\\xa5\xff{C\x0c\x11\xb6\xa7\xb0\xa6\x90\x8d\x0e\x83Y\x97%\xb0\x1b\xe1\x8f\x9b\xc0\xf6\xe7\x82~\xcf\xbd\xf5\x86{\xff)\xfaP\x08\x08\xec\xbb\x05H\x05\xeb\x15q\x98\xb0\xf8u\xed]\x92\xbc\x10\xc5\xd4\xe15\xbd\xcf\x19_z\x82\xc7\x94m\xccn\x02\xc1\x80\xb7\x1e\x9d\xde\xb7|\xdc\x98\x01\x94u\xea\xcf\x8a\xe9.\xb6\x81u\xc5\xfb\x10\x1eO\x8f\xd0Eutr5\xea\xfa\xd8\x15\xa2`\xb6O\x8cRH^,\xab\x1c\xd1\x00fq\x86-\xc9\xe8\x84\xf9\xcb\xdc]\x01\x18\xf7,\xcf\x03\xea8\x1f\x91\x898u\xc8\x95.P\xb3\xbd\x85]W\xd1!\xdcr\xb0\x1f\x0e3\xb0\x1c\x97\x91X\x02\xc9\x9a\xcbG\x84%\xb1\xa8\x9ev\xbb\xa2!\x92q0-\xe8\x8e\xb4D@c\x0e\xf0\xafq\x0e\x821\xabq\x99\xd5\xcc\x10)\xe2k\xa0N\xea\xe2\x13\xc9f\xef\x9dI\xc3\xa8\xc8Y1\x1b\x0f\x91+\x1b\x8d\xfa\x14\xde/\x89#^N\x0b\"G-\xcf\x8d\x1d\xb4;\xc9\xed\x83-\xad\xc4\x0c\x8d\x15\x966\x138<5G\x06\xe20h\xff\x1bl\x94\x84p\x0f\x9f\x0c\xce\xef\x9d\xcb\x14\x03\x7fG\xaeV\x84\xf27\xf9\x86%]\x96\xb8\xe7C4\xea\xaaip\xe06\xbb\xa2\x05#/\x93\x92;\xb5 V\xdd\xff\xcf\xde\xbf\xaf\xb9m# \xe3\xf0\x85\xec?\x12\xb6\x87\x0bDhZR\x9f)\xc3z{\x1c'\xeb\x99\xd8\xed\xb5=\xc9\xcc\xa8\x15\x87-A-\xc6\x14\xa9%\xa9>D\xe2{?\xdfm|W\xf6{P8\x10\x0e\xa2\x16'\xf7v\xf8\xda\xcd&r!vv*\x08\xf6\xbb\x84\xcf\x82;A\xe1,\"[\xaf H\xa3-bDV\xec!4)\x85\x14\\\xd6\x1c~\xa7lI\xcb\xc4hE\x06v\x08\xd1)(Q\x94*W>@\xfc\xc2i)~a\xa0nK\xaed8\xcc ^\x11\x19\x1a\x8dN\xa5S\xfcT\xfb\x82+4\\I44\x80\x0di\xe9|\xf1\x05\x1eN\xfc\x08$\xd3\xa6\x95\x8d\xa3\xf0^\xac\xab\xeaww\x98/\xf7's\xb59\x86 i\xf2\x01\xaf\xf4\xe8r}?s\x86\xa7\xfa\x0eE\xbc\xc5O_4\x82\x1b\x11\xed^\xc5\x9f\xbeF0\xa7\xdaK\xbeF'm\x9c\n\xad\xaf+z\xcf$\xbd\xd7H;cSu6X\xc8:\xd3\xc8:+\xdfL\xe0\x86R\xcd\x9b\x9a\xcdu\xb394\xab\xdc\xc0^5\xdc\xc0N\xd8j\x14\x8d\x07\xdb\xe0\x91P\x00Ey\x8f\xd6aQ\x03\x83\x8ds \xa9\xc2D\xef\x95H\xaaok\xd9z\xa6\xee\"\x88\x82\xc5j\xe18\xe6\xe7\x0b\xb1\x9d\xca>~\x82\xba\xc9+\x0e\n\x83\x04jUn\xa2\\'\xdc\x17\xa2B6\xf7\xa3V\x9c\xb4\xf8\x7f\xaf\xfc\xb0\x95\xc5\x80]\xaa\xeb\xbc\x89\xfe\xf9rl:4\xae_b\x82\xef\xf6\x91\xb5\xd9J\x17\xa2\x14\x89k\x19DW\x04\xd7\x08Y\x8a\xe26\xe2\xacO\xb7\x12yb\xc3\xcfb_INO\xaa>vO\xc1p\x81}\xe8a?\xb1J5\xc9a}\xf4\xaf\x1fc\x0dk\xf6\x0d;>=:zbf\xfc\xa3\x7f\x9d\x9e\x87\xcb\xb9\x7f\xc5\xc1\xaf\xbf`\xc7ko\x9a\xfcdv\xde\xe0\xe2eS\x95\x0c\x9c[2\x90\xee\xf7 ~\xae,\x1b%c`\xb4^\xe8\xc7No\xac\xc4`[\x1d%P[\x99O\x81hX\xe2\x8c8\x17\xad\x11K\xdd\xde\x0e#\xaa\xf4SPn\x85Oo?\x95\x80\xf9K\xa4\x03\xca\xca\x94ko\xe3RI\x83\x0f\xf7a\xef\xb4o\x85\xce\x88\xf5x\x04;]D\xa1\xe72\xa0\xe4 \xb0\x93\x02%\x95\x8c\x1ae\xd0}\x03\x89\x9e\xc5\x16\x87(\xb4^\x0bu\x8a\xe84\x85\xec\xa2B\xf9\x07:\xe5\x9a\x8ef\xaeP\x03v\xbb\xb7\x9e\xc4\xa1\x17\xb8\x938\xa4a\x10\x89\xda\xe2\x8f\xd8uj\x84\xbe\xa1\xc7\xb1\x1e\xabM\x8fcM\x8fc=\x82\x81}.F\xe6\\D/!\xc6\x84\xbeA\xb9\x97\xf0\x19\xea`\x7f\x88\xc4\xf0}\x0f!\x02\xb19j`\xc5*\xbf\xfe\xac.\xe3\x97P\x95&\x96-P\x066\x15Bt\"sE\xe4\xf4k;\x80\xab\xca\x88U\xeaK\x0bC\x15\xf5\xf7\xa3n\x92\nILFk\xe5\xa3`\x9c\x97Y\x10_\xb2\x12\xea\xd2S\x8c}\x9a\x19\xe5s\x00J\x99mX\x16\x0b\xc1\xfd\xf8\xa9]\xb4U\x865\xa3\x7f\x90\xfc7\xb7\xacX[k\x94\x8c\x15\xeeR\x15o6#\x14\xa4\x88\xa2\xb9\x9f\xa21\x8d\xec\xf8\x86?\xfd\x88\xf7\xd6\x99\xe2f6b\x91G\xe7\xfb\x7f\xdf\xff4\xfe\x89\xa8p\x8a\x8a\xf31&\x1f\"d\xdd\x1e+n@\x0f\x93Qw\xec%*Fb\x97\xee\xf7l\xee\xa8\x83\xc4\xa1\x87:\x89\x9dd\xadv\x7fe\xbb\xa7%\xba\x92\x93E\xe6^\xa2\x10_\x94\xb7\xa5R\xd0\xd9\xc7\x9f\x82MEGg\xdc\xabJN {\xeb8oI(5]\xf9\x95\x9a9mw?9\xaa\xd8\x1d\x9e\x82v-\x13\xae\xf2\xbc\xc4\x89\x8c-\xdax\xdd\xe4\xf8P\xde+\x14\x87\x9e\xd40\xf4\x8e\x8e\xfbR\xc3pz|r$\xd3q\x9d\xf6\x8f\x8fd:\xae\xb3\xe3~\x9f\xd0\x89 r'\xc7\x84\xaeD\xd1\xd1\xf11\x11\xc2\x00\x16\x875\xa1S\xd1\xed\xe9\xd1\x11\xa13x\xdb?!t\xce\"\xdc?\xe8\x9d\x11\xba\x10\xf5\xba]B\xafY\x84\x8f\xce\x0e\x8f \xbd\x07U\x87hz#\xfa\xed\xf6\x8e\x08\xbd\x12_=9\xec\x13z\x0b\x04\xb5\xd7'\xf4\x0e\xf4\x1f\xfd\x1e\xa1\x9fE\x8b\xee\xd9 \xa1\x9f`\xe4g]B/\xa0\xec\xf8\x90\xd0\x0f,\xc2\x07\x87\xddSB_AY\xff\x80\xd0w\xa2\xec\xa8\x7fF\xe89\xcc\xacw@\xe8\x9el\xdb'\xf4=\xb48%\xf4%\x8c\xf3\xa0O\xe8\xcf\xe2\xb3\xc7\xfdSB?\xc2PN\x8f }\x0d\xf3\x11\x80z\x0b\x0d\x8eO\x08\xfd\x1a\x06\x7fD\xe8w\xa2\xe8\xf8\xf4\x8c\xd070E\xd1\xf4\x1b\x01\xcf\x93\xa3.\xa1\xbf\x88\xb7\xa7\xdd\x13\x19\xafU,\xc5:]\xf2\x89\x97h\x05\x0eEQ\xbc\xaf\xec\xdb\xfb\xf2\xce\xd2\xbe\xb96\xe3\xc5\xdb.\x04\x95\x9a\x19\xcc\xb4Z\x06;\xee\x8dQ\x14D\xb3x\xdf\xe6U<\xbf\x1a\xfbBU\xd2A:\xbc\xd4\x0e\x18\xa2^\xea8\x10^hG[(\xbf\xdc_%!\xf2&\x95p\x0cT\x1c\xe4\xe5\x11,+\x8c\x17TI\xf7m\xc6\x00y\xd3\x1a{\x03\x86\xd8y\xbaoG\x8d\x9cUt\x92\x00-!8A\x9e\xdc\xfd\x85\xba\xd3\x8e\xbcy\xc3Mw\xaa \x84\x05WM\xf8\x90\xb7\xdaJ+\xe1#`\x9c\xd5\xb7q\xf6\xe16\x0e\xf2\x16MW\x84h\xe1r\xbc\xdf\xbf\xbb\xdb\xd7W)\x90w\xddxk\xc6\xae\x7fX\xaa\x7f\xdfxA\x84\x9ap}\xa9wc\x85\x1a\xb4\xfb\xb1\x9c\x9e\xf7\xa5\xe7)\xf2\xae\xeaw\x0b\xec&\x85\xa5\xc4\xb4\xb8\xdd\xee\xae,\x17\xc7n\xa4\x1c\x95\x90wW\xb7\xcb\xd9\xdf\x91\xe8\xa1\xea~n\xf2\xf1R}[>$\xfbBB\xda\x87+\xa3\xc8\xfb\xb4\xd5\x95e+\x04\x92p?\xf5g\x1cy\x17\x0d\xae\xfc[Z!\xefc\xa3w\xba]]\xbb\xc8y\xafk\x1ewv\xb5\xd2n\xf8\xd0x]E\xcd9\x8a\xb3}\xa5\x99\xd8\x07\xbb,\xf2^5\x99\x95m\xf0?\x04\xfa\x02\xd9K\xe3x\xd7\xe8\xadU\x9a\x9d2b\x88%C\xdey\xa3?f\xa9\xbe\xf2V-\xc6\xb3\xb7\xd5\xdb\x17\xf6\xd4\xca\xb0H\xfb \x9f\xa5\xc8{_c\x1a%9\xd4w\x9ca\x17\xa6\xc8\xfb\xb9v\xf1\x19\xea\x99\x90\x1d\xba\xde\xdbZ\x00\x12\xda\xece\x81\xbc\x97\x0d\x1e\x1d\xd0\xa9U5\x88t\xc7_7\\\xbb\xa7\xdb\\t\xbc\xef\x1a\x9d\x89dxm\x9ef\xfb\x8b`\xc1U\xa2\xef7\xee{Y\xf8F%\n\x13\xb5\xe4\xbe\xb7\xab}\xe3jjP\xd4\x83\xaf+\xd3\xd2\xbe\xb4#!\xef\x97\xba\x8d.\xaf1\x13\xeb<\xa7\x87G\xbf\xc1-\xae\xf7|\x11\xdf\xf0\xbfD\xab\x94OM\xb6\xe4-\xb1\x10\x06[\xab78\x86\x1bQ,\xc3*\x86\xa1\x14\xc5\xa4\xf3r-\xe7\x00]\x8b.=l\xcb?\xd7M\x15\xc9\x16\x81H4'\x9bM\xbbG'z\\2\xf7\x9d\x8c5\x9a\xe4:\x8e\x8e-\xdedt\xad\xcc5Z I\xc0Z\xa3\xdc\xc1FH\x9e\xfc\x88\x16\x0e\x87\x88\"\xbd\xb0\x88\xa2\xb2\x0b\xb9\x9dXN\x19\x9c\x8bhD \xced\x88\x86\xa8\x9aIb\xa0\xdd\xcdu\xf9\x16\xe0\xb4\xbbr.\xb1eQ\x05~\x96ns\xbf\x8f\n\x8f\xa2H\x80S\xd9\x9b\xbe\xf63\x1f\x93A\xec&\xb0\x9c\xd3\x97\xf1*\xcaXWg\x1dQ\x17\xd8\xb8;\x8b\x93W\xfed\x0e2\x83\xb2\x19\xc3@4L+\xa0\xf6s\xc6\x07\xed\xc8q|\xc7\xc1\x01\x18\xe1}BU\xc0\x91l\xe4C\xb4\xb6\xf2G;\x1dH\x06S\xf1f\x0bH\xe2\x06)\xa8u\x94\x19$\x1b\xf111\xc1K\xc4S\x9eS\xd0U\xcb\x15J=+<\x8e%\x10\x83\x9b\x1f\xb8\x9a\xfbax1\x13\xd2E\xa4\x82\xdf\xcb`\x97\x88\xda\xeexD\xf7Z\x1c\xa6^Y\xaei\xe8\x1b\xba,\xdd\xe4h\xea\xd1\xdc\x16\xf5\xcc\xc5\xd1]\xfdi\x92\xb2\xad\xbb2\xe2\x89\xe9\x97/3\xec\xe8:\xb5\xe9\xfc\x16(\xc8\xab\xdc\xfd\xdf\x82\xde\x94h\xe7\x0eBS\xae\x87\xd7\xe5\xfc\x1d\xca\xb7\xb3\xeaY\x0e!+\x8d\x96P\xb7\xc6r\x97#\xf1\x95\xd5B\xc0T\x8e)\xcbiDy\x93K\xcd\xaf\xecH\x06\xaf89z\xfa\x8c\x15\xd5\xc3d\x07\xe0*\x15\x9f\x04r\xcb$\x9e\xae&O\x00\xb9m\x1d\xe9p}\xbf\xab_\xfea\xf5\x8b\xd7\x14)\xaczs.\xc9i\xb0S\x1f\x13\x14\xcc\xe7\xe353\xd5F\x8f\xd6\xd1\x14\xcdj\x8eT\x92\x18\xf5\xfbO\x7f\x0d\xf6\x8b\xf55Rw\x12\x18\xdd\x89ot'\xa9\xd1\x9d\x84Fw21\xba\x93\x95\xd1\x9d,Y\x84{\xa0\xd9\x99\x1a\xf5\xccL\xabg\xe6F\xb1\xb20\x8a\x95k\xa3\xd9\x01\x95\xcd\xe1\xe9\xb1T\xd9\xf4\xcf\x0eO\x94\xca\x06TF\xb7F\x17tg\x94G\x9f\x8d\xf2\xe8\x93Q\xcf\\\x88\xb7b$\x1f\x8c\x9e\xe6\x95\xd1\xd3\xbc3z\x9as\xadm\xda\xa2\xb09;V\xfa\x1a\xa9k\xfaht8\xaf\xa5\"\xa6+\xf55g\x07\x07\xc7R_#\xf5:\xdf\x89\xd9\xf4\xc58\xde\x18\x0d\xcf7F\xc3\xf3\x8b\xd1\xf0\xfc\x05>\xdf'\xf4\x8fZ\xd5\xf3\xdf\xe2\xdd\x89\xe8\xed{\x18\xf8\x01\xa1?h\xfd\x0e\xfdO\xa3\x07\xfa\x9b\xd2\xaa}\xab\xb5j\xdbu?u=\xcc\xd5Cz\x98\xbb]z\x98\xcf\x0f\xe9a\xcekz\x98mZ\x88\xf8\x0b\xb5\x10\xc1\x83Z\x08\xff\x0b\xb4\x10\xe9\x17k!\xc2_\xa5\x85\x98|\x81\x16b\xd5\xac\x85\x88b\xadv\xdb\x87\x9d\xbd\xefG\xd3}\x9dj\x17\xce;\xe4-\xdd\xb7\xb1\xd2\xbeA\xc9ydr\x10\xc3\xf3V\x05\xd5\xb4QA\xb5M\xd14kV4\x89\xbe\x05\x1f\xbb\x9f\xf2\xe4Fp\x87\xdek\xd1\xad(\xfa K\x1e\xd0\xa5\xcc\xff\x01]\xca\xe2Kt)o\x1e\xafK\xf9\xa6A\x97\xd2\xa00\xbcnP\x18F\xb1\x82\x84^8w\x12/\x90w\xef\xbe\x8d%<\xd4R\xd95\xab\xa0\xbe1\x95+\xc0\xae\xe95okz\xcd-*\x9fO[T>\xa0\x02\x112\xcf\xbe\x11uR\xe4]\x80\x12\xa4,\x03oW\x0f}\xf8\x02\xf5P\xe3\x9e\xd8\xa2\x1ez\xf5\x85\xea\xa1w\xffC\xea\xa1\xba\x8e\xf8\xe7\x9a\x8ex\x97\xda\xf7\xe5\x0e\xb5\xef\x16U\xd1\xc7m\xaa\"\xad\xb6_\xf0i\xe0\xcb\x0d_\xe8\xed\xdf\xba\xdf\x8b\x97\x82\xbe\xf3(+\xab\xfb\xab\xfa\xad\xaf\x1f\xa9\xdf\xfa\xa5A\xbf\x05\x80S \xd68~\xe3'\x81\x7f\x15r\xe4}\x07 T\xaf%\x9a\x7f\xaf^Z\x9b\"Ud\x05\xa2gz\x7f\xd14E\xd0+CW\xb6\xa9\xc6\xfe\xf8E\xaa\xb1\xff|\xbcj\xec\xbf\x1f\xa7\x1a\xfb\xfe\xb1\xaa\xb1\x1f\xea\xaa\xb1\xdd6\x9b\xbf\xfdj\x9b\xcd\xb7;l6\xcd\xea8\xc1\xe5<\xb1\xb4R>\x18\xec(g\xa5\xf2/s*\xa9yK\"}\x14\x91a5l\xadzC\x1c\x07\xf2\xc9\xe9g%l\x94\xaf\xe0\xaa\xd1\x14\xd7\xdd\xac\xfb\xb6\xe0d\xd2\xecD\xa2?nE\x7f\xdc\xd5k\xc3M\xe1\xc8\x8e\x98\x13\xf9\xcb\xa0z\xb1\xbfW\x0d\xeb\xff$+\xb3\x83\x85(\xad\xd4\xaezr\xe5Lx\xbd\xedK\x06\x1fw\x1c\xee\x96\x98\x99\xb2g\x8a\xeaF\xdf\x80\x9e\xf8\x91\x14\xb2x\x90\xcdy\xd2\xfa \xfa\xf8IH\x8c?\x95zQ\xe1\x92\xd3f\x98B\xabZ\xa8\x84\x83\x83\xa7\x17\xbf\x9a\x88m\x83Z\xc3d\xc7Q.b\x8d\xcd\x9e>F\xe3\x1bqB\x80Z\xd3\x0e\xd3(\x95\xa0\x06l\x81\xd1\x1b\xfb9\xcbd*\x13I\x94\x88\x1d\xd0\x91Xq4iP\x8b\x9fX\xb8t6\x86\x80\xccj\xae0VLN\xfb \xd2h4\x04\x80\xcc\xa8YU\xda\xb6\x13\x0c\xa58\x90 \xa1\x83\x99\xc9a\x12X\xce\xa1>\x0e\xa4\xca\x9a\xd7T\xd6)\x0b\x87\xbc\x16\x12R~\x86x\xc5\x1b\x1a0\x0e.9y\\\x0b/\x19\x0e\x03\x89\xe8^P\x04\x0dM\x95\x0f\x91\xbc\x1ezx\xfa\xd4\x0e9\x15>\xd3\xde\xba\xe5\x17*\xe8:\x94m\xdf\xaap\xef\xde\x00\x1b\x98Y\x8aD\x8dp\x1e\xa7\x19\x18\x04\xe4=[\xee\xae\x92\xb0rKTv\xde\xfai\x95\x84\xa5k\xda\xe0<\xd6\xf2\xb3\x96\xd5m\xf3n\x15\x82\xa5\xf1\xc7\xeb\x9f\x1d>\xf5\xbd\xa3FF\xbb\x0e\xb3\xa6\x00\x9c\x0fA\x0e\x00\"H\xdc* \x9bcp\xaa\x1a\x8f\x81Xs,\xce\x87Avx\xb2S\xe3(\xc3\x94\x98\xfd\x92`N\x14\x99\x81\xcd\xaa\x99\xb6\xd4q\x04\xf9(\xefQ\xf3\x92\x94\x93K\x18\xda\xa6\xa2\xbe\x83Y\x0c.vXM\xd6\x85\xc7\xa2)\x1c\xc5c\x95\xf4\x0f\xfc\xd0\x8d\xbfp0\xc3\xd54~PA\x0e\n\x17\x84P\x95\xdb\x04O\xdb\xcf\xb4>\x11.\xc7\xc98\xf2.\x1c\xe5\x84\xb6\x03W\x85\xfe\xac\xde\x07\xf0+\xa3\xd3\xf5\x06\x81\x8a\x8e\xaf\x86Z\x18\xc5|\xbb\x7f\xc5\x8e}-\x1b\xc1\xd1dr]\x14\xfaP\x9d\xcf\xeaW!o\x95'\xd6\x98[,\xb9\xc0C\x98(C\\f>\xe6M\x03c\xa8\xa1\x10\xe58\xdalp\xc4\xd69\xd9\xf2\xbd\xc7\xb3j&\x02\x85f\xba6\x1b\x19h\xa5\xcc\x83\x95\x91(\x10HT[\xff\x82\x8f\xab%\xab2o\x0c\x8d\x07\xb3$\xdc\xca\x80eq]\x97\x13\xe9\xa6\xae\x95\xdf\x89\xd5\xe1\xc0\xce\xd56(\xdad\xf6\xcd\x16e\xc3\xe3p3\x17\xa0\xda\xb8\x895\xea\xa8\x8b\xee\x02S~z\x1c7\x19\xef\xe0&)W\x17\x82k\xcb\xb5{\x10\xeaj\xb3\x1a\x86\x1fM[?)t\xfe\xc9-\x0dN!sK\xbd\x95W\x06\x1e98\xe9\x91\xde\xef>}\xf8\xf9-\x12\xa3M\xaa\xb7Uy\x1c\xb9\x16d*Q\xcc\x808\xc9Jx\x18\x17d&\x91d[\xa7\xbbY\x8f~\xcc\xc7\x9d\xfc\xd9u\xc9n\x9fh\xba\x93XA\x9dTZn\xca\x8dm\x83\xc0}\xd2\xd1\x98\x06\xba\x7f\xae\x1b\xda\xc4\xd2q\xb6Q^\xd1\xb8\x9eZ \xb0Ch\xd4o\xb8\x99\x1b(\x067\x02\xfb\xf6\xbb\xb9\x0d~\xf9\x93\xf9\xd0\xa5\x0eK\x966\xe7\xb8\xd0gN\xdd\xd0\x1d\xff\xca\xb1\xd8\xd7\xd2%\x9e\xfdG\xda\xba\x14\xe7\xa2N\x87\xd2<\x123dD\xb9\xc6K\x19\xcf\xce0qb\xb0&\xfc\xe8\x93\x87\x13\xabk\xce\xca8\xfa\xa5\x9e%\x1a3\x1f\xe9W\x92<\xca\xaf\xc4\xc2\xcf\xc2\xaf\xc4@3\x93\xee\x0fQ\xc9\xa5d\xbb/I\xd10\xa8\xb9\x95\xfc'\xf7eR\xff-\xfe%\x8a\x19\x85B\xd0\xac\xfc1\x9e\xde\xff\x0f\xb8\x99\x94\xe6\xb0\xc3\xe1\xc4\x8e\xf7X\xf1\x1f\xe1\x00\xcaRL\xb5\x9f\xccB{2e\x0f\xd8\x0cet%.\xa8\xb3hQ\x8e\xdeh\xc6\xae)\xaa\xe5\x12\xf1\xe5\x9e O\xe2\xfb\xf1\x04\xee\x1e\x8d]h\xe1\xd6\xb3\x15\x06_\xd2A\x812\x81\x1c\x87\xc1\xa0/\xedI\xa2i\xea\xad\xe5\x8f\xc77\x17B\xdc\xf1\xc1o\xe2\x0f\xf1\xbb\xdf\xdac\xfc\xd6\xfeU\x08\xccS\xfa\xb1\xd1]\x9eke(\x07r$\xe0\xb9\x06sr\x9c\x80(\x8c\xc8\xdc\xc2\xe63\n\xc6\x03\xe5|\x06\xf7\xb0\xab^l\xb4\xea\xb0\xc6-o\xb5r?y\xae\xaeZ\x97\xfc\xdb\xac:\xcd-\xff\x01*\x87\xa4j\xe5_\xd6\xd7\xedK\x08\xa1\xa5\xf6z:\x9a\xa8m\x1d\xb2\xd5\x96\x9e\x1fO#!\xa4]\x13\xf4 ^\xd0\xc9o\xa0j}b\xaf\xbbw:V\x9a\x05\xbe\x07\xfc\xbf.\xce?\x1c<\xe8=G_\xfaax\xe5O>\x97\x17\x86\xacs\xaa\xf1\xe8)>\x93\xe7\xf4\x07~5\x8f\xe3\xcf\xa9\x9a\xc5S\xf6\x0dQx\x9f\xfer\xd9\x93;\x00Z\x8b\xf8\xc5\xd3\xdf\xea\xc5WZA\xb5\xf3\xe5\xf2\xfd\x1aD\xd9\xee,X[\xc1'\xee\x1eB\xc0>=\xd7R\xd1\x80\xb3\xcc\xba\xad\xcf\xb2\x1d\xb7\xdbY\xe6\x82Pg=7e \x06'\xc3\x86\xc0\x0b,+\x02(\xd4\x11\xe7\xec\xecL_H\x04c\x0b\x04=\xea\x9f\x1cY\x96\x02_]\xc0\x87s\x1ed\xd2J\x1cn\x1dc\xc5\x04\xccR2hn\x19\x1b\xb6ua\xdal\x0d\xdc\xfbSnO\xc0\xd6\xde)}a-\x85\xbb\n\x8e\xe1)\xbe\x8c\x0f\x91\xf8\x85<\x15\x12\x82\xe7t\x1b\xa8\xaak\xae\xf2\xc7\xab~t\xf4#\xfdSi7\xb8mT\x1e\xf1\xf1fS\xef/\xfdu\xfd\x11\x95p_o\xd6\xb2R$\x98a$Q\x15\xb5\xcd2n6\xed\xac\xac\xb5\x1d\x8d\x8b\xe8\xb6\xe3A5\x1c\xb9\x15\x89\xdc\xa8\xff\x05\x1b\x91\x8d\xe21\x19\x04\xcf\x0f\x1d'\x92\n\xd7\xf54\x90\xd1\x0b\xbc\x80\x82B'\xca\xbcL\xe6\x01\xd0(\xe1\xa6b\xd6\x18\x86\xc7^\x80 \x14Z\xecg\xe6'!4\xb2\xd4o\xaa#9\xd3*\xa1*/\xa5\x10\xf3\xb5\xd8a\xc0\xe7\xebT\xa5iNC\xb2\xce\x92{\xc5xC_\xde\x84B8\x83\xd4[\xe5,0\xfd\x17{\x0fz\xf6\xb5\x0eJr\xacH\x8cPER\xa0 \x0d\xa5\xdc11\xd11@\x87\xb6\"i)\x98\x8c4\x8a\x03\xd9\x95\x04e\x12G\xb38Y\xb4\xb2Xj\xcbd\xf2\xbd\xd6\xde\x9a\xeb(\n\xa5\xb0M\x8a\xac\xabH\xb6\xe5\xa7uN\x85\x9c\x18\xbb\xda\x91\x1aG:\xe0\x03wuH q\xb0\x12BK\xd1\x9fPSH&H\xa5&\x10\xec6N\xa6\xb9R\xc3\xf9&\x94\x0bw\xd5\xaf\x9c\xe4\x13\x15\xf9y\xbde\xae\x02\x98\x82\xc8\x02\x8c\xf9t\xfb\xec\xea\x10\x96_\x95\xf2\xd7Q\xff\xc9}Z\xac\x90R,s\xa38Y\xf8a\xf0\x0b\x9c\xc5\xa9\xf4\x89\xbf\x98\xb1\xcc\x0d\x8343g\x135\xcfuR\xbf\x06\x81\x0d\xce\x8f\xef\x824\xfb\x89\x16Am\xbcuN!\x86\x91\xc7%\x15\x83\xbewv\xf1\xc6_V{hZ)\x0f\x8bM\x04\x9dVf`\x03\x8b\xad\xf3BL\xae\xa7|\xaeD\xb3\x88F\xd9\x98=\x80l|\x94\x8d \x95\xe3\xcd\xea\xeacU\x1f\xe0\x9d\xe2\x88\x10 \xee\x9a\x04T\xec\x96`\xb1l\x9a\x1cd\x1ckz\xc1\xe2-/\x08\x11\xe8. \x0dm\xe1\x17T\x96\x11\xa4\xc4[+\xd4P#HF \x0d\x1a\xd3\x8d\xda1\x8a\xa2Q2f1\x0e\x04\x1eM\xe3\xb7q\xf6^\x92\x1d-\x10:N \xc3\x89\xa9\x02\xc7\xc1\xd0\xe4\x01\xa8\x06D\x130\xff*\xe4^\xbb\x97\x132\xb0\xbf\xcc\xa2\xbc\xe0[b\x05\x9f\xfd8\xea\xee\x9f\x8d\xc5?\x7f\xbd\x1b\xaf\xfb\xf9\xde3\x1a\xb0\xb5M\x0d\xd2[\xff\xfa\x9a'\x9e\x12\x18\xd4\x8cr\x1aD\xb3\xd8C\xaf\xa3Y\x8c\xe87\xa0\x1f\xfdk\xafDG\x1bi\xe0\xafd\xd1K\xfc\x94\x8c\xb3\x90S\xbb\x86\xf7h\xbenU\xa7z\xa5\xde\xc1\xf1\xb11Kn\xf9\x1b[\xb8\xd0\xc7p\x029\x15rx\xb9\xbb/\xe7\xf72\x9e,\xd2\x8b\xd9\x07\x9e\xdc\x04\x93zS\x15\x02\xc0C\xea\xf2?\xa2\xeaj\xbf\x87\xd4\x85~Dox\x926t]\x82\x07\x0c\x0cQ\xa4\xea\n\xd8\xa8\x1e\x1f\xb1\xdc\x0d\xc0\xa6|\xe1\x07\xf5%\xc8\xa9\x1a\xd5\xaf\xeb\xb5\x11A\x8c\xbd\xf8\x11\xeb\xa6\xa4\x87\xac\x9a\xeag\x88tn\x9aB\x8a\xd0%\x9eO\xad\x10&\x0f\x0e\xfb\xb1\xe7\xbf\x94\xf5\xc5V\x8f\x93\xc5\xd7~\xe6\x03\x7f7\xbd\x7f\x88\xe9\xa8r\xa3\x96\x94W\x91e\xb2\xed\\\xe7\xe3\x98L\xcd\x92\xce\x82\x10 \xbdE\x88\x81\x93\x07,k`\xc8\xaf\x0fL\xee\x8fB\xe6\x05\x1e\x1d\xd1I\x1c\x86\x1c\x94k\xdf4u\xac\xc7:Io\x04u\x83\x7f3\xf8w\x19\x08BG\x11\x88?\x12^\xb6PT\x16`\xf4\xc4\x1e#\xe2T\x84\xa3\xa6\xa6\x8f\x96}\x8a\xc65\xe1\xa7x\xf5X\xe9\xa7\xd4\xd9\x967;\xe5\x9f&\xa9d\xbb\xf4ha\x19g/@g\x1bDC\x89\x9e`\x1b\n\xa2\xe1\xa8\xc4\x03(\xab\xcd\xd8+\x92?H~\xa3R/\x93g\x11`\x04\x1a{\x0d/\xcb\x85c+\xe1\x9a\x9aZ\x9d\x8b\xff\x87Q|;n\xff\x8e\xba\xff\xea\xa8\xdb\x80\x905$\x94\x88g\x07\x0dKi\xe1\xdc\xf7\x88s\xa5\"mR\xa95z<\xbb\xf2;\x1e\xff\x8e\xc7O\x88\xc7\xb6\x1a\xd9\x0b\x0b\x1f\xc5 \x95\xbc\x81\xb7\xa2\x7f]\x84\x8f`fDa\xba\xf4\x1b\x18O\x19\x06\xa5V\xecgY\x12\\\xad\xb2\x06.\xe06\xf1\x97\xcb\x06\xbe%\xcfiU\xd5\xf4\xa8=\xa7\xf9\x9c\x8a\xff\xb1\xd1\xdc\x1a\xa5V\xc5\xf5\xd7T0\x8acR\xf376ul=}c|\xcb\xe2s\xe5\x88\xab\x84\x96\x0b\xbc%\xb54\xe3\xe5 \x86~t]\x83d\xe8_\xf1\x06\xcd\x8dL\xe7Q)\x96w\xd2\xfb\x87O\x9f\x1e\xe7\xc2O\x0f\x1e0W\x16\xdeyM\x86\xcb\x8a\x01KE\xc6\x90d\xc2\xb6V\xaa;\x89%\x0b\x85(A\xe4\xf1\xd6\x8b/\xb5\xc1\xd5l\x8d\x85W\xbb\x10\xa8L\\%\x8a\xee\xf6o\x95['\xf2\x90\xe5\xe1Y\x16Yu\xd8\x8f\xba\x19\xafb\x04k\x12\x98v\x1d\x0f\xe6r\x9c\x8dn\xf6]\xc9\x8a\xa5EI\xb7\xe1#\x8c\x87;\xe0\xfe\xa0\xe1\xea\xd7X\xe8\xfe\xe7l\x91\x142\xb0W\xac\x93\x15S\xd1V\x89\xee\x01\x19n\x12\xc7\x9f\x03\xfe\xebE\xb7]\xc6\xbb\x07\xc5\xab4\xbb\x0f\x0b]\xb6`\x00\xc4a\x1d\xa8\xeb3@G\xc4I\xedgIp'\xde\x08z\xfe5\x0f\x83E\x90\xf1\xa9:\xcb\xed\xe7)\xe7KI*\xc4\x84\xf8\xdd2\x8c\xa7\x0d\x9f\x85q\xbd\xe7\x80@\x8f\x90F\x9b\x15\xf3\x85Y\xcd`\xb6\xbe\xf9C@\xb9\xc1\xa3\xccC&\xe6Im\xcbY\x92\x02-\xa5D\x14\x9c\x93\xfa2R\xfd4\x98\xe5\xfe9\xad\xd1\x0fo\xbc\xc7R\xc4\x1d\xbb;\xb1\\\xd3Kw\xac\xb6\xdb\xa3wa\xe9D\xf9\xd7[\x0b\xa9]\xee\xff\x9f\xda\x95+f\x9e'\xc0B\x1eM\xe2i\x10][\xefT \"yN\xa7\xe5\x0f*\\\x93\x01z*\xeb\xba\xdd\xb8\xfcO\xb9\x85\xf3\x9c\xce\x1eoI\xff\x9d\xb8}\x19Zm!n9\x9d\xffc\x9e\x11\xc1.\xcf\x88\xc5\xe3\xd7s;\xb26\x8f\x9c\x86Ad\xef\xfe\xef\x82\xe8se\xa3V\\$\xae\xcb\x83\xd9E-\xcb6cTJ\xe3\x86\xb6xQl\x95\xad\x8c\x8c\xd9\xfd\xe7r\x93(\x8dk\x8b\xc3\x84]\xe7\xb1\x92ks\xf7\x0fU\xf9\xd5\xee\x14\x95\xef<\xaa\xdeS\xb9X<\x8dS\xc5V\xf7\x08?\xbao~\x11\x03\xcb\xd1\xf0\"\x8a\xb3\x82J\xec\xf6\xae\xf8\x95\xae\x1cO\xe3\x93\xb1\x83\x10l\xd1(\x95\x14>\xe2\x1f\xf0Y\xaea\xcav\x7f\x8e\xdb$\xc8\xf8\xc3\xae\x1e\x8d\x84u\xc7\x91\x92\xe7\xf4\x9e=F\x7f\xc0\xd9\x8b\xd8\x0dR\x95\x05\xf2=\x9f P\x97gI\xabn\xc7F\xe7PG\xca\x9b\x1d\xfe%\xc6\xafd\x9ee\xcb\xc2\xbd\x04B\xdcF\xaf\xa7/\xe3(R\x07\xd2o\xe6nb\xcb(\xd2\xaf\xb0\xd6\xd5\x15\xf7\x13\x9e4*\x02\xa5\xaf\x8a\x98\x7fI\xa9\xf1\x8d(\x04^\xb6\x98E\x83\xbf\xc9o\xe63\x02\xe0\xac\xd6\x92\xb3\xabz\"4\xd8\xd7\x8d]\xbf\xbc\n\xd5\xaa\xd5\xd9m3\xda\x7f\xb9\x13\xc6\x83\xd3l\xf4\xad\xd85i\x8a\xecE\xdc\xed\x9b\xd1\x08\x91\xe6\x16_\x06\x9fj\x1fO\xe0\x8fp\xd0\xec\x8f\xe0\xff\xef\xf3G\x10\xd2\x99\x97\xd2\xb2z\xa7\xfc\x9d\xfa\xf1\xb7\xdd'XB~\x17<\x04\x82V\xb84h\xf4\xcf\xe3\x1e\xb1\xc5\x7f\xe17v\x9b\xf8\xdd=\xe2\x91\xee\x11\xa1\xe5\x1e1\xb1Lh+\xeb\xce\xfd#\xbe]|\xa2r+\xff\xb1[l\xbb\x00\xfa\x08=\x92\xa5\"\xb2+=n\xe4\xa6\x05\xb2Z{KmB,w\"\xd5\xeb\x15~\xe6\x1f\xd1.\x95\x04g\x0b\x95\xb4\x96\xc2\x9bjs\xe4\xacl\x18\x9a\x17\x86\xa1\x05\x15\xe2\x9aWU\xd5\xcb\x95|\xdf\xa06\x8e\x1f\xa7\xbe\x02\xe6\xd0\xd64A\xc1\xaeYI\x8d\x95\x0e\x83\x88\x8cq\xc8\xbb\xfe_e\xb2jJD\xee\xdd\x97\x8b\xcb]\xaa\xdf\xf7o\x9b&\xbdP=\xa0\xa6~\xcb\x98n\xf7#\xe9\x98\xb1y\x94\xbf\xb7\xebr\x95\n\xdcS\xbd\x90\xb5\xe3\xceUq}\xa2\x14:\x07Y\xd8\x11X\xedJam\xb4*\x02\xd9\xf1l\x8a\xbbY\xda\x14\xb7\xe5\n\x97\xd4K\xc8\x97\x02\xcbSd)+e\xb1&T)\xaaF3\xfa\x8d\xad\x89\xafv(\x88\x1a\xc2\x02Y\x1f+\xf4\xb5\xa4\x1c\xe6\xa7\xae\xaf\xf9B\xbbe\x01\xa8\xaa2\x87\x96\x81e\xcfK\x91nB_+w\xdeo\xc0\xb7\xddF\xa8\x84\xcf\x12\x9e\xce\x9f\xd8\x1f\xfdA/\xf8\x12\xf2\xef\xf0\x0c\x17'\x9at\xe6\xfd\x7f6\xf4m\xfe\xf9e\xd6\xa3\xee+\x9e\xd3\x97a\xc0\xa3\xece\xc2!\xd3\x87\x1f\xa6\xff\xe4\xe3=\xb7\xe1\xfe\x124\xae\x8f\x1c\xefC\xcb\xfb\xdbO\xe8qW\x01r\xda \x1a\x97g\xa9=\xdd=do\x12D\xb5\x13\xb9`\x81\n\x0cDtR[dT[wT\x06\x10\x80\x16\xd5\xa0\x0d\xc7h\xd9\x1d\xe1\xe67uG(GAz\xc4\xc9\x88 {aq\x80yN\xfb\xc7\xbfAVa!J~\xea=\xe8\xd0p\xd4?\xec\x91\xea\x9d\xeb\x7fn\xd7\x05\xed\x9fPvO\xd8\xea\xd1\xf0\xb3\x89o\xf2u\xe0\x87|R\x93\x11\xb786H\x87\x86\x9a\xa9U\xfb;Ll\xa7 \xe32Q\xbf\xc7\xfc\xbb\xdd\xf5_\xd4\xeeZse\xd9\x0b\xeapl(\xdaS\x16\xb3\xfa2n\xbd\xdd\xbf7\xe5\xb3z\xe1M<\xf1\xafVa\x13J\xfcz\x03\xd2\xe2\xfe<\xb9\n\xb2\xc4O\xee\xff,\xa3\xde\xd4\x01\xfd\x85F\xa6\xa73-5T\xd8\xd2\xc3\xef\xf7ow\x19\x87\x9a,+\x8d=>\x89\x11)\x7f\xa2~~3cT0\xb3n\x8a\xccyd\x19\xb3\xc3\x94\xdb\xa6\xa1%\x8f\x04\xbbQ\x88D\x0d\xd7\x86\x85d-\x97\xbe\xe1\xb5\x8a\xc1\x97Z\x960\x89u\xf5EW\xc0\xca\xa9-\xa6Z\x0dW\x11\x17\x07\xba\xa0\x85\xf2sMo\xfe\x11K\xd8\xb6\xf3fY\x93\xe2\x7f\xbd\xed\xee\x8b\x06\xf4?f\xe0S*1\xa3F\xda\xf2\xde\xcaG\x95\xd5h{a!|\x1a;`Z\xdd\xd9_n\x1f\x84X\x1fjP{\x93x!\x95\xda\x15*R\xf3\x9d\x84\xf7_h\xce\xa3h\xb1\xcaV~\xf8\xf1\xbb\x0f\xbf\x9b\xf6\x1em\xf3z\x84\x95\xeb1\x86\xac_g\xba\xfa_b\xda\xdbu\xed:}\xcc\xbd\xeb\xb4\xf9\xc2q!\xa7?pS\xba\xb8\x17\x0d\x8f5Iv\xebG-\xc9\xfa\xd1\x1f\xabI\xc0\xc8\xdbq\xab\xfa1S{\xf0\xdav\xfek\x90\xabq\xc9\n\x12\xb1m\xd0_d'\xd5\xc2\xed\x03!\xd5\xe2\xc2\xa8J\xe8\xfa\x7f\xd0\x10\xb7\xed\xb8}\x02\x03]\xed\xee\xba<\x0b\xbd\xf4\x1f3\xb2Q\x99rw\x16\xd4\xc3\xaf5\xda\xdf~\xd7\xaf\xdb\xfau\xd0[(\xceM\xcdZ=\xa3\"\xec\xbf\xae\xd1\xa4_\xae\xa8\xb1B\xcb\xe0\xe8Ct\xec\x93\x07.\xc1@V\x1e\x96\xcd\x83\xd4q\xc4\xbf\xee\xa7O\xfe\xad\x1fd<\xd9l*\xd1d\x13\x13\xc69\xe2\xb7*\xa5\xda\xbb$^\x04)'\x04cS;\xa6\x01Y\xdb!\xa9e\x94\xd9\x10'n\xc4\xef2\xcc\x89\x15(5\xc0\x9c\xe4\xa5\xe8\xd3Em\x88\xd6\xb8\xb3zXd\xfa\xe3\xee4\x8e\xf80\xc6*++\xf1 \xa7(\xfc\xa6YKG}\x8dg\xadh\x98y\x11\xbfmE\xd6\x989Ys\x9c\x91\x9c\x10\xe2\n\xf6\x1f\xfb4%y\x88q\xc2\x12\xd7_.\xc3{\x01\x84\xcdf4&D\xce\x82@\xb4\xe1_\xa3u\x93t\x07r\xc3\x07\xd15\x83\x00\x8dq&\xf3\x0b\xc0\x93\xf5\xf3m\x9cY\xf9'X\xe6B\xc6Dxe2\x90\x8bM\xc22W\xb0\x94\xdf\x04!?W\xed?\xdcG\x13\xd9\x9d\xca\"nE.\xb7\xc3\xac7\x14\x8b\xef,\xc3 {\xe9/x\xf8\xd2O\xf9\xeb(\x8b\x7f\x88\x93i\xca27^\x04\x99\x1c\x8e\x98\xae(Y\x06\x93\xcf\xe5\x12=\x96o\x92x\xf1\x97$\x84a\xc0<@\x10(\x1e\xcd\xb4\x82\xf4]\xe8\x07\x91y\x8e\xe2\xcc\xe4Ac\x99\x1b\xc6\xfe\xf4o\xfeBt\xb4\x8c\x97\x1f2\x7f\xf2Y\xfc\\\xa5s\xfd[\x12\x9d`v\xaf\xab\xf9I\xca\xe1wI\xb1\x19\xb3\x08\x1f\xf4\xceNd\xf4\xf4\xc3\xee\xd9\x19\xa1>\x04\xe5\xef\x9e\x10\x9a\x8a\xb7\x87G]BCP{\x9e\x1c\x10:a\x11>=>;%\xb0UV\xba\xbc\x88\xda\xba\xb4\xe2\x9b\x17\x01\xc1\x9b\xc2\x85\xd7\x82\x84\x17\x88<\xb5\xa3\xae\xb72\x9d\x96\xedG\xc1\x02\xa5C\xef\xf2\xd9\xe5\xb3gd\xb3\xc1\x9cq7\xe1\xcb\xd0\x9f\xf0\xca[\x8a\x10!4\x80~\x8a~g\xdb\x03}\xb6\xf8\xf6d\x8d\x06z\x88\x02\x97\xcf\x13\x19\x82\xb5\x0b\x17\x96\xcc\xae1\x03^\x15\xf0\xcesB\xb7\xf6[Z\xa5G\xf7]j\x95\xc3\x1e*\x96\xbe\x1c\x06Y\xb6Y/\x13~\xe3q\x93/\x002\x83k\xbc\xb1\xf7\xbc$\x1d\xe5\xc5\xc3\x19\xabq\x8a\xa2?\xe28\xf2\xb9\xcdX6\xcc\x94\xa7\x90\x85\x9b\x0d\xf1\xee\x13,h*U\xe1\x92\xd5\x1fCu\xbe\xc2\xc4do\xbc\x0fx8m\xc5\xeeR\x12\xd4\xd4l!\xcc)Ze\xb3\xfdSd\xa2\xd1\x86\x05\xb4%\xcd\x92\x01\x8f\xad\x1d\xd30\x143v.c\xc2\xda\xfbmI\xab;\xb2\xa1\x83%$\xcb\xa9%P\xd5iSsZ\xd9\xe4\x0d]T\xf1_v\xc7\xad\x1e\xaa\x84\xa3iu\x1f\x0d\xd5Jt\xe7\xa4\x15\xcfZ\x99\xab\x8ew\"\xb6\\\xa2\x93\x0b\x10\x19\x93\x18b\xdd\x8e\x99\x81U\xe2\xf2\xe8F\xbb\x9d\x0d'\xe2iT*\x1bo6\x08y\x89:r\x8c\xf5\x04V\x13g\xeed\x95f\xf1\xe2\x1b\x9eM\xe6\x9b\x8do\x12\xb4bN\xd7\x9a\xcb\x88r\x19.=q\xe3\xcf\xf5\xf8\xc4\xdf\xf8A\xc8\xa7\xad,n 4\x83\xa8\xc4^ko\x9d\xb8i\xe6g\xab4\xb7~\x7f\xe4wY\x11\xb2x}\x15O\xef=\x89U\x89\x9b\xc1\x89E\x17\x8a\xbe{\x89\x86\x02$\xc1\xd2\xee>2\xef?\xc9\x15FU\xc9z\xe3Z(\\\x98%\xf1\xe2\x95\n\x0e\x9d\xb9\xb3 \xccx\x82q\xc6^d\x902\x97\x10\x19\xc1>c/F\x19\x84\xcb\x1e\x13\xf9\x91\xeai\xf2\xd8\x8fT\x03R\x13\xf3Q\xc8\x07\xc0^\xb43;e\xa3\xfa\xda\xb6S\xcd\xc6U\xbd#\xb9\xac\x8d\x9f\xe1\xa17\xdaw?\x8d\xc9\x06\x8f\xce\xf7\xff>\x1e\xf9\xfb\xbf\x8c;\xe4\x99\xf9\xe4\x1f\xa52\x85XQ\xfa\xb3\xf8\xbbx\xe2\x87\xfc\xbb\xf8\x96'\xe2[\x98\x10B#\xabS\xe8j\xdd\xa7\xb9\xd5\x11V\xe1E\xe4\xad\xf6\xf8/\xcbe\xd1\xf8\xa1\xce\x07\x05o\xd6\xfa\xc03z\xe2\xcc\x15&\xd3\x83\xca6h%\xaa\xad\xbf*\x7f\xda\xb0 ~t\xef\xady\x94\xf1\xc4\x1b\x8d)d\xa6\xf2F\xe3<\xdf\x92\xc9AO8\x1a\xf11kh7\x88\xdc\x84\xcf\x1a\xdf\x98\x0e\xd7b#\xbe\x9ez\x19M\xf9\x0d\x073zDo\xe48\xbd$\x87\xc4\x051n\xaa\x95\xd3\x04n\x18m\xcb3\x01\xa3\x8b\xe4\xe8\\\x18B9\xcb\x8c\x00\xef2\x9b\xefs\xf9W\x9cK\xa2&\x8c\xb1\x96\x8f\x06jf\xbafs\xd2\n\x9a\xd1\x98\x06\xd4g\xa31\xd05\xbf \x14\x19\xd1I'}&N$\x9ff:\xb9N\xca\xd4Q5h\xc2)\x95,#+'\x9ah3\x16\x0fk\xa2Ud21\x89_\xc0\xc39N\xea\xfa\xd3)\x8e\x88\x17bN}2\xc8\xb6$\xd5(\xf29\x98\x94@\xdb\xaa\xe2\xe6\x17\x90(T~\xc5+$\x84\xc6\xaa\xa5\xb15W\x81\x14\xf5:i\x87\xfa\xb5\xe5\x0b\xf0\xae\xd2\xa5J\xeda`\n)M$\xdf-\xd8'\x9cj\xc8\x12HC\xa2\x97\xce\x92g\xc3b\xa3\x97\xf8f\x95\xf7\x1b\xd2}(>\xd9\xfc\xdal\x1ap\x9d\x9a\xd7\n\x0b!)\xd2\x03\xaaXN\xe8\x1av\x01\xf8@\xad\xc1v\x95\xcd\xbd\xae\xb4\xaf\xdde\xde:H?|\x0e\x96K>\xfd\x8e\xdf\xf0P\xc8\x8d)\xe7\x91\xa7\x90\x89.\xfd\x84G\x99\x17\x00\x17[J\x0f\"\xe6IS\xd6\xd5\xfb>d\xe5\xed,\xceD!\x8f\xa4$\x94CE~t\x8f\x08\xd5O \x9f!2\x80\x9c\xfb\xc1\x0c\x07\xae\x1f\xdd\xd7\xceo\xd1\x04\x13q\xfc\xa9\xa3\xaf\x15G\xe1}+\x8eZY\xbcl\x85b\xc4\x08>\x14\x08\nQo\x9e\xf0\xd9\x83\xcd\xad\x14\xfe\x13\xb14a1\xa1`4\x19\xd3\x15\x8bF\x931\x08\x15!\x11`\x0b\xa2\x15\x1f\x08dX\xd2)\x9d\xa9\xed7g\xb5}\x14\x8a60M\xc6\xd8\xc4q\xe6\x8e\x13\xba\xe9\xe7`\xb9m\x9c\x8a\\\xb5\xa61\x97\xe7}\xbaZ\nn\xa7%\x1a!2h\xc8\x95\x12\x0e\x97,\xf4\xe6\x8e\x83\x97,\x94xA\xa7,\x94\xd4\x87\xce\x98\xfa\xa0\x1a\xe4\x82\xad\xfdI\x16\xdc\xf8\x19\x9f^\xc8\xcb9\xd2{!\x13\x13UK\xed\xd3*J\xf4r\x98Im~\x8e#\xd0 \xa4\x0b\x9avz\x84\xfa\x8e#\xb6\x80\x0f\x96*\n]\xfa\x84.7\x9b9\x90\xb1e#qh\x00\xc6\xd7\xaf\xbe\xf7t\x82\xbd+\xde2m\xc8`\xf5\xab0\x7f\xb9\xd9`\x89\xfd\x84\nhx3\xb5\x0bR\xb3\x0b\x16\x02\xbb\x83\x19\x9e\xca\x9c7\xf5aN\xbfl\x98\x92\xf8\x7f\xd90\xa7\xcd\xa3\x82\xe8Kg\x87\x87O\x9f[\xf3\xd6\x0f?\x7f\x1dOV\x0b\x1ee\x0dy5!\xecR\xcc\"|\xd8;\xed\xab\xf4\x88'=\xa9\xdf\x03g\xc6\x82\xc6\xa5F\xf9C#\xd3\x85R\x16\x0c\xb8+\x11k@L\xbah!\x0d\xcaB\xd7\xc2G;Ut\xa6\x95E\xea\xe8*\x92.;\x0eNF\xa6y\xa6s\xda\x8d\x99\xee\xe2\x8c\xd0\x97\xe6C\xc1\x0c'n\x90\xbe\xe73\xc1](\xd2\xc7Y(\x08\xaa\xdcn\x16\x93%15\xa1\x8a\x8d\x8a\x0b6*0X\xebKfK\xd0\xcb\xa9\xe0`\xa1\xdb\x97p\x9e\xfad\x90X\xe9\xf2_\xbbWA4U\xb9\x10\xc5\xc1ILb\xef\x8f\xc5\xd0g\x92DE\x9a>\xcd!\xab\xf0B=\xea\x94t\xe0\xfc\x1b\xfb\xe9\xf7\xca\x8a\xb8r\x8b\x07Z\xce\x9d\xed\xbd-\x7f\x97\xe4t\x07\xbc\x08Uh\xbb\xa7\xb1fO%\xbf3y\xbe\xdf\xf3\x19q\x9c\x95\x80\x18\x18=\xed\xdf27\xf8\xc3\x1d\xd0\x88\xe4\x82\x02\x19~\xe4\xdcq\xf6\x1c\x07\xa5\x13?\xf4\x13$\x981\x999j\xfd\x8e\xed\x15\xdaw\x85\xf3\xf7\xe6\xd75[\x8ed\xcd\xb1\x8d\xf2\xd7\xfa\xdb\xd7bI\xec7\xf7\xfa\xcd\xbd;\xf1\xc3\x10_\xd3s\x02\xc8\x94\xb2vO}h\xc2Bq<+\xea;\x89\xa3\x89\x9fa\xb3\x9boX\xd8\xf4\xc9\x1b\xdd\xf1\x8dlG\xc0\xdcCW: \xa4\xc4(\x8d5\x9cj\xdc\x02\x12\xedk\x14\x0b\x0b\x14[\n\xc4\x9a\x10\xc8\xe8V>\xa2H\xbbi\xcbo6M\xa5j\xcbG\xfc.\x83\xb6b\x95\xce\xf5k\xd1D\xb0?\no7\x1b\xac\x9e\x81\x1b$4e\xed.]I\xc2\xce\x89\xe4^Z0 \xf9!!\xbd\xd6?\xe98\x06VW\x8co\xa3JW\x1a^Wj\x88\xb7\x01\x08\xcf<\xca\xde\xc6SN\xda\xac\x91\xb0\xe9\xf9\xc4Sn}\xe7vg\xdd\xc6\xb9\xdbc\xb9\xd5c\xb9U\xaaX\x81\x7f\x9bM\xbb\x98g;&k\x03\x88\x81V\xf25\xec\xa3\xe6\x8fI\xde\xa3\xa9\xbe&\x90H\xf6\xed\xeb\x1a>>\xa7\x0bBl\x0b\xc8\x07\xc7\xf9\x90\x0fJ\xb8\xc1\x82\xc2,\x83Koh&wh\\\x1cVp\xd2\xc6\x03\x12?z\xb9K\xdd?\xbe\x19\x8d\x04S\x10\xeb\xef\n*\x9f\x99\xa9\xaea\x7fHZ\xaf\xb1b\x1d\\Gq\xc2\xdf\xf2;M\x83\xd3\x8b\x08\x96;\xcb\xd9\xcf8\xa1\xe7T\xf0\x90K\xa9C#W \xf7?\x03%L7\x9bv,v\xbb!h\x05i\xdbl\x8c|\xa2\x8b\xe0\xa3\xe7\x84\x96\x8d\"\xe7\xa4\xd0@GR\x9a\x1b\xd8T63YU#\xd6\x1dD\xcf\xcfu>\xda\xa8\xd3!\x1c\x9f\x8f\xa21\xcd\xe8\x9eN\x8d\x1b\x8d =\x17\xa4Zo\xfc\x1aS|n\x84\xe7s\xfd\xe5\xb8$\x18E\xb6\x08>\x88\xb6\xc8\xc6\xb1\xdcZ\xae\xeb\xdam\xcfK\xaa\xedv\\Q\xc9\xd3\xe2 \xdf\xd6CV\xea\x01\xed \xe9D\xa5\\\xae\xf66\xa8\xe8\x85c\xb2\x96Hw>\n\xc64e{\x03\x83\xfb\xb1\xe3\xe0\x98e\xb2|&\x913d\xf6LG\xc1\xb8\xa8\x1e:\x0e\x16\xaf\x1b\xe5u\xda$\xe5@\x83\x10\\!\x08m\xfbv\x0eF\x1c\x12C\xf7B\xbd\xc3\xc2Z\xfaF\xd9C\xb5\x98\xc6L\x06\xae\x8csBC\xbd\x1f\xc5\x10\x95\x1e\xa0\xddk3\xe0\x85t\xdeL\xe8G\xba\xf3\xe8\xb3\xb9\x9cI5'\xb4a|\xd69.\xbb\xdel\xf4b\xc5\x82\x10p\x1c\xd3\x90\xa6\x1a\xcf\x02\xc0\xb3\x80\xe4\xb9\\\x80\xa9:\x80\xa5X7g\xc5\xe1\xfb\xaa\xf9\xf0}\xa5!\xf1J\xb6\x91\x87\xaf>\xba\xa75]\x97`Xnx\x02\xb6\x8f\xa6\x03V\x1d\x832\\&>\xb7O\xbe\n\xc9Rv\xe1\xf2\x0b\xc8\x8d*\x89* QV\xa1\\\xd9\x80<\xfe\xa0\xb2\xbf\xf2\xf8V\x84f\xd2\x8f\x81GY\xbe\x9d\xff\xc84\xe3\x11\x15\x8c\x07\xa8\x0f\xe7\x82\xc9(C\xc5q^\x02\xa3\xc0\x89\xe3\xfc\x8c3\xa0d\x11M@\x92|\xc7ft;_\x0dk\xf2\xab\xf9j\xf9U\x9f\x90\xf5\xbf\x1e7m\xe9\x90~\x06A6\x81\xa1*\xf8\xf8\xac>\x0bEM\xda=-\x91qk\xd2~\xd3\x1c\xdf=r\x8e)N\xc8\xd6Yn=\xb6@\x95\x10\xb2v7\x7f\x18\x12\xb6\xac(\x9d#\x8c\x8e\xbc&\x1dG;\xa5\xda_!2\x03\xcfS\x17h\xa3\\L;!t\xfb\xc9\x1cZ\xab\xf4\x11r<\xbfk\x92y\xd6\xd2\xd0.\x91\x9ck\xd5\xf4\xda\xc25@\x04\x9e\x9bY\xc7\xee\xc2\xff,\xda\xbe\x9e\xe2\x8crW\xd0^B\x036\x01\xc3y$M\xf7A\xad#\x05Q\xe8M\xfeV]\xea\x8c\xecS\xcf\x97oSj\x84\xf1\x10J\xde\xc9<\xea\xdeJ\xa1\xe02g\xc1\xa0\xda\xbf?\x14\xecDR\xe47\x0fu~\xf3\x15\xf1\x96\xb6\xb3[\xec\xfe\xcd_\x84\xef\xfc$\xe5\xa0\x06\xaa6\\\xea\x86\x08\x91\xd2\xb0S\xf3\xfd\x02\xb4\xaf\xb5&\xc7h]\x8c&bXfc\x8a\x17dX\xfc\xf6F\xc5\xef\xb17z@\xd3\xf4\xae\x92\x9c\xbd\xdd\xcb\xc9x\xb0\x12\x87\xf4U\xc8\x17\xe9#\xd4U\x9a4\xba\xf2\xc7f\xc3-;\x8a;\x8b\x93 \xff\xa0\x9e7\x9b,\x17\xbc\xe2Z\xe7u\x8ft^wq\x12\xd9\x06Lm\x88\xdf\xf5\xe5GM\x86\n\xb6%'\x96\xbb\xd6[\xcb\xd2\xb8r\x95z5\x15{u\xc4\xc7\xacV\xb2\xd9\xacsZ+\xcds\xac\xfc\xdf\xa64\xa2\x95\xf5\xce\xccz\xff\xfb3D\xb4\xf3\x0c\x82\xbb\x8cG\xdd\xdeYMi'\x1dD#|t\xdc? \x03\xee\xf2;1\x89\xb4\xd16:\xc4h\x9d\xcb\x98\xfc\xe9\xea*\xcd\x12\xdc\xa5}\xb0\x012ty\xb9\xbe\xbc\xccQ\xc7\xbc\xea\x13B\xafq\xb3\x89\x15|$\xd0\xe5\xe5\xe5%\"\xee\xcfq\x10\xe1\x98\x14\xa5k]\x18X\x85\xb9.\xf4\xadB\xaa\x0bS\xab\xd0\xd5\x85!\xc91'\xb4\xdd\x95\xce\x15+B\xc0D'f\x1c3t\xd9\xfd\xf0\xdd\xf9\x87\xffD\x9d7~6w\x13?\x9a\xc6\x0bL:\xe8\xb2\x8bh ^_\xbc{\xf5\xb6\xf1\xad/\xde\xbe\xfc\xee\xe2\xc3\xab\xc6\xd7)\xbc\xbex\xf3\xe6\xbc\xf1u(^\xbf{\xf5\xfe\xf5\xc5\xd7M\xef\x0b%\xe6\xc4v\xce\x12\xcb\xfd:\xca0\xa7\xbd.a\x8c\x0f\xcb%\x1ew's?y\x19O\xf9y\x86\xbb\x16\xca\xad\x1a \x1f+\x00!\x80\xbf,\x0bt\xd9\xda\x14\xf9\xba(7E\xa9.\xa2\xa6(\xd4E.\xb2>\x0b^\x93\x82xrE\xdd\xe8\xaa\xf9\xec\xc7\xfda\xf7rj|\x04\x8aJ\xf3\x92_\x14\x7f\xce\xac\xee\x17\xe5w/\xecw\xd7\xf2\x9d\x98g$\xe0\x1b\xd7\xe1\x1b\xeb\x85\xe0r\x1d\x02!4'\x1c`(\x80\xa9`0\xbc\xc6\xf2\x99\xb6{\xc4\x83U\x0bf\xf8\xd9\xe5\xde\x9e\x1a.\xb4\" \xa6J\xb0v\x07\xe1s\x0d\xc1A\xd8\xe9\xc8a\xacX\xd0\x11P\x88a\xc9\x04(:\xe9(\x1c\x0f\"I\xd6WRd\x85\xaa\xa0=f\x02(\x97\xd3\xce\xa5{\xe9\xc2\x0f<\xf4\xcco2,\xbe.\xba#\xf4\x96=\xfbq\xe4\xef\xffr\xbe\xff\xf7\xb1\xa8\xa6\x7f\xefnu\xc7\xae6\x9b[\xfa\x99\xc9\x02\xe3\x03$\xb0\xe7\x05\xeb\x02\x9c\xee\x1c\xa7\xfd\x99\x18w\x12\x00\x8dr\xd7\xa5\xeeW\x97\xf932\xbc\xc6\\\x02\xcf\x9e\xa1\xdf\x91\x95\x89' \x1c\xcc\xf0\x1d\xb9\xd7\xdfQNabd\xcf\nQ\xa5'5\xa5K=\xb2\xee\xe0\xe3s\x0d\xa2\xc1\xc7N\x87\xdc\xd8\xf4\xe2\x86\x8a\x05\xfd\x08\x0b*\xad\xbc\xb2\xc5\x8d\xdd\x02\xd4?\xf5=%\xb6\xd3\xcd\xe8\xe3\x186\x11\xc5\xedl\xb3\xb9\xdblV\xc4q\x8a\x0de\xf8\xe9\x9c\x1e\x9d\x1c\xd9\x17C\n\x9dSM?\xb4L\xe2 OS\xc71?\xda=\x8b\x0d\xc8\x86\xeb\x94/=\xb1\x18\xb9'\x7f>CyN\x0f\xbbgu^B\xb3\x8dEs\xf9\x86\xads\xc2^\xe0k\x9c\x11\xda\xc6\xed\xc8\x8dbu\x15\xd5q\xd0\xbf\x8bU\xce\xe0\xf8\x82\xa3KL\x89\xdf\xb6n\xb0\xe8R\xed\xeb<\x1b$J-\x07+\xa8\xd6/\x02\xf1\x97\xbdHpD\xc5\x07\x8c\xa7AQ\xc7\xf6\xccV\xe8X\xf1^\x9b\xc5\xc9+\x7f2\x07_\xe1H\x0cO\x8c\x91\x98;\x05F)\xa8\xabqQ\x8d\x8f\x19x\x81\x12\x1a\xe5\x83D\xfbY\xa7b\xfa\x92\xc9\xd8l4b\x1b\x0b9\xdfl\xda\x8d\x9es\x9ax&\xc6J\x90\xd0\x88\xe1HH\xfe\x84\xbd\xc8\xe0\x978\x88c\xe3\x10\x85#\x17\xa2P\x08dd\x93\xd0O\xd3\x16\xdcK\x9c\xa6\xad\xacx#'\x9f\xac&Y\x9c\x00\xf6\xae\xd3\xd5\x92\x8b\x9f\xa2\xb7\x88\x90<'\xc5\xd8#\xe9\xa9%\x9f\xb0\xaaQtF#\xb3\x02\x11M\xc0\xadK)J#\xe8.\x11\xc0x\xa07\x1a)\xf1\xb6\xe8C>\x97\xfa\xb8J\xfc \x7fu\xb7\xf4\xa3iQ\xcf*,U\x96 (\x80\xa56\xa8\x052\x1a\xe54)w*\xb1Q\xf2/\xc6\xf3\xc3B\xack\xc1\xa6gn\x14C\xab\xcd\xa6\xfd\xecr-w\xdf\xe5\x9a\xb8D\x1c\xba\xc6\x9dr\xc4\xc7\x9e/\x08\x02\xbd\xd6\xcb\xafo\xbe\x14Ko9G|\xbc_r\xe5 \x11D\xe0\xdc\xdbR\xe1\x18\xa4\xa3\x8e\xbe\x9d\xf0\xe2\xf8\xe8\xe8\xe0\xb8\xb9\xa1j\xd0\n\xd2V\x16\xc7\xad0\x86d\x18\xf4\xde\xd0\x98tu\x05\xfc8\x10\x18\x0dr9kI\xcb\xe0r\xd9:'\x1a\xfeD_M(Q\xc8B\xee6\x04\xd0\xe8\x98\x18\xb7\x15\xe5IA\x18EW*E\x90\x1b\xc5\xd1*\x0c\x1d\xa7\xcd\x0d+\xa1\xbc>2By>\x90\xa8{SBT`\x1c\xe5\nl6\x18\x96\x84\xc2MA\xd5)\xcb\xe4c\xca\x81s\x87\xdf\n \x8c\xcb\xc7\x84_\xf3\xbb%\x93\xee;\xa2 \xe2\xd7~\xc6Y\xbb'\x1f\x15\xb17\xcf|\xb1\xcc\xee\xcd\xd3\xd2O\xb2\xc0\x0fY\xbb\x9d\xe9\xdf\xf2\x85\x80\x15&\xf9\x94_\xad\xae1Y\xe7\xf2\xd9h.\xed\x91\xd0\x8c\xd9cVf\xa0\xda1\xc3\xadcF\x01VH\xc8\xb8<\xca\xaed\x98y\xbd\x8a\x1ax\x97\x0c\xf4\xc8S\xfe\x16\xe6\x8a\xa5Z0\x92\xc3\x10g\xce\x07\xae\xc6do%2\x10\xbb\xf4ju\xed8\xb2Gx`\xd8u]N\xd8\x0b1\xb58\xe4.\xa8fd\xa1Z\x0c \x84\xd2\x94#B\xad\xcf\xbd\xf3\xc5\xd1\x18Y\xd7\x08\xe4\xb10#\x0fu\xa1\xda\xa8C\\\xb4\x14\xcf\xc5\x04\xa1\xf5#z\xb1\xd0s\xbf\xa7\xf2\xa6J\xf6Z\xf0;;\x9b\x1b\x04\x8b\xf2\x12L\xc5\xee\xb6\xd7U 8\xbc\xd2^\xa7M\xb80\x90\n\xfdv\x8fF\xack\x1c%\x13\xd6\x1d$\xcf\x8b}\x81\xda%\x84H\xc8 \xe9tH\xc6\xda\x19\x8d:\x9dA\xa4\x17\xc8\xa0\xba\xd6kDz*\n\xc9\xb3\x1c\xb6\xe2E\xc4\xcb*\x95\x12>ZsG\xba:\xa2kQ\xec\x89\x7f\xe8,\x08\xb9\xc7M|\xa2,/\xc1\xcbj\xa3g@\xb5\xc0F\x0c\xff\x19\xb3.\xf5Y\x97\xa6\xe6\xca\x15\x0d\x99\xae6\x88\x9f\xa7\x8e\xe3?\x0f\x07q\xa7C}!\xa65}\xa0\x15\xc6\xf1R\xc9\xdd\x13\xbab\xd9\xc8\x1f\xd3%\xe3\xa3\x18d\x1a{\x0d\xe9\x8a. m\x8b\xa5^\xa9\xf5h\xf7D\xa5\x15c,(w\xaf\x99.DG\xd0n,\xbf0e1\x9d1\xbf\x03\xcdf\x8c\xb1P:\xa6\xdaM\xbf\xfa\xaa\xe5g\xadl\xce[<\x9a\"\"\xe6!\xa6@\x04\xe1wa\x0dG\xf1x\xb3A\xae\xf5\xd0N\xdci,v\xbd)\xabm|\xa3\xbeow\x81\x15\x1fL\x9f\xa7\x03\xb9vs\xc6G\xd3\xeat\xd1ed8\xc9\xdby\x10\x8a\xa5\xa0S\x9a\xd1\x19\x9d\x13M\xaf4\x1e(\xa9aJ\xa8\xf6\xab\x9d\x11q +\x82bwk:\x9d\xc5\xabh\xda\x82>\xda\x88Ni*\xfam\x83L*\xa717\x93\x9cWg8\xb7\xa6W\x82\xfb4\xceZS\x9e\xf1I\xc6\xa7m3b2\x90V\xed\xc6q\xa4\xb7\xe0\x9b\xda\xf2[)\xbf\x16\x04\x91\xb6\xfch\xda\xd2\x8e\xa6\x82]\xect\x94\xac!\x98yqh\x94\xc0\xf4\xe2\xc5\x8bV\x14\xcb\x99\xd0\x96\xa2\xe8\xc3\xe2\xe3t\xdaf,\x95\xfe\x8d\xb5K\xab\xab!\x9e\xb0\xa5@\xa9\x12\xfe\xcbj\xb2O$\x10\x88N\x08\xf1DUu\x10\xae\xca\xfbE\x9f\xd8\xe5\x06\xb4=1\xab/\xbe\x1e3\xc6\xc4\xa6\x00\xc4\xd3\xd80\xd0/\xf4jE\xa2\xc4\xae\xd3\x82\xd7\xfb=\xc7A\x1a\xbd\x065o\xcc\xdbl6D$/\x11\x7f-\x9c/\xca\x04\xd0\xa6\x14D\x12\xc0\xe2T6\xa6\x8a\x12=\x11\xa0\xfb\xea+\xf8\xbaT\xb3 \x99J/\xa1\x1ef0\xe0\x0c}\x85\x00\xce\xb2\xaaRN\xa1\x81\xa4\x88\x08\xd1\x98\xb5\xa5<\xe6\xa7\x9c\xfa\x85\x87\xd5J\x9c\xf53!\xdd\x8a\xaas\xba\x90\x1e~\x82\xaa\xde \xd9\xfe3\xdb\xd7U?1\xb5\xcd\n$\x1c\"\xe4E\x02A\x87H\x8aP?n./\x9f\x91\xcbKw\xdd\xa3\xfd\x1c\x0f\xbd=( HH:\xed\xcbK\x97 z\xc1\xc0\x92\x15\xcc\xf0\xdc\x04\x9d\x99\xab\xf0-_!/\xe9\xb0\x89\x18nW\"\xaf\x8c'2\x84\xf2\xd0.7qE:LH\xad\x9dy \xcd'!\xf7\x93\x0f\x99\x9f\xf1\x97s?i\xfd\xe1\xe7\xd6\x1f~FtN\x13B\xe7\xac\xddSWB\xe0\x04\xa1\x01\xeb\x0e\x02\xeb\xc8\x00\x9b\x97\x9ac@\xc8 \x90T\xc8\xee\xfe\x0f\xe9e\xf6\x87\xb4%\xfe\xffY`|@\x13\x9a\x11\xeaK7\xdeg \xea\x16\x04h9\xca\xc6\x8e\x83\xd5H M:,\x83E\x90\xee\x1c\n\x06\x99\x82\xc13\x1dsE,\x92(\xb8\xbcD\xde\x05&\xa2\x058\xcaJGp\x0d\x17\x0d7\xf8\xdbQ\x7f\xff\x8f\xfa\xdbF\xde\x8e\x91\xb7\x9e\xef\xef\xb7R\x0d$k\x1e\xb7e\xea\xd2j\x05Q\x0bxJD\xa8\xcc \xbe\xbc\x1c\x92\xcb\xcd\xb3kZ\x88\x10*z\x8c\x9cr\xd6\xc9:Q\x07mPE\x08@\xe2\x13\xec\x0f?_F\xadV\xeb\x0f\xa9 3\x9c\xde\xd0\xa4\xf0\xdeD_\x15\xf8<\x9cxhh=\x86\xa0\x93\xec\xc8\xa7\x01\xacKbf\xda\xa5f\xae\xa4\x93u\x80\nt$\n\xfb\x86\xe0\x8a\xc1\xa9O}`\xd3QR\x1c_cs\x08p63\xb6\xa1\x01\x7f!\xfe\xd9\xdf/.\x16\xceF\x1cl-\xe6\xb3\x91\xf9,\x0dL\xb1)\x84\xd7\xaf\xa2\xe9\xfe\xa9\x94\x16\xfdR\x95W\xd1T\x8f'\xad\xbe\xd8?\xd5mI\xc7\xa7aa\xf6\xc2\x88\x14\x03\x14}N\x98o\x8d\xbe;\xe0\xcf\xc3\x01\xeft\xc8\x84M\xack\xa8d\xd4\xf9j8\x1eBT\x91\x81\xcf&4aq'\xe8\xf8\x1d\xc9)\xf8\x8e\x93\xb5\x19\xbb\x1f\xa2=\xe4!D:\xa9d\"\xda\x8c%\x8e\x13\x0b\x102\x84\x87\xcc%\xa8\x93\x10\xfa\x01\n>\x89\x9f\x19c\xec^[\x9a\x12*\xa5\x06c{j\x95\xae\xc2b\x97<\xbb\xa6h\xafg\xd6\xe1\x15\xd3\xbc\xc8\x10\x05\xe2\xcb\xb0\xb5\xcb\x8aDes\x17\xac\x96\xde\xf3?\xa2N\xd2A{\x88\xbe\"t\xfdI\xb0A\x1e\xa7\x9f\xd2d\xe2%\xb9E\x074?g\xb5\xdcs\x11\xc9s\xad\x941\xe2\xa6Thl6 \xdcX%%\x06^\x16\x95E\xd0T^`0\xfa\x97\x86\x06F\xefQj_\xd6_\x08\xc1\xdeb\xe8\x86\x13/\xd3\xdc\x94:h./\x9fm~$\xf0C\xf2T\x04+\x96\xca%_\x0d\x91W\xad)X,xC\x13\xe8\xda\x86\xb1v\xdd\xd5\xaa\x03\x0cah\xf4S=\xae\xcc\xd0Z\xc5\xd1\xfe\xe8r\xbc\xce1\xf9\xaa3t\xe9\xe5\xe5\x8f{\x9b\x7f\xbfL\xc7b]//\xf7\x1cD<.\xa4\xc1a\xe0qW\xac\x08iRR\xf3\xc2\xfe**;\x8e\xc0\xa2\x00\xdc\xe5\xb5\xee\x8a\x10\n\xb1\x99\x8c^\x18g\xa0\xa9\\g\xb2\x05\x1f%\xfb\xbdq\x1b~\xc3-\xbfdh4{\xbd!\x1f%\x9d\xdeX\xa0,\x80\x03 z$\x805D\x1d\xf9\xca\xe3\xa3d\xcc\"/\xb1\xe2\x95\xecC;iI\xb6\x1b\x92!\xf2p\xf5\xcd\xe5\xe53\xd3\xab\xee\x94\xaa\xcf\x06\xe0\x05BK\n<.\x86J\xb4\xd9\xe9\x99\xa0\x8d\xfaa#\x84\\\x86~\x14\x8cD'\xee \xb2\x87l\x85\x03\xb8\xb6\x8a\xb7m\xf9\xd6\xfdj\x0f\xc9#\xd0F2\x0b\xc9c\x9aX\x9b\xa0\x8c\x89y\x1d?s\xa5Y\xd4*5%\xc0\x15\x9b\xc3\xd6\x18\x08\xa2m\xcb2\xa4\xa4\xf0+i\x05\xe0\x05(\xd0\x8c\x18\"\x80=0\x8c1w\x9c\xac\x90\xc2\x1a\xc5\x1e\xf4L\x90 \xb0\xf3\x80\xd7\x89qh\x10%60i\xf1n\xb6]\xf3\x84\xa0\x06X\xc8\xb5\xe6\xd5\xecb\xb1)\x82\xc1\xf6\x96p\x9c\xb5\x92\x1b\x04\x17\xc6\xa3\xa9\x17\x08>q\x99p/6|@\x00\x06v\x88\xd1\xa3\x0b\x03\xb0\xc5k\x068\x00\xc6\x0d\xd2\xff\x17\x15z\xe3\x8e\xd1\xeaYny\x91\xed\xdc\x91\x19\xcd\xbf\xf1\x9f\x1cF\xa3\xeeX\xc6\xab2m\x92\x922R^\x02\xa7)\x0dYd\xb4\xb2\x1c\x82\x9f\x99\xc7\x8c\x86\x82\x07]1\xb8&\x1c\x02\nO^ta\xdfsKn\x1d\x85t\"\x19\xa4\x84\x8d\xc6\xe0\x94\xa3\x10y\x05m\xda\xe9\x80\xac\x18\x0b\x878\xd1\x96\xe9\xf2g\xe9\xaa\xd3#\xc4\xeb1#\x0e\x0cS6J\x9483\x19{\x18\x0b\x96J2\xb1\xcf\x03\xd8H1\xf5\xd9\xa4:^\xe8G\x0c\xf8\xf9\xc4q\xc4\x80\x87\xa17\x19$\xe5\x0dB\xfd\xb1\xb1\x8c\xa7\xb9e\xd8\xa6\x99\x9b\xf8\xd15gIN\x0f\x0fO\xbb\x8f\x89\xa3\x18\xb9\xd7n\xd5`\x0e\xee\xdd\x1f\x83\xc9\xe7\xcdF\xbcNy\xf6z\xb1\xe0\xd3\x006\x9c\x8d\xae)\xcf>\x06\x0b\x1e\xaf\x04\x86vI\xde\xe8lg{\xf8H\xff\xd9L\x06,,\x9c$\xc3\xc0p\x95\xa2\xb6\x17\x90N\xe6\x054\xd6\x86\xd4\x04\xff\xf4o\xa3\xbd5\xcf\x17?Q\xf8\x95\x89_\x16\x9f\xf3\xd3\xe5\xe5]\xef\xea\xf2R\xbfB\xd7\x88P\xd3\x86\x0c2c\xd1l\xbe\x9b\xbe\xce)\xe2\x91\x7f\x15\xf2)\xa2\xebk.CTD4\xe5\x99\xc7\xd9\x8b\x88q\xb8\xa5\x9e\xf0\x94g,\xc6]\xda\x15\x8fWq8e F\xff6\xea-\x10E\xff6\xea\xf7\x17\x88>\x83\xa1\x88\xdf\x82\x13\x86B\xa8 ZL\x83\x85l\xd0\x7f\xa8A_6\x082?\x0c&,\xc6\x07\xb4\x7f \nV\xd1\x94'a\x10q\x16\xe3C\xda?\x84J\x11\\\x97a1>\xa1\xfd\x13Q2\x0f\xa6S\x1e\xb1\x18\x9f\xd2\xfe)X\"\xb2$\xf8\xcc\xb3y\x12\xaf\xae\xe7,\xc6g\xb4\x7f\x06S\x08\xfd\xc9g\xd1}\x97\x1e\x9c\xc9)N\xc5cO=^'\x1c\xfa9\xe8\xab\x82{\x1e\x86\xf1\xad(9P%W\xe1J|\xfa\xe0P=/\xfck\x1ee\xbe(:RE\x93{\x1f:9V\xcf\xb7\xf3 \x836'\xe63\xfe\xbd\x18\x95\x1e\xc5\xd5\xf5\x1f\xd5\xc0\x0e\xbb\xf4P\x15\xbd\x87\xa1\x1d\xf6L\xc1\xb7jp\x87}S\xf47=\xbc\xc3\x03S\xf6G9\xc0\xc3CS\xf2\xc6\x0c\xf1\xf0\xc8\x14\xbe\x94\x83<<6%?\xa8a\x1e\x9e\xe8\"1\xa8?&\xc1\xf5<\xb3G\x9b\xf0iQX\x82\\Q\\\x86_QnC\xb1(\xad\xc0\xb2xaC\xb4(-\xc1\xb5(>)C\xd3\xbc\xe8uK@\xb5\xca+\xb0\xb5\xdeTAl\xbd*C\xdazQ\x03\xb8\xf5\xae\x0cw\xebE\x05\xfc\xd6\x1bX\x85\x9c\x9e\xf5\x8f\x8fk\x07v\x84\xfb\xfd~\x9f\xd0\x08\xf7\x8e\xc4\xa4#\xdc?\xea\x1f\xc3\xdf\xc3\xc3\x03(?\xed\x9d\xc8\xe7nO\xfc==\x91\xf5\xfb\xbd\xe3#\xf1\xf7\xac\xdb\x85\xf7\xc7\xddchwp\xd4\xeb\xcav\x87\xf0\xf7\xf8\xecT\xd5?\x82\xfe\x8f\x8f\x0f\xe1\xef\xd9\xc1!\xf4w$?sp\xd2\x85\xe6\x87\xddSh\xdd?;#\x9a\x83\xc0\xa7G'%g6W:\x91\xe4\xf4\xa0\xecRG\xd6\xcd\xce\xf8\xcd\xf1@\xb4\xcbK\xe1\xb5\xa2\x8e\x11N:E\xb86;(\x88>[\xf2\x9c\x9e\x1d\x9f\xd4\xd9\x1f=\xde^\xaf\xb7\xed^\x00\\\xb7\xc1\x9c<\xea\xdbQK\x1d\xa5\xa5O\xf7\x0ez\xf5\xbcg7\xe6N\xc2\xd1\xb1\x0c\xf9qr(\x16$\x10\xc39\xecv \xf5\x9b\xee'\x14|\x0f\x8d\xa8/\xbb\x11,o\x823\xc1:\xc684\x1a\xcf\x15\x0b\xb0O'\xd2\x03\xc8q\xa26\x8b$\xdf2\x98\xbcX\x0d\xc4A\x8fS\x16\x8eV\x9d\xce\x98\xb4\x8d)\xb0\xdd\x95|\x81\xa9\xb8\x92\x16 \xcc7\x9b\x958\xe9C\xe28\xe1h5f\x8c\x15\xee\xec\x9b\xcdj\xb3\xe9jk3w\x9c\xfd^n3\x7fk}\xcd\xd5\xf3q\xbbK\xa8:\x14\xc5S\x8f\xe49\xedw\xcf\xfa[Atvvr(Atzp\xdcSQQ\xce\x04\xde\xf9\x06l\xa9\x00\xe5\xa1\xc0\xfc\x90\x8d\xc6\xc0h\xd0I=N.\xeb1\xc6i\xc4\xfa\xe2\xcf\x84\x1d\x88?+v\xc8 \x16\xc8\xb1\xf83e'\xe2\xcf\x8c\x1d1\xc67\x9b\xe5\xa0\n\xf89]\xd0kz_\xb0\x80\xd2h\x18\xe09\xa1w,\xc6\xb7\x84~f \x16\x95\x0e\x08\xfd\xc4||g\x96\xe4\x82u\xe9\x07v\xbf\xd9\xa4\xf4\x15\xcb\x86\x1f\xf0\x9c~\"^\xb4\xd9L\xe1wW\xb35\x83O/.\x06\x17\n\xf0\xb3\xcd\xe6B\x00\xfeN0\"W\xec3\xbeaw\xa3\x8b1\xbd\xa0\xb7\xa04\x82+\xdc\xafF\x17cve\xb8\xc3+\xa2\x0ck*{E\xeb\xc0+\xb4\x0e\xe2\xf9H=\xb7n\xe4\xf3\xb1~\xbe\x90\xcf}/\x94\xfc\xdc+zCJ\xa6:\xdd\xe3a\xd9R\xd7:)\xb5P\xbd-\x87\xfb=o\xb2\xd9\xac\x86+\xefU\x19#\x94\x96\xcb\x9b\xe0.\xa1\x0b\x7f\xe9Mp\x8fP\xa9>\xf2&\xb8Oh\x1a/\xb87\xc1\x07\x84\xf2\x1b\x9e\xdc{\x13|(*DSo\x82\x8f\xe4\xaf\xd7\x02\x8f\xbc >\xd6-/V\x997\xc1'\x02\xa7z\xbd\xb3\xc3\xad8u\xd2?;P\x99\x01{=\x1di\xe7\xe0\xac/p*\xc6(]\xf2I\xc0S\xf4\xc0m\xa1\xe0\x05;\xeam6\xed\xb2\x04r\xa3n\x80h\xc7J\x88?\xa9}\xd1\xd8:'#\x7f\\\xe7Y\xd7\xb38\xf6zb\xdcm\x06\x9e\xa0EL\xd6Y\x1cCT\"*0|'\x11\xa328\xf8\x91\n\x0e\x0es{h6\x85H\xa4\x99g\xb8\\\xdb@\x81!\xcc\x8f5\x17\xb2\xd9Dm\xc6@\x04q\x9cv,\xef\xd9K9\x81\x0c\x13\x88\x9dXD\x08\x8aF\xc1\x18\xae\x8d\xab\xb8G\xc43\xbf\x04\x8b\x8b\x0dG\xaf.\xe2y\x11\xc1\xf2\x8ee\xd7\xcb\xc4\xec\x0f\x0f\xfa\xc7^}K\xafs#P\xec^\xadL\xe2''J\x19qJ\xf7\x81\xf8\x1c\x1fn'\xcf\xbd\xe33E{\xc4\xd7KP\xd5\x1f\x95\x99\x1d}\x86\xce\xb5\x90\x87\x18\x8bq](1B`\x8e\xcb\xbe\xde\xc3\xb8>-\x1a\xd1D/\x88\x81\x0c\x1f\"\x13 \x1b\xe9\xd0\x1d|\x88\xde\xae\xc2\x10yU-\xb6-\x19\xc1*[\x86\x06>\xca\xc6\x85\xc24\xcfq\xa6$\x06\xcc \x0d\x08\x19F\x9e?\x8cqF\x14\xcf&\xbe|N\x8f{\x07G\x8f\xd2\x10\xe1\x93#M=\xb7\x83\xa2 \x8c>\xf0)\x03\x1f\x02j\x0f%L|\x1a\xe0\xae\x80\x89\xc7\x05]\x8c\xf2\x9c\x9e\xf4\x1b\x06b\xf3\x96\xf0i\x89;\xe2\xd3\xc7\xdd\xe3\x9e\x851\xeel\x0b\x1d\x90\xf4Bs\xa3\x9b\x0d\xd6?\x05Q\x1e\xc48\xa3\x9cl6\xbe\xf8\xab\xc3\xb6\x05.\x84\x94\x15dB\xac\xff\xee\xf3\xc4\xfal\xe5HP\xab{\xd2\xde.\x97\xf7\xa4<\xde\xd0(\xcf\xc9\xa87\x86\x88\xe6\x07;\xe8\xff\xc9\xe9\x91\"Up\x12\x04,q\xf5\xbdl8\xd4\x02\xe281\x0e\xdcI\xc2\xfd\x8c\xbf\n!\xb3\xe9\x03\x07\x9c?\xac\xd4\xc7\x9cxk\xd8*\xbd^=:\x9eaj\xbb\xdd\xa3\xd2\xb6\xc0(\xf2o\x82k\x99\x9bS\xa0Tr~\x0d\x91\x937\x1b\x84r*N\xde\xe6\xceh,\x8ff\x98\x9bXa\xf1]\xb1\xd9\x03\xad\xa4\xa4!K\x1d'uU\x9e\xa0\x94NX\xe88\xa1{s:\x98\x0ccA\xb4&\xda\x90\xec\"BF\xdd\xf1\xf3\xc3a\xcfKF\xddq'\x19\xf5\xc6\x9e\xef8\xb8\x8d\x13\xe6\xeb+p\xaf\xa6\xd7\xfc\xf2\x19\xbe\x9cv\xc83B6\x1bQ\xeb\x05;9\x840xE\xb5\x97\xf3$^X\x15\xc1h\x95\x80\xce\xdb\xd2T9N'\xce\xe9I\xe9\x88\xb1\xb7\xf2\x08Y\x07*\xa2\xa8\xactD\x14\x05\xe9;}\xa6^\xcc\x105\xd9\xfe_\xa7\xaf\xcc\x86\x87\x04W2\xa0\xba<\x93\xa0\xc0\xfc\x04T\xbe\x98\xa1qN\xfb\xbd\xee\xf6\xfb\xd1\x16\x06 \x1a\xec\xce\x00\xf6\x82(J\xd8\xf7\x0e\xfa]\x95a\xe4\xa8{$3\x8c\x08\xf2.3\x8c\x1c\x9e\x94\x17\xbd\x81\xc3\x00'\xc5)\x9d\xd19\xe3n\xe6'\xd7<\xa3\x0b\xc6\xc1\xb9\xdb\x0f\xe95\x83\xd0\xd4`^\x8e\xd8b\x98x\xd7\xc3d4\x1f\x0bJ=\xa7\xeb\x9cxX>\xaesbq\x1a\xe2 \x00\xd1$\x03qm\xca\xb2\xd1\n\x1cz\xdd(\xfe\x08\x1f\xf9\x96gCMt\x8b\x83\xa6\x164nlC\xe3B\xed\xdc4r\xad96\xfc\x1a,\x90\xa0i\x0f\x1fJr\x0b\x05\x0d\xb4\xb4\x81g\xe2\xc3\"\xb4\xc6\x03\x86\x92\xaaq\xe1y\x7f\x18\xe0d\x04\x01\x88\x02\x1c\x8b\x1f\x9ext\x1c\xf1/8g\xc5\xf0\x18\xcbG\x81a\xa7G\xdb\xb0\xa2\x81\xf2s\xc7\xe1\xee\x1b?\x9b3\xb87\xeb8\xdeN\x07\nvV\xca\xc2\x01H\x8e'e&\x06\xa4\xba/ad\x02\x8c\xa6\xc1\x0d\"\x14\xf9h\x17C\xe3\xfa\xc0\xcf\x9c\x1e\x1c?\xc0S\x95d/\x84\xe4Q^\x02B}x\xeaN$F\xbf \xe26\x9d\x97\xb8KrB\x86\x0d\x9b\xf4\x83\x16\xa1\x84\x10,\x98\x1f\x90\x18!\xb2\x8c\x91\x8fr\xf53\xa7\xfd\x93\xd3\x1d\x9a\xbd\xc3\xe3#1|\x8d\x82\x85\x94\xda\xa0\xdbL\xdc \x12bz\xf6\x01B\x9b\x08N\xa3\\\xd2\x9c\x08B \xb4\xb9\xcdrT\x1a\x8a\xe3`\xdb\x99\xafb\xde\x0b\xfau\xa0\x94h\x92\x80\x85\x9a\x8b\x9c\x18\x06`eX\xee\xa5\x99\xdcT\x94\xf5\xbb]Bg\x92)\xe8\x11:gJbl\xf9a\xc2\xfd\xe9}\x0br6\xfa\x10\x95\x17\xd1\x05K\xdd\x1f\xb8\xff\xf9\x8d\xbf\x84;\x07\x9b\xcd\x12\xce|\xc5\x9e_3\xf5\xb8\xd9`\xf5\x0b\xfc|\x16\x84\xde\xb3kW0\x0c7\x0c\xe2\xa9\xd2+\x06\x96\xe8AR\xa1\x98\xc1\x0c\xdf\xe8\xb0\xaaFo[\xbe\xed87\xfa\xd9\xcc\x9d\xf9\x13\x7f\xca\x19\xa7W\xa6\x11\xcd\x08\xcdr\x1a7\xc1\xfc\xbe\xe8Z\xf0!y#\xadoY\x03\xc8\x8b \x10\xb7l\x8a\x11\xcc \x91\xc1lt;\x96\x1e\x9d\xb5\xe1\xaf0\xa7\xb7_0\xf2\x89\xa8\xbfk\xd0\xb2\xc3!\x1f\xdd\x8e\xbd\xadc\x96\x95r\xcb\x7f`\x9d\xf2\xccK \xa7YL\xe7~\xea\x05\x94G\xc0\x15y\x0d\xed\x03\xb1c\xc4\xb6\xf1\x84|\xbd\xce \xc4\xea\xca \xbfmS}Sd\xf4O\x10\xee]\x86\x80\x95B=\x01\xcf\xd76cu\xd5?z\x1dM\xe2\xc5\xd2\xcf\x82\xab\x90\xb7\x12>\xe1\xc1\x0dOh\x0bb\x92\xb4t\xd6\xceB\x11\x1fAL\xef\x83\xde\xd1v\x01\n\xa8\x8cEZJ&\xf6\xb2\x9f\x83\xa2\x16\xf0\x061\x06\x19\\r*8\xe0\x07\xa9\xd9\xb3\x7f\xdf\\\x16\xcc\xeb\xa5\xfb\xac\xb4\x1a\x85\x13L:\xf21'c3~\xc6&\xa0n\x0bK\xaa\xb9B\xff2\x14\xa2\xb5\xd7ng$\xa7>\x0b\x8a\xc4!Mkm\x8c\x17\xc6\x1e\x1dS!\x1eA^&\x93\x91)\x079k\xeag>[\xe7\xa0Zy{\xfe\xf1\xf5\xf7\xaf\x18z\x8b\xe8\x84\x05\xee\xbb\x8b\xef\xfe\xf6\xcd\xeb\xef\xbec\xe8\x9d\xed\xeb\x14\xe4\xb4\xd7\xdbv\xca5\x80\xb1\x96gp\xa8\xc2yr\xaf\x89k\xcas\xda;\xebm\xe3\x96\xdb\xbd\x9c\xf6\x0e\xb6\xcb\xa6R\xcb\x1b7\xc9\xec\xfa.\xfd5\xcf\xac\x13_\xaa\x08\xd2\xdaQx\x03\xee\x1f\xeaz\xb4\xc6\xb3\xb6\x81\xecf\xd3\xc6\xe6\xc8\xb0\xbc\xb0d\x03\xf1Z\xfe\x02\xe9\xc0q\x12\xc7I\x9e\x1f\xf6\xe4\xa9xt\xb0\x8331B\x9a8}\xa4\x9c\xaf j1\x97\x06\xb8\x05\x8e\xf3,\xf2\xb3\xe0\x86\xb7&\xf1\x94\xeb\xb018\x00\xc5\xc2\x16\xb6\x03>tv\xac\x95<\xc7\xddCcv95\xa2`O\x1e\x18\x87gJ\x12\x14l\x84\xc3\x9c\xf9\x12p\xa9\x02\xdc\xc4\x86\xd9\n\xea\x95!&\xb3\x12\x99\x9b\xab\xb8\x1d\xbb3-`d\x04RJJ\xbb\xe5\x0e\xb9\xb4p\x178\xedv\x95\x8a\xce2\x80Q\xbf\x1e\xfd\xa8,l\x9bTk\xe5\x19\xbf\xf5\x17<\x1dn\x7f\x85\x95\xa8\xee\x8d\xc6\xc5\x06qg\x8d:c\xc7A#9\x88\x96$Rc\xc4\x98\x16\xa5\xcaR\x97\x051\xb1\xf3k\xf7X|e\xaa#y.\x18\xcb\x18\x04i\x99\x84\xad\xbb\x1dH\xc7\x07\xfdC\xedSqj\x020#\xb9\x19\xa5\nUR\x15D`}\xb7O\xbb\x89\xeb\x03\xbf\xe3\x18\xcc\xb1\xbd\xd3\xaa\x0b\xe1\xd6\xee\x14\x17\x91S1\xb8\xed#7\xcb{d\xac\x1b\xbd\x83\xde\xa9q#\x94V\x0eq\xe4>\xa0iM%)\x0dY\x97Nt\x00\xaf\xa8\x15D\xad\x94\xb4\x13\xec\xd3\x888N\x82S\xf8;1\xde\xa520\xb4\xbeT\x12\x0e\x08Ta\x19\x90+\xe28\xf8\xff\x06xB#\xb2\xd9\x986\x86~M\x80/\xdb\x81\xbb\xe5e\xa9+R>\xf3\xfb\x87\x00\xde?;\xae\x00\xbcf\x9f\x8a\xc4~h\x12\xfai\xf2\xd0f\xa71K\x1c\xa7\x1dIT]\xf7\xbc~N{\x12E\xe2\x12\xdaJV@\xe5\xf05^\xea\xedv\xe68\x99[\xd8\xe1r/\xcai\xbfAE\xd0hT+L\xcd\xc7e\xf0$Ck\x87\xd7\xf5)f\xb3\xa1N\x0c#\"\x1d4F\xe209=\xdd.\xec\x802\xa9 $\xca\xb0}\xaa\xechp\xac\x94UM\xef\xf9,\x14t\x85\xa2\xf86\xfa3\xbfO\x11)/\x96\x04\x8a8\xe1d\xec\xa2\x88\x05\xee\xacp\xe0\xcf\xf4>\x14\x95\xa5o\xf6\xe9\x0ea\x0c\xd8\\{\x04\x82\xab\xdfaI.\xd8b\xa9\xae\x08\xccn\xf2\x8d\xbd\"5L\xb3\xb4\\t\xcf\xc4Y\x10\x82Va\x05\xa9\xbc@\xb8\xa5K\xcd~)Ogm?R\xca!2\xc0\xdb\xd4\xe74\x95#\n\xe9\x84\xb5\xdbBfh\xa7\xee*J\xfd\x19\xa7\xd3\xa2\xa4@\x11:+J-kES\xda\xb1\x08B\xdaW\xc2@e\x9b\x8d\xe0|P\x04<\xe6f\x13\x9b\x07q\xa4\xe0\x90\xad\xc4\x16U\x01s7\x1b\x13d\x99-\x95\xbfu\xf5\xe6[6\xcc<\x04\xd7X\x85\xdc\x9d\x0c\xf1d\xd8\x9e9\x0e\x97\xd7\xf8\xa7\xac\xdd%\x9e\xe2\x0d\xe1\xe6\xcft(\x0fm/V+B\xc1F\x05f(\xafm\x9f\xaa+\xf0\x9a\xe4[P,O$\x82\x9b\xf9\xa4\xf2\x19\xa4\xa6\xc3\xc3\xd3mF6\xbb4\x98\xa98\xfe\x0d:\x85\x97~\xf4\x1fY\x0bn\xec/x6\x8f\xa7\xad8j\xa1\x0e/\xf3hG\xbb\xa4\xfc2\x1an%\xd2\xe2\xe0\x8bqB-.!\"\xeb\x04\xa2\xc0\x99\x0bk\xf2\x9c\xdb.\xca*kw\xc5\x1a\xde\xe4\x9e\xb2\xc3\xde\x03i(0g\x11dq-\x16( 2\xb5\\@\xd7e?\x82\xae\xf1\x19\x00v\xbb\xdf\xdd\xbe)\xfb\x07b\x8b\x81\x08y\xa2l\xd2\x18}\x06\xda\xf1\x80c\x15D\x86\xc6\xe2\x0f\x9cc\xd2\xf9\xe9\xf81p\x97[=`\xe8\xd3\xa7I\x9c\xf0\xfd\x9f\xd3O\xe9\xdcO\xf8\xf4\xd3'D}\x96\x8c\x82\xb1\xd8&\x01]\xe7\xf6 \xfc\x9c\x8a\xd1n\xfd@\xef\xac\xa7\x1d\xc6\x0e\x8f\x8f\xb6\x92\x80B7+g \xfe\x14\xb9\xd8\xc5\xe6Z\xe7bG m\xaeFt4&*d\x83*\xf3\xd0\x81\xdb;t\xbb\x88.\xe2)\xf7\x92!Z\xae\x12\x8e<$\xcd*\x88N\xe2\xe5=\xb8\x0b{\xe8\xff\xff\xffk\xf5\xbb\xfd^\xebk\x1e\x05i\xeb\xdd*\x9d\x7f\xf6\x13~\xd3\xc2\xbf\x84q\x90\xc4\x93\xcfn\xb2\"('9\xed\x1d\xeeX\xa8\xb3\xb3#0w\xe8\x10\xa94P?\x83h7\x9f\x01\xaa/C\xe4\x9fw\x871\x8e:\x19\xed\x92B ;\xdaeg\x91\x1e\x9d \xd3\x1c\x9e\x9e>\x80\x15 \xd6\xb8 \xc6\xeb\xd5\x0f\x1f\x18\xf3\x84\x07!\x8d\xe4\xefY\x18\xc7\xc9\x03\xa8\x96\xbe\xf5\xdfb\xce:\x9c\x0c\xbb\x1e\xe6/\xba\xc3\xc8\xcb\x88\xd4\xe8\x9d\x1c6\xf8`7\x03m\x0b\xa4\n\x83\xda\x0b\x01\x1c0\x04\x9du\xbb'\xbd\xb3\xb3\xfe\xd1\xe1\xc9a\xf7\xec\xacG\xbc\xae\xf8\xd6Yw\xbb\xe0\xfa\x08\xe8(m\x87\xe6\x90\x85\xd0\xb3\x1d\x9b\xb79<+\xe1F\xba<\xeb\x91K\xbe\x8a\xc6p\xc5\xb5\xc9\xfb\x0b\x1c\x03\xcd\xc5 \xc7i'8f\x91\xe6\xf8MG\xd0\xc1\x96\xd6\xcaG\xe1\x81\xc6\xed\x7f\xec\xf3\xdb\x08~\x1c\xdd\xf0$S\xce\xdb\xad,n-\x93`\x11\x80\xaaL\xca\xa7 \x97\x1do\xf5']\xe7\x83d\xd4Ly\xc7\x0c\xfd\x82,\x05\x89\xe1\xd6~\x11R\x91f4\x12\x92SA\"\x1bp\xba\xabqY\x87P\xdf\x89\x05H\x87k\xec\xa8\x9em\xdfA\xe4q\xd2A\xe4\x13\xea\xe0N'\xebD\xa4\xb8\x89up\x0c\xc6\xc9\x83\xee\x0e\xff\xd2\x83\x92\xb6Tp\xca%\x0d&J\xe1\xa98\xb2\xd5\xdb \xe3\x89\x9f\xc5IN\x8f\xbb;\xac}\x00<)n\x0b\xc9\xaa\xb7\xdd\x1f\xdc\xd2\x80\xc2\xf9Rf\xf5\xe4I\x93\xaa\x01\x03\xa7'\xa6%\xbd\xe3\xd1\xed\xe7\x14 \xb1_{~\xd1%\x0b\x87+o\xe58+\xc8\xfd\x16\xaf\xb2\x0f`\xb4\xd8l\xfc\x07\xe8\x06\x9eP\xf0\x93M7\x9b\x1a\x175\x91\x96y\x9c:N\x80W\x94\x93\xe1\x04\xb2\x1f\x8c\xf8\xd8\x83_K\xacV\xca\x15\xec\x05\xa1\x13Hz@\xfb\xfd~}\xde\x8d\xd2B\xbf\xa7\x8fV\xdb|{t\xa24Y\x1a\x06\xd2\x8e\x1d\x1a?\xf9\x89\x80U\xef\xe0H\xeag\xa5\xc7\xfc\x12\x1a\x08\xe1cj\xfc\xa1gFS>gS\x8c\x82\xf4%0\xef\x1f\x96 \xf7\xa7\xe0rD\xe8\x82U \x19\xbdf\xe8\x8d\x7f\x17,V\x0b\x93\xfd\x17\x04\xd7\x16\xbf\x9bp>\xe5SD\xef\xd9LyM7\xa9\xd3\x8d\xd7t\x8b\x8f\xe6c\xd6\xeeQ\xae\xe5\x062\xea\x8e\xdb\x8c\xf1\x9c\x10z#\x00(\xcb\x11\xa1WU\x06\xaf\xed\x17\xe4\xab\xdd\xd3\x9a\xdb\xd1|\\\xf6\xa8\x85\x13\xb9\xdd\xce\xbc@P\xfbA\x82\xd7\xd2'\xc9S\x86\x1d\n\xdc\x90\xe0x\xa4+\x90\xd7\xbe\xdfl\xda79pD\x13?\xab\xefV\xe9^\x02FU\xc5\x9aB\\\xbc\xa5H\xfc\x0b\x8eP9=l8\xf8tuA\xfa(\x12\xff\xaa\xca\xbd\xa3\x83\x1d\\\x9a\x91\xa1\xa5\xaf\x9a\xd8\x15}qr&\x82\xe7\xab\xdee\xb5\x85\x90\x80\xae\xa5\x9c\x06\x99zs\xda\xeb7\x04\xffn\xd8|\xca\xdfG\x0dW\xe0\x90\xe4\xd2D7t\xad\x84f\x99\xa2,\xc0\xb1\xab\nh!N\xc3\xa4\xfaM\xb9\x86\xc5\xd6>8\"\x18\xf9\xe9}4y\xad\xc8(\x12\x83;m\xf0\x03}\x80LHei\xd9\x99\xf2\xd8\xa8H\x81`\x84\x96L11\xbe}+\x16(b a\x03\x1b\xbd\xbfW\xe0C\x89\xa6J\x95\"\xde\x05Qke9\xe9\xe9\xa4Im\xc6V\x98\xb8VM\"\xe1\xaar\xf1\xd6(B\xcd\xf3\xa9g\xe5_*\xf6Fw\xacS1\xa9\x13\xcd~ET\xa0\x0f;\x1a\xc2\x14\xd2\x08\xad0\xb7\xee\x12\xf3\xe1\n\x13oU\xb0\xb4H\x05\xed\xc0K\x19e\x9c\xd0,\x1fL\xf0\x94\xae\xa4=h\xc6\xa6\x96\x8d\xc2\x9a\xef`V\xba\xf41\x85\xdas6+4\xb5\x0b\xa6\xcf\xea\x8c\xa7\x19A\x86\x17Xa$J\x10\x84\x7f~\xf6\xa3\xact\x89\xb1\xfb\x15\xb9$\xa3\x1f\xc9\xb8\xb3\xf7l\x10\xe2\x19-\x81\xbb.\xa5U\x9co$4\x15U\x1aB\x0c\x0c\xc5sa\"\xe3\xb3fl\xaey&p\xcd\xc0Kj\xa8(\xd2\xca\xb5\xc5P\x87\xfb<\xa1\xfb=\xe2e\xc6\x82\xac\xc3\x1cY\x90+\x92>\x0b\xfc\xb7\xf7\x86\xa1\xa8b\x97\xc8)zS\x10(\xfb\x87\xdd:\x93`\xb6\xc2\xdcO_\xab5\x14\x1b\xe1\xf4\xa4\xe1\xbc4\x95\x9bN\xad\x9c\xf6{\x0drd\xd1\xc6\xdaf\xfd\xa3~\x9d\xaa=t\x1a\x1b\x82 5l\xbe\x91\x1dS\xb3 C\xcd\x9cL\x0cs\xb22\x07\xf9\xd2\xec\xcb\xa99\xd2gz\x87\xce\x8d\xc9ga\x0e\xf7k\xa3-\xbe7\xb6\x8e\x1bc \xb9\x82=M\xe8\xad\xb6o\xd1;\xa3\xf3\xfb\x0c\xdd\x8a\xb2OF\xfbwan`|0V\xb2W\xc6\xc2\xf2\xce\xe8\xd7\xce\x0d\x8d\xdd3\x8c\xd8{\xe3\x0e\xf4\xd2\x18\x86\x7f6,\xd9G\xc3\\\xbc6>\xfbo\x99\x02<\xfdZ\x93P\xfa\x9d\xd1\xcd\xbd\x11=w\xcf\xfa&$\x12\xfd\x86\xbd\xc7H^\xfaF\x84\xfe\xa2\xb7\x10\xa2\x7fa\x1f\x05\xe3\xfdN\xf3\xed\x88\xd0?\xb2\xef\xdc\x94g\xf4\xbf\xd9w\xaeqD\xc1\xbf\x10\xfa}-\xa8\x01\xfd\x81\xc5\x9a!\xfcO\x16`u8)\xb6.\x98\xdd#B\xff\xc6.\xdc\x19\xfd\x96}pg\xf4\xcf\xec\xb3;\xa3\xff\xc5^\xb93\xfaW\xb6\x87\x15\xeb+X\xcb?\x89\xc7x\xb9_\x94\xfc\x1d*@O\xfbY\xac^\xec'\xfc:H\xb3D\xf4\xccy\xd1\x05\xd4\x90u\xad\x1a\x19\xd4\x90\xbck\xc4Y\xec\xfe\x97\x9c\x01M8kG|\xb3iG\x96\xea\xa6\xf2\xe8\xce\x02e^\xa61g\xa9\xe3\xac\xb6x\xf4]\xe1o!@\xc0v\xcf\xbdo\xa5\xc6\x1bjH%\xd0 \xb8\xf2\xe5D:\xf4\xd5n\xbf\xc8\xfd\xf17\xfc=\xcd\xc8 q\x1c\xa59\xfc~\x94\x8d\xe9\xb7\xaa\x12M\x1c\x87\xb7\x19\xfb\xdeq\xbe\x15\x15iBr\xef[\x1a\xf0F}\xc3_\x05\xf7|\x85\x7f\xb0\x8e\x16\xcd\xd4\xfd\x11GT\x86\xbd\xfc\x85f\xfe\xb5\xc7\xa9E !\xdct\xba\xd9\xe0\xc8>{X\x06\xb1\xfc}\xce&M\xde\x80U\x89\x86\xe7^\x83$\xd0\xe4\xe5\xf1CNS^\xd7\xb51\x98f\xca\xf1\x9f\xe4\xd4!\xc6\x8d\x04\xd2\xbd4#\xea\xc9\xccqD\xe8\x12\xff\x95&d\x88#Kc<\xc4K\xcc\xe97\xc4q\xf8\xe8\x9b\xf1(\x19\x83\xdd\x14~\xb1v\x8f\xd0\x88] 8X\xb7\x81np\x97\xb6{\x10\x11E\xb5\xddl\x04\xf0\xbf\xa17\xb8G\xd7\x10\xb7Kw\xd0%4\xe6\x98\xd3\x044\xb9\xdf\xaa_9\x0d\xab\xabaF\x1e1\xc8y\x92\xb0[\x1c\x15\xc9N\xb9m\x19z\x83\x93r\xc4\x96\xd4q\xda\x13\xae\x03\x86dd\xb3IUdq\xb0\x81\x8a\x01\xe5\xb4\xe2\xf3(\x99\xf8{\xcc\xc1\xd8\x1a\xb1\xffR\x1e\xddpr\x19\x13\x0c\xf4\x12\xfeF:\x89x.sYL\x9bz\x06d\xa5\x11\xfb3\xce\x86\x7f\xf2\xe4W\x92\xd2W\xa2\xf2W\xda\xfa3\x19\x00\xfd{\xf8\xad\x02$\x89m\x0b_K\xf2A\xb8\xd9\xe0s\x8c\x7f\xb0y=\x15<\xcdf\xd0~\xa8\xeb\xe7%\x89.\xae\xfa\xdbWg$6\xd6\xf9E\xeb\xfaF\x89[lb\x13u\xf6\xc8\x8c\xfd,\xfdP\xec\xe9\x15\x98\xa5TK\x7f\xa2\\lQ\x838\xf2\xe7\xe8\x9b1\xa0\x1d.\xf0\x08\xf6e\xcc\x15\xda\xc1\xae\xe3\x84\x98\xec1\xa9\xe3$\xdcqb\x0e\xd4\xaf\xc6\xc7\xa5<\xf3\"!>p\xb8\xa0f_}\xd9mEi\xfd\xb7\xb2\x96d\xfe\xb5\x00\xfd9\xfe\x81\xa2\x92\x92\x03\xd1\xa6\xbcZ\x01\xc70}\x89\x1e\xaf\xdc\x19\x9bp\xfa\xc1\x9d\xb1\x94\xd3\x0bw\xc6V\x9c\xde\xb93q\x04\xb2%\xa7\x9f\xdc\x19\x9br\xfa\xba\xd9\x19 \xe0\xf8\xa3\xea\x8b\xa6\x8e\x83\xbf\xb5)\xf7\x17r\xb0\x95YYm!\x01\xf4fs\x8e\xbf\xdfv?j\xc2K\xf2\x1d\xa9p\xa3\xb7\x89\xbf\xb4\xb9\xd2\x90\xa6s\x7f\xe1\xb5\xc3\x82;\xfd!'\xf4\x0d\xbe\xc5\x19'e\xa8\xbdU\xfb\xa8P\x1f\xfcB\xd3\xcc\xcfJ\xfd\xe5t=\xab\xb8\xc1\xca]f\xfc\x05\x05\x01Y\xe2\xbf[\x1e\"\x7f\x1fecEb\x7f\xc0\x86\xc4A1\x8b(\xe7\xa3h\xcc2\xb1}?\xf3\xfb\xaa\x8f-(AxS\xdc\nn\xc7\xcaP\x07\x9c\xfa8\xe7\xd4\xd2\xfa\xf2\x11\x1f\xe7t\x95r\x89+\xe5\x95\x80T\xbc\xe2]\xb0X\x86\xbc\xfa\xae\xa7\xd8}\xadNQ\xdegu\xb0(0\xa79]K\x971\xafLiK\xea\x1a\xd0\x87\\ \x81-\xe4\xf8J\xdd\xa8\xa0eG'/\xe5\xb4\xe6\xad\x15\xfe\x7f\xd4\xbdk{\xdb8\xb20\xf8q\x7f\xc4~\x91x\xfa0D\x0b\x92%\xdf\x12SFt\xdc\x89\xdd\x9d\x99\xdc&q\xa6\xa7GV\xfb\x81(\xc8b\x9b\"\xd9\xbc\xf8\x12S\xef\xb7\xfd\x1f\xfb[\xf6\x97\xedS\x05\x80\x04%\xcaN\xe6\xcc{\x9e\xdd~:\x16\x01\x14\xee\x85B\x15P\xa8\x12t\xdb\x95\xbf\x9b\x8bol\xea\n\x99\xa2u\x05\x117^/[)z\xb8\xb3o+\xb8\xce\x8c]\xf6\xe6\xce@^g>4\x17\xdb\xb0\xc6 \xd3R\x9e\xfa\x13\xfa\x8bm\x1b\x95J>v\xa3/E\x917\x9c\xbd\xfdZj\xb1Z\xe30\x0f\x82\x89\xd5f\xbf8\xf2$\xd3zXa\xe8\x81\xbbbe\x84K\xdeG5\xba\xe4\x987\xe4&\xad\x1f\x97\xd0\x88\x8d\xc5\x84\xfal0\\\xa7\xd5/\xfd!Q>\xf4+\xba\xecw:\x13D\xd0\x84\xc1\xb6\x86\xfa\xe1%I\x17\xb0\xc1KDW\xa31\x93\n\xe4\xd9\xe6\xa5F\xc3\xb9E\x82\xd6\x10\x13\x83\x95@\x15-\nEV\x0b\x11X\xc7h<\x80\xd5\xf6\x8biQ-\xc2\x117\x08\xda\xf8\xcb\xa4(>\xd6H\xdc\x173\xbd\xbc\xe5\xa0\xaf\x9d_\xe9WB_\x8d\xcf&\xb8\x94\x0e\xfb\x8d\xc6~\x94P\x8a/NO\x82\x00\x84\xd2\xa3~\xc3\x19}\x1d\x12\xc0\xf6\x0e\x06\x9b\xd7}%\x98\x92\xd9\xe5Y\xd2\xfe#\x80\xa9\xe0\x89,\xf0\xf0\xe8\xc5#\xa2vib\x02\xe4\xeb\x83\xcd\x933\x030\xf0\xf1q\xd2\xe1\xe1\xfe#`5QnE\x8f\xf6\xf6\x1f9\x14\xa8]\xb8\xac\xe8\xc1cgiy\x98zQ\x0c\x9b\x82l\xec\xee\xd17\xbey?\xe8?\x977\x95\xbd\xd0I\xd4y\xfb\xe1\xbe\x94\xf0{\xa1\xe3\x13\x878\x91C\xc8\x90K\x04\x1e\x8b\x9e?\xa3V/N\x1f\xa2\x1b\x91\xcc\x83\xe8\xd6\x95\x92k\xdb_\xc6Q\x92\xf10\x1b\xea\x94.\x0f\xbdE\x94\xb8a\x14\x8aaw\x99v\xcb\x04T\x1a\x96\xf1Y\x94{\x8b.\xc7\xa6\xba<\xcf\"\x84\xdc\x88]\xf5\xe2\xf4\xf22\xe1~\xd0\xbd{P\xda\xc6\xb2\x80(\xe6\x9e\x9f\xdd\xbb\xfda\x96\xf00\xf51\xcb\x94{\xd7WI\x94\x87\xb3\xae\x17\x05Q\xd2\xea\xed\xa6\xad\xc0\x0f\x05O\xa8\xca`D\x0d\xbb\xb7bz\xedg\xdd\x7f\xbd\x84\x85\xc0\xab\xeb\xc1A|7\x9cFY\x16-\xdd\xfe0\x8eTa\xda\xd7\xb9\xd1\x8b\xfb\xff/\xf6\xe2\xd6\x9fe\x0b\xd9 y\x15\xbf\xa5\x0f]\x9c\x9a\x1b\xd1\xbd{i\xcc\x0b5S\xee_6\xf5u\x1aD\xde\xf5p\xbdU.\xb6X\xaa\xa0C\xf1\xee\x020e\xbd\xe8\x8d\xd8{Y\xe1<\xf2\xf2t\xb3\x1d\xeb\xd1\n:\xf5\x92(\x08\xfc\xf0\xaa\xa9\xedUb\xbd\xf9zvz\x87\xd0\xbc\x96\x91O6\x8a\xd6c\xef\x1bc\xef\\l\xd2\x06lS\xec\x1d6\xc7\x0b|\xef\xda\x0f\xaf\xd6\xb3\xd4\x12\x1f6F\xf3?\x84\xa8\x10\xaaw$\x91.[\xe4\xcbi\xf7\xae\x01\x9as>\x9cF\xc9L$\xdd\x84\xcf\xfc\xa1oN^\x9d\xd2\xfb\x9fNNN\xe8\xab\x93W'4\xaa>\xf3\xea\xd3\xaf>\xffT\x9f\xef\xce\xe8o\x90\xf7\xb72\xe5s\xf9u\xff\xba\xcayZ~\xfe*\xbfNO\xe8\xdf\xca/]\xf0\xcf\xdf]\xda\x97\xb2\x8c\x0fM\xa5E\xafONO)/\xc1\xf7\x8d\xa4\xbf\x9c\xbc;\xd5\xf9\x7f>\xa3\xd7\x18\xfe\xf3\xa7\xf5\xa2\xdf\x9dQ\x0em\xd2)\xe1\xe9YY\xc3\x9f\xa7\xa7\xf4\xb0j\xd7\x9fM\xed\xfa\xd2\xd4\xaeZ\x89;F\x89\xfe\xd9)\xdd\xafJ\x8cN\xd7G\xe2\xd4\xfc2{\xfa\xf3\xc9\xcf\xb5\xe6\xff\xba=I5\xe9\xcd\x19\xfd\xf3\x154\x04g_\xcf\xb3L\xfa\x0b\xbd=mH\xb24J\xbe\x92\xef\xae\xdc\xb1\xb5\xf3\xe3Er\x11\xb6~lA\x14\xf7C\x91\xb4p]\xc9\xd8\x1d\xf8\x81m\xe8\x01\xc3\xad\x12\xf9[\x92\xfdk\x19\xfc_\x1dBs\x81\xb8rT\xda\xb6\xd5\xab\x92k\xdc_\x0b\x99\xc2*\xdf\x96\xc4\x15\xfc\x81\x7fe?>\xeb5\xd3\x02\xca#;\x93\xd6{\xa3I\xa3\xee\x95fS\xcc\xc6\xe8\x8d\xb4\xd5\xd7\xad\xabh~\xeb1\xa2\xdfj`\xb0T76w\x8f\x7f\xb1$E\xa2[\xc8\xb2\xc9\xa8\x9d\x1f[\xd9B$\xa2\xb5\xcc\xd3\xac5\x15\xadgr\xef|\xd6\x8a\x92\xd6\xb3,\x8a\x9f\xb5\xe6Q\xd22:/\x87\xa3\xd5R{l\xabo\x96\x15\x07\xb0e\xb5f\x11\xea\x94-xx%Z\xcf\xf4.\xf5\xac\xcc[\xee[-\xbdq\xd5g\xc5\xd8\x01\xfe\x7f;\xd8r'z|\xacq'\x97C\x1d\x88y\xb66\xd6\xf7\xe5x\xc9\x1d\xbf\xec\xe6\xbfu\xa0+\xee\xbc\xf5\xd2\xe4)\xe9z\xfa}-}sb$\xb7\xae\x90c}sn\x19L\xfbF\x13$\x8f\xd0\\}C\xda}\xd54\xe4\x1e\xb6\xb5{3\xd1\xc8ip\xf6\xdb\xf2\x1b\xfc}s\xd7+\xfc\xeb\x1dnt\xaa\x81\xef\xdfL\xb9\xdf\x9a\xa2\xf9\xff\xa6<\xdbR\xd6\xe4\x80\x86\xacu~\xeaa\xdbd\xa1L\xb0\xd1\xc7\xa3'I'\xf2f[h\xa7\xe2\x1e\x1f\xa9\x148o\x95X\xe3\xbf[\x87\xe5\x12\xfa\xe6e\xb9EF\xb8\xf8\xd7\x16\xf9\xa3\xa5i\xaaz\xf8\x0dDU\xafo=\x18\xeb\xc4t\xf7\x7f\x171U\\\xf3\xff\xd0\xe87K0\xff\xe2\xe0?V\x98\"\xb2\x8f\x0d\xbd\xa2\xb1\xf5\x91\xdf \xad\xff\xdb\x06\xde$\x00\x9a\x8ahqk\x1d\xa8F\xb0\xb6\x00m\x97\xcb\x1e\x99[\x90\x8c\xea\xc8\n\x12\xd2\xd6=\xb7\xa9\xb5\xf7t\x1d\xa8\xa1\xb5\x1b@\xdb\xe5\xb7oj\xad\xdeC7\x1a\xbb\xf3c\xeb\xdd\xe7V)\xe0\xc9\x19\xf9\x16\x81OWk0\xa7&{\n\x0c\xe2&s\xba\xaa\xd5\xfd}Rac\xe2\xbf\xa3)\xd6Dq\xe5\x9f\xa2(s-k5!4\xeb\xfd\x93\xf1\x15\xdd;\xdc?\xa8\xdd\x92lq\xc8\xb4y\x15W]mg\x95\x07\x94\xcd\xfbG\xe5\x8b*\xae\xbb\xab\x91\xf7t\xc2\xb8\xa7\xcb\xc6\xbb\x93\x91\xa5\x06\xcc\xd2\x9a\x11\x10K\xad\xd6\x83U\xeaJ\x84\xd4ZY\xc4\x0dW\xa5w4\x8b\xach\xd6\xab\x99\x85A\xfbw\x9bn\xea\xd0\xd9\xd3\x18ok\xa8\xa0\x965QN\xc7#\xf6\xb0\xc2+\x93\xd2K\x8bt\xf4\x8bmW\xfa\xc6\xbe\xb6\x8a\xcbQ7r\xecO\xc6\xfd\xc9P\x9ae\xe0\xb6\xedDc\x8e\n!\xab\xd2\xd1\x0b\xeb\x0f\xd3\xd2W\xf00\xd5\xf9\xd1\xe2\xba\xea\x8c\x18\xa7\x13\xd4\xf4\x89\xc6\xc1\xb8?\x99\x14\x85\x13\xda\xb6\x13\xc0X\xc0\x1ffYF\xbf\x11\x81\xaa\x91\x00\x00\xe2\"X\x08\xf3\x89\xe7\xe8\x01\xbef\xc9\xd0\x02\xdf\xf3\xc1\xf6\x99\xd5 \xd29\x16yP\xaf\xfc\xb2\xa2\xc8^\x96\xae\n\x95\x83c\x152\x8c_\xf4i\x82F'\xa4;\x9d\x8c\x0c\xc3\xe3l\x18v:$\x19\x87\x13&\xc6a\x89\x1b\xc9j;\x0e\xa1\xf67s\x12\xb6O\xd7.c\xeb\xeez\x8c[\xd6\x95\x132A\x1a-e\xa0\xe2\xa9\x95\x97\x06\x9f\xdb\xf5\x87\x15\xb6-\xc6kO,&E!\xc6\xd6\x7f\xfdW\xa9\xc4(/\xce\xe4\x9cV&]\xa8\xcf\xc6\x13t\xa9LS\xd6\x1e\xa0c=\xa9,^>\x9a\x19\xb6\x1d\x0e\x1d \xd1\xf5\x93CHo\x06\xcb\xd6\xb6\x1d_NK\xa2\xad4\xb4\xb3\xa2\xd0\x9a\xe8m\xc622\x84\x82\xc9\xb0z\xcb\x9fBE\x11\x13\xab\xb9\x1f\xf2 \xb8\xc7\xc7\x8f\xbc(\xe4\x04\x85=9\x14E\xa1\xbf\x1cRB\xfas'U7\xd8Qi\xb3\xd1_\xadP\x95\xa66h\xd2\x96\x85\xf2\x1d\xb1\xb1N\xca\x9b<\x84Tw:\xebZ\x80\xe5\xa2o\xb2\x13\xaeoF?h\xeb\n,\xb1\xed\x9a5t\xb4\x0e[\x8b\xe9\x85|)\x08\xb5\xde\xf1\x183\x14\x85\xf5Y\xc8\xbc\xd2\xc4yo\x9eDKG\x10\xb7f;\x1c\x00w~wF\xee\x17\xbfxC\xc2\xcc\x19\xb9/\x8a\xc1a\xb1\xb7K\x9c\x91\xfb*\xe0\xcbX\xcc\x88,\xe1\x07e\xc6'!#\xd97mPrc\x88\xc8C\x93=1\xebMx\xc3\x03\x7f\xd6\xe2Y&\x961>~\x9a \xd9\x81<\x11@\xac\xbb\x88M\xd3\xa0\xf25\xd7\xbb\x08\xdf\x84-d\x94\x00~*Z\x1a\x84b\x06\x0e-S\xaf\xa9R\xc9\x8c,\xf8\x8dh\xf1\xd6\x06\xc2:D\xbd\xb4\xedYd\xe5\x10B}\x16\x8d\x07\x80\x9c\xd1xo\xd2\xfc^\xac5\xcd\"\xed\xfa\x82\xc1\xb7\x93\x87\"\xf5x,\x1c\x11z\xd1L|\xf9\xf4\xe6U\xb4\x8c\xa3P\x84\x99\x83\x8e\xf7\xcaki\x87\x13B\x08\x0d\x98%\xf7\x8fw\xf2P\xf0\xcb\xa7\xb7l\xc63\xee\xf28\x0e|\x8fC};\x7f\xa4Q8\xf4\x162\xe2\xea\x9d\xf2\xfavQ)\x18BN \x03-(\xcb\xd0\x19aw+\n\xab\xa2\x90B\x15\xbe*\x95\xeb\xc6~I{\xf3\x12l\xecM\xf4^r\x11Z\xfa\xd9\x06\x80\x1a\x91+:xq\xb0n\xbfBQ\xb1a\xe5^+i\xb0%\xe5\xd45\xa3\xd6v\xd8\xcbK\x91\xbe\xc3\xb3Z\xd6\xee\xab\xc77\x0f+\x1an.\xb8\xbai\xcd&SxM/\xc1K\xf28\x14,\xa3\x19\x0bWr=\xa3\xf5\x85\x99\x08\xf8}QdE\x014G\xe9s\xf9\xfa\x83\xab\x8f\xd2\x8aQ\xb5:\xf4^\x90mh\x90\xd1\x90\xe9m\x81\xca=0\xc3\xcd/\x1c\xa7\x13C\xa7,\x9d\x0c#\x16R\x1fwS\xca\x8b\xc2\xe1\xcc\xf0\x87W\xf3Q\xa7\xb4\x08|\x1a\x11\x1a1\x9fq\xb4o\xb4\"4\xc1\xdd.\xda\xd0\x1cU\xb7\xd0\x92\xe8\xaa\xd6?\xa5/%\xb5:\x92\xde\xd4\x0fgRgJw\xbb\xd9v\xa7ROS\x9a\xbd\x82\xae\x17_\x99\x8e\xef\xaf\xd0:\xcf\x8a\xfa,\xa8\xe3\xb5l\xe7\xc6\x9b\x0d\xd6\xfchc0\x19e\xae\x19DG\xd3\x1e\xf7\x16\xa2(\x1eV\xdf7K~5K\x9c\xf5\x87\xfc8\x1b\xf2N\x87\xf8\xc0\xc6Tup\xa9R\x95j\xc5+\xf4b\xa9\x952\x07@|{\x1eO\xc5g\x81\xf2\xd9\x8d@\x17\x8bi\xdd.\x1e\xa1j\x9f\x8chJF\xd18\x9d\xb8\xf0\x87\x95\xa6\x83a }\xb2Z\x11hJ\xe0$\x807\xb5\x812] \xaa\xf9\xa9\xbb5\xac\xde\x91\xc3R/y\x9b\xa0\xb6J\x99\x93\x01\x7f#z3\xe1E\x894\x9a\x192A\x1b\x08\xcd\xe62\x12#H\xaf\xf0E:\xb0{\x88$\x8a\xb1\xd0Q_T(\xdfv\xd0\x9dRC\xa8iN\xc2\xcd9\x89\x98\xf6OH%\x03\x1a\"\xdb\x19\x8d}sN|9'\x9cE\x9a\xb7T\x8c\x00?\xde\x05\x04y\xb9;J\\A\xd4\xe8\xaa\xa5\x1c\xa1\xa9\xca\xa5XF\xfeW\xc1|\n\xa30\x8d\xf2\xd0\x13\x8cS9\xa8,\xc5X\xe9?\xf0A\x81\xba>\xd5\x80.\xa7\x00\xe6\xa6\xab\x15\x19\x85\x95\xc7\xc0lB\xdc\xb0\xee40!h@\xb9\xee\x7f\xa4\x81\x11lP\x1e\x11uC\xc1%\xb5\xd3\x1e7z\xa9\xc8\x0c\x13\xef\x15\x9d\xf4\xd3\xb3$\xfa*\xc2\x9a\xe1\x1a\x132z\xd2\xa0\x8d\xaf!\xe6\x89\x10_\x05\xe5U\x9d<\xa0k\xe6\xda`Wl\xe06\xd5K5\xdb\xd6o\xd7<\x16\xc8\xb1B\xa3)%\xbf3\xf4\x8a\xc2\xf16(W\x89\xe6zxC\xc0t\xbf(\x9cF+\xa4B\xaar:\x8d\xde\xaf 1/\n'g\x8dK)\x14\xb7\x0d\xa6F\x10\x15T\xed\x82J\xcd6\xbdQ>\xc5\xa5\x1b\xf4\xa6_n\x03\x95\xfc\x90U\xd2P\x86\x1bB6A\x7f\xc8\xa5A\x04\xcd\xb2\xd6\xb8\xbd\x95\x93\x01\x13\xb2\x92|hLg\xecZ\xd5l\xbc\xd9\x90\x0f^\x08\x9d7$\xc6QL\xe8\xa2)!O\x17\x84.\xd9\xb5\xb2\\S\xe3mK\x02F\xe8U\x13\x04\xaa\x8e\x11z\xdf\x94\xa6\xf4\xc5\x08\xbdiJU\xb6\xa9\x08\x9d6\xd6\x9c\xf8KBo\xd9\xb5#\x9dX\x9aI\"\xcd\x08\xbdcN\xccJ\x96\x946P\x96M\xadn\x9a\xe9\xc9 T\xbeq\x15(\xaee \xaeU\x94\xa5\x12\xdbr'F\xef\xb1\x15-\xbdv\x9am\xd1>B\xce\x12M\xce^\x0eFaw\xe0\xf6a\xf7\x1e\x0c\xa3\xe3\x10=\\'\xe3\xa8;0\xab\x8f\xca\xea=\\\x0e\x89\xe9\xf2\xf8\xd2\x11 \xd4\x03\xd7\x02\x9c{\x1e\x04\x95@\x1a\xb1\xcauv\xb7;\x94\x14\xdf\x97\x9e\xb3\x9b\x04\x1c_K\xf2K\xc7'C\xae|\xc4\x87\x0eH\x00\x0e\xe4b\x1c(0'+\x01\xa4\xb7\xdd/\xdd\xaeV\xed\xf9P\x1dc\xa4(2\x12\x9ahv ]!K\x17\x0b\xb2'\xe3D\xfar\x1a'\x13\x96A\xa0B\xf9\xb2\xc0\xcfrq\xa2M1m\xedq\xa8\xab@sAD\xf9\xc2E\xa7\xb3W\xa2\xf44p\xad\x82[\xf8\x7fm!\xd0\x80\x96\x11+!M\xf1\xae\xcfj5\xd1@\xad\xa2@\xf4ny\x12:\xd6\x9c\x07\xc1\x94{\xd7\xd2\xcaCk\x1e%\x16\x05\x84\x02^\x0c\x99\xcaS\xe6;c\x8b[\xd4\xe2\xd3i\x02?^\x12\x85\xf7K\xf8\x9a\xcd\x12\x91\xa6\xf0\x95\x08\x84H2\xdfC_\x1c<\xf5g\xf8\x9b\xcf\xfc\xc8\xa2\xd6\x14\xfe\xcd|\xfc\x8ba\xff\n\xfe\x06~x\x8d\xbf\x91w\xfdg\x1ee\x90e\x1a\xcd\xee\xe1\x07\xea\x9a\xe6Y\x16\x85\x16\xb5<\x1e\xde\xf0\x14?\x94\xaa\xbc\xe5\x89\x10\xf5\xf7-\xcf\xc7| \xf6\xe0O \xff^%Q\x1e\xe3'^Z[\xd4\x02\xf1F\xfd\x04~\x8a13\xf8#Y\x07\xf4=2\x13\x01\xfe\xcd\xb8\x1f@u\xb39T5\xf3y\x10]\xe1\x07\x02\xf97\xf0\x17!\xa1\x14\xa1\xec\xcdSK\xc0\xb0\xcc}\x11\xcc\xd0s\xbc5\xf7\xaf\xaa\x06#' M\x9cG\x08<\x8f\"\xd9\x81y\x94@\xbe\xc5\x00\xfe\xec\xc2\x9f=\xf8\xb3\x0f\x7f\x0e\xe0\xcf!\xfc\x11|\xa6~0\xd3B\xf7o\x81\xa1l \xcd\x81\x01\xf6\x97\xd0R?\x8c\xf3\x0c\x7f\xa1\x1b\xd7S\xc8\x1b\xf0)v/\x10W\"\xc4\x08\x80_r?\xc4\x9f\x18\xff&\xd7\xf2\xe7\xcf\\@[\x97\"\xcc\xd5\x8f\x9fa\xf7\x96B\xb6:\xe40\na\x84\x13\x85\x83\x1e\xc5\x99nT\xa4;\x1d\xe5\x99l\x08\xc4\xc6>\x8a\xd4h\x7fP\xfe\x8d\xae\x14\x06\xfdiQ+\x01\x98\x04\x80\x93|\n8\x00 )_Bt*b\xeea\x1b\xd3\x98\x87\xea\x11\xe3\xb5\x90\x1f\x11\xfa\x83\xc13a\xf8\xcd\xa7\xf8w\xb9\xe4 \xd6\x88\xad\xcf\xb4G\x19\x85\x8b\x19\x0cV&\x96q\xc0\x11\xd52q\x97)\x94\xcf`\x16\xe1w\x81\x7f\xe4$e\xfe\x12\xc1\x12\xfc\xc3=\x18\xd2\x0c\xa0`(\xf3\x00\xfd\xd1@\xda\x8d?\x13\xb0\x1an\xa7\x895!\xf4#.\xb5\xf4\x06\x1a\x88\xcb)\xc8\xae\x82\xfbxa|\xce\xc4\xdc\x08\xa9\x19\xe1\xe8\x8b_\xe0\xf9y\x15\\Fj\xc0T\x18/\\\x14\xaay~\"\xd7\xa9\x17\xf8q\x8c\x96\x05\xac\x99\x98#\xc6\x8b\xd4C\x9c\x0e\xfc8ElE\xaf\x82\x15\xdaB\xebt\xb3\xf07\xc16-\xaeE\x12\"\xfa\xf1+\x81\xb8\x15\xea\x1f\x9e\\%|\xe6\xcb%\x02\x18\x86\xc5-yz-\xd1\x89\xab\x85\xb9T-\xa9~2Yf\x1c\x05\xf7W\x91\xfeR%C\x91<0JN\x14ZdQl\xce0:l\x81\x0f\xf5N\x16gO\xfd\xa8\x9a2?\x93\xf3-\xbb\x92)\xb4\xb9\xf1\x05\xa0\xd7\x0d\xf6lB\xe8 \xce\xcf\\\xfc\x14\xc8\xe53\x17\xaf`\xc8\xdf\xf1,\xf1\xefTX\x9d\xb9\x9c\xe3`\xcba\x93\xb1\xa9\xa4R\x10\no\xa2\xe0F\x18\xd9^\xfb\xf3y\x9e\x8a\xb7\xfe\xd5\"\x93\xfe\x8a .E\x86\x03(\xcb;\\\x9b\x18\x97\xf10C8\x8c8\x0b\xa2H\xb6\x04\x98\xbe\x93\xf2\xeb\xa7\xf2\xeb\xe7\xf2\xeb\x13~\xfd\xcc\xf34\xf5y\xf8S\x90\xcb\xc6\xbd\x13\xc9\x95\xa8\xbe\xdeK*:\x17\xef\xa2$^DAtu\x8f\xc1\x0f\xf3\xb9\"i\xe2c\xe4\x9bm\xf8\x1c\x0b/\x0fxRk\xfd\xe782@\xce\xfd@\x16z\x9e'\xd3<\x10\xa1'`<\x7f\x90[\x8bDOI\xb4\xa3\xa4\x1b'\xd1\\\xc2{y\x92J\xaa\xec\xa7\x1eOdGgI\x14\x97+\x7f.4\xba\x01rv\xe7\xdc\xab}w\x01\xddyV\x8b\x92\x96\x01\x8d\x884\xf1j\xe1<\xf1%M\x16\xfeU\xa8,\xc9Rk\xc1%\x16\xe1\xafB\x9b\xa5H\xf5\x8f\x89\xe0\"\x05\x00O'%\xd8\xd2\xa5\x9f\xa6~x\xd5\xd5+G\xca'H\xce\xf0o\x14\xf83\xbd\x80\xf3\xf0:\x8cnC\xe9&\x0c\x06\xea\x13\x0e\xd4R\xd7\x1a\xa2\xf9j\xfc\x04v\x11>\xe60\xa63\xfcJ8\xf4g\xa9+Z\"\x8dG\xd2/fH\x91\x96\xcb<\xc8|\xd9\x00X\xf1K$\xff\x11\xfe\xb9\x91K3\xe6\xb3\x99,.^\xf00\x8b\x90\xee'\x92\xd2-U\x870+RZ\xfc\xf8\x13 \xf7R/\xbb\xa5\xa4\xacKIP!\xa4\xbe4m]\"Q]\xaa\xc5\xb8\x94-C\x97\xe7\xe5\x07\xb6fB\xe8+\xd5}\xbd\x03,y\xe0_\x85z\xab\x91!\xbdq\x05Qx%\xf7\xe7%\xe0L\xe2\x8b\xb4\xfc\xbe\xc7\xaf2_\x9aI\xca\xbcL\x15EY\xa6\xb2k\xa9X\xf20\xf3=\xe4l\xc20\xcaxIIu\xa0{\x87\xfb\xed2ND5\x90h\xce|B\xe8\x1f\xd8\xde\xff\xc0\xaeM\x08=\x97h\xeey\x02'\xbc\xec\x06\xb6[Rs\xe4\x94\xb2\xc8\xe31z\x81\xff*tD\xb4\x8c\x03\x91\xe9\xa0\xda?\xfd\xb0\xdaH1:\xe0\xc81\x95W\xa9\x10\xb8\xd2\xd8$\xaf\xf3\x15\xeb$3y\"\x08`\x8a\xe5j\x85\x10\xcc\xa3\n-\x84w\x8ds\xaf\xf9\xaa\x80\xe3\x0e\xed\x05\x027-]\xae\x17!\x87\x04?\x92\\\xe2\xfd\xa6\x8e\x94\x9f\x8a\xcd\xf2\xa2(\x99a|\x12\xa5i\x94\xf8W\xc8r\xcc`W\x92[%\xf0`\xaa9\xea\xb4\xc2\xe0\xb6R\xe5\xad_\x7f6\x0c\x83JI`\xd7\x03A\xed~*\xe7v\x16\xdd\x86A\x84\x9b\xf2,\xe1WW\n\xf9D\xe8\x01#\x8d_\x99H\xae\xc5\xfd\xc2\x97<\x99\xa6 I\xc9k\xa5\xf8\xa5h\x992\xbc\x00\x1fWH\x0e\xd4\xe6\x97\x88y\xc0\xb1\xf9\xfeLs_KIJ\xfd0\x13W\x89\xaf<\xd9I6\xeb\xda\x0fk\x0c\x99\xcc\xaaF\x0b\xda+\x87\"\x88p+\x0b\xe4\x82\xe3w\xf2oi\xc4\x19\xefU\xf17[\xe06\xb0\x94\x9c\x9c\x1fV \xb0\xd4c\xb9\xe0\xf2\x0c\x07Q\x11\xc00\x02**\xbf\xf0\xfeC\xd2\xe00\xbaM\xb8\xe4\xe0\xb0\x9f\xc0\xc8-\xf3e};\x86}i\x11\x05\x12\xad`\xb4S?Tk(\x8eR\xc9-\xc4\x89P\x03\x1f\xe7SU8\x10\xc9H\xaf\xbfD\xf0Y\x14\x06\xf7\xf8\x19\xe0_\xe5\xb1\x04>o\xe4_\x91\xa42\"\xc2>$\xd1m\xaa~\x14g\x17\x8b @\x94E\x9a\x1a\xe1\x9cJ\x0e\x11\xf3\xa5\x0b.\xa3\xe4\x9a\x82\x9f\xd4\xe0\x0b\x13O\x0d}\x9aq\xa4_r3H\x13O\x91\xe5L\xd4x\x89\x92O\xcc\xf8\x14E\xfe\x1a\xf3\xc0\xc3T3\x88\x12\xb9r\xa0$\xb1t?(\xd7\xba\xb4\xa5G-\xd4l\xb0\xa8u\xb7\x0c\x90AO\x83\x08i\xc5\x9b\x92V\x84Y\xb7\xc4:\xeey\xf92We\xc3\xba\xc5Ga\x8a\x82\x00\x83\xd0\x9d\xf2T\xa8\x19\xe0\xa9'7\"\x9ee\x89?\xcd3\xa1f\xbc\x0c\xab\xd6\xf1\xaf\xfe2\xc7V@\xee9\x0c\xbf\x08\xbd{\x15\x86\xd2\xba\xe9\xc2\x9fCQS!W\xec\xd4G!\x0c\x99\xf3\x8a.\xf8\xb1\xc1I\xe6\xa1\x9f\xe9\xe8\xae\xda(\xf1;\xc9\xe5\xa6^\x91\x8f(\xe9\xc2\xe2H\xe2(\xd0\x14\xb6!\xb6+\x19\xd0\xb4\x89A\xc0p\"`\xb3P\xd4\x0bf\x04\xfb\x80K\x1eB\xc8\xc1\xcf$\x87\x85'u\x0fK\xd0[\x8dSsd=\xa1\x86+\x90;\xafv5;\xaf9$\x83\xb7\xd7\xdc\x8dn\xbf\x0e\x9b\"EE\"e\x1eI\x07\x81;\xabM\x10\xa2\x91\x1fBm\xb0d\xaf\xa1\xeek\x0c\x81\xcc{\x0d2/\xb0\xdb\x12\xf8Z\xdc\xc7\xc0l\xa6\xf2;\x8d\x01)U\x006\x8e\xd4\xa0\x9dH\xf1\xcaa \xf0\xc1v\xb7\xda\xd6\xa0P\x11,5\xcf-\x83\xd0\x9f\x92T\x06\x8a\x7f-\xe7%\x88<\x8e\x9b3\x06\xd1\xb8&\xfe@\x84^9\xf0\xad6P\xf8\xac6\xc4%\xbf\xd3\xf1~\xa8\xbf\xa2\x1b\x90\x11p!H\x99\xae$\x8ca^\xf6]1\xc7It\xabc\x92\xe8V\x0f\x99\xe4N\x15\x1aT\xacj\xa2[\x9d\xe8VK\xc91\x80\x19)CUK\x94\\\xe9\x7f\x15\x8a\x89\xf7\xe5\x91&\xa2\x89>\n\x8d\xb9\xa6\xef\xe5\xb7\xa4\x1c\xc8\x10\xc8\x13\xcd\xa9*I\xf1ri\x1e\xafE\xdc/\x97\"K|\xe0|oJ\xcaQ\xe7P'\x84\xbeF\xf4\xba\x0b\xfc\xf0\xdaU\x13v\xb7\x0c\\\x9c4\x19\xab9a\x88\xd6\x9d\xc5\xec.\xa6C!o\x19wv.\x1e.\x1e\xc6\x17\xe9\xc5\xe7\xc9\x8f\x85\xfa\xbdX]\xacv\xae\x96\x84\xbe\x03\x80\xe3\xff\\K\xfe\xcf\x97\x98x\x06\x89\xbf\xcfx\xc6\xbb\xe3\x8b\xee\xc5m\xef\"\xef\xf7\x7fz\xde\xbd\xc8\xcf\xce\xce\xce&;\x84~E\x08\x98a 1\xe9\xfc\xb0C\xe8\x17\x8cuF\xae\xfc\x7f^,2\x92\xc5\xe9\xa8Xr?\xc8\xa2\"\x13A\xe1\xf1\x00>=\x7fV\xdc-\xe3\x98\xb8\xc5\xf8w\xde\xfd:)\xc6\xbc\xfb\xb5\xd3\xbb\xe8N:\xce\xc8\xc58\x08\xb9\x93\xe2\x07Bv|B\x7f\xd2\x85_\xdcv\xe4\xc0\x16\xd0B\xe2B\xe2\x9f\x908\x86f\xf6\xfb]\xf8\xd9\xed\xc3\xdf\x93\xfeE>8|\x01\x7f_\xf4O/\xf2]\x99\xbc\xdb\xdf=\x82\xbf\x07g\x17\xf9^\xbf\xdf\x9f\xec\\\x11\xfa\xf7&OvZ\xff\xf1)\x8b\xd3\x0d&\xddZ\xd9c\x96\xdcD\xa3q\xd3R\xdd\xb2f\xd2\x93\xb12\xbe\xad\xbf\xab\xab\xcd\x91n\x9b[VX\xdd<\xfe\xfa?{\xdd\x0c\x05\xfe\xb2\xa9\xc8l\xdc\xf5\xaf\xf9\x8aB\xf7\x8b\xae\xfc^\xd1\xdf\x1a\xb4\xb2\xd4\xc9`\x9b\xb1\x9a\x81\xf1\xaaD\xf7\xef\xd0\x9f\xa2hpu+\x94\xba\xc1\xc7(\xf0\xbd{}\x89\x07U*cG\xa8\xcd\x9c0\xbc\xaa\xeafY7F\xc0n\x9a\xcf\xe7\xfe\x9d5\xccz^\x9e$\"\xcc>#\xbe\xd9\xf6ZDo\xc1\xd3\x13-\xed9 ^S\xb2u\x98+\x91\x990Zk\xda\x9aE\xcb8O\xfc\xf9\xbd\xd5q\xc2\x91\xf5\x1fV't-\x8b\x0c\x0dGU\xf5\xf6;\x916]\xf4\xcb\xf9\xbb\xb7\x8dH\xb5Zm:\xb6\xaa\xdfC\x9e'y\x9a\x89\xd9\xf9},\xd2\x96\xecn\xcb\xeaD\x1d\xab\xe5Ey0CcMS\xd1\x92\xf5\xccz\x96\xbe\xa2\\W\xc6i G+\xb3o\x98\xd6\xe9o3\x84f\x06\xdc_\x9c\x9a\xd93CM }\xb9\xe3E\xadb\x15\x98\xb5\xdb\xdb\xed\x1dY4\xec%b\x19\xdd\x88\x19\x1bOP\x1d\xb8\x9d\x95n \x8b\xe2\xa8\xcdX\x15\xee\x85\xd1L@?\xcby\xef\xf9\xe9g\xed\x16\x8e\xb5\x074T\xda\xb9U\x1e\x1a\x99\x01\xce\xb2\xdek\x158K\xf8\x15F\xa6,\xeb\xc1\xf8\x9f\xabk*\xe5\x04\x9b\x06,\xeb\xbd\x8ff\x82z,\xeb\xe9\xc8\\E\x9e\xa1XJc\x08\xf2\xa5\x98A\xdc;\x1e\xd3kV\xe2t<\xaa\xa7\x15E\xd6{\x17}\xc5(\xc0\x9fw8\x11)\xd1\xe9]4\x13\xa3\xa8\x16t\x1fVknBg\x98\xbd\x8e\xa9Mj \xc2\xb6Sa,\xb3\xd4\xeck5n\xb0\"b\xe9Tc.\xd8[\xba\x10\xec\x1d]\nvF\xaf\x04\xfbJ\xef\x05\xfb\x89\xde\x08\xf6'\x9d\n\xf6\x85\xde*\xdf\x97w\x82]:\x0f+Z\xbd\xb5\xf8\xd59%\xf4W\xe7#\xfc9\x81?\x9f\xe0\xcf\x1f\x84\x10z\xad2]6d:\x07\xa87\xf0\xe7=\xfcy\x0d\xf0\x1f\x14\xfcg\xf5{*X\xbbO?\xe2\xdf\x13\x01\xcb\xf2\x07\xfc\xfb \xff\xbe\xc2\xbf\x7f\xe0\xdfs\xfc\xfb\x06\xff\xbeG\xf8\xd7\xf8\xfd\x16\xbf\xdf\xe1\xdf3\x8c\xf9\n\xa3H\xbf\xe8\x16m\xde'hu C}A\xdd\xc7n\xdcG\xc9\x9bf_\xf3\xd2\xfar\x08o{\xf0\x14\x18/t\xf00A\xdd\xb1\x84\x91XN\xe5\x11p\x84\xd9$\x7f[\xdeD\xc5\x01H\xf9\x12\xb6\xba\x9e\xd2\x02\xde\xcd\xd5\xda\x1dxy\xd7-\x99>}\x97}\xb7\x8c\x81\xd1\xfbI\x0d\xe3\x9fUgU\xdf4\xa0\xd4S(\xef\xec\xf5E\x9e\xbc/\x9f\x10\xfawU\xc2\xafU (\x9f\xebsGyF\xef\x9b\xe7\xe8\xea,d\xdbI\xb5q|\xab\x1b\xad\x8ecu/Kf\xf7\x17\xc1\xacE\x96\xc5\xee\xce\xce\xed\xedm\xefv\xaf\x17%W;\x83\xa3\xa3\x17;\xefx\xb6\xc0?\xef\xdeZ\xf4\xb7F8`\xe7vp\xc4~\xdeV\xce\xd1\xce\x9d\xd4\xd9\xf8\xab`?\x0b\xfa7\xc4\x8f\x7f\xa8.\xff\xa5\x816\xa1tL\xe8?\xebvJ\xff!l\xfb\x1f\x02X\x8f\xa2p\x80w+]_>\xc5\x968\x80\x8b\x84\x021\x10\x04\x96\x98u\xf2\xf6\xed\x87_O__\x9e\x9f\xfc\xfc\xd9\xf2\xc3\x96\x18\xe1\xb8\x8b\x9e\x99@\xdc;\x01k\xab\x84>9?\xff\xd4\x08\x0d \xc4\xbd\x140\x91\xd6\xc9\xeb\xd7\x97_>\xbd\xb9\xfc|rvZ\xcb\xf2\xc1\xf9U\x10\xc8\xb5\x0e@\xdc_\x05`\x11f}}r~\x82\xc9f\xdb>8\x7f\x96Yk\x00\xc4\xfdS\xc0z\xb6\xce>|\xfa\xe9MC\x87\x8cx\xe2>\xac`\xcdk\xd8\x8d\xee\x18\xf1\x08\xfbU0\xeb\xcbgt\xe7|\xf6\xe6\xed\xa9,\x188c3\x12\xa9\xc7\xa0\xcd\x98\x1a\x8e\xcb\x93OoN\xb0\x0c\xa4(f\n\xb6\x1cSND\x19\xf9\xe5\xfd_\xdf\x7f\xf8\xf5\xbd\xf4\x19\xfd\xea\xc3\xdb\xcfE! \x90\xe8\xe1\x00\x9d}\xf8ty~\xfa\xee\xe3\xdb\x93\xf3S\x99\xf6 \xd2~\xfd\xe5\xc3\xdb\xd3\xcb\xd7\x1f^}yw\xfa\xfe\x1c\xe3\xcf!\xfe\xd3\xe9\xf9\x97O\xef/_\x7fx\x87qo\xeaq\x97g\x9fN~.3\xbc/\xdbg@\xbcy\xf7\xf1\xc3\xa7s\xa0ke\xf4\xf9\xa7/\x9f\xcf\x01)~\xfbx\x8a\x19\xff\x80\xc4\xb3\x0f\x9f^\x9d^\xfe\xf4\xe1\xf5o\x18\xf7\xb6,\xec\xf3\xc9\xfb7\xe7o\xfe \xad{\x874QF\xff\xf5\xf4\xf4\xe3\xe5\xab\x0f\xef\xcfO\xdf\x9f\x03\x91\x14\xbd7\xef/?\xbe=y%\xcb\x9c\x96Cr*\xd1\xe3\xd3\xe9\xcf\xa7\xff\xf8X\x14S\x01\x0bG\xf4\xde\x9f\xbc;\xfd\xfc\x11\xc1\x7f\x16\xf4\x07a\xdb\x0e\x0e0\xa1o\xe0\xfb\\\x9a\x0e\xfe\n\xdf\xb7\x0d\x1b\x81\xde)\x80k\x83\x95\xf2U\xf4`U\xda\xb6s\xe9\xdc\nzJ\xe8\xa5s-\xe89!ezzs\xa5\x93?\xaa\xe47\xea\xf7u\x1dL2W\xa9\x86>y\x04\x1a\xa8\xf7\xbb\xb2\xdaO\n\xe2}\x05\xa9\xf1\x1cPV\xf6\x85\xb1;\xd5\xab\x0f\xce\xad \x00z+\x0c\xa82\x0b\xe0\x96m;\xd7\x90\xe5R\xc8\xaf\x0f\xce\xb5\xccr-\x0c(\xd2\xb8\x10m\xfb\xd2\xf9\xbbh\\\xa2\xf4\x9dlBy\xd9\x8d\xa3\xfdI@\x96[A\xc7Z-Mm\x15\xa8M5\x01b\xd3C-\x00\xdd\xdf\xb1R\xb4\x9a\x10\xaa\xac\xa3\x7f\x10=\x8c\"\xd4\xb7m\xf4\xce\xfc\x0f\xc1\x04YQ\x91\xe9\xcd@\xeetQ\xb9\xddU;\xdd\x84\xd0\xac\x04[\xdf7\xd5v\xaa7\x80\xb5\x1dxBh\xa8\xb2~$\xc3K'\xcc\xe4\xb4\x85\x19\xfdA\xbd\x99S\xc9\x9f 9\xc9\xe8+%7e\x0d\xafiC\xe1\x082D\xf1,\xe3W\xc01\xa3U\xce\x07\xb4\xc7\x14sO|\xf9\xf4\xc6\xfdYP\x95\xe8V\xdb\xebJ\x1b\x16_:B\xe7%4aK\xa7,\n\xd9[\xd13\xcbb\x8c\xfdV\xbd\xf3[O\xfa\x19$\xf2\x9b+tJ\xe1n\xa4\xfeb\xa4\xda\xb6\xb3>0\xf2I\x9e@=W\xf7\xa7(\n\x04\x0f\x9dP:\xefnj\xc7/\x8f\xb7\x03\xb9\x95\xe6\x86\xfcf&\xdbv\x06U\x965&\xdbk\xfcY\x1e(4\x94g\xdbm,\xa5\xf2\x86\xd4\x04\xf7\x0b\xc0\x89:\x9c\x94\x88\x15&i\x941o\xd7\x94\xa2\x9e\xe2\x96\xaaW4\xd8N|@\x1cN\x8a\xa2-\x07j\xa5\xcb]Q\xbf\x8e.\x0b\xa7\x14 \xe9\x83\xd2&u\xc5J\xca\xdc\xda\xdd>\xb0\xf1\nJz\xca/\x9dE+g\x9a\xa2\x17\xe5\x99H\x80\xd3f\xbe\xa8\xd2t.\x87\xacV+\xca\xd7\xcd\xc2B\xd6Z\x03\xca{b\xb7~H\x00\x0d\x80\xa58O\xa2%\xba\xbe,E\x84-\xd9\x91\x97)\xa1q\xd0%Tu\xee \x08\xb5\xfcT\xb9\x98i_\x8b\xb1\x98\x10\x7f\xee\x9c\x8b\xa2x#\xd0\x9b\xb8\x9f95/\xe2\"HE\x0b\x12\xf0\xd5\x88Q\x12\xb5,\x13nE\xd3\xa65\xa9\x9e\xce\x84Z\xad\xdb\x9f;\x7f\x08\"\x98u,\x9b\xf6\xf2xG}X\x1d1D\xbfPR\x18\xbfr\x04\xdd\xf9}\x8cV\x00\xb2\xd6\xa4\xb3C\x86!Kl;\x19\xf7'+\xa9\x9b\x1e\xad\xcbv\x82\xb8\x02j\xf8\xab\x90\x08\x8a\xcdfN(n[\x7f#0\xad\xa98K\xa2\xa5~\x87%\xaf2v\x90h\xae9N_;SP\\!y\xc8* KKW\xce_\x85\xc9\xa8K\xadz9`k\xd9{~\x18*|\xf9\x1b\xfa\xc6\xf3\xcd\xf1\x93\xda\xf4Y\x0f\xe80\x08\xfdk\x99\x87\xd5\x81ah\xdb\xbc\xe7\x87\xa9H\xb2\x9f\x04\x10\\Gs\xaf\xe7\xe2\x0e\xf1\xd6 \xe5\xbdJb\x1f\xf7'\xf2\xf13\xec\x16\xa3\x8d\xb2]\xbe\xa2A\xd6\xf4\xfc%P.\x13D]\xd8.\nA\x05\xcd{\x9f\x7f\xf9\xf0\xeb\xe5\xe9\xdbS\xe4fT\xf0\xd5\x87wf\xf0\xfc\xf4\x1f\xe78(\xe8\x10\x82zM\xd5\xb4\x1da\x9a\xe1\xff\xb9(j\xe1\xbf6\xb8\xbb\x13x\xac\x03\x84\xd9\xb6\x1b\x12ab_\xe9\xf3\x84\xa6\xa7h\xe6\xca\x06n\xb2\\E5\x87\x00\xd7\x8ff.\x17\xc3\x16(s\xbd4\xb6\xd2$\x89[\xca0\xa7\x99\xach\xde4|\x8dBH\xb0&\x84\x04\x84\x8cj\xa3\x1a\xb8\xdf!\xbf\xd8\xb6\x15\xe6\xcb\xa9H\xd6g\xe0\xfc>\xde\xd275=+\x1a\xd7) M\xc8\xc3\x0c\x08\x8fm\xcf\x1c\xfc\xa8\x1b\xb7\xaf\x9ct\xd0\x84\xfeCH+\xdf\xb3\xed\xb4\x05\x0d\xc9g\x8e5\xc51\xfa\xccC?\xf3\xbfj9.\xb5\xa8z\xe8B\xa5\xcdp\x85\xd7>\x04h\x1b3_9Uk\xa9\xbc\x8d\xecVQ\x98\xfb%\xf5Y\xa6c+\xea\x03\x05\xfa\xb6\x1d\x95\x96A8\xd3\xe6\x1b\xba\x83!\x7f\xc9\xfa\xc3n\x97\x93\xa8N\xd3\xfe\xe9\xf8c>A\xd7+\x02\xad\xad\xaf\xd6\xdaY>(2\xb1\xda\xb3\xedv\x04\x00#G\xc3\x11\xb7:ui\xa3\x11\x85\xf2h\xa6\x8dlV\x1b\xc6\xe6b'\x8c\x1cu\x9f\x84\x89d\xc7\xaf\x0d\xe1\xc8\x01qg\x0f\xd6\x87\x81\xf9h\xdc\xc3\x18M\x9a\xa1{\x96\xb9\xa0V\xcb\"*\xb4P\xa1\x1ad\x9b\xb1\xcc\xb6\x9df^\xa4W\x9e\xcb:d\xb5\x96\x91e\x84P\xc06>\xcfD\xb2\x1d\xe1\xdb\x03\xe2V\x83\xb0\xa2\xf3l\xe3\xa5\xa4?w\xde\xa2\xc9\x0f\x7f\x06$ +\ny\xa6\x03\xdfx\x8b\xd1\xf2\xc3VT\x14\xf8\xfb\x17\xd3\xc1\xa5?w>\n\xc0\xaa%\x9a\xaf\xc7\x9d\xbb\xe5\xcf\x9dS\x8c\xbc\xaa\"\xd1/\xc4\xb5\x18g\x93\xa2\xf8\x0c?\xb52\xfe\x8e1e\xee[g*\xe8\xbd\x13\xd2\x1bd/\x8crQSP\x0e\x99y'\xaab\xcao\xd8)\xe4L\xcb3\x9a~\x9b\xb1\x1b'\x94\x8f\x90\\\x0b\x16\xd1O\x9a\xe99\x01\x8c\xbeu\xee\xb7\xd4\x18\x96\x0d\xd5\x8cd\x7fE\x17\x8f\xf08\xfa\xe9\xda\xa6\x11\x80\xe1&}*7\x86j\xc2\xd4\x8bds/B\xa7x\xda\xee\x04rzRp\xb1(|\xff\x1d_\xcd[\x16\xbd\x16\"\x86\x02\xddv_\x13\x98\xaa|\xf7Z\xac\xf05\x9d\xcfxi\x88\xa7|\xe1\x17\xb0\x8c\xf1\xb1?\xc1'\xb60\xf7\xf8\xc2\xd6\xdc\x98\xa4\x1f\x84\xa9\x93i\xf3+\x11[:\x1e\xa1iO\xb7\x87E*\x80\x0db M{\xbaEh\xf0\xa5\x87^ \xfe\xaa\xa3\xd4\xe0\xac\xd3\xcb\xb2\xc50 )H_F\xa1\xb4\xbdV\x8am;\x0c\xc4\xdf=\xdan\x9dO\xf2fO\x19\x80\n\x99\xf5\xbf\x0cK~\x89C\x1e*s\x02\x91\x9e\x064b8\x0f\x99\xa0\xf8\x85\x8b\xe2.c\x99\x0cF\xa1'XX\x14\xedA\x95\xd5\x97\xa2.\xf5)\xdf\xb6\xa5$\xa4\xd1<\xda\xf9B\xb4\x02?\xcdD(\x92\xd2\xacjmk\x91\xec d\x8b\x9c\x84\xfaE!(G\x17\xbf\xa3\xb0\x93\xb9\xd5IQ\xefR\xdc\xa0\x96M0\x19\x99\x81\xde<\xac\x85\xd9\xd8\x0c\xd1t\xe2\xd6\xa0\xd1\xf8^J\\\xa7\x96'\xa5e\xf0U\x94\x87Y\xa7C\xa8a\xda\x81K\xc4\xeb3\xd6\xed\xd6\x01\xab\xaa\xb1\x0b\x89\xab\xee \xaa\xd2\xb3IUN\xea\xa8\xd1\xaf\xe5\xa1f\x14\x96\xca\xfa\xab\x9ae\x19`\xf5\x0c?\xd9\xb54ej\x02\xcf\x05\x13\xd2\xbb\xbcD\xb8\xcbK\xb4e\xd4\x1e\x10`)+\x84\xc1J\xd0\xf3\x9a\x89\xaa0\x07\x02m/\x8e\xd1>\x06\xba\x8a[oTI\xf7+k\x16\xa2\x06E2u\xbcF\x13b\xdb\xca\x0fY8J\x94\x19\xc0\x01q\x93u\x0bZ\x8d>\xdaF\x91\xbec{\x0c\n\xf6\x167Z\xd5z\xa71\xad\xc9:)\xe0\x93p\x05Mjm\x1eg\xd8\xe1v\xa2z'\xfb\x9f\xf4\xe6Z`\x1a\xc3\xf7\xc40,\x02\x82\x906.B\xb9a\xf4\xd2'\xc3\xe8\xd8GC&|\x1cM\xd0\xd8Ho\x1e\xea\x1e\xf3\xe6\xa6\xca\xf9\xfe\x9e\xe6\xaa\xf2\x92\x11\xb4l4puc\xdc~\xbd\x06\xb1\xf4\xd7\xcf\xaah$\x97\xb0Zs\xb2\n\xec\x7f\xad\x92t\xed\x16#\xa0\x1e\xcd\xd9\x1a\x08\x8d7t\xe4p/\x85\xa1{\x90\xef\xe6\x9d\x1c\xa9\x89t \xab(\xe5[\xd5oGP\x00\xa5\x8a\xd5m\xf7 \x8d\xc9\x83\xc7S\xd1\x1a\xb8\xaa\x8b\x00 Q*\xd7T\n\x8ft\x10j\xf7\x11(j\xc0\xed=\n\x07\xa2\x8c\x86\xdc\x7f\x02\x92F\x15\xec\xc1\x93\xb0\xd4\xaf\xa0\x0f\xbf\x01\x1a\xa8^\xbb\x8f\xc6b=6\x00\x02XbV\xdc\x1d\x90\xa1w\x1c\x0f\xbdN\x87\x04c\xafn$\xc7\x9b\x0c\xb1Xi\xa1\xa9*7 \xab\xf2\x06bF\xe7,\xd7\xb3$\xab\xe8\x0f\xbd\xe39\x96\xa8'k\xecM\x1e\x9f/\x00\xd86e*Qu\x0e\x02z\xc6\x86\xd3D\xf0k=i[\xe1h\x1dr\xef1H\x9a\xd4`\xf7\x1f\x87\xa5\x91\x86V\xaf\x83]\xc0\xf8\x00\xd9\xbaY\xd3P\xcf\x8e\xe3\xe1\x0c\x87zV\x1f\xea\xd9d\xa8kR\xa3mV\x05rmu\xb8b.\xc5(\xdcf\xd6\xcb/\xbd&\xd2P\xde)\xd4\xf3y\x9b\\Tc\xce\xfeZ\xce\xfa\xe4m\x90\x01-\x83n%\x01\xfe\xa4\x94\x8a\x16~*\xd3u\x0c\xd7\x06\xfap\xe3R\x1b\xf8Zn\xc8\x01L\x06\x81?\xf2,+\xb2\xed\xb6d/\x8a\"\xb1\xed\x92\xf1\x90\xc7\x96e\xa1R\x12\xd1\xf46` \x18\x8f'4g%\x95 \x8e\xf3a\xd0\xe9\x10Gm\xffF\xf1\x10Q\xd50\x0e&f%\xc4\xb6=\xb5\xff\x8f\x83 \x19z\xaa\xc0\xd1Z\xdb\xd9\x00E\x0c\x95\xe8\x8d\xfb\x13\xd7s\xcb\xf6\xad\x8cqi\x1a\xf3\x93 x\xbb}\x1b*\xd9\x99\x91S\xd1\xf85\no\xdb\\{\xd8&\xae\xf3m\xfc\x82\x9c\x8b5\xec\x99\xcf\xd9v\x9c\xa8\x81\xf2\xd9\xac\xc4\x95:\x02\"\x98\x98\xfbwb\xc6 p\n\xb5\x9e.\xfd,\x03PZ\xf1\xb0\xe9\x8a\xee\xf7\x0f\xf7\xbe\xc7txK8\xfa\xe06c\x8c\x95g\x94x\xe0\x91\xe1\xd5`u&Pq\xfa\x1bq\xaa\x08\xf3yA\x9b\xb1\xd0\x0c\xd774$\xb8\xc3\x8d\x17\x04\x99<0q\x12\x96\xe97\x03m\x16\xea\xcf\xb2\x04\xc0\xcd\x88%\xc3~\x9b\xa1q1X\x1c\xc2\xc9\xc6\xd1\x84\x86\xe3hb\x9c+\x97\xd4`\xbdy\x8c1i\xcc\xad:{\x90\xba\x8c0\x0c\xea\xd3\xb6\xb3\xde<\xe0W)\xc6\xe1\x97\xd4=PNP\xdblS\x1e\xd0\xfeQ\xcbRU\x84C\xb0\x902$\x0b\xd2\xa77M%\x95\x07DeQ\xd5Y\x0f\x96U\x05\x87r\xcc\x9c\xd2X\xe2\xb5\xb8Oa0\xabA\xac\xa5\x84\xe4\x9b\x86\xf4 aG_\xac\xf9\xf5!_/I\xd9u\xf3\x95\xe57\x9c(\x0e\x13\xc5\x8d\\\x15\xd9\xd6\xbdm3\xc0\xbf6\x0bW+\xba\xbf\xbfUpKhR\x1a\xc8\x84\xef\x14U\x93\x18/??k\xc3\xc9\x8c+\x19n<\x91\xbe\xe6\x0d)\x0dXom\x81Nv\x00\x15\x12\xe8x\xa2\xf6Z\xb4\xc8\x8a\xa3\xae\x88\xd2\x9aQfY\x80\xbb\x11\x8b\xa6S}\x02\x83Q\xa2\xf4P\xb3\x7fY/\x8eb\x87\x0c\xf7\xf1tH\x15\xdcl\xd96\x1d\xf7'\x14\xed\xcb\xa6\xe3\xbd q!<\x86\xf0\x84\xa5\xe3\xdd\xc9\xaadqk\xc2fb0\x9b\xc3\xda\xf9^u@\xa6\xed\xda\xc9\xa7;\xd2:\xb0\xbeNC#\xc1\xfe\xdc\xf1\xc7\xe9\x84!\x8c\xdc\x11\x9e0\xda\xe9pZ\xc9\x190~N\xa9P\x1e@\xa6\x11\xda\xdc,-\xf3\x8e\x9c\xe6>s\x9ahS\xbe\xd6\xf8\x95\x9f\xe0\xcb\xdc\x89\xb5*\x0d\xeb\x8f\x01B\xd0`B\x88\x1bj\x9f\xb54\x99\x10\xd7\xe1\xe3d\xc2\xcc\\\xf5<\x13B\xf0\x0cT\x99\x82\x17\x84n\xbcd\xaaF\xa3\xe6/ B\x07\x014\xa5~y\x11\x00c\xe2\xd5\xd6\x97\x90'i2\xbbgfG\xe0\x9cyhk\xd9\x11\xe3|Bs,j\xb5\xf2%6\xac\xd6\x84\xfe\xea\xfd\xcaq6\xea\x0e\\\xf12\x1b\x0d\xdc~]4\xae\x18\n\xcaY\xba\x8e\xbbE!\xd4\x8d\xcdc(\xcc\xb1\x94u\x14\xe6\x12\x85\xa3F\x14\xf6j(\xec=\x8e\xc2\xb0\x8dS\x0fP\xd8C\x14\x86\xf0\xd8C\x14\xf6\x0c\x14\xf6Ma\x1d{\xa6Q8\xf86\x14\x0eX\x7f\x18\x1c\x97\x86x\x03\x89\xc2\xd180P\xd8\xfbo\xa0\xb0\x87(\xec\xfd[Q\xd8\xfb\xd7Q\xb8Q\xcd#\x8b`\x1a\x15u\x85a\x8b\x1eGt9f\xc2\x1c\xb3\xd4\x11\xe3`B\x03\x1a\xd5\x10=g\x0f+\x1a\xafa{/\x8d\x92\x0c\xc4\xef\xaa\xac\xd8,KJ@,\x1e\x07\x93!\x94;\x9b\xd0\x19\x96K\xf3\xf1l\xc2 \x02\xbaR\xd9\xd7\xd6{^>\\\xeb3\xc5Q\xc9W\xd1\xc6b \xcc\x07k\xac\x9c-1\xda\xe2\x91?[UvZQ\x89\x04_\x86\xe9\xa7f\xc48n\x18F\xc7ai\xcbT\xf7\xc6g\xa1\xda\xd0\xfc\xf1\x000+\xb3m\x7f\xdc\x87\xaf\x84<$\xf5\x89\x0b{i\x8c'0\x11\x1d(I\xa8\xf4\x05!\x0c\xd7\xed\xd2\xbe\xea\x8a\x1e\xbd\xe8\xef\xbb\x9b'\x12O\x1f>ne\"\x1a\xdd\xc6H\xb2\x0184\x96\xab\xaa\xa5m\x0fO,\xc9\xbe\xe1\x998i>X\xd4oT\xb7\x1f*\xfa\xa5\xa3\x12\x1c'\xc6X\xc77\x946\xfaC~\xec\xa3\x85\xf3D\x1b#\x17\xc0\x19p\x8dp-\x0d\x9b\xe2QWu\xba\x95\x12\xdb6\xf2 =\x06\x12J_\x1c>\xdft\xc9\xde\xe8\x0c}\xb0{tHh\xc4\x1eP\xaf\xe4\x95\x94Q\xf0a\x9b\xdb\xeeS\xaf\n\xaf\x051Y1\x1c0\xf02,\xdf\xcc\xe3e\xba\xb4b\xffz\x0d\x02\xa3\x12\xffF\xcc>g\xcdzo\xf9\xd7{vE3\xdca\xd8\x92f\xbd\x8fH/X\x04\x9fj\x11\xb3\x94f\xbd\xcf\xb8\xf6\xb1!\x1c\x82\n\x89\xd9\x9cf\xc0\x93\x97\x0d7\x99?\xd5\xc1kT\x84U\xdd\xcc\xd1\xbf^\xba\xd6\xb7k\x1dY\xeb]CY\xaa\x14oef(\xbb\xbe=C 3\xe8q\xd9\x04|\x0c\x1dM\xa4\x006Y\x96e\x8c\xeb\xf6zg\nV\x0f\xfavH_B\xe2\x8cl\x87\xba\x92P8]\xdb\xa1\x96\x12J\xcd\xe5v\xb8H\xc1\xe9\x89\xde\x0e\x99JH\x03\x0b\xb6\xc3r\x05[\xa2\xc8V\xc8\xb9\x84D\xdd\x0f55\xc0\xf84M\xcf\x86\x86T\xa3Z\x97(\n\x01c)\x7fb\xf9\x93\xca\x1f.\x7f\xe6\xf2gQ\x14\x8fO\xb9S\x9b\xf3\xab\xa2\xa8\x85\x97k\xe1`-\xec\xad\x85gk\xe1\x9b\xb5\xf0t-|\xbb\x16\xbeG\xbf\x94\x92\xe9bw+\nR\xc0\xe3\xf2B\xc5\x86\x85\x0e0#dE\x8f\x8e\x8e\x1e\xf1\xe2\xd8\xe8R\xc7`\xe1\xe4u\x11J^\xd5\xc1NQ\x84\xc7\xd9H\xbc\x0cGag\xe0\x8a\xce\xc0M\x00\xafF\x99\x9bu\x06\x1b\xce \x9a\x8e\xec\xa5\x8e\xa2>\x9fyY\x9e\x99?H\x81'\x1bf,\xa4!KV\x95`\xab\x81\x81\x9b)\xe5\xdb\x97}4G\xb3\xe0\xc9\xabh&N2'\xea\x0e\xe4q\xb3\x11\xe7w\x07dH\xa2n\x97\xfa\xdd\xee\xb0.\xd1Ek\xf9\xf9FnN\x86\x84w:(\x13v\x19\xa7}\xc6\x9c\xa8\xcb8)\n\xffx\xaf|> \xaf\xb5(^}\xd3\x98\xce\xe8\x9c.\xe8\x92^\x01\xc3H\xa7\xacOo\xf1\x10\xb7\x17\xad\xe9}K1$=\x0b\xbdu\xa9\xb5\xddC\xfa\x1a:\x83\xbd\xc3}R]\xc1\xf5>{\x0b\xb1\xe4\xd0\xa5\xc3\x83\xe7f\xc2\xd9\xc9\x9b\xb7\xf8\xf0\xfa\xf3\xab_N\xdf\x9d\xb0\xd0\xd9\x7f~t`B\xfc\xe5\xf3\x87\xf7U\xea\xc1\xd1\xe1\xa1\x99\xfa\xea\xc3'#\xef\xd1\xfe\xf3\x81\x99\xfa\xfa\xf4\xec\xe4\xcb\xdb\xf3\n\xe0\xf0\xb0_\x03\x08\">c \xfe\xac\xc5\x9e\x04\x81J8 \x02#m\x96/c\x16\xe1\x8f\x11\xfb\xdb\xc9\xbb\xb7\xa7w\x9e@\xf7 ,t^\xec\xef\xd6:\x01\x945e\x0fS?\xe4\xc9\xbd\x1b:{\x07{\x03B\xe7A\xc437t\x0ev\x07\x07\x84.y\xecB\x17\x0e\xa4\x0d(7t\x06\x07\x03Bc\xee'\xa9\x1b:\x87/\x9e\x1f\x11\x9a\n\xc8\xb0\x7f\xf4b\x97P4\x15\x9b\xf1%d\xdb\x1d\x1c\x1c\x12:\x8d\"\xc8\xf7\xe29\x0c\x83\x1ff\xb2\x8c\x17\x84.Er%\xdc\xd0y\xbe\x7f\xb0Kh$\xab\x1a\x1c\xf6\x0f\xa0\xc4?\xa1\xf4}\xa8+\xcd\x12(\xfd\x05Y\x19m\x87 \x7f\x0b\xe3\xe4;\x96\xfeV\xe6\xbc-\xd2\x00\x07#g\x80\x9e\xa01a5\x90\x1b\x19^\xc3p*h\xf8F\x0b\xc5\xcb\xd8\"+\xfabo\xff\xf9\xb79\x05.WB\x88~g\x85\x81\x8f~\xfa>\xca\x16~x\xc52j\xc6\xcac\x85\xefd\xd4\xccQ\xc9\"<(n\xe2>\xd6O\x92G\xc2\xc5\x97R\xe3\x89;\x16\x13\xb3\x10i\xb2uM\x89\xf4F\xb9\x00\xb4,\xa4J\xd2\x07V6\x0c;l@\x92\x0e\x13\x95\xbb\xe2Z\x8f\xde\x8b+\x9e\xf97\xe2\x9f\"i\xe4\xdd\xfa\xf21\xf2{|^\xd8{\x7f\xfa\xf3\xc9\xf9\x9b\xbf\x9f^\xbey\x7f\xf6\xe6\xfd\x9b\xf3\xdf\x18c\x83\x9dZ\x0f\xc5]&\xc2Ys\xe3\xf4-uFT\x13\xe9#\xb7\xac\xc3\xf08\x91\xcd\x17\xe3\x88\xf9\xe3p2a\x99\xe1AK\xacV\x14\x08\xdc\xb7\x11E@\x0bI\x14\xe5\"\xf3\xcbe\xcd\xb7\x1f\xf3V\x0e\xf1\xb6\x1e\x12\x07\xec\xf0`\xf7\xf9\x11\xf5\xd8C\xdf\xb5..\xfa\x16}\x0e\xbf\xdc\xa2/\xe0wj\xd1#\xf8\xcd,:@\x80\xd0\xa2\x83\x01|\xdcXt\xb0\x0b\x1fs\x8b\x0e\xf6\xe0#\xb1\xe8.f\x16\x16\xdd\xdbw\x9f]\\X\xcf\xe8\x11\xc2\\\\\x00\x10B\xbd\xb7\xe8\xe0\x10\x8b\xba\xb4\xe8\x8b\xdd=L\x7f\x8b\x9f\x98\xfe\xd1Z\xd1\x9c\x8d\xd1@\xeao\x16\xb5\xee\xd1\xb2\xd1o\xf2\xef\xe9g\x8bZh-\xf3\x03\xfeyoQ\x0b>\xf07\x82\x0f\xfc\xf3A\x9aM\x06\x08\xf9\xf7\xec\xcc\x9a\xd0\x98\xed\xfc>\xeev&\xa3q\xbf{t\x89\x16 ]\xf5I p\xd1\x93\xa1\x1f\xc9\xe8\x87\x9dj\xa9\xcd\xca#w\x1a\xaa\xf97_Z\x0c\x0eI/\x8b\xbe\xc4\xb1~\xc9C\xc51\xdb=8 !\xb3\xee,\xea\xb3\xdd\xea\xa5\xc11;<8\xd8\xc3\xa4\x1c\x92\xf6+5\x7fH\xdc\xdf=\xda?:|\xbe{t`\x1e\xb2G\x0ez\xc3j\xa1q\xe5\xd6\xad\x0f\x0b\xbb|\xc6\xd1Z\xf2{mN\xef\n\xf5O\x93V\xb6\xe0a\xab\x7fw\xa6\xfe\xb3\xc80d\xd6\x17\xa8\xef\x85b\x1e\xad\x8b\x0b\xab\x13v\x12\xb5\x14\x1d\xaboQ\xbf[*Yt\xb2J\xa8F\x1f\xd4\xa8\xe0\x92\xca\xddL\xa8\x8f\xa2\xf0\xa5\xe2\x8b\x1f\xce@\x08{\xc7\xb3Eo\xc9\xef\x9c\x01\x15*\xae(v\xa5\x1eL/\x94t\xe3\x8d\x04\x15\xf50\x1a\x87\x91U\\\xfb\xb1r\xe0\x0c\xf5T\xa1\nd\x1eD\xb7o\xc5\x8d\x80}\xaa$s\x8e\xa8\xe2 ^\x8bVaUrv\x1f\x88w<\xde\xbe\xb0)\x07\x16k\xa8\xdc\x8b\xe3\x1bE9X\x0f+E\x91\x1eVT\xaa\x9b:\xc9\xb65/\x15N\xd9\x80pT7\xa5\x81v\xcb\x9a\x8d\xf9\x84P\xab\xdd\xb6@hR\x1a\xb8}\xbaK\xf0\xd4\xd5\xca\xf8\x95\x8b\x85\xa9Q\x9f\xd5\xbc\x04~(~\xf5g\xd9\x82\x89\xea\xbb(^\xf45\x02|\x12\xf3\x14g\x1e>\xaa|a\xf4*Z\xc6\\\x8a\xbf\xa2\x16\xac\x80\xbc\x08\x10%\x15gAt+]\x92\x97\xc1\n\xe8\xcf<\xca\xfc\xf0\ny\xb1g\xd63|'c\xc4\x8dv]\x8dBQ\xe2\x89\xbf\xe5Q&\xa0AF\xa8*K\xf9\x87l\xf2\x15\xdd*\xbdG&\xa3\xeaS\x9a\xc7\x90\xeba\x19\x07\xbe\xe7\xcb\xfb!f\x8cj9\x81o\x14\x84\x84\x17wO\xc1\x9f\xde\x99\xf0\x19\xbfbUm\xd2\xd29\xb3,\x19\x9c\xe5\xd2\xdf\xb7H\xd9x\"\xa3\xf2T\xcc^W\xd1\x90\xb5Z\xde\x8b\xca\xa7\xa1\\\x0b\x11\xab\xa8B\xcb\xa2\x19:\xba\xa5\x9cu\x074\x85Z\x02\xe3\x16\xef8\x18\x12|\x90\xe4p\xf3M\x12\xec\x11>!#'\x04LA\x1c\xf6\xa1\x98\x80\xb8f\x14\xe5 \x95\xf9\x0c\x7f\xb4\xc8i\xdb\x90\xbd-\xed\xd6\xa4\x1d\x16\x11\x9avX\xa9\xb4\x9dV-_\x9a\xd2\x00d\xea\xd4\x1a\xaei\xd0\x8f\x19\xa9\xf2\\\x19\x9c\xc1\xde\xae|\xc4{\x04?\x15\xc8}\x0d\xe4\x18\xcf\xa9\x8e\xd9`\xf7\xb0(\x06\x87\x03\x1d>8\xd8=:\xb0m\xd8\xbe\xe4\xc1\x06\xec^m,\xef\xe0\xf9\xde\xfe\xbe\x86\x03r\xbf'-\xea\x06E\x01\xa1\xc3\xb2\xc8\xc1`\x7f00\x1eu\xdc\x185C+T6\xdb\x1e\xec\xc9:\x06x\x83]e\x98:5g\xda7\xf2\xf1Nb\xdbm\xe8\xa7\xf69\x1c\x8e\x127\xb1\xed\xfd}Y\xc8\xd1@\xfd\xeaBw\xcb\x8f\x03<%\xb6\xed\xbd\x03\x19\xd3v\x0e^\xc8\xab\xecvD\x8a\xe2\xc6\xc9\x08\x96\x9d!\x8c\x1c=\x0d\x11U\xcd\xba\xad3t\xc2\x94)\xabwE\xc9K\x1c\xc4C\xdbN\x8e\xd9\xc1\xe1\xde\xe0\xc8\xb6\xb3\xce\xa0\xd4:@+\xb7\xf5\xbc Y\xbf\x04\xd8\xdd\xbem\x87\xc7\x0cFzo4\xe8\xef\xee\xff\xe8$],\x8dt\xc2.\x02tp\xac\xdd\xa4j\xd6]5\xbc;\xbf_\x84?\xb6v\xd0]\xab#H\xed\x04Y\x9d\xc7\xf8\xe4AH\xa9\xc7\x903\xf5K\x8c\xba\xba\\kw\x83\xd4<\xb3\xacg\xae\xf5\xec\x99%U\xdcjT\xcd\xb6\x9d.\xccA^.\x98\x8c\x14E,\x1b\x93U\xef\xf3\x9aJ}\xd6\xc9:\xcf\xb0h\x94U\x9fY\xe5\xabn\x85\xec\xc6&\x1c\x12\x9a2\xf5\\\xb0$\xc8\xb07\x960\xf2\xc3\x0f\x1d\x03\x80\xee\xf7AX)\xc3]N\xe8\x1c\xadEU;\xea\xcb\xee\xc0\xb6\xc3\x97\xcc\x88\xd27 u^\xb6\xdcX\x95\x95V<\x9f`}:\x93\xf4k\xce\xda\x03\xba\x80?K\x86C\x92\xd0\x1b\xa03\xd7\xec\xde\xc9\x19\xa0Q\x9f\x10\xdb\xce\xe5*h_99\xb1\xed}@\xce\xdc\xb6\x0f\xf7\xe4\xef\xc1\x0b\xf9\x8b\xf8\x9d+\xfc\xce\x15~\xe7\x1a\xbfs\x8d\xdf\xb9Bo\xf8\xd59wU\xb8\x04TE\x1d\xaa\xa2\x0e5\xc0\x91\xfaU\xe9{\xcfU\xba\xae\xfaP\xfen\x8a!\xb8 U[\xc5\xca\x81\xae\x89\xf2\xa4\x89H\xed\xcf\xa2\xe0(V\xc8\x97\x00%\x91\x8d_\"\x119\x1cy\x1d\xb6\xebz\x9d\x0e\xa2a\xfb\xde\x89q\x84\xbc\na\x0e\x86\xd7\xec\xda\xb6\xa7NLg4%t\xc6\xe2U\xa9\xbb\xfdM\xa5\x0e\x00\xbb\x8d\x82\xe7\xac\xdd\xa7K\xdbv\x16lQ\x14^\xf7\xa6;x\x99\xd8\xb6\xd5\x02\x02-\xc67\x9d\xc1\x84\xde0\xafzJ\x0b\xcdz\xb4=X\xd0\xd2\xb6\x1b\xcb*O6\x8bb1\n_\x1e\xd96\xac\xd9\xd1\x81\xcbG\xb0\x18\xfc\xd1\x81\xbb\xeb.F\xfb\xee\x9e\xdb\xbe.\n^\x14\xa82P\xa5\x0dVNF\xe7%\xe9\xa7\xa9a\xfb\xa5\xe1\xe0\xc8$S\xc3J\xa2\x13\xf5\x1d|C\x9cC{e5\x90q8\x81}8\nn\x84SZ\xd6xd\xea\xeb\x0b$\xad\x9bJ=\xe6\xf8,\x1c\x89\xba\x18\xe6\xaeQ\xf8R\xc0\x0f\x8e\xbda\xa0v\x01\xc7\xc9\x99\x0f\xb2tO\x9b6\xf80/\x8a\xbc\x17'b\x86\xc2\x964\xb3UKmz?S3\x8d`\x82\xab\xfcey\xb5\xc2\x91WD5\xd5Q\xdeC\xa72\xb6\x9d\xc3\x14&\"Uo\x8aGrt\xd6ba]\xeb\x84\x8c_\xa9okdQ\x03\x10K\x8e\x99(\x0fN\xc6\x08<\x81&(\xda\xf3\x19Rh\x83\xb2(\x9ep\xa8G\x95U\x81$1\x1b\xe2d46\x8c\\\xa4\x1b\xf04^;\x03k\x1f[\x1dlC\xe7\xd9\xcbV\xc6\xafZj\xc7MZ\xd2\x19\xab4ob=\xeb\xc4\x9dg\x96\xa4t\xcf\xc8\xb0V\xe98\x9e`\xbd+\x85-\xc9\xfa;\x13\xf3\x8d\xfdI%\x0b\xd0\x94\x06 \x0f\x94\x92\xb7\xca\x1fR@/|'X\x14\xea\xb3/\x95]=\x9a\xebAP\xa8Jc\x96\x0c\x13$%\x06\xe3|\xdc\xaf\xb3\xd6\x99\xcc\x8e\xd7\x9b\xac\x1c[y\xda\x84#\x9b\x03\x86\xabh\x90\xa3\x1c\xd9\x11E_\xe3\xa2p\xf2\x8a\xbe\x06,\x1c\xa7l>\xf6'k4?h\xa0\xf9\x80\xea\x84j2\x9ej\x1a\x8eH\xe0x\xec\x11\xd4\xd1d\\Qp\xa5z\x00\xe29ZIz\x92\xc8\xe7\x1d B.\xfe\xb4,BsM\xe5\xa9g\xdbf\x7ft\xe3p\x83\xf1\xbe\xbdpW\x16\xee\xb6,\x1awXY<\xd1\xbb\xc8L\xaf\xeb\xb8(\xac\x87\x95\x85l\xbb\x8a\xa3>b\xbf\xa3Q\xddV\xa8\xde\xd1e\xb8\xce\xfa=\xce\x8d~\xd8(\x11\x10&\xc8S\xa8\x97\xaf\xa3\x1eL\xadd&\xcbW\xe1\xc9q4L`jq[\xb7,)\x05\xc3\xbeiQi\xee\xcf<\x06\x95)\xcf\xacg\xc0\x84\x84c\x9f\xe5\xe3d}\xba\x9b\xb6x\x1f\xb7vI\xeb|\xdc\xaa\x07\xd5\x80\x9as\xa8\xaa\xc6\x99)\xf7\xdf\x8eSo\xc5\x08\x0f'\x80\xc5s\xad\x8d4`\x01!\xb7\xac\x8cW\x95\x05\x1d\x96nL\x86\xa7'\xc3z\xb0:A\xc7\xaaO\xc7\x96\xc9\xb0ZV\xa7*G/\xd9\x06r\xa9\xc9I\xad\x9f#g\xedb\xc2\xb6\xdb\x01R\xc0\x11\xf2[\xddA\x85\x0c\xee\xe9\xbf\x0d9`zS\x83k\x93x\x10n\xe0\x81\xcf\xc2q\xb26\xa5\xfev\xae\x0d_\x1aj\xae\xad\x9c[\x83[\xf3\x15\xb7\xa6\xed\xe7B2L\x07\xa2\x1a\x07|\x01T\xdb:\x8f\x04d\xac:\x1b\x96\x96s6\xb6:\xbccM\xfe\xa59\xab=A\x91\x9d\xc1\x07(y\xfdq\xca\x17mDV\xcf\xa8\xda\xc1\x87\x92\xd8VwGUJ\x8d\xf0\xe6\xa1\xe4\x1b8\x88K\xd7~8kE\xf3\x16P]Y|\x16\xb5\xa0M-\xab\x93\x93\x95A\xe7l\xfb\x1aOop\xde3\x9a\x02;\xb1\x95(\xda\xb6\xe31\xf4\x99(\xbe|z\xe3Xx\xfb\x83)\xe3\xfeDrg\x951\x16\x0c\x92J\xb8o\x83p\xff\x9f\xbb\x03\x8bP\x8f\xade\xb5\xdaV\xc7s\x9b\xae\x8d\xf0\xe5\x9d\x96\x98\x06/\xc8\xc8j\x03\xac\xae\xe6\x05q\x91\x93\xf2:\xd6KKO\x97gNB\xc5\x13\x95\xac\xd0\x0fN\xfd\xb2\x8c\x8d'\xd4\xd7\xeaV\x9f@\xb8\x85\x15 OO\xfc\x8d\xf3\x92\xccdDP\x05+\x1a\xe3u8\x19f\x1b\x97\x13\xa5\xe1\x87\xc4\x90v>m\xac\x1a}M'\x0f\xaa7\xb5\x17\x80=\xd7\xc7\x11Y\xc9\xfd\x08B\xe4}EXFE\xc4\xb6\xd5K\xbb\xa8\"\x19\xd9\xe3\xef\xe3\xa4\\%6\xe4\xaaO\x0e\x8a\xf3\xd0\xd4\xea\xc5R\xe3\x95\xa1h\xb82\x84\xdc\xc98\x9a\xc8\x02Vk\xca7\x0d\xa7V8Zs'cYQ<\xac\xc80,/\xd7`\xc2Bm\xd4KT\xf6\x0f\x0d\xca\x91\xb0p\x8dr\xc2-\xa2\xec\xf3\xad\xd1g\xad\x01\xa5\x8e\x98\xd1\xa5\xeb+%\xa89\x82\xb8M\xd1x\xb1\xdbqD\x17\xcf\xc8_\xbe\x1c\xf4 \x95w\xbc:\xce\x1e\xf4w\xf7\x08YUz\xdc\x15\x1f\xb1{pH\xe8\xf5z\xc4%\xeb\x0f/\x8fw\x0f\x0e\x87\x97\x9d\x0e\xb9\x1b_N\xd8\xd4\xb9$\xa3\x81\xdb\xa7\xd7:44\xcf\xa8\xd1\xb9\x8aTw\x8a\xf3LS\xef\xb9\x1f\x08\xa4\xf4Y\xf9)Uf\xa8\xa1\xc7\xc1\xb2Re\x8ak\x9b\x8e\xbf\xf2$D\xfd\xcc\xea\xdb\xcc\x18\x88+\xee\xdd\xe3M3|T\x8a)\x7f\xc0\xd6\x91\xe1\x8f\xa9{\xa3L\x05e\xe5\xa7Y\xd8\xf7*\xa4dR\xbf\xa8\x11R\xe9\x1e\xe9V\x02\x07S2B22\x8eR\x1f\x06\x8d\xf5+\xc5 \xf3\xfbs\xc6\x93\xcc\x8cPJa}=\xa2I\x9a\x9d\xf3\xe9\x9b\xf0-d\xec\xaa.j\x9f\")\x1bO6\xae\x00$w!\x9f>\x8br\"\xe84\x9f\xcfE\xe2\n9e\xe65\x02\xd5\x8dtE\xd9^\nmq\xe5\xd57\x95\xbc\x82\x91\xda\x15U\xe3M\x83\xd2\x92?`\xbe\x13\x12*\x05\x0bd\xde\xea\x07\xf5ZC]6w\xedp\x9a<\x88\n\x07\x80')\x03J\xa0C?\x96\xf2\xe8\x03\xdf\xeb\x9e\xb0\x07`+6v\xc6\x8a9.\xe5\x11\xe5\xd9\xd6\xb6\xa1\x19\x96f\xc3\xa1\xeah\xde\xfaO(\xa55\xf3\x13\xe1e\xfe\x8d\xb0\x08\x1d\xb4+{ *O\x1d\xa6\xae\xbc\xf82\x06\xcc\xee\xce\xef\x0e\xec/\x93\x0e\xb9\xe8\xe9\xaf\x1fv\xe4\x0dK8\xeeO@\xd2\xc4\n\xfc \xe8\xce\xa3d)feA\xd0\xb8l!Z\x1b\xed\x8b\x18z\xd9y\x13f\x0e^\xfc\x01%\xf0\xcd\xb8]\x19\x07\xfd\x88T\xf951\x0fKT\x83\xa2k\xd1\x98\x85G*\xda\x1504\x91\x8a\x9e\xb7\x10\xde5\xe0\xe1O\x89\xe0\xd7)\xf3\x8fw\xb1p\xdf\xb6w\xe5\xcfGYG\xaa\x0dg?Q\xc5\x8a\x9e\x9f\xfc\xbcm\xe6\x86\xbb\x9b\xe3\x7f~\xf2\xf3#\xc3\x9f\xddF\xe5\xa8\xa5hq\x1e\x1b\x1e\xb1\x10\x86G\xe9\x94$\xa4(\xd6\x87:\xe3W\xad\x05\x0fg\x81h9\xb8\xe2\xcab\x88nt\xadf\x8b\xd0T\x9ffg\xfc\n(@\xa2f\xf0Y\xb6\x10\x89h\xf9i\x8b\xb7\xe2D\xdc\xf8Q\x9e\x06\xf7\xad\x99\xf0\x02\x9e\x88YK\xba\xb9\x06Q\x088\xf7\x04\xf8\xf5\xaa\xf6g\x84\xced+\xa3-\xad\x94\xc6\xceZN*\xbc(\x9c=\xd9L|G\x1e\xb1\x99P2\xf7\xabh\x19G\xa1\x08\xa1\x82\xca\x89\x16Vd\x94\xee\xa7\xad%\x0fd\xad\xc0\x91F ~\xc9~\x8e\x93 \x8bV\x86\xe5\x82\x1f\x9c\xa6\xab7T\xe18\x96\x0f\xb1RV'90\xc741$\xc7tC\xf6;\x92Jti\xed\xa9\x15!\xc0\xdb\x1c3n\xdb\xbc\xd4\x17S\xa3$\xeeb\xe1\x01\xbe\xc9\xfb\xdd\xbf|\xfe\xf0\xbe\x05y\xb9\x97\x89\xc4R\xe2g \x876\xd5k\x0d\xc6+\xcd\x12\xc1\x97-/\n3\xee\x87i+\x8c\xc2n\x9c\xf8\xa1\\ e\x11)\x94\xa1\x94\x0b;,]m\x08\xe3\x86\x89!\xd4\x9b\xc5\x93\xab\xf2\x89\x01\x1a\xf2\xc7:=\xf4=\xd7\xc2\xa7\x18\xad%\x8fc?\xbcJ\x878u\xea\xa1\xfa\xac%\xed\xab\xe9\x93\x17?m\x99\x8b\xd6\"\xb4\xbc\xa7\xab\x9f\x9an^\xcaq\xbc\x8f\xd3\xa8\x9aQN\x8a\x02UoY8\xe6\x13\x1a\xc1W\xbboP\xe0WN]Q)\xa0\x9e\xecVN\xe3M{t\x91\x14\xffs\xd6\xa71s\"\xe9\xcf\xde`~q\xba\x95!\x92\xaau\xf9q<\xcc\xa1uk\x85\x8d\xf3\x89\x9e\x98P\xa4\x19\x12\xc0\x84\xdf\xa7-\x9e\x08\xbc\xcb\xaa\x88\x8a\x1f\xa6\xfeL\xb4\xa0\xdf\x16\xa1\x1b\xc7\x1d\x91m7]\x9a\xccu\x1d\xf8\xbby\x9bD\x1a-(m/\x0cKj(\x86F\xac\xba)\xd6\xca\xd3\xe8\xbc\xe6aEh\xc3!\x15\"\x83\x85\xb6q6\xc6\xd87\xc7\xd8\xdf\x18C\x89}\xfe8\x9f\x94\x87,*\xaa\x0c\x0b\xc5\x1d\xa5\xfa@\x14HK\xbb\xc4\x89\x08\xdd\xe5J\xb6\x84\x17\x85\xda\xf0\x8d\xed]>;-\x83\xb4b\x02\xe4\x03\xd4\x92a\xa8m\xaab\xa6\xb1\x1b\xa6\xc9\"\x84Z\xa5\xe9g\x0b_o6\xdb\x84\xcahD\x1fL\xe3Qn\xbbOE\x98/E\x19\xbaM\xfcL\x7fK\xebQ\xfe\x8a\xb8\xd98\x9a0_\xfb\xd8\x0c\x8d\x97%\x86\xf6\xfe\x1f\x95\xf0\"\x95\xbb\xb2\x926\x19\x94\xa6\xea\x13!\xa3*\xd0\xe9\xb8(Je#\xc7\x8c\xa4\xea\x96\xe5\xb1b\x80\x8f\xa9r\xc8\xd3r\x8b\xb7`P[h\xf0\x08V\xb9\xa6a\x96\xd68\xec\xb0Am\"\x8c\xb1\x16\x9b\x8ca\xd5\xcbs\xbd\x91j\x01@\x1e\xa1?\xdeD\xb4`\x16\x0de\xa6\xe1\xd2\x89\xc8\x10\xc9pT:Y\xa8\xd7\x88g\xd7k\x8d0\x8ak\xae\xaf\xd31k\x94V4Qu6\"\xb3\xe8\xe1\xe9,\xab\xdb\x85\x1f\x08\x075\x7f#\xa5 \x1c\xc9\xab\x8bH^X.\x80\xd4Hk\xba\xd0\x91?\xa4\x12\xf0\xe3]\xa7I\xa7\xa3\x06Z3\xdfC\x14\x0b\xa3!1\xa3;\x9do\xe8\x95:/\xc6\xd3\xd6P6-\x81\xe9\xaf\x8a9\x0e\x15\x9f\x04\xa8\xef\xf9\xd2\x17\xc4L\xbb\xc4\x07\xb6\xa5\x9a\xca7\xc6c\x1bcx\xb5*\x9d\x83\xea\x9f\xcdX\x1c\x02O\xb9\x7f(\xad\xcff\xedF\x14\x0d;\x03\xf2H\xe2.\xba\x9f\xe9\xb0=\xda\x7f\xbc\x1a\xd4\x82&\xc6F\xf2^\xb2\xf2\x03\\.\xd5\xc6 Rv\xf6r\x80\xb8\xa3\xe3*5\xf5\x8b\xd0\xa2Yw`\x96\xf3z\xfd\xa8]^\x18\xfaL\xf4x\xe8-\xa2\x84r6\x9e\xd0\x94\xc9\x8b\x8e\xaet\xbc\\G\xcb\xba\xf1\xcdR\x18\x90\xf9\xb1)\xf2\x13\xb8\x1b\xfd=a\x9cH\xdd\xc7\xa7\x96L\xa2\x15\x98\x1b\x17HI*\xd7S\xa9\xe2\xb9\xa6\x06\x8f!\xef\xbc\xd5\xeb\xa5<\x95/sk\xa8A\xe8\xfe\x01\x93\xa6\x82\xaf\x9cG\x1b\xd7\x19\x10\x82vJS\x06\x04\xd4\xa4W\xe7\xe8\x9b\x05\xe4\xbe5\xbcd\x19\xe1\xca*>\xbery\xb2\xff\xa5\xf7.\xa5SM\xcf\x90\xf2\xec)\x1d'\xaaJ\xd3sM\x8c\xaa\x9f,\x9c\xeaM\x89\xb1Po@\xb2\x9d/3\xa2\xd6\x15\xc1A\x9c\xf2\x999Jxo\xd5J\xc5\x9f\xb9\x08=\xd1\x12a\x96\xdc[\xa6\xe2\x81\xd1\xe3L\x91\n\x85!\xed\x14'-\xe3W,\xa2\x1a\x15\x98OE\xef\xda\x0fg\xcc\xd2\x85ZTw\x89qZc\xa0\xde\x9a\x8f\xe3\xa4rh{@\xb9BOT\xa9v\x9e\"Gu\xc7o\xf5\xcb\xb4&\xc1\x95+\xc1@\xee\xa0\x16\xa1\x87\xb8\xb5=M\xaa\xc8\xc8\xf1\x01;\xbe\x01\xd2\xdd\xdb\xc3M\xdb\xe1\x90!dV\xbbm}S>\x00\xb5hm\xef\xf2\xc9\xc3\xf7\x10{E\xebQ\xeb<\x02.\\\x03\x94J\xa6#'\xd9\x101\xbeo+R;r\x1e\x96r\x84\x90\x17\xa0\x86\x88P\xbe4\xbc\x11\xc9\x94g\xfe\x12\x86\xdd\"\x95N\xf9P\xb5\xb4}\x85\x9b\xa7\x1c1\xdbv\xf8\xa8\x94\xaf\x94\xf0\xa7\x84\x00%t\xb4\xc4\x9d\x17\xf0\xa5\x9c\xcf%O\xaeSK\xbd\x0c\xaau \xaf\xdb\x8d\xe5\xad\xe5\xd9R\xb4\x08\xf9\x9a(\xbbVM\x9a{\x8b\x9aDCq2\xcd\xb9Ac\x0dO\x0f\xd7\xf0\xf1\xf1\xce\xb5\xa0\xad\xe5\xac\xad=\x9f\x07\xd1-\xac]\xc0\xe6(\xa95n\x95\xd8v{\xd6P\x12t\xf3\x89\xae\x81\xcc\x9aH\xd97i\x92}\x93&\xd9\x17\xcb]\x97|\x93\xca\x11\xa6\xd2\x1eL\xdcu\xc9?$*\xa9\x94\x91\xc3I'q\xe5\x15u\xa8\xd2\xac\xb6\x85q\xf5\xc8\xa6w\x8e \xe2\xe2\xb3<,\x8f\x0c\x8c)\xb5\x9eu\xc2\x0e\xaa\xb5\x98\x17\xd2\xef\x0c\xaa\x83t\xe6\x05\xd0\x99\xf0\xdb\xe9L\xe3\xc6\xd8Hk\xc2\x96L6\xe9McE5\x84\xa9!\x19\xae\x93\x10\xd7 p\xc6\xed{'$C\xf2t!\xd5mh\xb9\xab\xa2`U\"\x7f\xbd\x81a4\x13rG\xd5X\xc2\xb3V x\x9a\xe11\x9dq:P\x91\xfa\xc7\xb0\xda\x1c\xf03-\xf4\x97v\xb1k\x96X\xa6\xf4\x92~`\x03\xfa\x19\x88\xffG\xb6F\xc8\xf5\x99\xb4\xdc}\x95\xfb\n+\x8aEhQ\x81\xeeG+\xbdJ\xd5.\x15\xc2]H}\xab\xfd\x07C\x9c\x05\xccc\xfbr\xab\x04\xb2\x13\xd2\xc8\xb6\xcd}\xde\xf9,\xd9\x00s\x17\x1d}`\x03\xb7\xc6\xf6\x02\xb3\xf6\x81\xf5\xdd\xfa\x1ei\xdb\xce\x07\x06l\x19\x05v\xee\x03\xca\xa3\xc3\xb7ho\xeb\x1d\xaa\x87W\x15\x8dd=\x1e\xe3\xff\xdd\xba\\O\x0d\x9b\x87J#\x9f\x8b\xc2\x97\x07\x99\x1fl{\xbf\x8d\x1du\xa6\xe8 !,\x8a]\\Sh\x0e\x88^\x1a\x98f\x9eR\xcb\xc6\x8f\xa08`*/IQl=1\xaeT$\x15\xbf\x19W\xfc\xe6\x8c=\xac*]\xc9\x9a\x8f\xa3\x85\x9c\x8d{\xf9s#\x7f\xa6\x80\x03\xb7\xff~\xfet\x86&o\x9e\xe6O\xbd!\x1e\xc2M\x8b\xa2Q\x8cC\xe1\xff\xdf\xce\xa5>\xc1\xdc\xc9\x87\xae\x8ag\xc4\x97k\x9ez\x0d\xe6\x15E\xfb\xcaI\xa4&7\xd7 )3'20\x99\x89\xf6\x19\xea\x19\xefj\xb5z\xc9\xcf\x95|\x1ec\xcc'\xea\xc5\xd7\x13\x83\xb5t<2$\x8d`\x1bb+>\xf3\xf4\xc8Us\xa9u\xd6B\xed\xce\xbcu\xbb\xf03\xe9\xe8\xb5\x1aMS\xeeo\xa1\xe3Nd9\xae\xc5}\x17\x8f6Z\xa9\x88\xb94$\\\xf2\x1fhiQ\x9f\xaeX\x84Nm\xdby\xe5\x08e\x03\xea^\xea\xaf!\x06\x03J\xde3\x89\x88\x04\x90\xb0/\xd11\x92/\x0d%n\xdf3ML*\xfd\xf3\xdb\xf2\xc1\x08\x12\xa3\xbc\xa2D1m\xf7\x87\xfa$\x13\xb1 \x11|\x06dW_\xab\x95\xe7>1\xf7\x93a\x8b\xb7\xbc(\x88B\xdcY\xfd4\x1534\x15\xf4\xafWT\xef\xbed\xef\xa1\x16T\xf9\xc7\x03\x95kqo\x9a\x810\x9b\x86GQ\xb2\xfa\xd6!zj\x1c9\xdf;|\xc0/\xb7\xfb\xc4\x9d\x8e\x1c=\x98}\xc5?\xfa\xa1\x17-c\xe9`\xedn\xcbh@\xebpk*\x07d\xd8\x8a\x92\xd6<\x92\xae\x84[\xd3\xfb\x16\xc7S\xe8\x8cO\xf3\x00\x0f\xd2\xc42\xce\xee\xf1\xb0\x08\xf7\xaar\x15\xb1\x01\xf5X\x02\xf8h`{\x83\xac\x84]\xfc\x86\xc5D\x94\xfc\xb6\x0f\xd4\x1c\x8f7\xa7\xa3\n;\xdc\x1bV r\xd3\xa2\xa8\x0d\xdaM\xd3\x88\x19\xd2\xdeS\xab\xcf\x14\xf7\x9a\xba\x80\x94\xec\x11q\xaf\x86\x0eOH{\x9a\xa3\x9b\xda\xf6\xb6y\xbf-\xe5\xc0\x1aFj9P\xaf\xbdj\x1b\x9e\x11z\xbb\x82m\x85N\xc9\xda\xce\xb2nUc\xcdh\x1b\xbe)5\x96\xa2\xdafn\x9av\x18\x98j\xd4\xd4p\xe6O\x8d'\xe1\xech\x8f\xc2&*U\x13\xf5\x8a\x93\xef\x7f\xe7\xd5\x9e\xc3\xd9`\xf7\x00\x00\xfb\xd4g\x0f\xab\xd5\xf7\xecA>\xa1\x8d\x0d\xa9\xd3K\x98\xbb\xb9\xdc\x85\x14Fd\x84>\xdd\x03\xd3\xd2\xbd\x81\xf4\x1d\xc5 -\xab\x89\xb9\xd7\x13\xe3\x8d\xca\xa9q\x9b\x84u\x1fh\xcab\x84J/s\xc58\x96\xd4\x17\xe8..L\xe5\x85\x95\xb6\xa6y\xd6\x9aGy8k=\xa3\xcf,\xb5\xc6\xe5\x9amy\xd1r\xc9[S\x91\xdd\n\xa1\xe4\x18/\n\x02!\xf9C@C_\x80\x88\xa5\xf8\xb5\x94\x050\x15Hs\xe6\xdftxc\xdb\x0efj>\xbc\xc9\x88d\xbbqE'\xb5\x15\x1d\x99\xdb\xa3\\\xd0\x03} \x13\x97\n\xf7zL\xaa\x02\x9b\xa7\xb2\xc6\x01\x07\xfa\xc0H2`\xb8c\xcf\x8bB\x9e1=\x8d F]k\xed\x9a\x19\xa4\xc5\x1b\xc1\xaa\xf4\xe9\x0d\x8diNg\xca\x1c\xa4\x9b\x8e\x94;\x12H\x95\x0cV\x0d\x80\xb8*=7\xeb\xc1\xa9~\x1a\xd7F\xce\xe2\xdb\xba@\xdc\x05k\x0fV\xdfqZ\xb0\x86\x1a\x16\x0121%\xa3\x8f\xac\xddw\x9d\xc0|\x1e_\xd1\x8a\xea\x95\xc4@\xae\xe1\x1c\xfe\xc4,\xa33\xd6GC\x01C\\\xcb\xfb\x95\xb1\x91\xc7h\x01\xec\xf7%\x05\xc0\x83\x14^\x11\x00\xd8\xbfp\xd5\x97\xa7\\\xf88\xd6X6\x96\x85k\x98\xe3y\xe2\xfe\xde\xd6:\xd7\xf9\x1e<\xab\xe4\xe8A:\x18\x05\x0cs\xf2\xd1\x9e\xbb+W\x92<\xf6\x95\xf4\xdb[DK$\xe0K\xdc\x1a\x81\\\xfbs\xbf\xbc\xba\x95&\xa1\x1c\x9f\xed\xbf8fN\xca8\xb1\xed\x14\xf5\xcd\xd2\xee\xfe\x0b\xb7; /Y\xc9\xfc\xa12\xff\xa8\xdc+\xca\x9d\xd8\xdc4n\xfdY\xb6\x90UK~Bvz\xd8\xf23}\xb60\x15\xad@\xa4\xa94\x1f\x15\xc1\xde\xeb\xe6\xa3\xf5\x86\x87\x0d\xa5\x9a\xadw\x9d\x98e\x1d\xbf\x8b3\xd8G\x97$K\x87\x13<\x01{z\x0c\xd5 \x18\xe6@\xb9^\x0e\xe8\xf7\xe4m/\x1c\xae\xf6O.5\xc2\xf4\\>\x94\xf7#\xf5\xab\x0f\xfa\x14>\x0d\x9dv^\xdf\xa2\x8fcb\xdbxc\xc27nL\x9en)\xde\xdb\xe4\xf5\xb3\xe8\x971z\x9e6\xa3\x08\x85\xae\x90Y\xa7S\xa2\xc4Z\x1b\x1e\xf6\x10\xd3\xb6]-x\xa3Ag\xe6\xce\x88\x8b\x08i\xdb^\xed\x1a\x02\xdf\xc2+\xef#\xa8\x9a0\x82a\x1f9sI\x82\x1f/\x92\xb8s\x84\x1cl\x85\x9c\x01Mw\x015g\xa3\xb5\x8a[\x16q\xb7f\xdb\x9e\xa4\xeb\x96{7\xa0\x17\x12\x87\xda5\x919\xfbC\xf2\x0dS\x81\x9a\xf2\xd4\x94\xaf\x06\xa6\xd7H$][\xd9\x1bD\xd1\xa3\x7f\xe1\xe8\xe9\x11\xcaS\xdf\xfd\x12\x16\xad\x1f$=]\x17\x92\xad\xbd#4\x07\x0cX\xf3\x03\xfav1\xfb\xd8'\xf4\x91v\xd7\xc9\x9aa\xce\xa2~!k4\xd3l\xa4\x146\x16NHF\xaa\xe6\x08+|\xef\x08\xb9O\x0dp3\xaf\xf7\x8c\x18\xaav\x8c\x99\xdb\xbbm\xbfq\x04\x19=\xb2\x01i\xed*\xc34\x9e\x1f^\x05\xa2\xf5g\x1e\x01\xa8\x1adt1\xbd\xa5\xcdd\xf8\x1d\x1b\\s\xe9O\xa0\x8a\xde\xdf\x10e\xf6a\xe8\xd3\xa7\xa6\xf1_D\x99\x90%\x1b(\xf3d]\x92[E}\xe0T\xf3\xa0\x9bK\xa3O\xeaUI\xc7\x90\xa8/\x9c\x96\x98\xb6\x91e\xd1\\\xfd\x1a\x96\x95\xa8Q\x8a2\xe9\xf1\xee\xc1\xa1m\xdf\x8d\xd3 \xa9h\xc2\xf58\x9d\xd4ZQ\xc2;\xc0\xd9\xe3MP\xc0R2\xdau\x07\x83\xe7H\x1f\xf7\xdd\x17\x07\xf8\xf1\xc2\xed\x93\x97}\xb9\x11D\x8cS\x9f\xf5\x87\xd1\xcb\xfe0\xeav\x89\xc3\xd9\xcd75\xf4%\xeb\x8f|\xe6\xf8\xc7\xc7\xfb\xa4\xc3\xdd:O\xbd\x10w|&<\x7f\xc9\x83\xba:V\xd9\xfe[\xc7\xaf\x8f\xa2\\/\n\xff\xe4s\x18\x91z<\x16\xe5\x95\x1e\x1apL\x1a\x96X\xaa\x96X\x88\xeft6\x96X=\xd3\xbfw\x89\xcd\xa2|\xfa\xe4\x12\xabU\xff=Z\x97\xab\xac\xbc\xf3\x97\x0f~\xc6\xb2\xafEai\xab\xc3\xd6D\xb6\x80\x909{\x14l\x8c`\x93\xeaE\xf4\\\x1e\x11*5\xeaY\x95[\x9a1j*cS\x99\x1aiH\xf5~\xbeOg\xe3|\x82\x11\x12\x12\xfd\x04\xa9(\xf20\xc7o-\xed\xaa\xadH\xb3[\x19\xbfj\xb5\x8f\xad\x0e\x96\xd7\xb1^Z\x06\x9ak,\x9ac\x9b\xd6p\xc8z\x14\x87t\x81\xcf\x1aq\xe9Yg\xae\xb1\xa7\x11\x9f\xe6\x1b\x18\xa1\x86{\xe4<\x8a\x17\n\xea\xfb1B\x1d\xf7\xaa\xc3 U9^\xcd\xcc\x04rf\xb51\xaaN\x99\xa4R\x90~\x11\xf5\xf8\x9d\xbf\x17D\xa9\xc0K\xff\xd0\xd0\xf2\x92o\xd5\xda&\xab\xf0\xb1R=\xf8\xba\xa9a\xb6\xbe\xb9\xc9\x0d\xb1|\xbb#\xf5\x05\xd6\xdf\xee\x08\xf5\x96\x8ej\xad\x95\xc6+mc\x90\x1a/$\xfa\xdf\xa4\xd0f\xdb\x8e\xc1#=\x05N\xdb\xb5\x83\x9d\x97}\xe0(P\xf9\x8b\xa8S+\xfemZk\x9bLj\xa5\x9d\xf5tn\xc5 \x8f'tS\x17\xcb\xe4'\xf5Z<\x1eh\x95\x99\xf2}\x12\xf2\xb0\xe6uy\xed@\xd1\xbc\x05\x0e[\xb2\x10\xabQ\x0f\xfb\x1b\x1a\xab\x19\x90\xe8_R\xae\x93j\xd3\x8a\x1e wQ\xd3\xa2\xfe\xef\x8dc\xa2\xb5@\xb7\x0f\xe1J\x15\x8a\xc7\x91\x8a\xd6\x9e\xd0\x90\x8cN\xc6\xe1DJt\xc4\xfd(\xb7)I\xa4J\x11\xac\x1a\xed\x92Q_\x19\xc8\xd6/\xf9)m\xc3\x069\xce\xc71\xf0[\x80:\x83o\x03\xdb%\xb5\xe7\x02l\xcf\x10\x17\x88\xcb\xd7q&E9p\xc9\x93\xf5'\x01g%\xb3$;\xd2\x1d\xd0}}}b\xf4wc\xa1\xdb\xb6\xa7\x0c;\xd7\xc6\xdf\xa7\xf5\x05\x8a\n\xe9a\x14vO>\xbfz\xf3\xc6x\x99 \xdf\xdf\xf8a&\x928\x11\xa8\xa6\x90\xea+2\xbc\x8e.\x9f\xa2\xae+\xfb>\xce\xd3\x8e\xf6\x0f\x9f\x1a;RS\xa1^\x1f\xba*\xe5\xb8\xb2\x8f\xa9/\xf56di4\x1eV\"M\xa5UQ\x1b\xe4\x8a\xca~Q\xefT\xa5-\x11\xa9\xfe.\xf4\xb3\x9e\xcaZ\x89m\xcb\xb7\x08\xa2\xde\x81\xff\x97\xbc\x7fo\x8e#\xc7\x0eD\xf1\xf8\xfd\xbe\x86\xffa\xe5h\xaa\x13\x9d\xa8b\x95\xde\xca\x12T\x97-Q=\x9c\x91HYdO{\xa6\x98\xcdMV\xa1X\xd9\xca\x02\xaa3Q\x14\xd9\xcc\x9aX\xdb\xbb\xeb}?\xbc\x8f\xeb\xc7><~\xecz\xec]{\xd7\xaf\xb5E{\x1d\xb1\x94\x1c\xfe\x1a\xbc\x9f\xe4\x06\x0e\x90HdV\x16\xc5\xee\x19;6\xe2*B\xacL\x00\x89\xc7\xc1\xc1\xc19\x07\x07\xe7\xe4\xbdA\xb9\xb3\xf2\x95\xd9.\xd5\x9ag\x0cqGH\xa5,\xb8\x19\xa3\xc6\xfb\xa5\x94\x1bz\x85\xaf\x13u\x0d[\x1b\xdb\xe4\x1ef;\xda3\x9a\xf2 \xddl\xba\xac\x98\x86\x04o\xba\x0c;\x92t\xaf\x1d\x9e\n\xaa\xa29\x89\xb5P\xdb\x1e\x80!\xcfl.\x80\xb3U3#\xbb\xd7q\xd4u\x08\xb6d]0\x7f-\x15T\xea\xe3\x8a\x9b\x10\x12\xb9)v\xf2\x8a\x1d\xbbH\x1e\xaaF\x15\xc9\xab,\x15\xd1.D\xec\xc0\x1arp@\x9a\xc9\x99\xc2-\xffl\x81\xf3\xe3\x0f\xf9\xac\xad\x9c\xe4c\xae\x14\x80d9\xab~\xfe\xcd (\xbe\x19\x04\xe6\x9bAP|3\x08\xec\xab\xfc\x89\x9cR\x8df}\x97\x95\xd4\x0f\x81q\x01\xa7\xd3M\xb8\xa5<\x03\xf9,/\xabU\x1c\x84\x151\x99t\nU\x96&\xa4\x83\x051\x9e\x1a\xf2\x8d\x81>\x14=\n\xf7\xd6\xf3\x9c\x01-\xb6\x94\x92\xdb\xf7\xe5I\xa8\x01:\xc2\xa9\xedB+\\\xe0\x07\xb7\xefu\xaf\x1f\xd1\x16\xc2L.\xf0\xdd\xbb\x9d\xaf\xf0\x11D\x9f\xcc7\x9a3CY\x07ytF\x1d~1\xc0\x86\xc6\x0e\xf2H\x90y0\xc6<\xcc\xa3\x0e\xf1\x18,\xd0\x02\xdf\xbe\xf7\xe0\xce\xf5\xf6m\x08\xaeiw \x16\xe2\x99\xdd\xdc\xed\xfb\xd0\x08D{T\xc1&\xa1\x0d9\xde\xeb\x0f\x14Bt\xd6\x0e\xb4\xab\xeaU\x01(\xf3\xe0\x93:\xc0%4\xd4}p\xf3zc\x01Gf\x05\x82\xf2\xc2=\x81\xf6\xb6@\x1c'\xf7\x18\n\xe1[\xc61\xe7\x89\xcb\xd7o\xa2V\xd7\x84\xd6i\x89G\xa9b\x15Z\xa9\xe7F\xc4Yk\xb7\xdbkN\xce\xc4#\xccZ \x94`$\xf1\xd2\x96\x1b\xaa\x12V\x81\xb3T$~d\xbc\xd2\xcb\x0e\x17\x8e)\xf7\xc5\xfa\x11v\xfe\x9f\x7f\xf0\x8b\x0e\xf2B<\xe3\xa9\x9f\xb4\x84\x97\xdf\xd5\xb7\\E\x94\x03\xb6\x96\xe3J\xb5r\xb1\x00yV\xe4\xca\n\x07 \xb1\xf6\xca4O\xe4!\xc9\x1a\xb4\xad\x1c\xfc K\xf7\xd4\x13\xedix\xf2\x0c*\xce2\xd7z#\x12\xc1\x1c\x06q -\x9e\xd7\xf8\xb9v\xf3G\xd2\xad-'9\xfd\xf4#:\xe6 \x85\xc2\xd6;\xb9\xb5\xfa\x8b\x8d\xb1\x00w\x8b\xf6+\xb9\x89\xac\xb0\x04!Y\xdfO\xfa\xfb,\xdbO\xb2\xfd\xce\xfa\x11N\xc9\xa0\x13\xe0X2cC\xd2\xea\xf6\x18 ud\x82|\xc0=\x14\xebk\xab:H\x01NK\xef\x9ed\xa2\xcd\\Zrc\xee\xf8\xb2\xd9\x1c>\xec\xc0=\x93\x9c\x16\xb5n\xa2\xdeRZWm;`\xba+qnL*!\x83<{X8\xce\x9b,\x82#\xe6\x18\x85'\xc4\x9a\x8b\x96\x01\xb67\xf6n)`\xccI\xb77\x7fH*\x80n\xb8\xc3\xd6\xfca\x07\xf5\xe6\x9e\x87f\x84\x1b\x18\xe0t0l\xcd\x03\x1c\xab\x1f\xeb\xac\xc9M\x07\xc3\xa0\xa5\xb2\x91\n\x85\\\xc6<\x13\xe7$\xca\xcd\xc8[s\xafkw\x1a\x8f\x91\xe7\xacek\x8e7k\xa7\"Q\x11\x1aF\xd0\xcdj\x1f\xa0\x07v\xfb\xd0\xa2\xf7\xde&\xdf\xdf`\xb9\x96VQ\x8b\x84\x997\x93\x0d\"\xcf\xf9L\x96,\xc3N\xa3\\\xc3\x1dz\xf3G\xc4LJ-\x08=\x05Bo\x05\x08\xbd\x1c\x84\xd7\x18\xd05`hBB[\xb4\x84\xddX\xc7\x8e\x14\xd5\xb0\x94\xba\xaeI%\xb5\xa46p\xe4\xee\xeb`\x076h\x07;Zk\xed`\xc7(\xc6\x1d\xec\x14\x01\x15\x1c\xec\x98\xf8 P\\\x07\x06\xb0\x9f\xb7\xc3\xa9\xcc\xb3\x83\x1c8\xd8\xb1\xc3':\xe0\xfd\xd6\x9c\x06Y\x86\xd7\xc6\x1a;\xa8\x0b\xfcnY\x04\x85\xe0\x0bB+[\xca\xb1$k\x18OE \xe1:\x13\xb7\xa2\x86\x95\x18\xcf\x0f>\xd1\x8aB\x0e\xbeF\xd7t\xac0\xb8uAAR\xb6D >\x86\xe3\x06\x99o\xb8\xd3\xf6\x07\xc0\xf8*\xfftPGJ\xac\x88\x83\xda\xe1\x1dH\xa8B\x1f\xd00;\n\xa1\x04<\x11\xf9\x93e\x08e\x82`u\x16\x15\xcf\xa4J\xa4R\xcf\xb6\xe5T\xe1.P\x7fQ\xcc x\xf3-\xc2i\x14=0\xf3J\x84\x1d0\xc3\xee\xa2\x9e`\xe8\xa4~\xae-\xb0\xad\x1c\xfa\x95\xde\xed\x826j\x10Qz\xb5\x8b)\xd9]\xa8_+\xc6\xa9\x85I\xc4eD\x94Rt\x05!9[\xe4g$\xac\xd9,\xfb=\xaa\x17M\x98\xcd;\x96p'\x1c\x98\x80>Je \xe79D\x18\x10**\x10*\x9f\xdf\x15\x88\x05G[\x12\xad\xf2r\x1a\xbdR#\xf1h\x1f_\xcbx\xb5\xc0\x92\xe1\xbb\xde\xe2VA\xd49q6>z\xfcd\xf3\xe9\xc7\xdf\xda\xfa\xf6w\x9e=\xdf\xdey\xf1\xd3/w\xf7>\xf9\xee\xa7?\xf3\xbd\xef\x87\x87\xc3\x11\x1d\x1fM\xa2\xcf_\xc5S\xc6g_$\xa9\x98\x1f\xbf>9\xfd\xb2\xd3\xbdy\xeb\xf6\x9d\xbb\xf7\xee?\xf0\xd6\xc9>\xdbO\x9c%\xc6\xb0\xe6\x0e\xb2\nP\xee\xe039*\xdf,l\x8d\xca~E\x00\xccO\xae\x0b\x83\x0cs:U\xf2\x0b\x8dC\xc2\xadX\xd6Q\x8fy\x1eRv\xdd\x82\x84\x85SjP/*\xc7\"\xe8\xd1\xdd\xdb\xca\xcaA<\xec\x14\xf5'\x1e\xb9\x9b\x9f\xb0%\xdf\xbcOHg\x81\xcd\xc2\xa97\x85*\xfc\xc2\xbb\xeb\x83\xfdd\x9f\x91@2m\x0e\xb2\xf4y\xb2\x83:\x00\x92\xf6\xe5-H\xa7'\x1eF=\xe1yH|\xf36!\x9dfS\xf2F\x9a\xddH\x1f=\xea\xdem\xde\xbcs\x07\xe1\"\xe5~)\xe1\xe6\x9d;\xcd\x14\xc2x\xa5\x0f\x1f\xde\xcd\x8aa&\xf90\x052rM\x07,P\xa3o\xde\xfe\xf0.\xea\x7f\xf5F|p~\xcaJ_v\xaa_\xde\x84\x04\xe4wo*\xadh\x91s[\x15\x95X\xf1I\xc4\xc4}\xa5\x80\x8a\xd1\x02\x1b\xfa\xe1/\xd3\xa4\xc2\xff\xbc\xf9\x06\xfcc\xbd\xdf\x13.6\x04e\xc5\x949\x8e\x0eKe0(\xd5\x18\xa4\xe6%\xd4\xf3r\xcb\xccK\xe2\x91t\x10=z\xd4\xbd\xdf\xbc{+\xc0\xe6\xf5f\xe9\xf5n\xf1v\xf7V3\n$\x0e\xb8\xd1\xc3\x87\xf7\x91G\x07\"(\xcfF\xf8\xcd[\xa8\xffu+\xf6\xd5\xc5\xe4\xe2\xf3N\xa9\xfcm\xeb\xed\xe1C\xab\xae\xbb\xb7\x03e\xa5\xce\xacA\xdd,\x95\xbe]*]|\x86\x93\x85\x94\xb0\xa4\xec\xf5\x15\xe8\xcb\xb5\xa8\x02\xe7\xf1\x8fI\x13\n\x1f\xf1\x1a\xc6\xb7\xb5k4G$s\x9aG-\xdb\xb3\x9f_~\xb2 \xcf(\xcb\xee\xe4\x85\xc7a\x9c\x9a\x12OK/\x1b\xcfvu\xf9U$A\xa3\xed{\x1b\xbc&\xda\x7f\xa4\x82\xd3|u\x9c?\x8b\xf9k\x9a\x0c\xc3\xb4\xae\xfa5\xdaW=\xf4\xf5`\x17x>\x9b]Y\x1c:\xeek\x08,\xf00\x9c\xd2\xf8\xaa\xe2\xaav\x05\xbd\xc5\x02\xdb\xbb\xb6\xef\x98\xbe9\xa0\x17\xb8\xd9\xbd\xa6\xee\xa1p<\xae\xb6\xad\x08\xd0\xe9%=\xda<\x99\xb9\xcegn\xdf\x87\x80\xf3\xf2\xb7\xd3z\x10\xe4\xf1\xe5\xdd\xbe\xbfoE\x9b\x97\xd9t30\xb1\xe9\x03\x0f\xf53S\xc0\xab\xcd\x86\xb7\xfd\xfd\xb6\xdb\xf7#6\xce\xb6\xe4\xff\xed\xa7(SI,d\xd9v\xb8\x9dmol#t\x03<\x9fX\xb1\xef\x03\x8f\xaeWV\x00\xaf[\x01\xe3\x98\x87\xe2ZK\xa0b\xfe!\xa5\x8fF\x94\xc7\xd7\xcd2\xe7`)\xae\xdfJ|\xd5\xf4\xd0\xe8\xbe\x88\xd3rr\xcfufK;P\x9bY[\xf0gr\xe6T\xe0}4\xe8\x04\xfdV\xd7\xefb\xc7k9\x05_3\xe8\x04\xe8\x91$\x99\xa0\xc47'\x8bX\x16\x19;\xe0\x98\x01hO\x7f\x1bd\xf8\xf6\x8b\x9d\xdd\xad\xbd\xad\xefn\x1elm?\xdd\xda\xde\xda\xfb\x9e\xaf3\xb67?\xde(g8m\x162U\xc5v\xb8\xed\xb3\x0f\xc1\x19\xedS 7W\xe0n\xe7\xba\x9b\x89j\xe0z\x8b\xaa\xd9t\xe97\xbb\x0d\xd2\xc92\x08\x81O\x8fB\x11\x1d\xd3\xef\xd3\x84\xbb\x14\xad\xd8g\x8c\xe8!\x05\x8f(\xdd\x0e\xb7eY\x1d\xb5W\xa8\xa8\xa3\xd6*\xc8c\x83\xc2\xf0 $\xa6c\xd6c\x91\xb9\xbd\xb1\xad3\xcd\xea\xb32\xc3m\xc7\x98\x97\xad\x82,P\xae\xf7\xf7B\xce\xd3\xca^lm?]\xdd\x8b-6^\xea\xc5\xd24^\xaf\x17\xad+\xbb\xd1\xba\xb2\x1f\xadrG\xea\xe6-/\xd9iw\x9c\x02\xf9\x8b\xe9w\xbb\xe0`L\xbb@\xea\x9b\xe8\x1d\xae#\x05\xcf6u\x90\xcf\xae&k\xdd;\xdd\xfb_\x8b\xac\x95\x8eB-\xff\xf5E4\xf4\xfa#H\xdbQ\xfe\xe2\x1a\xf4&b\xd7\xa36\xefa\xc2\x0d\xfb\xc4!\xc0\xa72\xc0n$%{l\xa7\xe5h\x0f\x7f\x03\x1e\xa0f\xd3\xf1\x1c\xe58\x10\x92<\x8f\x07\x08;\x1dX\xd9\xd0\x1e\xf7\xba\xe0\x87N\xd7\x01\x17_\x9c\xc3\x9c0\xa9\x0f\xf4\xc5\x12\xcf\xeb\xf1\x87I\x8f+n\xdf9\xb0\x1bR!\x8c:\x8e>\xc1\xef\xc2C\xd1\xb1\x94\x98P\x84ki\xb3\xa9\xbe\x15\x0b\xf9\xcd\x89\xee\xcb\xf5\x9ah\xb8pq\xb4\x12A\x9d#\xa4\x03\xa7g\xd9\xdd;\x0f%\xb7\xc5\x1e\x92{\x9d,{p/\x7f\xebvn\xa2ku\x88\x7f\xb5\x0eEn\xb5+\xefme\xa1\xaa\"%\x10\x81U\xc5{\xda\n\xaf\xd7V\xc3m\xa4\xf9\xde$\xde\xb7\x1f\x11\x8a\x13R\xf8\xb4)\"\x089\x07\x0e\xd2G\xbf\xd5\xed a\x83f\xe0\xf3\xdcF3\xb5\xab\xa9\xd0\xb2\xad.\xc2\x82@\x15fw\x92\xe55\x06\xb2\\\xc3\xad\xb0\xce\xc2J\x85\x81l\xd05\x01o\x93\x0f\x8d;\xf4\xbc\xb2\x9b\x08\xdfT6\x1f'\xd7+\xdd\xbd\xab=\x03_\xaf\xf8}c\xfdi\xe7\xff\x8dm~\xf4\x9b]\x90\x7f\x1a5D\xb4\xc4o*\xa9\xbe\x96\x1d|D:}\xa7s\x08\xe6\xac9y\xbd\x89|\xa7\xb5\x94V\xc4\xde\xc5|(\xc2\xf8\x8a\xeax\xe9\xd3\xfbP]5\xcd\xaaN_\x13\xab\xad\xb0D\xf4\x17\xd8\xbaUvE\xfb'\xa5\xb6\xbaw%w\xf4\x89\xdc\xa7\x14w$\xbb\xf3\x9e\"E\xef\xaa\x1b\x89n\xdd\xc1\xb6\xae\xca\x80xp\x13;\x87\x11s\x02\x0d\xa3\xc1}\xec\xf0\xa1p\x023\xc8A\xb7\x83e%NP\x1a\xcc\xa0{\x17;\x13z\xe2\x04 \xc4=\xb8}M\xb6\xfb\xda2\xdc4\x9c\x99\x1d\xc581\xb9JN2,l\x9f\xfag\x0b\xe8\xd5\xbd\xdbw\xaeyzw\xfdn\x81\x03\xec\xebluz\xa9<|\xa8\xe5\xb5|\xdf[\xe8\x0d\xfd'\xdc1Y\xfd\xb5\xfaU\xb3\x05wV\xc8\xbc]E\xe7\x9c\x1f\xe8!\x18\x19\x18\x1a\xd3b\xe8\xb6\xfd\xfc\xc9\xb3gW\xc8\xb4\xa5\xa9\xba\x9a\xc4\xac\x19p\xd9\x84a\x182\xce\xa2\xa1\xbd\x98\x0c\xa0\x7f\xe0,p\x8d\xa0j\xf2\xa1\xcf\xb5\xc2\xa9)\x02\xdd\xaf\x15H\x8b\"\xaa\x16\xf0sT\x93\xfd>\xf9\xb4{\xb7\xf3U\x16\n\xe6\xef\x8d}\x15\xad\xa6\xbc\xd7A\x1bn\xaf\xb3\xe28\xe4\xab!\x0e\x9cs+' p\xf4Is\xd5\x17fd\x98\xe3\x94x\xc8z\xc2#]\xa8(!\xc3\x81P\xce\x90\x97\xa3\x067\x08\x89\xd4\xae\x91T\xee\xce\x85k\x11[\x03\xd7\xf3\\\x17\xc0\xa1\xbe[V\xe1\x13 4u\x89o\x84\xcd?6\x9b\x7fhU\xad5\x8b\xa1\x15A\xf1\xda\xa4f\xa0\x08\xe0\xdd\xfb\xf7\x1e\xfc\x98\x13\xfbU\xa6m\x16FI\xfa\x93\x997\x15\x7f^MYhE[J\xcd1\xb4\x9a\xc8t\xc5D\xa6r\"\xeb\xe6\x90/\xcfa4v!\xb4c9\x1eDb\x8c\x94\x8b\x92\xe1@\x04d\x10\x0d:\x01N\xe0'\x08\xde;9\xcb\x03\x1d\x04\xd6@U\xc8V\xaa\x831\x17\x03\x0d+\x03\x0d\x97\x06\x9a\x10\xd9\x9db\xcet\xafq\x04\x9d\xe4\xaa\x93\x1c:\x99\x93\xceHa\xc5\xed\x9f8\x9dO\xe9\x175\xf3\xfe\x15\xb1\xf5\xf6\x83\xfb_ec|?\x19\xba^\xcf\xc5\xf2\x8e\xfeU\x116\xa7-\x92\x100\x8b\x100,\x90\xba\xb8,Y\xfc\x81\x08\xac3\x98\xaf\xbc\xa65\xfbp\xfb\x9a2\xf7\xf5\xe7N$K[\xf4u\xfb$\xb7\x16\xb4\xc07\xbbw\xdec\xf8T\x9d\xb9\xb2Z\xd3(3\xad?\xa8\xe5\xaez\xb9\xe1,kF\xdf[E\xbf\xf2\xe6\xf6\xfd\xc1\x9e\x08\xb2\xc1\xda\xfe\xbe\x08DJ\xd7\n5|\xe8~?s\x07-/@\xd5fJ\xdf\xa3>B\xfd\x1b\xce\xb5fFDS\x9a\x8ap:\xbb\x16\x0bU\x99\x1d)C\xaaG\xae\xcd}\x90\xb9\x18\x17\xe5)\xef\x93R\xf3\x1dT\xdf\x8c\xefhwl\xbdb1\xb8\xa2\xa8\x1f\x81J\xb4\xa8\xdc\x04o\xb1\x0e\x80!\xfc\xa7\xeb< \x055\x97\x02\xa9LSF\xba\x8cxb\xd0\x0dp\"\x7fo\x06\xad.\x0e\xe5\xd3\xad\x007\xc4\xe0\xb6\x91\x1ceM\xb2\nW\xfei\x7f\xb2\xf7\xd8\x85\xae*/O\xa9\xfc\xe2v\x80c\xf9{Gn\xfd\x9e\x18\xdc\x0d\xb0\x18\xdc\x0b\x94~aF\xe4\xb3\xb9\xeay\x0b\xf5\xf2\x98\xdd\x0fo\xf5\xd0\xcc#N\xc7\xe9\xcd\x887\xcb%Q1x\x104\x9b\xee\x88\xdc\xa5\xb7?t\xefv>\x94\xbd\xec\x04\xde\x9a\xe7\x8aA\xb7\x1bdYGI\xe7r\xb4y\xd9\xd6\x08!<'+\xfa\xaa\xc1:C\x08\x8f\x9a\xcdy;\xa5b/\x9aRw\xde>\xd2O\xa85Bx\xbe\xc0\x85\x81\x82/\xabXq\xee\xa7{*w\xec\xad\xdd\x9d\xdcl\x06\x96\xe7\xad;\xf7n]oy>\xb8\xdf\xb9\xbdl/\xa8\x9c\xb9\x10\xb2dq\x9aO\x07\x97\xbd\xd7e\xe5\x0c\xdc\xbc\xb2\xec\x91*\x9b_\"\xe1\xed\xc3\x88\x8d\\\x8eia\xc6\x16IJ\xca\x11\xaf\x10t7\x92(\x96\x0c\xa2\x80\xf0A\x14\xa8\x0f\x13L\x8b#\xe0\xc4\xd2\x0br\x0cmU\x0cf\x8c\xa5\x1c)\xdf\x14\x10\xa8/|\xde\x06\x8d\x83\x0b\xb7\x82:\xbd\xc4\\\xb2\xe9y^\x92\x9bL\xb2A\x12\xf4\xacPG\xc6F\x8ffY\xc3\x85\xaeS\xb4\x8c\xf2:|\xf8ZB\xc74\x81\xd0\n\x82\xbf\xa2\xcc_s\xbc\x08\xf5(\xa1\x83(\xe7&\xd6\xe8\x02\x03L\x97\xae\xeb(\x90]\xdd\xf3\x88$\x83\x0e\xf4\xb0C\x889\x9d\xd7\x1d\xd2\x9dy\xac}\xc2\xa6T\x80\xa9{\xc2\xb9\xd0\x06\xe2N1\x0d!\xe9\xf4\xc2\x87\x899e\xe9y^\xa8\xfa\x90\x92d\x10\x06='\x05<+@\x906\x9bK\xa6\x8b)\xb8b\xd4\x18\x99\x96#\x195\x08\x91\x9fXq\x7f\xf3$\xb3\xa9\xeb\x04\xad\xe1J\x9b\xcd\xeaM\x11\xa8\xde\x98\x7f\xc2\xf0C\xaf\x1b\xe0\x14f\"\xcb\xdc\xa8=\x05o\xf5\xeb\x9f\xb9\xfb#/k\xa1\x1b\xeb\xa8O\x07i@\x06\x81\x0f\xbfg\x0b\x84\xe5\x0c\xa4A\xcem\xab\xd6\xa2\xda\xd6\"\xab59k:\xde\xb2\x9c\xb3\x84N\xf91\xad\xbd\xb8\xf4>tc\x83\xe2F\x17\xcc\x9e\xb9|\x95,!\xd3\x0792A\xa0\xb6\x19\x87\xeb\x85`/\xa3:\xe0\xe7\xf6Z\x1f\xa8U\x16\x91|\xd91;n%,\xd6\xa5xY\xca!;\xf1\xc0\xff\x8d#\xc1\x904\x9b\xea\x8c'\\\xc6k\xd3\x15\x886\x06\xee\xfcN\xfc<4\xdf\x07\xa8\xb7\x14\xd4lVD5\x93\\~WE\x80X\xd3\x81\xa7\xa2A\x12H@\x8e\xa2au\xe5*0\x9e\x99p\x99\xbc\xfd:\x8c_\xb9\x14\xbb\xe5r\xf9U&,\x10f\xb2.Y\xacv%\x81gWFX\xd9XL\xa9\x1d\xde\xab:\xd4\xdd\xa8\x0bn&\xb2\xcc$\x17&\x1db\x81\x0de\xa5n\x88\xce\x127\xb4\xfa.\xf7\xaf3\xed\x83S/\x96P\xee\xa1n\x82\xfa\xd4M\x90/\xdc\x04\xf3\xdcH_N\x14\x8e\xda3>s\xd1\x02\xa1\x05h+\x81^V\xa0\x06\x01\x0c\x0d\xcd\xd5q\x1b\xcc~\xd1\xe8Z\x02\x0co+OQu1\xb6\xa9m\x84k\x14\xd3?X?\xc2\xce\x0f:\x8em\xcd\xbd\x0ei]\x07\xfa3gWUY\xd4\xd3\x95\x1f\xad\xdb\xf5\xfc\xa0\x03\xf5\xa8j`\x99\x90\n;\xee8e\xa1J&\xad;\xe6\xba(\\\xff\\M\x86\xed\x95#i0\xb5\xdc)\xa5\xf3\xc3T\xeb4\x11 \xac\x80q\xa1\xf64\x9c\xb9\xc5\xa0\xa0kz>\xea\x06\xa8\xefN\xc3\x9a\xee;\x8e\xef\xac\xab@\xf0\xb2\x0e]C\xfbs\x1e1\xd9m\xb4X\xe0\x9b\xb7:\xcbw\x0b)am6\x1dI\x84S\xc4\xdf98\x88\xf9(L'\x07\x13\xf9g\xceT\x04\xb8\xd1\xc1\x81\x839y\xd0\xe9\xdc\xeb>xp\xf3\xce\xed{\xb7;\x0f\x1etqD,T\xd4[r\x00F\xff\x15\x0c\xc5)Y\xb6\xca\xc0q\x91(\x99\x8f\xc0\xc1\xc3\"\x05@\x1a8x^$=\xd5\xdd\x0f\x1c<+R\x9f\x87\xb3\xc0\xc1#\xb2\xa4\xa3\xc7\xe3\xe5\x00\x80xR\xa4\xbdH\xf84Je\xb3\xd3\"Qq\xfd\x81\x83\x8f\x8a\xb4]*\xbf<\xb5\x12`\x02\x03\x07\x1f\x17i\x9f\xd2\xf0\x95\xea\xcaae\xf8\x1f\x81 s\xe0\xe0\xd7\xa5\xf1\x86\xdf\x8d\xe8\xeb\xc0\xc1'd\xfd\xb3\xfd<\xbd\xed\xf5\x1f\x17\xfb\xd5~pc\x1d\xbfR\x11\xd2;\xd9\xa0\xdbz\x10\xec\x8f>D7\xd6\xf1\x81\xa4U\x07\x83\x0241\x0f\xc5\xad\x9b\x1a\xdc\x01\xa9f\xdd\xbd]\x97\xb5U\x98\x85U\xd3\xbbwWd\xd47b[\x98-g<\x8e\xc3\xe9\x8c\x8eV\xe5\xd7\xb7%s\xac\xc6\x1a\x1d| \xf7\xc3\x83A(\xff\x1c\xca?\xa9\xfc\xf3Z\xfe\x89\xe5\x9f\xa1\xfc3\x97\x7ff\xf2\xcfH\xfe\x19\xcb?S\xf9\xe7H\xfe9\x95\x7f\x8e\x03\xa2\x0faw\xc8\xd2\xcdd\xd6\x86\xeb\xad\xeaO[\xe1\x8d9\xed\x81D\xbc\xbb\xfcUJ\xe3q\xb3Y\xfc]\xfeP\xa6\xe2M\xb2\x93e\xbbY\x96c\xb2\xeb\xe4B\xc0$J\x1d\xe4\"\xfc\x82\x88f\xb3!\xda\x8c\x8f\xe8\xde\xe9\x8c6\x9b\x02o\x90\x17\xcd&m6\x1b\xd4J\xa6\xf8\x06\xd9h67\x0cKJ\xc8\x0b\xfc\x92\xdch6w\xe4\xc62\xa4i\x8a\x1f\xdb\x17\xd7 \xe2\x8ej\xede\xb3\xf9\x12\x18\\\x08\xe3l\x1e]g.\xa2\xd8\xb1\x08\xf9b\xe1\"\xfc9y\xdcl>nG\xa9lXMb\xc1\xc6\xefU9\xdfV\x17\xab\x98(R\x8a\x87\x10\"9\x93\xcb\x1e&\xe0\xeeS\xb8t\xc0\x02\xcc0\xb5\x1dv\xe6[\x86\xa9y\xabt#\x07\xf4/\xae(\x87\xb1\xcb\xf7\xd3V\x17k\x1e\xc8\xa5\xed4\xfa\xd2\xa6\xb75\x06\xc8p\x9fy\xe0y\" \x83\x04\xd3\xa0r3\xf9\xc9\xd7\xae\xd8T\xab/;\xcbJ\x9e\xe1\xe7\xf8)\xfe\xb2\x1a\x80\x15\x7fBr$\xb0\x12?Zb\x0d\xf0\x17ds\xe0\x1c\x1c\x0cyB[\x9f\xa7\x07\xe9$L\x80\x1e\x07\xf8\xbb\xe4\x13\xb3q\xe2O\xc9GUE\xf9\xb7\x88\xfb\x8c\xac\x0f>k\x07^\x1e\xce\xfa\x8bf\xf3\x0bP\xe6\xe5\xbf\xed\xad\xcd\x83\x17/w\xf6v\xb2\xccq\x10\xea;\xbb\xa7\xd3C\x1e\xbbi2D\x07\xdd\xb6\xe3=\xf3\x1d\x07\x7f\x8f|T\xb4\xf411\x9a\x11\xc7\xfb\xae\xe2X>E\xb6 \xef\xfeg7\xda\x1fz}\x17\x0d\xf6\x83\xb3E\x06\xd6\xbc\xfb\xfb7\x9a\xf6\x16\\\xeekf\x80\x88\xda\x1f\xf6\xdd>\xd9\xdf\xdfwQ\x06\\g\xdb\xd3 \x01\x92\x15\xdd\xe8\xb6?\xec;\xc8sn8\x08\x7f\x87\xdc\xe8o\xb6\x15\x81\xf5\x15O\x8b\x7f\x9al\xb6\xd5(\xf0\xcf\x90\xcdvA\x99\xf0\xb7\xc9G\xed<4\xd2V\xbai\x02\x97\xe2\xef\x93/5\xef\x88)%?\xdd\xffi3\xda\xbd\xf0(\xafW\xd0|r\x8e\xa8\xb0\xfa\xae\xdaJ1\xa3\xe4;\xfd\xef\xb4\xa3\xb4\xdc\x9d\x84\x12\xf7\xb9\xadG\xc5O\xf5\x1b\xae\xd9\xd6\x9f\xbbOAu\x820\xa7\xe4\x06u7\xb1\x93o\x15\x0e\xc2Q\x9e\xf6<\x9c9\x08\x87\xf9\xab\xde\xc9\x1c\x84\xd3\xa1\xa0\x16\x00\xd0\x10\x12\x15\xa5v\xa9k\xdd\xb7\xcd7%%\x1fj\xfd\xa99\x82\x17Y\xd6\xd0\x15\xc9_\x81\xfa\xb4A$g\xd1 \xa2\"\x13\xc0\xa9\xd1\\\x81iB\x9e\xc8\x8f\xf0\xb1\xfc\x15\x08\x9f\x90I?\xf4\x1fC\xda+r\xac\x9e\x05\xc2\x07\xc4=!'\x84D\xfd\xb1\x7f\x82\x08\x19\xe3\x1d\xe2\xbe\"\xafT\xca+H\xd9\x95\x05\xc09\xe6n\xb3\xf9LV\xa1\xcc\x9f\x9e\xc9\x1a\x8a\x93\x0b\x88\xf4p@\x1a\xdd\x85*\xd98\xc8\x11f\x9ee\xae\xd2w\x9eH*\x94e\x1fQp\x04LK\xfd\xae\x1bM$e_m1\xc9\x94\xc5\xe4\xdak\x1f\x9c6\x1c\x9e\n\xaa\xaey6\x88\xb0\xde\xb2L\xe5\xed\x8c\xc7)\x15y\x9ez+:K\x89\xb9\x9e(d\x11x\x04\xab\xca\xb5CmL\xd9\xb8\xb2\x91F\xe4\xca\x01\xfd\x0c\xdc\xdc\x87\x07\x81\x10R5\xa4>\xfc\xc4\xeag\xa4\xeb[\xdb\xa2\xaeG\xb1't\xa9\xa1o\xd8\x11\x16N)!\x02~\x9bM\xda\x9e\xd24\x0d\x8f I?\xaaO\xa6\xaa\xc6S\xbf\xc0\x19\xe19\xca\x1atm\xe6\xcb\x89\x9f\x93m\xf5z\x04\xafc\xd2m\x82\xbeF\xcd\xc1\x13\x84\x15/\xd4\xd0\xd4\xa0\xd9lX1k\x14\xe6\x84J+\x00J \xa3\x9e\x9d\x10\"zIFn\xe20W\xea*\xc1\xf3\x98lRw.\xc10\x07}\x95\x9e\xb5|u\x85m\xb5\xa2\x00\x19\x95\xd9\xaa\x91\xc4`\xf3\x0d\x1c9\x9fG\xb9\xbc\xbevD\xf3\xa5EH\xfe,\xccYww\x01\xd8qb\xb0\x06l.\xddn\x93i\xfd\xd4&9h6\x0d\x89p\x0e\x0e^'\xe1l\x06\\\x97d\xd0wL\xa6\xa8d\xca\x8a6\xb3\xec\x85\xaaf\x83l\xf6\xf5.\xe8\"_\xf2\xeb/\xfa\xc2\xbc\x8b^-fsw\x03\xdf\x80\x9e\xcd\x0b\xe7\xfe\x8d\xddf\xd3-\x97\xabC\xf4\\\xbb\xd6m2\x9c\x92\x17\x00\xaf\xb88\xc6\x8e\xc6n\xdc\x90\xc9\xa2p\x91\xd5\x08\xcb\xf6\x06\xb2\x82!\x89{CI\xbc\xcf\x142\xa4\x83a\xa0@\x14\xf6\xe7\xe0\xbf\xc47\xe3\x9f[\xf6\x8a@\x1cg$\xb2\xa6~\xd6l\xaa\xd7\x82\xf2\xcf$\x12\xc8\x92#\xd2\xe8\xf4\"\x83\x08X=\n[U?&a\xcf\xf3\x86\x0f\xe3^N\x91\xe8@\xf5'\xc0S\"\x06s\xe8W\x82d\xde\x11 \xfb\x89;\xc5\x13<\xc7\x02S\x1c!?q'x\x8a\xe7X\x82(\xd2\xb3l\xf6\x93\xa3\xfe\x84\x102\xcd2\x0e\xa5\xc00\x00\xf9G\x08\x9d\x8d\xa4th\xdco\xbacRR!\x132\x87P!#@{\xe8\xd6)\xa1m\xab\x08>\xb6/\x8b\xf2\xa4wJ\xc8q\x965\xdcR=\xa0\xc9\xafK\x15(\xcb\n\x97WF\xc2%\x0f;}\xd7\xf3\x8a\xb1j\x1f\x86\x03\x8aE\x00\xde\xbb\x12\xd9Q\x92O\xe1\xe1\xfb\xa7P\xcd\x18.O\xe7\x99$U\xbe\xdc7O)\x9e\x863\xf9\xe8F4\xcb\x8e)\xc2\x8a\x9e\xe9\xdcE\xa5\x91\x95s\xbd\xa1\xc0\x82)*\xf6\x99\xab\xd6\xef\xe1U\x13\xa8\xbf\xb3\xeaT\x9cA\xe5\xb3\x153d}\xa6\x16C\xe5\xb3U\x93S|\x87\x13\xc2\xa0\xc3\x06Y\n\x86\xc2Zo\xaa\x8c\xa4\x1er\xb5\xa9)ym\xb7\x14\x8eF\xa4\x94 g\xb3\xae\xcb\xa5\xe9\xd1m%\xa8\xae\xca\x15c.W\x90\x0f\xfb\xe4\xfd\xf8QQ\xf3\x94\x97\xf9\xc9\xb5\xa6\xbe\xba\xd0\xc4\x15\x18\xa0eE\xcc*\x95\xaf\xc0\x80\xf2\xb0r$8\xf9\xc9\x00\xe4Z\x8b\x14,\xc6J\xac4\xcdy!V*\xd4\x90\xeb'\xb7cy\xd8}\xf0\xc0\\A\xb2\xd7\xb0\x05_\xcfS\xf8\x03I=V\xa3u;\xa4nR\xf8\xa9\xafAAb\xd5\xb0\x00\xde\xf8%%\x82\xf6k\xe0\x91\xf3\x18\x83\xc0ws\x0d\xb6k\x0b\x90\xc0\xe4\xe5\xcc[\"\x997\xae\xf5\x8b\xa2\xdf\xf1\x0d\x1b\xa7\xdc=\x0c\x82\x9e\xe7%\x0f\xb9\xe6\xa6S\"\x06I\xd0\x8bI\x8a\xbf\x9d\xcb\xcb\xb1\xe4;\xc2A\xe4y\x01I\x11\x08\x85\xb1\x91\xe4\x17.\xa0\x07B\x8b\xe5\xbb\x04\x83`\x81\x1fSr@\x0bU\xf1\xe7\xd4\xe6\x97\x1a\x0dW\x98\xaeq\x1f\x98\xe8\x82\xb7\x13\xc6P\xeaU~\x9b\x1b5\x9b\xf4Q\xab[\\\xc4\xa2\x0fE\xc1\xa0\x01/tf\xa2\xff\xd3\xd2\x11\xd9w\x8dr\xaeP\xfeY\xd9\xd4s\x1c\xfb\x98L%;\x8eu|E\xcb\xe7WJ5W(\xde\x16.\xa7\xcd\xe6c\n* \xae~\xac\xe3b\xf0'\xdd \xaf\xb3,*\x8aE\x145\xc8,\xcbB\x95\x14R\x13xA\x96\x9ddYZ\x94Me\xd9\xa3,\x8b\x8b\xa4X&\x1dK\xa8=\xae[\xce\xa0d\x94\xcb\x98\x90q\xbf$\xd1\x9a\xb3\x0c\xc2\xfa{\xd4e\xc8w\x1c%;i\xbdZ\xa2\xf5js\x9a\xab\x95^k\x85\x92I\x98\xa9\x84\x91I\x98\xa8\x84\xb1I8R \x13\x93plL$\x17JO\xb4M\xc9\x0eu\x97\x10\xc7\xb8\xd8M\x17.B\xfd\x9dZ\xdbU\xad\x00-\xd4:\xf2\x97R\x075\x9b\x8do/%.\xf0\x13Z\xb6\xaa\xc2\xcf(a\xb5\xbe\xa2\xba\x96\x9b\xce\xe79N).\xbd,\xe9j\x10\x1b\xda\x08A\x96\x8c*\xebc\xca(\xf8=/\xcc\x1c*\xd6>\xe9)\x1b\xae\xca|\x91\xf0\x130\x05\xb2\x10\xfc\xa9%\xd6-\xaf\x93\xe5\xb5A\xb8\x15\xca\xc2>\x16\xd0_\xf4,\x92\x02x\xecZ\xe7\xe0\x15\xa5\x85\xed\xaf\xbd\xaa\xd7\x87o\x97\x8e\xd0)\x90\x8a\x8f(\xf9\xbc\x8e\x8c\x15\xe4\xaaXRR<^\xb8\x9f\xd7*\xd7\xf5tK\x10\xe4\xf6t\xcdf\xa3q0\x80)\x08\xac)\xfbb\xb9{\xae \xfaca}\xfc\x1cT\xe7u\x1b\x87\xd2\x93'\xa4\xc1\x9a\xcdmx\xe6\xf0\xdcH\xb4\xb2\x1bG\xe6\xbd\xc1\x9bM\xd0]\xe3\x90\xb0,K\xb2\x8cgY\x84S\x12V\xaa\xae\xc8\xd3\xb9\x8d \x08\xd1\xb4\x87\x92\x81\x14\xa1-\xdf\xec\xc9\xc2\x0c\x15\xab\xc3K\xe4\x0f\x02[\x01h\x14|\xca\x8c\xb4!\x9a\xcd\x86Y\x0fC\x94e\xa1\x9cRU\xd8!d\x98e\x1c\xe6\x18\xf4\xde*\xc1\x99\x85 e\xf0\x82\xb2,\x92\xd9J\xef\xad\xb3\x0b\xf5\xb6\x95\xb0c*@Y\xf69u\x878\x96b\xb9v\x049,\xfc\x01/\x9d\x94\x80\xd5\xb6\x9e\x8d\x92N\x0d\x8b\x06!n\x8d\x02\x8c5\x9b\xd6\x81z\x96}dT* \xcd\xed\x9c\xd4\xd5{\xedGJ&\xf0\xd2y\x1120\xe1h\xc9~\x947\x9bz_\xe7%\xc8\xeb\x9aW\xba\x07\xd5E\xd5\xb1\x0dZ\x80\xd3\xd8\xfb\xa5\xb1\xd6|)w\x16|\xbf{\xeb\xfd\xe5\x96,\xae)\xa9\x01\x8e\xd2\x967\x9b\x85\x0e\xa4\x94\xd1\x8e\x84\xa2@u\x0b\xd0\xac\xd2Z\xcb\xf0Zed\xde\\i/!\x84\x98\xf4F\xfe\\\xccX?\xef\x9bo\x1a\xc4Unm\xd9\xb3u\xc9\xc1\xe0\xde\xe9\x8c\x16\xa6\xc8\x8c\x8b59\x9dk\xe1\xda0\x0e\xd3t-L\xd7BCN$\xa5g6 \x0dYX:\xd8\xec\xf4\xd8C\xa3\xd4d\x9eg4c\xa0\xc6jScN@\xec\x17p\xa6\x97H\x00\x8c\xa3\xa3\xb9\xcaot\xb0\x03\xc7\x00N\xa4\x8e\x0e\x93\xf6\xeb$\x12:\x0f\xe5N\x16\xd5!\xa7\xb1O\xa78i\xbf\xa2\xa781\xe7\x02\x16Q\x84(,\x86\x885\x9b\x92r\x156$\x0c\xe1\x04\xd2@\xb6\x00\xa3\x9e$7I\x08\xd34:\xaaX\xa9\xe6\x83\x16\xa4\xdb\x13\x0f\x97|A\x8b|\xf0\xac\xb0\xc4\x1f\x88b9%\xea\xae\xd2{nP\xe5\xd7\x98\x12\xf0\x123H\x020~G\xb6\x99\xfa\x8a\x891J\xc9\x86[\xed\xdb\xa3n\xae\xf4hX\xd7\x04\x06\xdd@R7\xeb\x15\xf3\xa5K\x04\x8fn\xd6~z3\xe8\xdb/\x92\xa4F\xcb\xdf\xde\xaa\xfd\xf6\x96\xfd\xed\xad\xc0\xbfCo\xf5\x84\x915\x81\x9b\x1f\x8a\x13m\xe2\xdd\x8e\xc6I8\xa5)I\xd4+=\x19\xc6\xf3\x11%\xbc\x94\xbb\x17M)\x9f\x0b\x12\x19\xf1\xc0\xa5xp\xf6\x8a\x9e\xfa\xce\x11\x15\x8f9\x13\xf4D\xa4\x0e\x06\x04\xb3\x99lE\x15LL\x88B\x9b\x9d\xf7\xa3\xd9\xcc\x9f\xfa\xdb|D\x9fE\xa9=yQ\xfa\"\x7f\xce\x1d0\x0e\xc5 \xea/\xd9`\x17&\xd8\xa6\x90_\xb1O7\x1f\xe7O\xfe\xb2~5\xef\xca\x15\xf5\xe7\xb15\xda_\xccir\xbaKc* \xcc\x86\xdd2\xf2\x07\xf9\xb3\x9c\xba\x15\x1eK\x8f\xb5\xe5\xc28\x8a\x05M\xca\x16]9:\xb6s\xb7\xf7J)\x9fO|\xa7\x07\xd7l\xa9\xe5\xeb4\xcbX\x96QK\x81\x8f\xe9b\x81\xcd\x14m\xc1D>VQz\x96'\xcab+\xbe&\x86\xda\xdb\x07Nrc\x06)\xbc\xc0^\xa7\x0e\xabd\xe3\x9fFl\xc4_\x03#O\xb8\x89\xec\x82\x1b<\xcb\x1a\xcb\xf7\x02\x1c\x85\x81k\x11\x04\x92K\xd3\xe80\xa6\xb6\xad s\xd1\"i6\x85\x14]\xf3\xe1F\xa9\x1a\xedGq\xc8^-\x0f5g0\x9d\xf0\x90\xcf\x85\x7f\xa8J\xc9\x998\xa2bC\x88$:\x9c\x0b\xea:i2tP[$\xd1\xd4\xb5\x0c\xf0J\xa3h\xc7|\x08\x81\xfe\xdb\x93\x84\x8e\xd5\xb5}\xa6\\\xd70\xd3\x1d~\x98\xd2\xe4\x98\xaa>=\xe3\xe1\xa8\x0e\xfa\xd6\x99\x87\\\xa8\x9c4\xba8R\x91\xdaBC\x90\xd6BW\xedC\x1c\x9dqI\xd0A\xc9\xa2\x17\xa7\x1b!\x00w\xd2.\x8d\x1f\xb4\xf6\x10\x83i\xca\x8f\xe9\xe61e\xe2\x99 7\x17CoB\x84\x93\xf6\x12\x8e\xe8^U`\xbdX\xf4@\xd1\xb4\xaa\xa2\x88\xe8k_\xb2Ga\x1d\x11)\xe6\x893\xd5\xe2K\x1a\x8eNW\x01E\x0e\xc9\x19\xf2\xe9,\xa6B\xf9\xe4\xabL\x81Y\x8f\x89\xacfW\x84\x82\xaa\x15^\x05\x83J]\x9a\x0d\xdd\x90\x0f\xb9\xab\xa0\xe0_\xf9m\x15Dz|\xaf\xc3H<\xe5\x89*~\xe5\x9a\x839OHG\xd9\xa2R\xcf\x96\x06\xa4\xf9\x01\xb5\xdeaH_{\xcf*Q\x93\x90\xd4\x10[M\x18\x1c$\x85\x98\xe2\x00\xb8\xd3\x0b\xabF\xaf6\xf1\x0e\x91>\xfd-A }(E\xd1\xc8\x8d\xd1\xa2\x97f\xd9\xd0E8\xac\xa7\xd9T]\xbc\xa2\xa9+0\xcf7K\xd4\x1f\xba\xc8\xe7\xed\x12>\x97\x8fa%f\x80\xe6(\xf6<\x9c\xc0U\xd2\xa1\x04-\x1e\x96\xe0\xab\x0c#\xb74C\xbcjIhZd\x10_}%w\xcf\xfcK}V\xde\xe8.U\x9d\xdf\xbcd\xab\xe6\xb0\xe0\xe7\xe8k)\xec\xae@!{a[\x8d\xf0\xa9\x14\xd5\xa0+\xf5\xf5\x17\xd7/i[\x97~\xa2\xc7\xf1B{Ww\x19j\xca\x1a\xdaOv\x1e\x7f\xf2|s{\xef@y\xc5\xdb\xd9>x\xf1r\xf3\xf1\xe6\x93\xad\xed\x8f\xed\xdb\xeb\xa2\xb0\xe7\x8e\xc6\xae\xf8\x1a\xd5>\xddy\xf6l\xe7SY\xadY^F\xcbb\xef\xa1\x1a\xba\xb2\x96\xd5\xdb\nm\xcf\x12z\x1c\xf1y*\xcb\x99\xad\xe3L\xa6\xca\x14_`&\x7fL\xf7\xe5\xb6\xcd\xe8\x89P\xc5\x91\x94\\\x8a\xd7\x82\x9a@\x14?\x05\xd5\xa7\xc01\xd4\xc3\xb6X\x81\xb0\x834\x8a\xa0\x17\xb5F\xe9\x80\xd3\xc7a\xac]\xcbr\"\xc0A\xf3$d\xa3\x98\x8e\n\x87\xe7K3\xabg\xb2\xef6$'\xc2\xb3,\xea7\xc0\xffz\x96EY\x06\xe1\xcf\xf2Z\xa4x\xe1k\xf9\xf5\xec8\x8c}\x86u\x8e\x0f\x84Lf\xbb\xeac#\xe7V\xcbue9\x0b\x9dU\xc6\xce\x8c\xb2+\xc8k\x95\x1e\xf5V\xd8\xcf\x9b\xf1f\x19\xaf\xdb\x02$\x80\xca\xab\x99\xb7\xeb\xd7\x93K\x0d\xb3\x07\xf3\xa7\xba\xa0<\x8a\x17\xfc \xe0\x11\xdd\x9b$|~\x04\xe5V\xf6\x1e\xf3B.\x8a\x14M\x0d5\xeb\\\"\x15\xae\xc0p\x84\x93\x92\x81\x89\x8c\xa1\xd5\xa7\xf3\x9c\x17\x9b\xe5)\xdaZ\xcaFg7DxNf\xed\x1cI\xf1\x90\xcc\xe0\xda\x876\xe1\xd5+]3\xeb\xe5\x0d\xaaB\xe84\xbaE\xed%\x84u\x87`\xd8\x92\x967\x1a)Z\xaf\x82\xa6(C\x93\xd6\xb6\x14\xe7\xf1\x86\x16H\xc1:wn=T\xc4~\xd6\x8bW\\\x9b\x80o\xca\xb4L\x8fp \xbd\xdcT\x99\xcb \xcc\xdd\xa5\xfd\xb0\x9e \xd40u?\x89\xddP\xa1A\xdb\x12\xbb\xe4vE\xf2\xe82\xbd0\xcb\xb8\x8bpT3\xe6(??\xb1\x19\x8av\x0d:\xba\x14G\x80\x80eN!\x84}\x92+\x9e\xa0\x97\xe40\xeb'U\xc6#\xc2)\xf2S\xcd;\x04\xb9\xa4\xa8\xb7\xce\xab\x18\xa1\x1a\x8b\x97\x81\x08|\x01N+\xf5\xf7\x92^\xea\xc7|[\x82\xa4\xf4yM\"\xff\xb2&\x95\xd7\xa4\xbd\xa6\x87\xaf\"Q\xc9P\xc7\x0d\x86\x9e\x16\xe7\xb3\xf4\x98&\xa7e\xd6@\xef\x18I\xae\xc6\x93\"\x99\x0b\\\xba\xa4[\x08anm*\x81\x14\xcf\xe4,\xd5*\x1b\xc0\x89\xa8\x16\xd9#Kd\xd7\xe7\xa5\x11\xcdo\x921\xf2Z1\xc1,<\x8e\x8e\xe4bn\xcfS\x9al\x1cQ&z\xae\xe5\x82\xf1\xf9\xee\xd6\xa6\x83\x1e\xb5\xbaYf\xa5\xee%\xd1\x08\x82\xb6>R\xa1GM\xed\x9d\xe2\x1c\xd0\x8d\xf2\xe9\x8b\xf9Q\x1d\xbb\xb0Bj\\\xa5\x12\xe9\xdb/\xbe3\xa2\x87\xf3#\x07\xab\x15\xd2\xe63\xd1\x8e\xf9Q\xcf\xbc@\xb6\xad\xb6'\xd6%\xf2\xbec\xae\x8a:>u\x13\xb9w\xd6(\x04\x93\x01\x0b\x9aM\xf9\xd7u\xa6a\xf2\xaa\xfdy\xea\xaf9\x9e%\x88\xa8\xab\xab\xbb\xa2fK\xb5Dq\xeb\xaeQk\x7f\xb0\x1f\xec\xaf\xef\x9f\xed/\xf6\xdd}\xb4\xff\xe1\xbe\xb7\xdf\xdfo\xef\xef\xef\x7f\xb6\x7fc\xdf\xbe{T\xe1\xbf\xd4%\xa6\xd5\xcd8\xa3(\x0d\x0fc:rr\x15\x89\x84\xc2\xeb(\x1e\x0d\xc3d\x94B\xecWHN\xa9\x98\xcf>\xcd\xd3\xf5\xdd(\xc9V\xea|3$\x97\xa2r\xfc\x94\xbc\xd2\xf4\x94qv:M\xad\xc8\xb5\xd4\xdeZvu\xbeUw\xf1qt\xc4xB\xbf\xcd#F\x934\xcb*\xe9/\xe4\xb8\xe6J06'\x19\xa5\x9eo\xd9\xdf[-\x14\x13\x1f\x85\xc3$\x12\xd10\xad\xf6\xeb\x89\xc9Y\x1e\xb5*\xf1\x9c&Gt\x04b_Q\xe6'\xd3y\xd5\xc0r\xbf\xaf=o\xaa\x82\xba\x89\xb3\xb27\x86\xc3y\x12\x0eOMn\x05\x8b\xcaS\xb3\x9a\x15]\x9ak\xcc\x8a\xb4a\x98\xd2]\xca$s|L\xe12wTZ\x87_\x15J}g\xbf\xe3\xf8\x8eS>\xdf\x10p\xf7\xb2\xea\xf5\x84k\x9b\xf7\x88\x88\x01\x0fpH\xde\x03\xbf\xfej\x9c\xe7Z6/\x10\x9eK6\xe8\xebW\x18-U\x18\xa1\x9e#\xab \x9bM'\xf7\xddA-g\xeb\xb6\xdf&\xd7\xf1*_\x87\xc8s\xb2\xa5\xd4\x14y\x0er\xb0s4u<\x86p\xe2\x99/\xf55Z9\xc7\xd3\xd3iZ\xfa\xbe\x9a\xa7j\xf1\x12d)\xb0sT\xa9\x94]Ms~\"\x0b\xe3\xcaU]t\xaa\x0e\xe2W\xf4\xcc\x86\xf2:8\xaaB\x1f\xee\xf7\xd7\x8f\xea\xf8@g\x7f_\xab\x87rW }\xa7\xef\xf8\xce\xff\xcfY \x84\x96\xab\xf9\xf0\xfa\xd5|\xe8\xf8\xce\xff\xdfY\x16\xd4\xaf1\x10\xadj|\x1d\x89\xc9\xee,\x1c\xd2\x14\xfcf,\xe1coy\x97\xd9\x9fw:\x9d\xee\xfa\x11\x16}g\xb0\xbf\xbf\xbb\xbf\x9f\x06r<\xfb\xfb\xbb\xfd\x92{\nY\xeef\xb9\xdc\x87\xba\xe0\x87\xd6\x06\xb4j\x86\xae\xb9\xe7}\xe6fh\x7f?(\x03\xcdfq\x99\x89_\xe3us\xa1w}\xa0\xbfR\xb61 \xca2\xe5~\xa5O}\xeaI\x82\xb1\x0c\xd4\xf7vN\x81\x14\"1\xaf\xc6\xd0\x1c\xa0\xe53\x00\x86\x9aMf\xf6;\xa1\xb5\xe5\xe5\x95\xc9\xb4\x07\x0b\x07\xd9\xfbQii\x98O\x9d} \xfdp\xb4\xbf?\xbf\xd9\xe9\x1c\xaa\x9f\xa1\xfa\x199\x08\xe7'w}j\x9cn\xc8\xd9\xeax\xeb\xb9\x9f\x8c\x81\xe3 \xd3\xa0\xe7\x04\x1f:\xc8\xa7\x15\x88Tw\xbck\x10\xfcZ\xe2\xbe\x92\xf8\x0f\x9c\xf0\xe2\xd7.~x\xf9\xe67.~\xe3\xf2\xcd\x0f\xdf\xfe\xfc\xe5\x9b\xffq\xf9\xe6\xf7/\xdf\xfc\xe1\xe5\x9b?\xbe|\xf3?/~\xfd\xf2\xcd\x7f\xb9|\xf3[\x97o~t\xf9\xe6w/\xdf\xfc\xb7\x8b\xdf\xbc\xf8\xad\xb7?\xfb\xf6\xef;\xd8\xd9\xb8\xf8\xbb\x17?{\xf9\xe6\xd7/~\xfe\xf2\xcd\xaf\xbd\xfd\xb9\xcb7\xff\xfd\xf2\xcd\xef]\xbe\xf9\x83\xcb7\x7ft\xf9\xe6O.~\xee\xf2\xcd\x7f\xbe|\xf3\x9b\x97o~\xfb\xf2\xcd\xef\\\xbe\xf9\xaf\x17\x7f\xef\xe2\xef\xbf\xfd\xbbo\xff\x9e\x83\x9d\xe1\xc5\x7fy\xfb\x0bo\xff\x99\x83\x9d\xc7\x17\xbf\xf0\xf6\x1f\xbc\xfd\xa7\x0evFo\xff\xd5\xdb\x7f\xe1`\xe7\xc9\xdb\x7f\xf9\xf6\x9f;\xd8\xa1\x17\xbf}\xf1\xa3\xcb7\xe7\x97o\xfe\xe2\xf2\xcd\x9f]\xfc\xce\xe5\xf9\xcf^\xbe\xf9\xcb\xcb\xf3\x9f\xbf<\xff\xfb\x97\xe7\xbfp\xf1\xbbo\x7f\xf5\xed\xbf~\xfb\xcb\x0ev6/\xfe\xe1\xc5?\xba|\xf3\xe6\xf2\xcd\x9f_\xbe\xf9\xd3\x8b\x7f|y\xfew/\xdf\xfc\xaf\xcb\xf3\x9f\xbb<\xff{\x97\xe7\xff\xe0\xe2\x9f\xbc\xfd\x95\xb7\xbf\xf8\xf6\x97\x1c\xecD\x17\xff\xf5\xe2\xbf]\x9e\xff\xa3\xb7?\xba<\xff'\x17\xbfw\xf1\xfbo\x7f\xd7\xc1\xce\xd6\xc5?\xbd\xf8g\x97\xe7\xff\xf0\xedo_\x9e\xff\xe3\x8b\x7f~\xf1/\xde\xfe\x8e\x83\x9d\xf8\xdd\xcf9\xd8y\xf6\xeeg\x1d\xec\xb0\x8b\xff\xf1\xee\x1f\xbe\x93=\xdf\xbe\xf8W\xef~\xe1\xdd\xcf;\xd8\xe1\x17\x7fp\xf1\x87\x97\xe7\xff\xe2\xe2\x8f/\xcf\xff\xd9\xc5\x1f]\x9e\xff\xeb\xcb\xf3\x7fuy\xfeo/\xcf\xff\xef\xcb\xf3_\xfe\xab\x1f^\x9e\xff\xa7\xcb\xf3\x1f^\x9e\xff\xea\xe5\xf9\x7f\xb8<\xff\x8d\x8b?\xb9\xf8\xd3wr\xc4;\x17\xbfx\xf1\xaf/\xcf\xff\xf9\xc5\xbf\xbd<\xff\xa7\x17\xff\xe6\xf2\xfc\x17/\xcf\xff\xe5\xe5\xf9\xbf\xb9<\xffw\x97\xe7\xbf\xf4W\xbfvy\xfe\x1f/\xcf\x7f\xed\xf2\xfcW.\xcf\xff\xfd\xe5\xf9\xaf_\xfc\xbb\x8b_z'\xe1\x93\xbc\x93c}\xf9N\x8e#}\xf7\xc3w\xbf\xfa\xd7\xbf\xfc\xee?9\xd8\xd9}\xf7k\xef~\xe5\xaf\x7f\xe9\xdd\x7ft\xb0#\xde\xfd\xd6_\xff\xea\xbb\xdfp\xb0\xb3\xf7\xee7\xff\xfaW\xde\xfd\xba\x83\x9d\xf9\xc5\x9f]\xbc\xb9<\xff/\xef~ty\xfe[\x7f\xf5\xdf/\xcf\x7f\xf7\xf2\xfcG\x97\xe7\xff\xed\xf2\xfc\xf7/\xcf\xff\xc7\xc5\xf9\xc5\x9f\xbf\xfb\xfdw\x12\x0c\x9f\\\xfc\xf2\xc5\xaf\\\x9e\xff\xe7w\xbf}y\xfe\x9b\x7f\xf5\xfb\x97\xe7\xbfsy\xfe\xdb\x97\xe7\xff\xf5\xf2\xfc\xf7.\xcf\xff\xfb\xc5\xaf^\xfc\xfbw\xbf\xf7NB\xe6\xf4\xe2/.\xcf\xff\xf0\xf2\xfc\x7f^\x9e\xff\xd9\xe5\xf9\x1f_\xfc\xa5\x83\x9d\xef]\xfc\x87\xcb\xf3?\xb8<\xff\x93\xcb\xf3?\xbd<\xff\xa3w\x7f\xea`\xe7\xcbw\xff\xeb\xdd\x9f\xbf{\xe3`\xe7\xfb\xef\xfe\xe2\xdd\xf9\xbb?s\x02\xffk\xe3\xdb\x8f\x8dl\x15L\xfb\x8ah\xf6c\xe1\xd8J\x04+a\xd7\x8f\x89Z?\x06^U\x90\xaa\x06\xa3\xbe*:}}\\\xba\x02\x91\x0c\x16)c\x1a\xb3S)\xfa\xea8u\x87\xad\x1c\x9d-\x8b\xecL\xc7\x8c,\xc5*\xe0\xea\x86pb\x12\x18\xc8\xc6\xb9\xe0\xde[\xc5\xf6\x0d\x1c\x8fyN\xa0\x19:\x81\xb0IAXk4\x99\xe5\xf6\x18U\x0ehW\xc9-\xd7\xdc\x9b\xf7\xd3\xc0[?\x8a\xa6X2\x00i\xe0-\x89\x9de\x81\xe2\xea\xfd\xc3\xde&B\xfd\x1dN\x9653\xac\xcf|\xa6.\x96b^\x97=\x08|\xd6\x8e\xa3i$h\x92\xe2\x888NO\x1bn\xf2\x15\xb1\xe3=\x02\x9cnIx\x95\x80\xd2\x86\x9e\xce,LD\x14\xc6\xf1\xa9\xe3k\xef\xdfy\xf8\x18\x17\xb9\x8eG%3\xac\x03\xcc\xc0\x81\xe1\x942\x11&\xa7\x8eUj\xf0\x99\x03\x01\x9f\xf7\xf7S\xf9\xa0\x99\xdc\xa2A\xa7\xb1\xef|\xe3\xc67\x9b\x1f\xb8\xe8C\x0f\xb7\xda\xeb~\xef!y\xd4\xff\xbf\x06\xfb\xfb\xc1g\x07\x7f\xe7,[\xfc\xe0\x7f\xff\xf0\x7f\xff\xa5d\x0e`\xb7\x96\x8d\xca:#\xf9\x96\xb7NO\xc2\xa1\x88\xadv?\xcb\xa0\xbd\xc8s\xf2~\xba}r\xa3Ht\x16\xf69\xc3.\x9d\x85I(\xe8\xe8;\xf4\xf45OF\xb5\xbc{i\xc2\xec\x85P\x0bZ\xa1\xc4@]\xf1\xa7<\x19\xed\xd20\x19\x16\x8c\x89\xb3V\xbbr@9\xae\x8e\xc0\x9bM\x08\x87Y\xac\x15\n\xcc\x94\xd1\xbd\"\xff\xda%a\xa802\x9f\xb5S\x9e\x88\xea\x91\x84\x1e\x8c\xb9\xa8\x93\x9b\x18\x82r\x17\x9e\xfc\x9c\x8d[X\xc7\xfe\xdb\xf3)M\xa2\xe1\x15\xabFy\xe9r\xad T\x14!\x88\x16`\x9f\xb2\xbc\x0c\xd9Q\x9d\x9e\xd2\x86:\x18\xe1\x97\xb9K\x08\xe4U\xf5\xfd\xd5x\x7f\xcc\x8eA'0\xf6\x82\x80\x8e1?R\xaa*\xd5\x11\x17\xad\xbd\x8e\xe2x\x8d\xb3\xf8t-\x1c\x0e\xe9L\xac\x85L\xbb'\xe4c\xed\xe52u,v\x95)\x15\xa7K\x11\xd6\xce\xb9%\x92(\x17\xa0\x86b\xae\x06\xcb$lE\xd8\xe0\x0bNH\x88\x94g#3I+\x9b\xbbJ\xb7l\xcc\xc9\xf5\x83\xad\xd1\xa5\x96\xb6Rw\xa8\xef&\xc4e\xc4\x04l\xd1\xc9\xb8\xdbA\xc8\xb3R\xf5\xd1s\xb7\x93\x1f$\xe4h\x98\x7f\x81\xf4\x99\x82\x9da\xe4\xe7\xa4%\x1eu\xe4\x0f{\xd4\xe9s\xd2\xe8\xf8n\x81\x02 \xadE\xech-\xd2.\xfex\xb2\xc6\x8fi\x12+\xb7\xdek\x89\x1c\xb3\xbf\xe6x\xdf\xde\xdd\xd9n+\n\x1c\x8dO\xcb\x9a\xb4\x02\x15\x10\xba\xb2\xf2\xafZ\x1b>\x83\xe1\xf9\x0cS6\xf2\x13\x0c\xb5\xf8\xbcrb\xf9\xe9$\x124\x95\xa2\xef\xea\x19*\x84\xc8bj:8\"\xf9\x1a\xc7!\x11\xad\x08\xa7\xb5\x93\xd1\ns\xdb\xb2\x84\xb8)I\x1fE\xfd\xc8OWL\x11z\x14A@\xa1\x08\x17\x80\xd8dz\xeck\xe1\\\xf0i(\"\x89_\xa7\xca\x93,\x07g\xb2\xd3\xf0d\x0d\xba\x0d\x81\xa1\xbd\x08!\x9c>\xecdY\xd2\x82\x9f\xf4Q\x94e\xc9\xa3\xa8\xef\xc2\xa9\xab\x05\xe3\xaf Z\x1f\xa4df\xb9mLqb\xcb\xfc\xa9\xa7\x02(\xc1\x91m\xa9\xc9\xddW\x91B\x8e\xd7\x06\xf0\x8ap|\xd5>\xe4\xd3\x9b\xae\x9a\xde#*\xf6\xf49\xf5\xfbw(\xc7Q\xfc\x9aZ \xfa\xe4\xb1t\xb8'\xff\xa8s\xc2\xf6\xee\xb7v>=\xd8\xdb\xfc\x99\xbd\x8a\x82F\x1f\x0dk\xb4\xcb\xa7Uv\xcfe\x1e\xa1mAO\x84>\xb55q\xf5\xe1\xac\x9d.\x96\x8c[\xcc\x16\xa3\x8f\x926\x95-\x87K\xdb\xca\xd8\\v\x07\xf5\xadN=\xddz\xb6\xb7\xf9\xf2\xe0\xe5\xe6\xb77\x1f\xef\xf9\xcb\x19\x1b\x8f\x1fo\xbe\xd8[\x94\xadk(\x1cd\xcf\xa9\xcf\xa0#\xa9\x9f,JG\xc1\xe5\xc6\xaf\xd8\xb8\xb81<\xa1\xc5li\xfb\x93\xf6\x90\xb3a(\xdc\x81\x93\x0e\x93h&\xf2h\xec\x92s\x8f\x04\xfcNh8\x92?b\x1a;\x81\xd5\xfe\xeb$\x9c\xc1\xba\xdcb\xf9\\\xbe\xff S\xb5\xad\xd8\xab~5\xc1\x87\x8d\xcb\x81\xdb\xf2\xc0Z\xc8z\x95\x13gn%\xb0\x96@8$\x15\x1b\x96MU\x87\x9bX^X\xd2\x92Q\xde(\x14aK\xb6\xf0y*\x87\x97\xcc\xa9\xbd\xed\x81\xad\xf56\xf8\xa2\xa9~\x08YNMQ\x153\xd0 \x0e\xe1\xf6\x9b\xf2\xd4\xaa\xd1!_\x7f\x8f'Q\xa2E\xe6\x98\xeb\xbe\x18c\x9d\xdd\xe80\x8e\xd8Q1\xceF\x0e\x1e\x0b\x86\x82@JI\x90\xb3\x11\xe0\xf9\xea\x13\xee\xe5)\xc7!Q\x97\xe4;\xbe\xf0\xba\x8a2\xda4\xb5|\xbc,V\x83\x08\x9d \xa2\xb2\x8b\xb3\x97\xdc\xe8C\xc7Gp\xe5r\x04g\x8c\xa2D%\x91>\xd2\xe0\x830\x00\xbfi\xcc\x95\x8fX\xa0\xdcT\x80+.\x1e\x9c\xaf7\x08 Q\xdeDL\xba\xbd\xf8a\xd8\x8b=\x0f\xa5\x1e\xe1\x8380\xa6\xfa+\xa6_\xe0\x14\xa7\x9el g\x80p\x02W\x06JS \xe7-\x0eS\xb1%\xdb%\x9d\x05\x9c\x9d\x97\xed\x10-Xo\x0c\x13\x9e\xa6\x9ap\xfc\x8d@>\x1fpZ\x85iZ\xc0\x14Z5\xd0L\x01\x9az\xd5\xa6\xab\x008$\xdd\xde\xf0a\xd8\x1bz\x1e\x8a=p0\x94\x03\xf0\x18\xfc\xce\xc4^Z\x80\xaaW\x02i\x99\xc4\xb8\x02\xc7x^\xbb\xbf1W\xd6\x81i\xc5\xe6\x06\xfc0[Pfr\"\x00\xc45\x90\x866\x9f&|\ne\xafehu\x15H\x8d\xf7\x9eH\xd3\x11=\xc0\x95^SsD\xac\xe5']\x8aC\xackR\x8e\xa7\x14 \x1b\x92\x14\x04\x8d4\x174\xf8\x15\xf0\x8b rEI7\x94\xf3\x07.\xc34\xaf\xdf\xe2\xc7b'5\x17\x87\xfb\xfa\x13#\xe1\x93\x16\x1c\xb7\x06\x88\x199\xdcM\xd6\xdb\x9c\xa5\x9cfm\xdb\xf6H\xb2\xe2\xa0\xa4\x8e\x11\x1e\x92N\x8f]\x03\xd1\"@4\xcc$RD\xb8[B\x00^\x8f\x00\x1c\x0b\x9c\x80u{\x19\x05\x86\x9e\x87\xaf\x83\x06\xc3*\x1aHqa\x90\xb6\xba\x01l\xdc%\x8c\xf0\xa9\x1b\x0eB\xeb.\x94\xd7\x0dT\x08\x89p\xd0 \xca\xd8\xf2~5\xd1j\x9c\x81DKA\xe8R\xd4\xe3rc\xd1\x87\xbc\x96reW\xeeA\x12\x9a\x82\xaf\xc9f\x15T\xc5\x84\xae\x8dy\x1c\xf3\xd7F{\x93\xd6H\xe4<\x97\xc8\x977_\x97W\x8e\xdf\x93U\x13\x90g\x96'\x00\xd6k\x05\xfcXT'\xa0\xba\xde\xf2\xeb/Vb\xb1\xa9\xd5\xaf\xc1\x92\xaa\xd4@\x93\xf6\n\x18\xbfG\x8a\xfc\xd0\xe91\x8f8\x03K\xe0\x0b\xea\xc4\xb7fS\xca\xfeN[[\xc8TD\xbb\x82\x92\xbe\x94\xd4?\x8c\xd7Rm\xda)\xf1\x9a)\xbcV\xfb\xddut\x12\x9b\xcf6\x9fonW\xd4\x12\xa2]\xda\xd9\xab\xf8l\x1c\xb8\xd8\"<\x93\xf2\xf0\xb2\xee\xc18\xabJ\xb2,\xfaZ\xca\x87\xd2DYW\xadf\xc2\xc1)-\x07\xd8\x82\xb2\x07r^\x12\xf7l\x81\xcf\x0c\xec\x1dl@(_\xb4\x9a\x01.\xa1*\x03_\xbf\xd1\xc5\xe5[]\xfe\x1dz\x0b/\x9f/\xf8\x8d\x0e.L\xf9\xe4[n\x8a\xe6\x9f-p~\xbc\xe4[';\xb8L\x14eK%\"\nM\xdb\xc6\x18E\x82\xda\x9e\xfc\x0e^\xb2\x06\x91]7\xb66~a\x1b\x86\xe5\n\xf0-\xcc_`Mo\xca\x89jM\xd9iF\x02\xc4\x12\xd0\xe5\xd2`\xb4*\xbb\x15\xf3#_\x1b\xe8\x0e9KyL\x17\xe0~\xed\x88\xd6E\xeb5\xd3Q\xb9(\xc0\x13g\xc5\x17\xe0\xc4\xc5\\;\xb5vk55K\x8a\xa2\xa5\x12\xc5\x95\xbc\x00\xe1h\xe1\xd6\xba\x00,\xe9\xf1\xc0!L\xd5\xd5\x92\\\x9e\xa4\xcc\xb3\x1b\x92$\xf3\xb4{)\xed\xb9\xaf\xe0\x89\xae\xfa&7\x1f[\xfa\x12\xa8\xe6\x95_Z\x07\x0f\xf9\x97\x8aL\xd5ynb:O\xf2\x19\xba\xf4b\xe1\xa2\x05\xbeu\xeb\xf6{\x82w\x82\x7f\x01\x882w\xfb\xf6\xed;\x08sr\xb6ho\xef<\xd9O|\x8e\xe7,\xfabNwX|\xba\x84:\x06\xdf\x8aSQ\x15Bk\x12\xa6O\xe6\xb3\x18Bt\xa7u\xba_\xb9\xe6v\xc1\x19\x99\xf6\x80m|\x9b.p\x18\xc7\xbb\x92L\xbf\xff\xb3\x87\xa4\xbb\xc0\xa3(\x15\x11\x1b\n\x98\x98z\xb3\x02}\x06GJ\x8bE\xcd\xb0v^\"_\xd8\x9a\xe4\x84\x91d7\xd8\xc8\xad\xf0$\xa6\xb6\x08\xb6\xba\x05BY&r+\x08\x83\x00\x0b\xd9\xb3|\x1c c=\x99\xcfV\xd8:TZ){\x9e\xb0\xaf\xc1?d07\xe0qpi\x00\x98\x91N\x1eE\xd0\x9c\xc1\xe5\xd02CSq\x12\x8b \xed\x9e\x87\x84\xb6\x07}\xccGtC\xb8 \xc2\x8c\xb8\xec\xe1\xc3;\xa8\xc5<\x81YV\x9c\xab\xb2\x05\x96\x9b\xe0\x94\n\x9aHIU\xdb\x92_\x1eQ \xa6\x19O\xe1g.\xa0!\xb8\x02\x0e]\x18N\x8aC\x0d>\x93\xddT\xc7\x01\xe1\x90:\x01NC\x16\x89(\xa5~h\x1e7\xe2\xb8\x0e\xb3B\x97Z\xb4I\x13\x98\x03\x07\x81\x08\x7f\xfb\xfe\xfb\x82\x00\x17;\xc0\x83\x8e\xda\x01\x98{\xf7\xf6\xbd\x0eD\xf3u\xef\xdd\xeb\xdc\x03\x87K\xfa)5O\xb1|\xea\xdc\xb9\x85\xda\x9f\xcfD\x82\x87\x84\xb9\xf7ow\xba\x92*\x0d\xe7IJ\xf1\\n*w\xef\xdfB\xeda\xcc\x19\xc53\xf9~\xe7\xc1-\xd4\x1eQ\x13n\x13\x8f\x08so\xdeyp\x13\xb5\xa3\xf4%\x1d\xe31a\xae\xdc\xb6\xac\x80\xa7\x93B\x03\x8aC\xb5\x0cR\x12\xb6\xe9\x89\x9c\xc40~I\xc7\xe9\x80yI\xd0\x9e\x85b\x92\x0e:\x01\xdc\x0eTA\x1c9\xc2\x13r\xb6\xc0S\xa2\xdc\xb4\xf7\xa6=4%\x1d\x83\x9bC\x918}B\x05\x85\xa6|\xc9\x0c\xd9\x84\x00\x96h4vG@\x04P4\x86\x88\x1cJ=\x97~\x1a\x89\x89\xeb|\xc3\x81\xf4\xc9@\xe6\x04YF\xdb7\xc6\xd1 \xd5\xae\xac\x8b7\xbd\xc1\xa4\x9e\xb3\xeex\xbat\xb1\xa9|\xa3\x98:\xd8`\xb4\xd2g\x90\xb4g\xaf\xe8i@\xcen$t\xec\x0b\xec\x9c\xb4\xa6Q\xc2\x1d\x1f\"A\xa9\xba\xa1\xd7a\xfb\x98&\x87<\xa5\x8f\xba\xcd\xa6\xe6\xd4\xda\xaf\xc3\x84\xb9\xceK\xd8&r\xb9\xd8\xc1\x02\xe1\xa9\xe7)\x87\xd8\xd0-N\xe6.\xb8\xd5\x1d\xb0\x00\xe9\x13\x90U\xb5\xe9K\xae\xfdq[m\x18m\xb9\xe3\x9b\x17\xd8\xe1\x91\xe7\xe4j=\x15Mx.\xa1\xe9@\xf5\xd8\x14U\xdb?\xc2\xaa>m\xb2V\x1d\xb5\x1c\xd78\x14a\x9c\xc3\xcf\xf2\xaaa\xda\x90\xa0\xb1\x1aZ\x1b\x87QLGk\x8e\x07\xe3\x01#\x97Pn\xb3\xd3(\xa5\xda9\x87\xe8\x99\x94vB\xc1}\x95\xe4 A\x876\x95\xe2}\xb5'\x1c\xeb)# \xa0Y\xc1$\xac\x7f\xf3\xe6\xed\x84J\x8a\xe5 \xe3c|\xa6\xb6\xf5!7\x1d\x8f\x8c\xc7A\xae\xe0l\x85n\xec\xad\x06\xb7\x01\x97b\xa6<\xe7%}-\x05\x11v\xb4\x96\xe3\xff\xda<\x89\xd7\xa0\x07\x00`'L\x1d,\x96\xe1L\x079\xee\x04\x04\nVV\x10\x8c\xae\xd9t+\xc9\"\xc8\xb2\xe5\xb4\xea\xf2S\xd8\\\xadR\x04m5\x17\xb5\xc5u\x1e\x82n\x13a`\xd7\xb0zz\x1d\xe8\xe1\x844\xba\xbd\x15\xa3I\xaen:\x81\xc1\xfd8\xc0\xff\x1a\x80W\xe3E\x8bE\x11!\x19\xc8\xd1b\xf9Z\xc2H\xb3\xac\x96a\x8fZ\xf3\xc6\x03x\x9e\xb0@\xe8*\x1a\xf04bQ:\xa1\xa3\xb5q\xcd\xcaD\xd8\nL4u\x8d\xab\xb0\\\x11\x93fY\xf1\\\xe19h\x99\x9d2\xc5\x10%\x8a\xfd4\xe6IE\x13G\x9a\xa0\xeb\xb0\xc5CC\xadY;\xe5\xf3dH\x91\xdc,\xf4sN\"\xf7\xf7m\nis\xe33\xe5\x00;\xcb\xf4CO\xf6fD\x1c\x07\x8f\x89\xc8\x0b~\xc3A\xbd\xb1u\xb1\xd3\x1d\x11\xe7\x1b\x8e7\x1et\x03,\xc8x\xd0 d\xa33\x8b\x06\xcbZ\x8e\x88{jz'\x90Y\xd5\xf8\x98\x0c\x8b\x97\xd3f\xf34\xaf\xfaf\xff\xd4?n6\x8f\x8b\xf7c\xdf\x19G1\xf5\x1d\xa5\xe6>\xc5\xc7P\xf5\xa1$L\x87D\xe7A\\\x0dn\xb0|\xd6\x9f\xc9}BJW\x02\xf9Q}:f\xeda8\x9c\xd0\xc1a\x80\xceX>\xf7\xd5\x99\x7f\xbc\xf1\xf8[\x9bO\x1c|\x88GjL\x94\xcc]\xebK\xf0\xdcl-\x11B{*H\x87\x9b\x90\xd8M\xf0H\x93hp\xb7&)2\xd3\x14\x19\xa9\xc5Im\x9a\xfcX\xd6:ZM\x91\x0f\xbd\x91\"\xc8\xacB\x90i\x8fU 25\x82[B&n\x02\xe1$F\xf8\x10|\xb2\x91\xa9\x9b\xc8\x87\xd0\x9dKN\x16\x12_\x98\xcf\x15\xac\x12\x886\xb2\x12.\x1fo\xee)\xa0`\xa6\xaf\xca'i\xb3Y<\x0f\x8e\x8a\xc0\xf6v\xa2;\x83~0\xd4\x16\x13\xcaj]^U\xe0\x89)\x99*}Y\x01vBq\xe8R\xd5q\xba@\xa8\xad\xdc\xef\x94\x95r\xca\x8f\xd4\x8a\x01P\xf5\xa1\x84\xe6Q\xb3yT\xe2I$\x1f\xea t\xa6x;J\x96\xe4b\xd6\x1eS1\x9c\xec(\xb6\x13\x9f\x85G\x94 \x9f\xb5\xe1wQx|W\xc5\xdcCL\xeb\x86\x1b\x8d\xdd\x9b\x1dcn(\xe6\xa9ri\xa2OZ\xb6v\x00)\xd2\x02\x8a+f\xe2\xe9\xc6\xd63\x89\xa1\x80\xd1+6\x90F\x07\x7fp\xe6H\xbcr|\x1dE{\xf1A\xaf\xeai\xeb\xef\xbc\xa4C\x1a\x1d\xd3\xd1\x9a\xea\xcf\xda\x90\x8f\xe8\xda\x8d\xb3\xbc\x7f\x0b\x7f\xed\xc6\xd9\xe1\xe2\xef\x14W\x0d\xc1\x92\x00\x84\xe1\x9a\xf1\x89\xe4\xf4LIS\xa9&\x01\x14\x9f\xa5\xc3 \x9d\x86\xbe3\xe4 u\xf0,\xa1B\x9c\xaa\x81\x82'\x109\x1f\xb4\xb2\xa2\x12{\xe2!Z\xd3\xa8\xd9\x84E\xe5R\x12\xbb\x14\x8f\x90\xba\x86h\xaf\xae\xe5\xc5\xf5\x92N\xb9\xa0?\xb1\xc5\x05XI$s\x9d\x14+\xcbv\x04u\xc5\xea\xa1\x08\x17\xaddY#\xef\xf55\x16\xf3{\xd1\xfe\xeaf-H\x9e-\xbez'\x10Z\x98UQ\x83PK\xaaC\xd8\xa7 Z\x8f\xa5\x91\xd0\x94\xa6j\xe1\x94\x80\xfb\xae\xa7Q\xac\x1c\xcbT\xb40\xb4_]\x18\xcdf\xd4_M\x9f\xf2U\xc1\x97V\x05\xb7WE\xe8F\x08\xf9\xa9K\x91\x1fj\xf3\x07\x84\x16\xee\xa1\xfc\x88\x0d\xf9(bGY\xe6\xcc\xc5\xf8\xbe\x83\x19\x16\xf5\x0b\xf9\xff0D\x97 \xfc\xff8\x9a\x7f\xe5f\x91\x1d\xf6\xf2\xb4\xa2B[FX\xe0.k\xf7\xae\xd5\xc5M\xf5I\xae\xbc\x8a\xc6\xae\x00\xcf\x14#\xf8\xc5j=\xe9)\x8d\xc0\xc1k[&)o\xffKb3\x14\x0b\x89r\x89\xde\xe0\x83\xc8\xf0\xfb\xb6\xb7\x07\x8e\xea\x14t\x856\xb2T/\xf5@\xb7\x8aPO\x80E\xdd\xaa\xc5\xc5\xe7l\xb46\xe3\x822\x11\x85\xf1Z:?T\xe8\xbe\x16\n\xd8\x88B\"\xc5t7\xb2\xd8\xc7A7\x80X\xbfF\xf4\x135\x998$\xa1\xe1M\x0b\xd7\x1e\xc8\xdc\x8f\xc5\x91d\xfd\xa3\xb1+\x87\x9be\xf0C\xce4\xcf2\xf2\x1b]\x0cZ\x0c\x7f\x10`z\"\x92\x10\x0e\x99FTY\xc5F\x9cA\xe8\x95\xb6\x95\xb0@X\xd6\x91\xb3=#\xa4\xeb\xcee\x9c^.WIl\x91\xe2\x0b\x95D\x04\xe9\xf5^\xfatC\xf4\xe8Uj\x84\\\xf8\x01\x99'\x82\xb3\x89\x01\x0b,\xf1&\xc2f\xcaI\xe2\x85J\xa4\x93Id\xae\xfa4\nE\xa8{\x04\xef0V\xa5UUr\xb5\x1e\x8c\x1a\xfa@\xa5\x05$\\,\x16JQAK\xa4\xb0\xa7\x87\x05\xddO\xda#:\x13\x93G\x9df\x93j\xd9\x01t\xa4&\xfb0LM\xa0C\xe1r\xd4\x1b\xba\xb4\xcdg\x94\x85\xb3H\xf9\x0c\x8e4;T\xa7\x18\x82y\xf1\x9do\xac[%\x9d\x85\x04\x82]\xcd\x90Og\x9cQ&\xdeWKQp\xa9\x92U\x8a) o\x97+\x12\xef.\xd3qm\xe6\xa7D\xb1\xdcmE\x03&\xc4\xe0\x86\x9e\xf5*\xccz \\\xe0\xf0_\x02\x02\x060\xd5d\xe4\xb7\xbb\xbaXb\x97]@\xbe/\x16\xa8\xc7\xdb\xa0\xebm6\xab\x0b\x17\xc2\xd2\x97\xde\x97=\xfb\x03\x0d\xb3\xca\x90j%z\xccr]\x11\xdaS\xf4\xd4MU1X\\x\xd0n\xb7\xf3c\x94\x14\x05J\x08M{@\xa7jnO)\xe6\x88\xe57\x88rjm\xe1\xeb\xba\x83\xb2\xac\x9am-\x8au\x07A\x14\xbb+\xbf\xaff\x97\xbf7\xf2G\xb3\xd9H\xfa\xad\xae\x9f4\x9b\x0d\xd6\xef\xfa\x1dI\xd9\xcd!\xc7\x1a\x1f\xaf\x85HoB\x16\x15k6\x13\x08\x19VM,\xbcF\x9d\xb4\xa6i\x8b\x9e\x84\xd3YLe\x83\x0f;\x88\xaf\xa6|\x8f\x13\x1a\x02\xe1\x9b\xf1\x88 \x9a\xac \xbe&!\x0e\x9bE\x82p\xecr\xb3\x0c\x12\xacU\xb5\xe5\xd6=x\xcf\xc9ZP\xe8qY%g\xa1\xc8\xe3Y\xe5\xfb\xfe\x15\xdd\xdb8\xe6\x91\xe4\xf3\xd6\x86Q2\x9c\xc7a\xb2f\xd4\xeb\x0e\xf2\xab\xc0\x81\xa5\xf3\xfe\xa1\xc2l\x84\xf1\x1a\xe8\xee%\xa0\xad\x01+=B\x04\xcb\xb3W\x1e|\x84\x16\x1dB\xc8\xf2B\x19D\x15\x9a\x13\x18\x1f\x16\xd7*\xbc\x8a\x04\x9d\xbaQ\xce\xf4\"P\xa9-\xf1Z\xca=d-\x1f %N\xc54\xf7\x14a<\xd3\x071>]\xf4LoH\x0dQ\xacR\xd0\x00\x0bm\xd7g\xb8\xa4\xe3\x9cOY\xfe\\\xc77\n\x10>\xad!\xe4\xb9\x19r\xcf\xe5\xa4\xa0@\x12J\xa3\xf9\x90\xba.,T\xf2\x88\xea\xef(y$\\]I\xd5m\xac\xbaU\xd3>\x94\xfc\x13E\xf2\xdf\x92\x9ad\x10\xa0e\xe1W{7\xad\xec\xac5\x80\xa8h\x03+\x1cC\xc8\xd6\xf8x\x0c6c\x94\x8d$\x16\xe5\xdf\xaf\xe9\xef\x1d\xb9\xa75:\xa8Wm\xac~/Z\x02{n\xb7fyl\xb6Gq\xec&m=\xa5\xca\xcb1\xc2\x1d\xe4\xbb\xab\xb9\x9c%\x95\xafQ\x9cZ\x1a\xdf\\&i85\xda\xde\xbc\x87[L\x95\xb7\xd9\xd0\xf77g\x8c\xee\"v\xcd\xe6\xf4\xda#3k/\xa6f\x0b\xc5g\xbai\xdft\xa2\xd5]\xc0\xcd\x95\xebv\xc9@\xe0z]\xaa\xb02\x0b\xbct\xe4=\x02q\x02\xe02K(\xb8\xa3~\x1e%<\xcb\xf2\xa0\x96\x96\xfe\x1f|[B\xe4\xcd\xaf\xbb\xb2\xbf\xfe\x87f%\x1f\xe6F\xdfJ\xb8\x05_\xe4\xf0D\xce\x00\x94\xa0$\x83Tx\"!\x04\xfaV\x9als\x80\xa1\xe5\xea<\xbd\xe76\x84\xd1 \x83i\x81~\xd6\x18\xfd\x90\xdcT \xd2\x0cO\xa1\x1b6U\xa0E\xc1\x0d\x83\xd3\xd42s,\x85\xec\x12\xcfO\x1a\x1dkM\xe5\xd9\xf6r\"v\x01\xe0`H\xdeZ\xcdj$\x83A\x10Xq[4\xf1\x94\xadC\xc1\xba\xc3\xea\xc3\xe8\xd0\x89\xacN\xcb\x0d%\x07\x9d\x003\x84\xd4\x8bLd\xa7\xb5m\xc8\xe4\xa2\x0d\xf9v\xbd6dI\xd3\x86|\x91\x08\xc8h]\x1b\x90l\xda\x80\xb7k\xb5\x01%\xf36T%8R\xf3\x8d0oK\x1c\x83\x88\x8d\x0c\x95\xa6uI\xa0`\xcd\xa6\xbe\xf9\xc5$\xdf\x05\xdf\xa5T\xb8\x0c7:\xb2\"\xc1g\xa4\xd1\xc5\xdc\xec\xc1\x16b\x80!\x8cD#I\xaa\xc0\x07\"\xc9\x8dc\xa8\xab\xb3\xb5\xb2T.\xc1\xc2\xf6fK}\xb8\xdc\x99\xe52\xa5\xca+\xb9\xaa\x99Jbm\x83\x85\xfd\xce{Z\xb5\x0b\xaeh\xda6\x1c*\xb7_\xe4X\x9d\x98\x99D\x94\x8b)\x02\x82\xfa\xd89Z\n\xb7\xd3\x06\"\xe8\xd9\x1d(r\xd6\x1dO`\xea&\xba\x11u\xa6\xa5-\x98^\xacnm\xa9@\xd1h5k\xa9\xedj\x81\xda.\xa8%YiV%\x9a\xa6\xd4\xf2\xabT\x0f\x89\xf5U\xc2\n\xacV \x89E\x95\xb0\xda\xaaU\xca\xc4\xda*\xd5Z\xa9T\xa9\x12M\x95jqU\xaa\x84\xc4j\x95\xe6$\x8bqQ\xc1\x18\xc6\x85B\x10\xc6\x85\xc1\x07\xbd\x8eZ-\xcc\xe4&r\xefv\xf7\xfe\xeaMD\xd9(\xeb\xc5\x7fD\x85\xe5lT\xc5\xfaJ1[\xf6\xc3R\xf6JZD\xa7\xb2\"\xe8\xea\xbc\xadt\xd3\x04\xd7*v,\xeeR+\x10\x01\xad\x8f\x06V\xa2HkC\x15\x1b\xec\x90Bx0:R\x17Cd\x05k.\x16.\xea\x97\xbe\xb1\xb9\xb2\xa8\xb8\x07\x1a\xe2\x14\xc7D\"\x19\xd6w\x85\xab1\xd1\x86\x9eW\x14\x9f\xcb\x05\x1a\xe6\xc1v\x0b7\xdb\xc3\x00!\xa6\xc3\x9f\xe09\x04!\x19\xcc\x03\x12\x0e\xe6\xca\xc0K\xa0\xb3\x94\x087Dfbg\xa4\xd3\x9b=4\xad\xcc<\x0f%y\x05\xe9`\x16\xa8:\xe4\x93\xac\x06~\x8b\xf0p\xf1b\x81\xef\xde\xbe\xd7\xb9\x16\xc7\xa7\xd6O~\xc5\xaeatw\xf5K\xe9E(&k\xd3y\n\xeb'\\S_\xb5\xd7\xcc\xc1u\x9do\x93B\x12\xd1\xcc\xa9\x89\xad\x87\x13\xe28\x98\x93\x0e\x8eH\xab\x8bC\xd2\xc1)\xe9\xf4\xd2\x87\xc66\xb8\xe7y\xeaX>5\xe6\xc0\x88\x95M\x81S\xadr\x8a\xc6\xee\xed{\x921A\x87 \x0d_\xf5\x18\xb9}oQ$\xca\xfc\x88\x10\x92\xb6\xbaY&\x19\x98\xb08[\x88\x1a\x90\xdel\xde\x84te\xcc\xa7\x05\x99\x9bYvS\x85\xd7\xb8}\xb7AHR\xb2B6\xfaSte\xf6M\xb0\xb1L\x8cQM~1=)\xee\x7f\xef\x8c\x95\xd9N4vc\xa8\xc7\xd4|\x06\xae\xbc\xe2\xbe\x9b\x03\x0b\xf9\x9c\xb8 ITT\x1d\xb7\x83c\x13\x96\xac\xd5m-\xd7\x89#\x02\xf7\xed{C\xceD\xc4\xe6ta\x8c\xd5n\x92\xa2)\x05\x95\xfc\x0d\x9dYsS\xf9\\@\xe8B=\x98N?\xf1\x88\xb3\xden;~B\x9cv[~sS\x9b\x12V\x0b9\x9e\x0e\x05\xe4F^\x17\xa7\xc8OH9\x01s\x92\xb6\xa2V\xb7\xa7\xdbT\xd5\xdc\xbe\xabb\xa3\x80\xa7\xc0\xb0\xefy\xa1\x1f\x92V\xd7\xd8\xd7,4\xc9Y\x92\xb0\nT\xa39\xaaAH\x96\xea*\x96\x0d>\"\x12\x01\x1a\xbc\x17\xb5Z\xfaz\xbcL\xec\xf4C\xcby~\x14\xf8\x85h\x02\xeam\xa2\x9d<\xb7\x87\xafGR< \x95\"\x7f\x880\xb8\x1a0\xec\xb1\x9b\x90\x10lg\x13\xcc \xa0dh\xa3J\x07Y\xe6B\xccMpCr\xc6}\x0b\x80\xf0\xad\xef\xac;\xbe\x0dU\xdfi;\x0blnCW\xefyC\xc4\xef\x1a[{\xa7\xedh:\x0d]\xa1\xe5\xae\xe4=,%\xd3\x02#\xf3\x8dQ\x8e\xd0U\x86r\x8d\xc4\xe0 \xc4\xb6u)q\xda\x0e2\x0e\xc5\x1eu\x9aM.\xe1\x05h\x80p\x02\xe3\xa1>]\xe0(\xdd8\x04\x85L\xad\xc4\x0d#\xb0k\xa9\xeb\xf0\x02KZ\xef\x97\xf5\x7fr\xd8\xd5\x89\xb6\x86_`\x86\xda?\x97(\xbb\xe7\xb1\xdc\xa1B\x81\x00,\xe8 \x17\x84\x96\xa2G\x16F\xf4)\xe1\xbe\x1a\xa3\xc7\xcd\x8cZ\xf9\x8e\\&\xd6\xd5}\n\x8a\x818\x84{u\xd6\x1e\xc4\x8a\xe9\x13R\xd4\xa7\xa4\x90y\xd5\x81\xb3KIR(U\x10\"\x84\xb8\xccJb\x08\x15\xe5\x0b\xa7$\xdd\x1e7\x94\xb4\x0e\x98\x1c\xf5<\x8f\x17\x1bQdP\x07\x87$jq\x9c\x92n/}\xc8\xcaU\xb0\nA\x96T\xbbW\xb8)\xc9K\xb7R<$\xe1\xc3\xb8\x1f\xfa1\x9eK\x92\xaf\xf692\xecy\xde\x0c\x86<#\x84\x0c\xe1)~\xa4~k\x1a\xf0f\x85\xa0\xa8\xe9G\xea\xcd\xbc.\xca\xaf\x96\xccj\xb25M\n\x1f\x0d\x9bM\xb7f\xe0\xde\x0c\xf5\xe7d\xe6\xc3\xf7\xcd\xa6;'\x1d\x84z\xb0\x97\x00\x81\x19-\x97\x07S\xc3F]\xef\xd4\x16\x04\xad\x8c\xa0\xae\x99\x8a\x88?&z6f\x84{s\xaf+\x07\x1f\xc1\xe0g\x0dB\" \xceF\xa5c3\x94e0\xa8\\\xd6\xee\x8f= \xb4\xfeX\x13\xde\xe2\xce`A\x19\xc6^1\xf49\xf2\xdd\xd4#s\\7W\xcd\xa6\xe7\xa5\xd8\x14Fh\x81\x0f\xa6\xe1+\xfa\x8c\xb3\xa3\xda\x9b@\x0b<\x8a\x12V\xbd\xf1\xf4\x1ebc\xb6\xfc%Z\xa3I\x10\xc3\\\xe2C\x04FA\xa4 6\xbd\xf0\x11\xe9\xf6Z-8(\x83\x92n\xa5\x8e\x10)\x8f\xb1\x8d\x08\x9dq\x12\xea\x19\xd3[\\\xe1`\xb0\xa5\x0c\xff\x81\xf0\xf8\xb0\x0c\x95\x1e\x83\xf7\x9d\xf5u\xc7\xa7f7\xe5h\x01\xa7\xa1\x95!\xea%Yh\x14\x9a\xcd%\xa6\x89\xd52M\x1f8\xf4D8&X\xfd\x12\xfb\xf4\x01\xea\x89<\x90tbsC*\x9c\x9a\xdd\"\xb3\xc8N\xfe\\0K\xda*G\xbdX\xf3\xd0l2\xf9V\x90\x038C-Ve\x17\xc7\xa4\xa5\x84\x8a\xc4\x06}\xf2\x88tz\xadV\x92\xdb9Wn`\xf5\xf2\x19Q\xeb\xb4\x11J\xf8'^\xd7\x9e\x01\xc5\xbb4\x9bn(w\xdeXf#\x9c>\"\x92l\x0e\x97\x91\xb1/\xcb\xb7Zi\xb3\xe9F$\x91h\xab\x90\".\xb6GN\x08\x89\xfa\x11\x89}\xa8;\x82\xa2\x06\x028\x9fG\x10xW\x8f(\xefzeH\xef\x19H\x94\x0f$\x82\x81\xd8\x98\x15\xf5\x9d\x02\x89\xa0qLO\xc4\xd22\x81\x89\x1e\x97#\xbcwJ\xa8/Y`\xab\xc7\xa9\xea\xb1\xe5\x81\xacLia \x0dBb\xd4\xd2\xe1\xdb\xdc\x08t`$\x95\xa0\x06\xd6)\xee+o\xb0}FR\xbf\xab\xc2h\xb8!\xe9\"_\xf9^\x867\xb9\xaf\x9b;\x0c\x91d\xff\xd2\x02\x02\xd6@Y\x96\xb5t\x949\xd8a53\xadp\x8cK\x1eJ>$^\xd7\x06\x08\x83U\xa5\xee\xdeU\xc9\x86\x0e\xc2G\xb3,Wv\xbdG\x08\xf9`oB\xd7\x9cY(&J\xd0\xaaYZ|\x0cq\xcb\xb5\xe8n\xc9'\x90\xfa\x81g\xea\xaf3\x994n(\xda\xa3(\xc92\xd1N8\x17`\x13 \xc9B\x96\xb9\xa2-\xe7\x15\x0c\xa6\x1d$\xadn\xe0\x03\x89\xb6\xdb\x1a\xe67\xc9\xd5E\xd0\\\xb8c\xd5HR\xb4\xf0\x9cm\xc9\x19\xb9\x90\xda\xe3\xadV/w\x89\x94\x0c8\xb8\xcd\x8c\x00\xf04\x15\xae0\x1f\xc7\xae\xb0t\xd4\xa2\xe8\xc7\xbcrPjFi\xc6\x98\x94'\xc0\\o_\x8ey\xd5\x0f\xdd\x04s\xb9\xb8\xeb\xb3\xe8\x80\x07\xc8\x1f\xba\x1c'\x98\xd9&\xc93\xd7\xf8\xd8\xfb\x8a\xddh4j\xfa\x91e\x8d\x9a.4\x9b\xb2e\x8e\x99\x14\xe6\xb8\xd5\xfa\xa8\x0c\x02\x97\xf5\x85\xe7\xac9>l@]X\x1c\xa3v\x1a\xb1\xa3y\x1c&.E\xfe\xa8=\x8b\xe7I\x18\x83\xfaMw8O#s\x18\x1eEx\xd4\x8e\xd2\x17*mV\xa4\xe5\xf5\x90\xb9\x84\x15\x16\xaa\xdcn\x9e:+R\xc3\xd1H}\xfer\x1e[>\x1f\xf4I\xb82\x12\x8a\xc0$!@\x0bU>\xaf\xa6\xfc\x05\xe0\xbd0_P\xfb\x8bO\xd8\x90\xcf\x99\x08\x0fcZ\xf9\x08\x9d-k-\xfbn\xa5[.\xc5\xce\x8d\x8e\x83\x96\x9b\xcfs\x90\xcf\x06\x15\xa2\x12\x10p+#\xbf\xd8J\x12Z\xdbc\xed\xf3\xb3\xf4\x1d\xa6U\xf2\x84\xf9\x80\x06D\xe0d \x02B\x17x0p\xb6\x1c\xec\xbc\xa6N\x80\x07\xce\x94:\xd8\x99\xa7\xf0<\x01g\xc1\x13z\noi\xf9UL\xe8T\xbdO\xd5\x87\xa7)\x8d\xc7\x0ev\xf8\x88<\x95\xebDn\xd2F\\\x15\x84_\x9d\x16\xd3)\xa4\xc1o\xfe-\x98A\xc8\x8f\xe1A\xa7\x86,\x14:=\x7f\xd49\xfcD\xce\xfa e\xaa\xdc\x89D\x93\xf0\xc4\x80\x88\x02\x80\x86\n\x86\xa7\xe0.\xe2\x94\xa6:{\xcc\xb9\x04\xf2\x98R\xa1`,\xa7\x03\xc3\x8f\x06\x03\x97\xe0\x97`0\xf3\xc29\xf8\xb6\x10\x94\x8a \xa4|1\x8f\xbet0\xfc|\x99\xe3\xca|\x1a29\xbd\xf2W%\xcd\x12\xce%\x8a\xc0\xafJ\x1a\x86 4\x07\xbfz\xfa\xc2\x18\x92\xe0W%\xc5\x9c\xd3S #\xce#\x83q\x11U\xe8\x16Q\xd3\xd3\x84s\xf8T=\xe8F\xa3\xe1+\x05\x11\xfd\xa4\x93\xc34\xa5\xc9\xe1)\xf8\xad\x90\x8f\xe9\xe1\xa9\x13\x04+\x0e\x9erbY]\xfb\x10$\x02\xd3\x81rl\x87\x07\x83\xf5\xb4\x7fc=\xc2\x0e4\xb2>\xf8L\xc5\x15k\xc9\x9f{O\x03\xc8\xba\xd1\x81\x0fhJ\x91\xca\xe8\xaa\x8c\xf0$\x93\xdb \x8aR\x9d\xac\xba\xbc\xee\x86q\x14\xa6\xd9\xe0\xb3\x90\xcf\x83y\x9a\x89A<\x0d\xc24;\n\xd3,\x89RT)M\x07S\x16\xcc\x91\xee\xd0\x8dn\x9a7\x1b\x07P\x8dj=\x96\x8f\xf4\xf3/\x13Y\xd3 \x9a\x07\xe1\xb4\xd2\x9bx>eYz\x1a\xc7\xe1av\x1c%Y\x12\x8e\xa2\x8c\xcd\x871\xcd\xc6sv\x94\x0d\xc3\xa1\xc8R\x11M\xe7q&h2\x8dXv\x18\x0e\xa38\xce\xc6|\x98\xcd\x05M\xb2\x98\x0f\xb3T$\xa1@n\xdf\x9f\xa7Y\x947\x11\xd9m\x84\xf1QvL\x13A\x0f\x13Y.\xccB\x03\x98\x90\xaa\x82)M\xc2\xd9$\x1bNh2?\x94\x85\xa2)\xca\xc7\x17MU\x99 M\xb2PdG \xe2:\x87\x1b\x00\x1eQ6\xca\xc2\xd1H\xfeL\xa38\xa6\x8cE\xd9(\x14\x19=\x11 \x9d\xca\x8e\x0b\x9aD\xd9\x88\xa6\xd1\x88&\xa1P\xdd\xce\x86!\x1b\xd18\x15\xd1\x10\xd8\x7f\x16\x81P\x13\x8aIL\xf3\xb4\xf9(\x92\xe5\x0e#9N\xec\x1c\xc6\xaa\xad\xc3\x84\x86R\xaa9\x9c\x8f\xc7a\x0c%\xe6B\xd0D\xf1\x883\xf8I%\xf39\x9c\x84i\n\x02\xc3pBS\xf8\x8d\xb9\x98H\xc9\x0f;C\xa8k\xc8\xa7S\x9a@\xcf\x87\\\n\xd4\xe0t\x14\xde\x92Y\n\xae\xcb\x0e\x13\xa8b\x14\x85\x87TP\xf5xDS]\x8e\xc6\xaf\xc0\xa1\x1aM\x8e$\xa3H\xbf\x98G\xb3)eB\xb9\x80Kh^\xec\x04\x8c\n\x81K\x1eG\xc9\xf4\xb5\x94w\xb03\x8e\xf9\x9c\x8d\xa0\xeb\xe3\xb9,w\x04F\xc6 R\x84\xc9ax\xa4X\xd5p<\x8eD\x04\x82P2\xd2\x9fNh8\xfab\x1e&\x82&\xa9z\x8d\x85r\xad\x96\xcc\xa0\x97\x92\xee\x7f\x1e\xb1W\xf0\xcc\xa7\xf45O^\xc1\xe3<\xcd\x9f#\xa6T\xeb\xaa\x8f\x9f\xd3\x10|\xb1}>O\x85\x9a\xccW\xf3\x11\x97)qx\xc8\xe7\xb2\x93\xb1\xf2k:\x87\x1eL\xc3\xe1$b49U\xcf\xafhBcx\x8c\xe0\x87\x8e\xa2\x10~a8S-\"L\xe7i4\x84\xdf\x11\x94eG\xb2\x10S\x858\x8b\x81\xdb\xa6\x12\xb3\x19\xd46\x8b^\x01c\x1e\x87\xec\x95\x80n\xce\xe2H\x0dy\xc6c\xd5\xcd\x19\x8fsg[\xce,\xa1\xd3(\x05\x00$a$S\x12\x9a\x82C[\xf9\xa8\xca\xa7a<\x85\xc2\xe90JS\x0e\x95\xa54Q^\xf2R\xfaZ\x81=\x9d\x84\xd3\xc3X\xa5M\x92h*\x11+\xe5c\xa1\xe1\x9f\xce\xe8P\x7f!\xc2\xb1\x943\xd2\xd7\x11\x03\xe9[R7\xed\xd4n<\x86\xd1\x8a$d\xe9\x8c'\"\x87\xb5H8x\xc6\x13s\x16\x82\xbc\xabg\xef5\x8d\xc7\xaa\xfe\xd7\x13\xb8u,\x9f\xa2xD\x0f)\x05\x87z\xf2%\x8e\xc6Ts\x13x}\xc6_\x0d\xe8\xc5\x8f\x82)\x87\xa5\xbdn\xc9\x0c\xf0>\xa24\x81\x87q\x94N\xe0aJ\xc34V\x14f\x9dK~^=\xce8p1\xeb\xe9\x84\xd2\xd9\x8d\xf5\xa8 \x0fu\xfa\x14\x84G\xe0k\xf5\xde\xfd{\xb7m\x03\x8a\x86MJ\x8eU\x08\xed\xfd\xfdC\xb7\xef\x7f\xb4\xb1\xfb\xadL\xfe\xd9y\xb1\xb7\x0b\x0f\x07\x1b\xcf\xb66v7\xf3\x97\x97\x1f?6O\xdfUO\x8f\x9f?\xd1\xb9\x8fw\x9e\xbfx\xb6\xb9\xb7\xb5\xb3\x0d\x8f\x1b{\x07O\xb6^\xaa\xacg[\xdb\x9b\xdb;\xea\xf9\xe5\xe6\xf3\x8d\xbd\xc7\xaa\x9d\x83\xdd\x9dO^>\xdeT\xcf\xdf\xdd|\xb9\xbb\xb5\xfdt\xc7z\xdb\xd9\xce\xc0\xcb\xeb\xde\xe6\xcb\xe7\xf2\xe9\x93\xe7\xdb\xbb\x99\xac\xfc\xe0\xd3\x9d\x97O>z\xb9\xb9\xf1\x9d\xdd\xec\xc9G\x9f\xec\x1e\xecn\xee\xca\xe2\x07\xf2y\xe3\xc9\x93\x97\x9b\xbb\xbb\xd9\x93\xcd\xa7\x1b\x9f<\xdb\xdb=x\xb1\xb1\xf7\xad\xec\xc9\xe6\xeew\xf6v^\xe4%\xb3'[/w\xf76\x1e\x7f'{\xb2\xb5\xfb\xe2\xd9\xc6\xf7\xb2\xcdO\xb6\x9ed\x1f?y\x9e\x17\xf8\xf8\xc9\xf3\x83g\x1b\xdb\x1fg\x1fo\xef<\xdf<\xf8\xce\xe6\xf7^nm\x7f|\xf0xg{\xef\xe5\xce\xb3J\xea\x0b\xf9\xed\x8b\x8f\x0f6>\xde\xdc\xde;\x80a|\xfcr\xe7\x93\x17\xbb\xd9\xb7\xb6v\xf7\xf2o\xe4\xf3\xd3\xadg\x9b\xe6aw\xeb\xfb\xeaE=\xec<\x97\x7fv\xf7\xb67\xf4\xc3\xde\xf7^lf[Ow\xb3\xad\xed\xdd\xbd\x8d\xed\xc7\x9b\xd9\xb7w>\xca\xa0W\xf2\xcf'\x1b\x1fof\xcf\x1e\x9b\x11\xcb\xc7g\xcf\xe4\xcf\xd6\x93\xcd\xed\xbd\xad\xa7[\x8f7\xe4\x84\xc8\x94\xe7\x9b\x1b\xbb\x9f\xbc\x04\x17\xdb\xf0\xba\xb3\xbd\xb9\xb7\xf1\xf2{\xf2\x19\x9a\x93\xbf\x9f<\xdf|\xb9\xf5X>\xbe\xd8x\xb1\xf9R>\xecm>\xdb|\xf1\xad\xff\x97\xb9\x7f\xe1N\xdb\xd8\x02\xc5\xf1\xaf\x82e\xd7\xd6\x18\x01N\xd2\xd3\xd3b\xcb\n\xb1\x95\x84[\x0c>\x80\x9b\xe6H2\x91\xd1`T\x0b\x89H\xc2\x8f\xb2\xe9g\xff\xaf\xd93z\x81\xb0\xdd\x9e\xfb\xbf\xeb\xb7\x12\x83\x90F\xf3\xdc\xb3_\xb3\x1f\xbd.\x16\x18\xb6YA}08\xeb\xf4\x06\xfc\xaaw\xa9w\x81\xad\xef\x00:\xbdO\xbc\xa6\x81\x88\xcd\x0b\x17\xad\xb3\xcf8\x84\x8bV\xbbs\xf6Y?\xfb\x15.Z\xdd\xf3\xd6\xb0\xd7\xff\xcaW\xa5\xdb\x1b\xb5\x86\xa3\x0f\xfd\xf6\xf9'\x1dz\x9d\xf3\xcb/\xe7\xd0\xbb\x1c\xea\xfd>\xfbjw\xcf\xa1\xd7\xff\xd0\x1e\x8e\x06\xbd\xb3_\xf5!\x03\xa8\xde\x00k\xc4\x0e\xe2\xaca=\x97\xedK}0l\x0d\xaf\x06p\xc9\xd6\xe2r\xf0\x06.\x07o\xe1r\xf0\x0e.\x07?\x02\xab\xb7\xdf\xea\x9e\xf7.\xa0\xaf_v\xbe\xc2@?\xebu\xcf\x070\xd0;\xed\xee\xd5\xef\xa3v\xb7=\x84d\xe9\xc576\x94@\xd6E\xab\xdb\xfa\xa4\xf7a\xf0Y\xeft\xf8'n\x93\xc1\xe7\xceo\x1d\x18\xb0Mq5\xfc\x8c\x1d\x05\x84W\x06NW\x97\x83a\xab?\x1c\xe9\xbf\xe9\xdd\xe1 \xfd\x99\xaefr\x83\xadjr\x9dt\xe2j\xa0\xf7\xe1K\xbb{\xde\xfb\xd2>\x87\xdfY\xed\xbd~{\xf8\x15~?G(\xfc\xd8\xfe\xc4v\xd8\x80\xff\xbe\xea\xf7\x19\xe4 (\xc7{\xe7\xada++\xf1\xa9\xaf\xebC\xbd\x9f\xde\xc5\x9b\x17z\xf7jt\xd9\xd7?\xb6\x7f\xc7\xdf\xfd\xab.[\xe3\xf4\xf9@o\x0d\xd3\x0b\xbeb\xfc\x17\x9f\x93|k\xc9=\xd6\xd7\xdc\xcf\x8dwpR\xd9\x8d\xdf\x86\xdd>\xfc~\xd1;o\x7fl\xeb\xfd\x011\xcd\x1bI\xf1\xd5\xa5\xb0\xf2o6\xe4k\xd9\x90\x0e,\x8d\x98\x0fU\xf3-1*flU\xcdA\xfd\xb0\xa1xApwC\xa7\xae\xef4w\x8e\x14d\xff\x9b\xd2|\x91\xc6$\x97\x14\xd7g|*?\x19SBuycGS\xcc\xa6x\xef\x86\x81\x8f\xa1\xd8\xd3\x96\x923+\xd3\xdc\xc3\xfc\xc2\xa2>\xf48\xb7\xfdXZ)\xf7v\xe82\xbc\xda4\xb2\xee\x99{\x9a)\x9b\xb2aF\xe6\xc0\xaaj&1I\x03#I;O\xacS\xa2\x03\xcb\xb2W\xe5ks/\xf7.\xe1\xef\x16\x06\xb5R\x1a\xa2P\xc3R|\xcc\xac\xdal\x987G\x8f\x86\xe9\xb4j\x1f\xed\xda\xc4\xaa\x9a(\xc2\x997\xa6Se\xdfu\xd39$\x1a\x98\x1f\xd8U\x95q\xfa\x86N\xad\x9a\xc6~h\x0d\x85\xf3NA\xd8l\xd4j`V\xcd*\x98\x87\xe6\xa1\xaa\xc1\xc9\x89\xaa\xc1\xe9\xa9\xaa\xc1\xfe>\x98`\x02\x18\xeaN\xd5\xac\x1d6~89\xbd\xde\x07K\xd5\xc0\xd0\xfejZ\x0d%7\xc5\xcd\x06\xeb\x9c\x06\xac\xef\x1a(p\xdcX\xad\x94\xfc\xec\x98L\xd83e\xe3\x9aXU\x93\x80q-\x13\x8b\xb0\xabo\xc6\xf57\xab\xfa\xed\xd9\xc9\xe2\x83\x87\xebo`\x92=\xf8\xb6\xb7Q\xf9\xd2\xb8^YUsUVK6\xd2\xa6QS\xb5\xaa\xa5\x81\xb1c6,\xd8\xdd\xd5\xe0\x87\x1f40\xaf\xcdk\x0d\x14E[\x1b\x91a\x1a\xa6e5\x9e\x87\x12\xd94\x97\x04\xe1\xa4\x14\n3\xa8Y\xad\x94\x86\xb9\xc7&\xe1\xa1\n\xc6\xaev\xb8\xf3~\xcf\"\x0dK\xe114\x9a\x0d\xd3dkd\xdf\x8c\xa9>\xf1\xc3\xf8\xde4%\x0bz\x9aqT\xfb\xb7\xb5|\xa3\xbc[\xc1\x95qT\xfb\xc5\xaeMZ\xb5\x8f\xd6\xf2\xe7\x15,\xf2\xbf\x7f\\\xc1c\xfe7?u\\\x1d\xd3\xbag\xfb\xb7\x0b\xfb\x96Fu\x06\xf6\xea2\x9a\xd2\x1b\xdb\xbf\xcd\xc6\xd2\xb8\xde\xdd1\xa3C\xb3\xc16\x93\xe8\xb8;C\xf6\x07\xe1\x1d\x99\xee\xfc\xe0\x1b\xf25\x18\xd7\xd2\xd24\xf7,\xb2\xbb\xb1\x05W\xc8\x1d#WQ\xf3\xed\x19\x95\n\xd0n\xde$\x0f\xcd\xa8J\x0c\xf3\xa1fUeMe3\x13\x1d\x9a\xe2\x8b\x10\x8d}-\xd77B\xd2\xbd\xa4\n\xa9\x00\x087imX\x15V\x94T\xb3\xf1\xa2\xa5H\x93 \xac\x05a\x8d'\xaa\x90\x9a\x85N\xcaZs\x12\x84\xc0\x9f\x11\xd6U\xf3\x81\xd7\\u}3\xcajL\xa0T\xda\x98\x04\xeerP\xf3\xe8\xa4X\xf95\x18ft\x0c\xfb\x16\x18'\xa7\x96)'5W5\x954R\xb8}\x1e\xecX\x1d\xf9JL\xf9uP\xf8b\xaf\xf9Q[a\xc5d\xad\xc9\xd6\xfb\xc4\"''5\xb6.D6\x1f\xaa\xc4\x8c8\xc6:\xd4\xd8\xa2\x85\x9a\xe9\x83\x19\x12\xf3\xed\xfa\x92ml\xc90\xbfhe\xb53D/\xdax\xbb\xa5\x95w/\xb6\"\x90|\x01U \xdc\x9a\xa6\xc5\xaa2M\x93\x1c\x12 /y\x13\xc0\xb0L\x82\xa1\xd8^\xdd1\xe5\x14A1\x807\xcdo{\x169\x94^l;\xdcht\xcf4-r`\\\x1fX\x87\x07[_/b\xb5\x03\x86\x0f\xae\x0fL\xd3\x82\xa4\x87\x84\xbd\xbc9R\x81B\xc2:\xbfX\xad\xac\x17I\x9b\xf6\x12m\x0b\xeb\xc9\xa5\x92\xec\x99gaX\xd6\x9a\xb6\xe3\x80=\x0f\x83y\x10\x81=\x8f\xd9_\x8d\xbb\xa2\xb3\xab[\x8aw\xdcx\xe1P\xb0\xa39\xf5\x84\x82\xfd)\xfa\xee\xdd\xd8\xe3\xbb\xc5\x1c\xec\x87;Hl2\xd9\xc5\x14n\xc6p#<\xdf\xe1\xe6\x16n\xfet\xe7oal{0\xb6c\x18O\x1c7\xba\x83\xf1\xf46\x9c\xc3xz7\x0e\xfc\x89{\x0b\xe3\xe9,p`<\x0d\x1e|\x18O\xc3 \x88a|\x17-f0\xf6\xa8\x1d\xc2x6\x87q\x80\x9a \x86\xd9\x00c\xbeD4\x84\xf1\x1c\xc6a\xe0\xe3Gl\xdf\xc0\x18\x9d\x97`\xbc\x08Q\xbf \x8e\x1dSp\xc6\xe08\xe08!\x8d\xc6\x0b\n\x0e\xbd \x828\x8aC{\x0e\xce\x04\x1cw\xc2?\xde\x81\xe3\xde\x82\xe3\x86\xeco\x1cxA\x18\x81\xb0\xa7e\xdf\x1183\x1a\xdd\x82\x1309\\|\xd5DO\xc0Y\x00\xbd\x0d\xe9\x1c0n\x1aP\xff\x1eh<\x8d\x83\xc0\x03\xfa8\xb7}\x87}\xe1\x93\xc7y\x08\x13\x87k\x05\x80\xcf\xc6\xe4\x16&\xf8\xf2\xc4\xf5(L\\\xdf\x81\xc9,\x86I\xe09\x90\x14\x0c)\x85I4\xbe\x83I<\x87\xc9\x82\x0d\xfe\x96\xcd\xfd\xad\x1b\xc3\xed\xdc\x0ec\xea\x00\xd6\x81\xba^\xb6\xaex\xe1P\x8f_\xb0\xf9\xc5\x8b\x08n\xc3\xc5Mm\x96L\xfd\xed\x9f\xee\x1c\xa6\xb6\x17\xc3\x94\xda\x0eLoa\xeaFq\x10>\xc14\x88b\xfc\xc0)\x98\xc6\xc1\x1c\xdcq\xe0\xdf\x83\xeb\x80;\x11\xaf\xbb\x13\x87-\x9a;Y\xcc\x81S p\x19hz\x1e\xb8s\xf8#\xb8\x89\xe0\x8f\xc0\xf5\xe1\xce\xf5<\xfc`O<\x1aE\xe0\xb9\xfe\x1dx>x\xc1\x98\xad\x92\x17\xdcb;^p\x1b\x061\xbf\x13\xdc\x817\x1f\x837\x0f\xd9\x9f\xeb\xc7\xe2\xcb\x11\xdf\xdf\xd9\xf7\x0c\xbc\x08\xbc(\x98\x80\xf7\xe4?\xc2\xcc\xbe\xa30\xb3}\x98\x8da\xe6\xd8\xce\x0c\xd2\xa1\xce\xee\xd8\xea\xce\xee\xe8\xdbI\x04\xb3\xbb\x89; \xd8\x17\xbbv\xa3\x00\xbf\xfd\xc0\x81\xd9]\xf4`\xcfa6\xbb\x87Y\x10R\x98\xb1y\x981\xd1\x1cflE#\x98\xc5!\xcc\x16q\x0c\xb3{\xf0m?\x00\x7f\x0c>\x8d\xa3\xd8\x8e\xc1w\xc7\x14|\x0f\xfc\xc0\xa1\xe0\x07\xd3\xc5\x1c\xfc v'O\xb5\x88\xfa\x0e\xf8\xf3\x19\xf8\x11\x1b\xdab\x0e\x01\xfbO}\x10\xeb7\xb7\xa3\xe8\x01\xbfb\ns;\x9e\x8e\xa7w0w\xfd[\x98\xe3\xf4\xcd\xd9\xcb\xf3\xc0a\xa3\xe3_)\xfc\xcd\x83\xb9\x03\xf3\x10pZ\xc6\xf6\x9c_00\x9cG0_DS\x07\xe6\xf7\xf0}\x11\xc46\xff\xc4T]\xe22\xf6 \xb4g\x10\xda!\x84\xe39\x84\xb8A \xa4\xb3\xe8\xc9\x1fC\xc8\xf7vHqd!\xbd\x87p\x06\xe1\x8cMe8\x9fA\x88\x85\xa2\xf1\x1c\xa2qH\xa9\x0f\x11\xee\xa8\x88:\xc0\x06<\xb3]\x0f\"\xfa\x1d\"\x1a\xde\xb3\n\"\x06\xc0\xd1\x14\xa2)\xf5<\xde\x8bh\xba\x98\xb0\x8f\x18A)\xf2(\x9dC$\xc0\"b\x10\xc5wu\xc4\xde\x8a\x85\xe6\x9a\xd5\xb4\x80h\xe1\x04\xc0\xf0D\xb4\x88\xe6lz\xd9\xca\x05>`\x9fb\x9b\xfd\xb9\x1e\xc4v\x081\xa5\x10\xbb3\xfe\x11,b`\xe0\x1c\x07\x8b\xf1\x14\xe2\x10\xb0\xc20X\xc4\x14bl1\x8e\x9f`\xc1\xd7|\x81\xc3_\xf8b\x1f/|\xf7;\xfb\x88#X\xf8l\xca\x16~4\xc5/\xb6\x91xD\xb1\x1a\xdbb\xb0\x98c\x83l\xaf\xb2\xfd\xc8\xbe\xd9vd\xdfl7\xb2\xef\x08\x16\x0b\x87\x8e\x19\xa8,\x16\x18V\x93\xc2=\xdc\x8f\xe7w\xb7p\xcff\xf8\xde\x85{w\x06\xf7n\x18M\xe1~\x86\xc3\x7f\xb0]\xf6\x11\x8f\xa7\xf00\x86\x07\x86\xa5\x1f\xa64\xa4n\x04\x0fS\x97\xdd\x9d\x06\xec\xcf\x9e\xb9\x801:\xe0\xd1\x0eo#xtnk\x08nOv\xe8\xc3\x13\x8d\xe0O\xea\xbb\xf1\x13\xb0\x8e\xff\x19M\xe1\xcf\xa7\xf9\x9c\x86D\xd6\xd4=0\x08'\x16\x9br\x8d\xc8\xea\xf7\x12i\x19\xdb\x0c-\x06\xe0\x04>\x05\xea\xb9\x13\xa0^D\x81F\xf6\x18&.\xc3k\x90P)p'\xe0\xfa\x82q\x83xJ}X\xf8\xb1\xeb\xb1\xe1x\xf4\xa5\xfe\xdc,\\/v_$uf\x1d\x9a\xe2\xa0\xe9\x86aX\xb4V\x05\xf12\xa0\xc3q\x08c\x07 \x0c[\xe7\xc4\xa7\x0e\x1c:\xf6\xec\x90\x02\x1dO\x03\xa0>\xa3\xaf@\xefm\x86\xd8\xe9\x18\xe8\xa3\x8bH\x9d\x01\xcd-\x8d\x83y\x1c\xc1\x94\x91\xc1)\xf5\xe6\xe0\xd1\x18\xf1\x9b\xc7\xd0\x1a\x83\xba\x99=G$\x8f\xdbs\x02\xf3\x07\x07B\x86v\xd9\x07\xa6\x08\xc1\xab\xc0\xf7\xd8E\xbc\x08\xd9\xac\xc4\x10M\xdd \xfb\x0c\xe61\xf0\xa8#h\x9c\x80\xb0\x1c\x01R\xb2\xf8iN\xf1\x83\x95_\xa0\xb5),fvt\xc7\xe0\x17G\xbd\xf0#\x1a??\x99)w\xe1\xd9Q\xc4\x05\x81\x95r\x13\x04\x1e\xb5_\x9c\xdf\x89\xcd\x967\x0e\x17/.\x18F&\xaf%\x91;\x820\xcfi\x9b\x1f\xf6M\xc7\xbc)\x15jR\xb10W\xdc\xd1NN\xe1\xd4\x040\xab*\xa8\x86\xfa\x97\xa5\xc1\x0e\xca\xc4\xc6I\x8d\xc9\x8d\xfb\xa6ci\xa7\xa7`:\xac\xab\xfb\x1a\xf6\xd8\xd8W-\x0d\xf6\x8d\xd3}K\x03\x13\x8c}\xb0\xb4\x8c\x8d\x7f\xae\x7f\xd7\xa6S\xd6\xb7\xd5jM\xb4\xe6\xba\x85D\xba6\xebf\x1d\x8c\xe5\xca0\xadc\xd3\xb4\x1a\x89B\xa00\xa5&\x1ei\x1aoj\xbfX\xa6s\x08G\xf8\xab\xaeX(\xfe\xb3))N\xe3J\xf1\xeb\xbc\xc7\xea\xba\xc0\x983\xf64$!\nJ\xeb\x12\xde\xba,U\x14~\x94\xc4\x80O\x91r|i\xae\x12I\x91\x04\"\xc0\xd3!\xdcE\xec\x8a\x03\x8b\xb4\xb9\xc8\x8a\x94\xac\x1f&\xad\xc9\xa9z$>\x1b\x92\xa5\xb8j\xc6\xc3\x1ao,1>tq\xb5O\x12\xc7\xbec\xbbZ%\xae\x11\x18\xb6em\x0c\x9d\xdf.\x88\xd0Hh6\n\xae\xe4\xcb\xd0\x8dfd\xa5\xfc\xf8\xf6\xdf\xbf\xe4\xf5\xebx?Wz\xac\xae\xdf\xa1\x8f1\xf5\x1dY\x1a{xt\xb2\xdc\x94\xb6\xcd\x86\xd9@Y\xc0\x0cM\x9f\x8b\x03(\x0b\x99\xbe\x06\xa6\x0f\xb2\xb6c\xb0\x1f\x16!\xe4\x10\xcc\x86y\x98\x97\x98\x0e\xcd\x06\xec\xe5uQ\xa9\x88\x975\xc0\x85 Q'\x08Q\x83\x0b<\xbcb&\xf2\xe4*\xc8o\xe9\x0d\xa9\x99\xfa\x8c\x82\xc6\xe1\x82\x8b\xcd\xb2\xd6\x1c\x8d\xec8\x0e\xdd\x9bELG#.\x99\xcbI\x17\x19H3\x99\x0f\xf5z`\xde\x18v\xedO\xcb|8\x1c\xc5\x9b@\x9a\x12\x8b\x0664jy\xee\xadoG\xc0/\x82 \x8cZq0s\xc70\xfa\xc0X\xe5\xd1Y0\x9b{\xf4\x11F\x9f\xa8OCv\xbf=\xb3o]\xdf\x0e\x9f`\xd4\x0d\x04J\x1c\x0db;v\xc7#4\x19\x8ba4\x9c2\xa49\xe2\x88\xb6\xd0u\xb0\xa3\x19\x8a,\x02\xdd#Q\x1a3r\x8d\x02T\x1e\xc9c\x18$N\xb0\x16\x88\xe2\x91Z\xb1\x99\xe1\xb1\xaf`\xe2\x05\x8c\x11\x0fB\xb8\x0d\xe2\x80\xd3,\xcf\xf5) _\x1a\xf8\xb7\x10\xd2[7\x8ai\x98\xa2\xee)2/\xee\xad\xcf\x98!\xf7O\x1aL\x90\x81q\xc7b\xb6!zp\x19\x19gx\xdb\xa1\x13\xe0\xb6\xb2\x8c\xbb\x08\x18 \x14o\xde\x07.\xfb\xf0\xec\x98Q\x0eN\x13\xd9T\xa7B^\x83/\xc2\x88\xadB\xa2I!\x0d7U;\xa2\x92\xf1\xe8\x91\x01\xa4\xe9\xa0\xe6\x11\xe9\xa1\xf8\x81:\xc7\xe4\x07\xaa\x1d\xe7F\xb5fq\xb5\xe3\x0b\nJ\x9a\x95$\xc6d\xe1Y\xcb#\xe5\xc7U\xc3\xcd)+Q1\x89*\xca\xda)\xc8F\xad\xba\x0fM\x8b\x98o\xc0\xd0\x9a\x7fY`\xd4\xaa\x87\x8d\x1f\xf6\xe1zG=9\xb5T\xad\xb1\"\xca\xfa~s}\xb6\xce\x1f\xe8$\x08\xa9,\x8ds\xc8i\xc9\xd62\x07\xcf\x07[\xb6\xc5A\xb2-\x96G\xca\xbb\xb7\xab\xbcH\xbe\xfa{\x0d\xce\xecq\x18\x14\x10\xb7a\xc6\x15\xeb\x90\xec\x9a\xd1!n\x85\xdc\xbeoX\xc0\xf0\xc0\x8eyHp\x97\xe3\xa3C\x0b\xd8\xd5\x8e\xd9 \xe4\x107\xfbF\x8f\xc9a\xc3\x9dm\xd5X$\xeara\x9e\x9e\xea\xca\x97\x9b\x8a\xa0k\x99u\xcb\xf51\xc3%\xdb\xb4'\xc6\xf5\xa9U=\xdd\xd8\xa7\x1bHO\x04\x8a\xb0\x14\x9c\xe1\xcd\xc7\xecv\xaaf,y\xcc\x9f\xe0\xb1u\x18\x94\xe8\x14\xafY\xc7x@\x17\xa1\xa9c\x18b\x87\x03\xeeZ\xe7^|M-y\xadL}\xe8\xb8!\x1d\xa3C\xf7\xfa\x14\x11\\\xba\xea\x16~(\xa1t+EJ\xab\xa81.Oj6\xaew\xd7\x94\xd0\xbb\xbb\xb8\xa0\xaa\xc0\xf0\x0d%\xcb\x17\x9d\xa7\x10\x03\x81OS\xbecc\x12W\xab\xd7\xc1fF\x92\x97\x89ZH\xe0[\xbd\xf7\x11\xbaW\x9d\x0e\x0ct\xfd\xd7\xd1\xd9U\x9f_\xe8\xdds~1\xd0\x870\x1a\x9d\xb7\x86\xfah\x04\xa3\xd1\xc7v\x87_t\xda]~1l_\xe8\x83a\xeb\xe22\xfd\x85\x17\xac\xc5\xd1\x08\xa2\xd8\xa1a\xc8\xbe\x18\xf7\x1e;\xc1\"f\x88iE\x14\x11pq\x13.\x04\x7f\xb0R\xfe\xf5\xe3\xbbw\xcfR]F[\xd5\x94\xb4\x1a\x9b\x1aA\xb2\x8dn\xbeBU'\xeahb%\x8d\xcd\x13\xa9\xec%k\x93\xf6\neg\x19\xa6a\x10\xfc\x86\xb0\xaa\x05\x156\xdf\xbc\x9e\x0c\xe33\xe0\xccE\x04.\xa3\x84\xe8\x18\xc4\x15*\xfe\x98\x91\x06\x0c\x959a\xd2\xafO\x1f\x18\xe7\xef\"\xc9\x06\xf3\x06C\xe9\x98Q\xd5\x94\x89a>\xd4M\xd3\xaanl\x89\x04Q\x14\x0fMX\xd9\xc6j\x9dV'\x04\x93\xd1\xa7\x8cL\x06\x9c.N\\\xdf\xf6\xbc\xa72).\xd7Y\xd6E\x7f\xe1y =D\x97Q\x88\xc3\xa7\x1c\x11K\xa4\x0b\xdehN\x88X\xa7pB\xe3.\x93\xc6\xfaq\xda\xeb\xce\xd2r\xa4\xaa@\x9f\x0c$;`\xec\xa8\x96\xaa1*U\xd3\xf0tM\x83\xfd}\x0d\x8f\xd340\xb4\xc3\xc6_\xd7?\xac\x1f\xa0 \x8e^&J\xbd\x893\xf8\xd3\xdb7\xef^0\xd5h\xec2\x18Y\x92z\xb5Q8,\xdd\xcd\x9d\x88\xad+\xfc\x8bGB\xe3`2\xa1\x82\xaf.\xb0\xb5 [\xfa\x87}o\xf3\xc79\xde4.9&8\xc8k\xd2\x19\xd0\x1e\xac\xa9\xab\xf3[FZ/,\xad1\x99)t!\x8c\xce\x91_ \xfc\xa6\xbfZYk\xa0eg\xe2\xf7S\x02a\x08\xfb9v\xecfq{KC\x11\xb9\x15\xe1\xce\x1eO\x05S\x86\xe3L7\n\x87\x99\xd1HY\x13\x95\x89\xea\xb5|_\x9e\x94{\x8b(\x0f\xecU\xe3Z\x91\xc9\xc9\xa9aZksutz\nX\x05\x9c\x9c\xbc=\xcdf\xcc\x98(S|\xfd\x91\xbdn\xcaX\x92\xd1?\x85_\x91jn\xda\x8c\x07\x8b(w|\xcc\xcd\\\x9dd\xb3\xb3o\xb7u\xf6Q\xe1\xdd\x1d\xa9\xcbDbX\xaci\xa6ONe\xa2)\xf5&\xfaC\xac\x94\x9e\xda8H\xcf%\x85}r\x1dL\xd3\xb8ZZ)\x12g\xd2j\xac\xe9b\x0f\x0b{\xba\x89{\x9a\x13i\xf5\x14\x0cyi\x01N\x17c\x1eY\x17\x0c\x02\xd9ea'?\xe5\xf6q\xa9\x91-w\xe8abI\x10\xd6\\\xff>\x18\xdbq\xd9|\xf9\xf4a\x0dy\x1b\xac\x1f\xf9\xc6\xb6\"\xac\xf2\x86\x13\x9d\xc9\x8c\xc6\xd3\xc0)\x19~\xc2\x85e\xfa\x905\x0enC9\xe2\xcb\x8d\xeb\x12|\xbc\xa1,\x11\xdc\xed\x84<\xbb<)\x18yn\x14\x17\xfb\xc7\x03\x12%\x04\x89\xa3\\.\xe3%?\xb1\xf3\xffb\x98X\x10\n\xceV%\xfa\n|\xfb\x1d\xf2`?&\x9cX\xfa\xca\xc9\xc9O)_\xa6\xf0e/\x16f\x8f\x13\xf8\x93\xb5&6\x01\xc6\xf2\xd8\x02\xf5\x94I\x85\x05\xda\xa8\xcc\x94;e\x91\xdc\x99*\x0d\xb1\x98\x89\xd7cRx\xeb\xf6\x92\xf8\xc8ji\xc0\xd85\xe0\xb8\x96\xb5\x9d\xa4F\x92\xac\xdc:\x91\xbeU6\xf7\xc6\xb3\xba\x17\x8e`V9\xd2Sn\xc3\"\xd6\xf2\x8elV7Z3\x8e6\x14\x99\xa0\xb9\xc4<\xa4\"GK\x10\x96\x9a\xd4\xd5\x0f\x1b\xebfp[\x8d\xdf\xcal\xbb\xe4]\x92\xa0\x18\xb7\xe8\x85\xe0;\xec\xd2wBz\xeb\x06>\xd00\xe4v\x03x\x9a\xc5DP<\x9f\x9a\x87\xf6\xed\xcc\x06Q\x08O\xf5\xe1\xc1\x0e}\xc4\x9b\xeb\xc6\xae\x1b\xc6b\xab\xd5\x8aG\x0e\xbfT\x07\xa8\xe1\xed)-\x94\x10\x98\xb8c\x1c6,4\nlp\xa6\x9c\xd1m\xf6\xf5\x9c\x9d\xe0\xda\x9e\xba\xb4\x88\xb2\xa7\x862\xca,\xd2A\x83\x8bjL\xa2`2\x08\x17\xd9\xf2\x12\x9b\xd1\xb2\x08\x13\xdb\xfa\xc99g\x14\xd1\xd9\x8d\xf7\x04(\xd5\xc3\x04\x0f#9\x1aH\x0e\xea\x90\xb0A2\xd9\xa9\x1d\xcf\xd3\x1cU\xebI\xc5gk\x12\x17k\xfe\x0d\xb6]\x14\xb1\xf6\xac\xe2\xd1\xd1kHYj\xcc[\x04v\xe1\x82jF\xe6\xc3)\xd1,$\x17F\xba\xa39\xec73\xa1/\xdb\xc4\xa9\x0c\x88\xc8,\x8f8\xfb\xca\xd9\xcb[c\x19\xdb\xe1-\x8d\x0b\x9d\xb9\xdeB\xde\xfb\x16)1 L\x07\xb4m#\x0b\x01\xb2\xb0r{\x19\x9a-\xdb\x9c\xcfn\xc9'\xf2\x1c\x85.\xee\xcc\xa6\xc26\xa6\x00\xdb?\xd4F\xd3\xb8^!X\xa6\xc7m\xca\xf0\x1f@\\\x1b\xc1~\xc9-\x9fd\xad\xc9\xe0\x7f\xd5\x142\x18\xe1k\xa2\x99\xab\xec\xbd\xa1\xf2\x87E\x94\xeeZS\xaf\xb1\xa5}\xb6;\x97\xbc;\xe7\x7f\xb7;]\xd6\x9dL\xb1\xd3\x91\xe3L\xf5\xbaf+Q\x06\xa5Kn-\xb84\x97dC\xd6\x89\xb7\xe3{\xee\xfa\xb9y\xa0\x82\xc8\x9eu\x7f\xbd\xe3\x99\x80\xb8\xda\xcb\x8d:\xc4\xc9|\x05\xcfv\xdd\xdc\x80\x88ks \xe6jo\x8b\x11\xebV{\x97d/o\x87\xd9U\xea\xd4\x90\xd6\xb2Z\xbd\x029\xe4M}r\xf3^b)\x93\x88\xfbL\xd8g\xd3\xbf\xf7\x1e\xde\x9b{d]]\xc1\x96E@\x0d+\xbb\x94\n\n\x0e\xa3\xfd2N\xe8\xc8meH\xca\x14\x0dh\xa5\xba\x97\xa8P\xd6Z\x92\x96\xc5\x96\xce_\xd3\xd2\xb9\xd2%+a\x94\xbd\xbe\xd1{d\xfb\xc1\x99\x13\xc4>-\x9a\x0b\x8e#\xb5d]\xd2\xd3\x8d\x7f\x1f\xfd\xf8\xd3s\x06\xba\xb7\xc1\x8b~1\x9b\x96\xb3\xc9zdZ\xa5\xfc\xd1(\xfa\xed\x1f~{\xc6\x82\xb7\xdcD\x95\xfbt\xf8[}:\xe8\x84\x86\xc2n\xd5\xf6\xbcx\x1a\x06\x8b\xdbij\xbb\n\xb7\x81\xac5\xe3\x80h\x05\xbb\x96\xc4\xcevf\xcfan\x8f\xef\xec[\n(If\x8ey\xe8\xae\xb8\xe9\xc9\x01\xf7vXr,=\x12\x96\x8an\x10\xdb\xe0\xbb^f\xe6*\x84y\xa3\xc1Ey.\xb8W!0\x8ej\xff\x1eYU\xe2r\xd1\xba\x91\x9c\xfa\xdb\xb5\x89\xe9\x8c\x92\xb3{\xf1K\x9c\xfa'\xcf\n~\x1c\xacu!\xb7\xbb\x1aC{\x0fh\xaf s\x83Y\x03_O\x0c\x01FVf8+~\xe6M\x01X\xd5\xb9J\xac\xbc%\xed\xa1\xd9\xf8\xe1\x1a\xedh\xc1\xac\x1aj\xd5\xd2\xa0f\xa85\xeec\xa7\x82\xa5\xc1>\x13\x9d`\x1f\xcckU#\x1a0\xba|\xaaj\xa0\x12\x0d\xed$N\xd85\xd4\x88\x06M\x15\x9d\xe6\x98\xa0\x9e\xf8w\n\xa6\x05\x038\nS\xac\xa7\x98\xc2\xd8\x9e\xc3\xd8\x0b\x18\x0c\x08\xe7!\xf1-k\xcd\x9f~\x847o\x7f&0\x0e\xe6O\x89=\x14g\xf5\xf0\x98I\xd6\x9a\xef\xde\xc2O?\x12Xh\xae\xcf~\xfe\x0co~\x02~O\x03wf\xdf\x82G}\xeeR\xee\xd3\x07\x98\xdb\xbe;\xe6\xbe\x9b\xb2\xd6\xf4|\xa2AHm\x0fe\x8e{\x1aB\xb8\xf0)p\xa8Gc\x9ey\x1c\n\x13\x84\xe7\xad\xf81z\xfa\xf3>-\xf55/\x967G\x1b^,[\x8c\xeeo\x03#\xcf\x1fX+\xe5_\xaf;\xb6\\?\\\x94\x98\x88!\x8e\x00\x9b\x18\xcd\x89\x91^\xbc \xc4\xb8\xb6\xaa\x19\xd28\x9ac\xa8O\xb1\xe25\xf6\xdb*\xe7\x91\xe69v\"\x96\x1b\x97x\xc0Y\xfb\x95>\xd5.]\x9f\x01|\xadO\x19\xa1\xaa\xf5|\xef)\x93\xb2\xb6\xb5<\x9d\xdf\x15\x9b\xc6\x1b\xa5m\xb3'\xc5\xc6\x07\x98\x9a\xb86L\"l\xa6\xc3~\xb1\xd5(\x8e\x8a\xad\xb2\x1b\xe5\xadFqTl\xd5\xb8nfR\xc7\xba2\xdfR\x92\xe5Yw\xa5\xb9\xe6\xefm\n^\x9b\x9c\xee\x8a\xa7\xf5R\xc2<\x1f\xa4\x04\xeaR\xb2\xe7s\xcf\xe5\x1a\xb8F\xde\x94<\xccYj+\xc5R\x11\xdb%a\x9d}\x03l/\xf78\xf3X\xb1\xc7\x99\xa7H1}\x8c7oLc~\x87}\x8b[\xe3(bw\xc6Q$n\xcc=\xdb\xc5\xe6\xf0b\xa5\xb8\xeb}\xc6\xde\xec\x1c\x95\xb4\xbds\x94K\x07eg\xa6\xcf9;\x8ek\xee\x0bg6\x1aJ\x96;-\xb5\xfe\x00\xd3|\xa8\xa2s\xb3i>\xd4kV\xd54\xab\xa4*U\xe3\xaa\xc4\xa8A\x95\xdf%DZ%\xe6&Q\xc5\xf5+\x01q'r`D\x16Y\xfa\xaa\x0f\xb0\xe4\xb3\xef\xa9\xae\x11Y\x9a-G\xa4\x19\x1d\xfbF\x94K\xc5\xd4h\xdc*RM\"\x96\xba\xce\xe9J\xb2Tm\x8c\xc5&d,\x17\x93\xee\x13X\xa9z\xd8\xbd\xc2\xfef\xfb\xbe~\xc8\x8f8B\xf6\x81>\xd8\xa6O\x08{\x9c\xbe)\x11\xa9\xda0\xae+f\xcc^H\x1c\xf4\x12\x0e\x9d\x11\xb7r1\x8a\x8dk\xb5\xf2\xf7\xf7\xb7\x0b0\x0c\x9dJ \xd4J\x8a\x9f\xb3#z\xfb\xaf\xa3\x17\xbd\x868\xef#\xec9@X(\x0b\xfe2\xf5\xa5Anh\xcd.=1\xae}\xbd\xb33\xa6\x16\xcb\xbck\xb8\x19x\xe2]\xb3\xe9\x03\x9dsS\xcb\x85\xffI\xbd\xd5r\x9ct\xde\x02\xdc\xc7\xbc\xba\xc2\xec\xdb\xafq+\x0d\xe1\x813\xa7>~D)\xdf=\xa7\xe1\xcc\x8d\xa32\xf3\xef0\xb8w\x1d\x1aev\xe0\xe3 t6\x8d\xbey\xfd\xc2\xf6;u\xc1v\xc7\xf1d^t\xed\x89\x9e\xfc\xf14\x0c|\xf7O\xea\x14\\|\xd8g\x04q\x00\x18i\xd8\xa5~,\xaep q\xf8\x04\x8b\x88F\x8c\xf7/s\xd8\x16\x9e>\xa9\x97\x8f\xaf\na\xe8\xa1\x8e\xd2i\xe2D\x9f\x9c\xc0 \xa8&&\xc9\xd9\xcd\x14\x16\xc3\x8d=\xe1W\x1bX\x9e\x9b\x05\x8f\xd8\xe5aR+\x9e\xcdmA\xd6 \xbd+93\x12\x98\x00M\x9e\xd3\xb3\xa1\xb4\xce\xf4&\xc9\xc5\xcexI\xc3\x84\xb7\nJ@\x86)_c \xf0Z)\xf2\x19\xe9\xb1x\x8a\x1f*\xdb\xa60\xb1\xf1\x16\x96\x8d\xc6\xb1\xa2\xca$S\x15n\x99\xc1P\x84\xabX\xe5\xed\xb8\xd33\x11\xa3@\xdf\xd9\xd0\xea\xc9\xb3\xbc_j\xb3\x998#\xa39\xcd\xba\x9fv!\x94(\x93\x13-~\xc8\xdb\xd1\xcc\x9b\xc4(<1\xfd\x1e\xcd\xab5\xab\n\xc9\xb9pu\xe3\x11\xd1H\xe65\xf9z!0\xbd\xa3\x19\xce\xc4\xb3\n\xde\x94k\x8b\xc4a[\xc4'=\xd5\xca\xed\xc2\x9b\xcd-\xa1\x00\xc8\xba\xf2\xff\xf9\xa3P\x06H\x05\x05Q\x1c\xbas\x8f\xd6\xbe/\x82\x98:%v\xc9\x92$q)\x86k\xde9\xcd\x90@\x92\x88\x96\x07,\x8b\x90\xc3g\xbd\xa6V\xca+$\xb67\xcaO\x1b\x02\xdb\x8bc)j\xc2}?\x88\xd7\x94\x8c\xe94\xbf/q\xf2xE\x98\xddUr(\x17\xe5\xeaDS1\xf3\xc1\x8c\x94\xbaf1\x91}g\x9f\xc0\xffv\x93$^\x0f\xe4\xf04\x17h'\xbf\x1f\xc3\xdc\xae\xd9\xb4e\xc2s\xff\xbc\xaeA\xdb\x078\x05 ZB\x8d\xcaHNBXRR\x92\xa2~D\xf8\x88\xec\x19R\xdftN\xc9#\xcdz\x86.\xcdz\xca\xa6\xff_\xf0Yy\x06\xe3\xaer\xbc\xc5O?\xff\xf8\xe69-\x9e\xb7\xb03'\xfb\xc6\xf5\xeeN\xbd\n\xb5\x1a\xeb\xb9!\xab\x87\xc44RC}\xcb|cZP?d\xbbr\xbbK\xfc\x9a\x03<\x98\xe6\x9f\x82\x11\x033\"\xf9H\x17\xd7\x7f\xb2\x8de\xbe\x81\x92\x96\xde\x9aV\xc1\x0b\xb9\xe0\xf0\x8d\x1a\xae\x82\xf2\x8b\xe1\xa2b\xd8\x12\xc4\x86\xa9+\xf8\x07\x90S\x97\xf0\xa2'\xb8yC \xb3\x8b)Er\xe1\xe5\xe3\x9d\x9c\xd0\x19e\xae\x08\x9ezt\xec\x9dDi:\xfc\x1d98U\xdd$q\xf6\xb1W\xad&)\xee#\xc3\xc3\x0c\xb5\x1by\x8b\xc7\x00\xe3\xba\x10\x06\xb3\xcc\xff\xd9\xe3\xe4\x19\xafh\xa1\xbaF`)\xf3\xc2\x02\x1b\x0bKq\xd4\xcdW\xb5q3}]\x99\xe0Z,\x882U\x9dt\x81&\x98\xe7}zZ{C\x96\xd5j\x80S1S\x1d\x91\x91\xd8\xf5o\xe5#eJ\x94[\xd5\xa7\x0f\x15Z\x1f\xb2&\xe5P\xa1\xf5d]\xe4y\xb6\x84$\xd3\x95\xd4\xa4j\xa8\xcc\x89\xf2T\xa8kZ\x9d\xa4\xe9\xf4\xef\x19T\xce\xf6\xf7\xef19k\x9d \xfaO\xf2\xbdb\xcb\xc6\xcc\"D\xe1\xb7\xe5[\xa2<\x95\x95ybeJ\x06\x1c\xd5\xa3\xb9\xe7\x8e\xa9(\x1b)\x86\xa7\xbc\xb1\xd8\x1c\x8c\xedX\xbe'$\x9b\x10\xf5\x9e\xe7\xdf\xaf\xe4f\xdf\x96\xb3\xe9N\xb2\xdbF\xab\x04\x14\"\xb2*R\xa7\x1f\xdf\xbd\xfb\xd7s\xd4\x89\x83\xb1Z\x12`\xedd\x07\xa9\x14\xa3\xbb;\xb5\x1aIb-k\xb5\xdai\x81r\xcc\xc3\xc0\x0b\xf2\x94\xea\xc4\xd4\x92\xa0\x06\xa6V,\xeb\x04c\xd4%\xe4[9\xef\x9d\x0d\xbf^\xeax\xd8|*\x1d\x18\xa6e\x81d\\K\xd6\xa1\x04\"64\xa9rr\x89\xf6\xf5\xd2AI \xc6\x12\xed\xb0n\x82\xe8\xb6q]\xb3\xa0&k;\xb5SB\x0ek\xb5Srh\xa2\xa1\xa0v\x9aw\xad\xcc\x18\xa5\xc4g\xa2\xc6`\x81\xae\xc5&7\xaeM\xc3:4\x0d1\x0bH!\xac\xd3g\"\xe1$\xf5\xf2\xe4\n\x1b\xc4|\xad\xf7\xc5\xf9,h\xd1Nv\xe0t\x0f\x0c\x1et_\x12\xf3W\x8b\xed[\xa9\xd9\xb8\x16S\xd7pyb\xfc\x86qmF'\xa7\x07\x12\x9e\xf4*c\xc7\x8e\xed\xc2T\x9b\xc6\xd9yk\xd8*0\x02\xd6i\xd1\xd54\xb6\x8bk\xd9\xd08]du\x9f\x9a\x0du\xef\xe4\x07\xe1y\xc6\x99\xe1\xe4\xbe\xb8y(H\xe7\xfa\xfa\xb0b\x07\xd2)\x16S\x0d3:\xb5\x08\x01~\xd9`\xd7\xa4\xca\x83\xdb7\n\x10\x93\xb3 )\x84\xe6g\xdd\x12\x0d[\xd5-\xa21\x16j\xe4\xb8\xd7\xc6\xb5x\xa5iU\xf1\x18\x9e\xa7?\xb2\xbd\x9a\x1d\xc7\xa1\xd44,n:\x92\xe8\xa3\xb3\xf6^\x1c\x13)\xefC>L\x98\x9a*L\xb1\x0d\xfa}a{\x91\xb4R\x1a\x12\x1c4\xac\x0d!\x1e\xe7\x81\x17]\xd7\xbf\x96\x0c|\xfb W\xab$\x97B\xae3\xfb(\xa3\xfe\xc9\x9d\x11\x8e\x1bnz4\x80\xa6\xb6\xbc<\xeb\xda\xfe\xee\xa3&l\x9d\x93\xa2\xd6f 3\x8eB\xea\xb1}+\xc4s#?\x8dI\x88I\x11\x86}\xe3D[\xbc\xcd\x9fn\xab[\xc0}Z\xff\xfafM\x1a\xd9R\xbb\xa8v\x1a\x04wQ\xddv\x1cYz\x08\xed\xb9T\xe4,$1n\x9eB\xffiN\xf7\xf7eZOm\x89\xa2z\xec\xc6\x1eUi\x82}3 c\xdf\x9e\xcd\x8f\x1b\x8a\xb4/\x11\xcc*W\xc6Y=\xc9\xdb\xa7M\x91l\xc7ic\x98\x07GR\xd69\x07d\xe8\xb8O\xe1ru\xec\x1by\x02\x16[\x85d0\xb9\x1d\x9e`*\x0dQ\x15GV[bU\xadu\xcc\x88\xad\x95\xe2\xd7\x11{\xa8\x8d|\x9d\xc0+j\xb8H\x83C\x95!M\x0c{\xe7\xd4\xb0\xb4\xf4:d\x93\xa0\xc6\xd5\xea8\xdc>\x9a\xd4\xf0e{/\x05W\xb4\\\x1dc\xa2\xf1M\xe9\xf4d42\xae\xd1\xd7X\xd6\x9a\xb9\x1eq?\x1d\xcb\x02\xd3b\xc8\xcdb$\x02{\x07H\xed\xd6'\x91\x1c\xb2Y<1\x1b\xa3\xd1)\xd9\x140G\xa3r\xc9\x92\x89\x94e\x1a\xed\x0d\xec\x16n\xee\xa9\xa2\xae\x82\x83\x8a\xa4H|\x9a\x95\x00\xfds\xff\x11\x98\xb5\x12x\xde\x02h\xaf\xd8\xdc\x05\xaciq&hs\xee\xaf\xc1@\xa7\xe4u\x0f~q\x04\xf0\xf7(\xc5+\x0e\x08\x96yd\xc9\xb1\xa0\xca\xc0g\x1bJ_\x87/1\x1b\xf9\xed\x84\x1ddb7F\x93e\xe27!iPA\xb6\xaf\xdenr\x00\xe2`.V\x8a\x80\xfd\xdc^\xfb\xa7\x14c\xc5\xdd\xb4\xd7Wl\x1a\xcf\xbc\xe7\xf1`\xfev<}}\xe9\xe8\xfe\xf6\xb5E\x1fKjM\xb4\xce 4/K:\x1fE%/>\xce\xbc\x8d\x82v\x1c\xcc^U0\x8c\xa2\xb2r+\xe5\xcd\x8fo\x9f\xb5\xbe\xe2~\xd1\xee=}&:q\x99\xee\xfc\xbd\xf6\x8a\x18\x15\x8d\xed&W\xff\x7f\x8e\xa7\xfbrH]\xeaM^\x13W\xb7\x10\xad\xed\x1fD\xd7\x05Yk\xbe\xcf\x8e\xae\xdeS\xdf\x81\xf7\xe9Y\x17n\x07x?\x0f\x838\x18\x07\x1e\xbc\xe7\xc7l\xef\xc5!\xd4\xfb\xec|\xea}rd\xf5>5\xa2~\x1f\x87O\xf0\x9e\x9f\xd1\xbdO\x0e\xd6\xde\xf3S\xa6\xf7\xd1\x93\x1fO)\x1b\x13\xbc\x17.\xf1\xf0\x9e[\x9a\x05\xdc\xa8,\x97\x06\xcc\xa8\x9dZI\xb0B\x1e\xf4\\CM;\xfbT\xd5B\x00\xc3\xbf\xae\x7f\xd0\x0e\xcd\xc6{\xeb\x99\xe8\x9c\x19L\x15\x0d\x866\xa06\xb8\xf9c\x13\xec\xb2\xb7W\xca\xcfo\x8b\xb6\x83e'\x9a\x0c\x02\x13\x17\xe3b\xc2\x1c\x93\x00Z\xb7\x1a\xd7\xcb\xd5\xda\x93\x15\x08\xfah\x98\xd6\xda\xa3,\xd2N\xf1\xc1i\xb9\x0b\xea\x9c\x86\xde\x96\xf0\xa2L\x10S\xcd\x87\x843P\xc7\x8b\xb8\xc4\x11\xa14H\xa28\x9a*\xcd\xb1Up(\xddpoMH\x13\xee\xb2\xef\xf0\xfd;|\x7f\x80\xef\x8f\x84!w\xbb\xf6g\xab\xf6\xdf\xa3\xda/h\xe7\xbeF\xb2xv\xf8\xa4\x84\x19-e\xd38Y\xd3\xc5\x16&\xeaMJ\xaf\x1ar\xbej\xf1\xc6\xdb\xcd7\xde\xa6o\xc4V\xfd\x8f\xc0\xf5e\xe1\xb0.\x91-\xd3 \xc1\xb7g{P\xfeZ\x9a>)\xd1\x1d\xd7\xd7\xc2QZ\n\xc6\x0f\xdc6m3\xf8\x1e\xfe\x7f|\xc2\xaa\x0dc\x16\xb9\x8f\xf3\xc0Y\xd8\x9e\x7f;\xce\xcc\x0b\xca\xa72\xcf\xb1\\\xd7,\xee\xce\x12A\x1c\xc2\xd3\xff:\xd2\xb2~\xbffH\xa5\x93\xf0n\xf3\x8dw\xcf<\xca\xe6\x07\x99\xad\xb4\xdf/M\x17\x0d\xf3\x13\xf6\x8a\x0d\x99\x84\xe1o\x14\x80\xca\xdcX\x85T\xab\xbe\x07x\x1a\xa8\xd4\x8fWd\x1f\xccZ\xf5\xf0\xaf\x93\xd3\x1d\xed\xda\x02q\x040\x9e\xcd\x81~\x87[\n\xb71x\x14\xbc\x18|\x9a\xe8\xf5\x1f\xe1\x11\xd14!E\xb0\xcd\x92H6\x8c\xfd\xc3\xbd\xf7?X\xe6\xd2L\xec\x0eW\x0d%\xbd{\xcd\xa3\x8cewvQFZ\x92\xe2\x9d\xa6\xac5\x9bMrx\x90\xe8?\xcc\x87=\xc6\x92\xee\xe0\x05A\x95\x14{\x9e\xab\xd9\xa96\x94\x86\xac\xed\xfc\xa0\x12\x83\xdd0v\xa4\xdd\xbd\x1f\xf6\x0fdrXU\xccZ\xddl4\x8fO\xd4S\xed\xbda\x9a\xa6u=\xfa\xb6\x84\xd5_V\xc3R&\xaeG\xa7\xb6\xefx\xb4xF\xb8c\x9c\xa8\x161\x07\x87\xda)\x987\xa3\x9c\xf9d\xf44\xbb <\x06\xfd/\xbf\xf7\xe8\x9f\xd1\xc4\xf1\xe6\x83\x9bq\xbc\xb8\xbd\x1b~\xb8h\x9dY\xe6\x0d\x98U\xa3\xaa\xa2\xd1wME\xce\xe4\xd0\x9e\xa7\x8c\xed(.\x86E|f\xa3\x1b\xb2\xa2Y\xc5~\xa4\x1b\x92whl\x0b\xef\xe6\x14\x0b\xe1\x86\x16\xad\x03\xc9\xf74\xa6!\x16\x9d\xb9\x8f\xd4I;\x8c2xfD\x99\xef\xfc\xdez\xe7\xa7\xae\x1f\xbf\xae\xe7f\xe2\x95/\xa71\x90\xfe\x9f\x0e\x025\x01\x05d\x9c\x0f\x0b\xf1\x9a!l\xed\xed\x8b\x9d\xd9\xd2\x01\x9cA\x9e\x7fND\x1c)\x17\xb7L\x10\xae\xcf\xb9\xa9@T\xbaev^\xd5\xc2\x0b\xe3\x9c\xdb!\xf5\x0b\xf3(\xea\xc70\x8a\x19\x13\xc7\x9e\xd4\xf0T\xe21\xde\xda\xff\x1b\xb4\x8ce\xbbq\x12\x06\xb3\xcd}\x8e\xa4\x0779>\xcb\xbd\x9a:\x82\x9f6\x91E\x17r\xd2ir\xdd\xb4H\x93d\xfb!\xb5\xa0\xf6\x1d\xe0\x9b\xd4\x8eR]\x96\x00\xa9\xbc\x0d\xb5\x17\xf8tS\xb7\xc5\x13\x02\xa6,\xa4\xe0\x1d1?`\xde.h6\x8f\x9f\x80\xfaN\x9aA\xd0w\x18C\xc9\xbfx>\x83$\x0e\x81\xe0\x03\xa9\xefpsa\xae(\xe3Y\x06\xddx\x9b5\xb6_`P3\xcb#\x0cDXj\xa2\xcd\x8fD\x92\xefQ\xe0\x8fi\xd1`;\x8a\xa9\xed\x14\x12\x8d\xb8QDc\xf0\xdc(\x86\x19N\x8a_\x88\xda\x1d0\xa6\x17A\x81\xf3\xbc\xcf\x84\xe8N\xf8`\xfc\xe6m\x17\xd4zb7&9\x16x$m\xdb\x8d\xb9u\xb5\x8f\x99\x0d#t\xaf\x14F\xd5\x8fA\xc8m\xaaa4\x9a\xda^<\x1a\x07\xb3\xb9\xeb\xd1\xb0\x84T\xac,EJ<\xee7\x13\xb0\xf0H=%\xcf1\x1b\xb9\xe6\xcb\xb9\x97\x0d\x9c\xf7\xba\x0e\xbc\xae\xc9\xbf\xbb\xd8\x0c+\xa7\x91\xe2nJ\x16\xfcy\x16\xeco\x8d\xe0\x1fL\xe1f\"\xb9\x0d\x82\xfe\nr\xb49\x84\xcd\xca\x8cg\x07\xb1\xd9\x94\xf5w\x97fs'\xff}\xba\xb4m \xf9\xaa^\x18\xc8ZC\x7f{\x18\x19C\xf7\xe2\xca\xbc\x9e\xd5J\xeb\xfc\xbf\xb6T\xd8\xb6\xf5\xbf\x01\xdf\x16\x0e\xb0\x0c\x81\xfdC\x06\xad\xb4\x85\xd7\xec\xb8\x17\xa6 \xdf\x8f\x7f2 \x96\x92&n\xf3\xb7\xe5\xee\xbf6M\xf3\xc1\"\xa6\xa9\xf1\x8e\n+{\xd3:4\x1f\x88\xb6]vyf\xea\xd3\xec,\xb9\x96j\x185\xaaL\xa5&\xb4Oa\xa6\x11\n\n:\x14\x97\x9b<\xd893 si\xee\xb1\xe9]\xe2\x87q\xbd\xc4\x04W\xc0/HrE\xd8=1\xc4\xa5ER\x81\x16\xcd\xeaD*E\xc3\xb4\xac\xaaiA\xed\xd4|`\x92\xea\xfa\xd9\x8a\x18\xe5\x9a\xd0\xbdR\xa2\xbc\xe2\xe5\xe4\xe4\xe4@6\xae\x0f\xac*9H}>\xea\xc2\xfd\x83\x1cj\xe6\x9b\xe3T\xfb\xe8\x07\x0fN0\xaemD\xa4O\xe7\xb34Y\x10k\x01\x1b8\x80\x14\x9c\x8e\xf7rh\x87kF\xb7\xd9\x84\x9d\x9c\x1ch`\x1c\x1c[{\xdc8\xaa\xd0uYkJ\xb2q-YU\"m\xe9=\xc8\x19\x10\x97\x16y{\x9cC\x1aS\x1a\xd2\x7f6\xc6\xc40\xa2*e\xc3$\xffp\xc4\x92\x06\x86\xc4G\xbc\x96\x04\xca.\xcc\xc0\xb6\xe4M\x89\xe2\xcc\x1e\xdf\xc5\xee\xf8n\xcd\xddg\xfbASY\xe2\xb3\xa4\xcf\xae\x7f\xbb\xe18T^\xd3\xb6\xach\xa2&\x11\x82~[M\xe9\xacl\x0c\xdcz&P\xd6|:\x97\x94,\xf7Wz\xca\x1f)%\xc1\xb2\x1a\xbb\xe2\xc4T:0\x1b\xbb\"\x86R\x16|\xac~\xb8\x97\xe9)\xf7\x9e\x0b\xacT>R(\x9fJR5-\xa1S\xb4k\x7f\xee\xedZ\xa4\xe1\xceJ\xc6\x9d\x8b\x86%\x0c\xd7\x8a\x9e\xfe\xbbkV\xad\x9b&-IM\x1by\xee\xa2|\xa8\xadm\xbc:\x93\x0f\xe1\xfay\"\x93w\xc2z\x0d\x8d\x11u\x96\x90\x95RrRp\xf3\xda\xa0-\xff35y\x19k\xaf\x94\xd2m\xbe\x8b&u[R\x9f\x89\x8c\x159\x9b\xc5\x1b\x04\xceZb\xd6\x9e7_\x8c\xc9\xb2qbj\x8dzL\xa3X\x8e\xd1\xc3\x81\x14|\xa5K]9\xea\x1bn\x1cr\xacp\xe0op\x8d)\x06\x06+\xc2\xb4,\xc1\x01\xc9\x83d\xeeL\x17\xbd\x8dd\x11\xa8C\x00=\x0f,\xaa\x99\xbe\x19Z\xc0*\xdd\x11!\x1d\xf7\xc0\xd4NA`N\xc0\xc9(\xdd\x1br\x9ax\x94\xf0,\xa4\xda)\xec\x91\xc6-\xdaZ\x16f\xc8\x9e\xc44\xdc6A/NF\x99\x1fG2\x1f\xac\xad\\Z\x8a\x9f\x9e\xb5\x1c\x9a?\xc5\xd3\xc0/\xb3\xa9O\xfdj\x9f\xb5]H\xbc\x06j\x05\x9cU\x10\xa6\xb5\xe6\x04&!\x84\x13<\x1d\x96$ \x0e\x0e\x0eHzD\xf2&\xb7Ju\xc8\xce\x9b\x93\x94\xa9oI\xa9\x11\xfc\x968k\xe5Q\xd6r\xd1\xdd\x90\xc7\x80\x17o0.$\xf9\xdb\x86d\xd2\x90ls:.\x8c\xb8I\x8c\xeb\xa6L\x18[\x93\x84_\xdb\xd4\x17\x04\xbe\x08\xa7R\x0b\xe6\xebs\xb6cD\xa1\xcdP\xa6\xd1\\!\x96+\xdbuJH\xa3\x98[\xed\x97EOS^\xf4xec\x0d\x177\x16\xdc\x84\x10\xde\x10\xaddm\nS\x9f\nK\xe2$v\xd3\xefo\xa3\xc2\xe2\xc2\xae\xe7\xc2-(\x0e\xca\x18]\\K3\"\x0e\x9d\x88\xd3]al\xb0\xa6\xa1\xbf}V\x1dS\x10\xd0\xb9\xda\x90'\x8b\xdeT\xe38t\x1cl\xfa.\x8b\x00\xa4\x89Wm\x9d\xfb\xd3\x96\xc7\"5\xa4\xcc3w-@\xb4\xb5\x05K\xd77\xd3\xed\x8e\x84dI\xb8j2Jb<`\"\x12\xe0\xb9\x03\xf36w\xdeZ\xbe\xd4 8\xd4\xcbG8\xe5\xa9\xf4\xe8#\x1d\x17\xb3\xf5\x86\xc1,Q\x10\xe6\xc3\x9d\x81\x1b\x81g\xcfn\x1c;\xd1\xf2\x05\xbep[\xe4\xc7\xa6s\xd6\xa08\xd6\xb6\xdd(U\xdd\xa5\xe9|\xd7C\x1c\x14\xe3v\x8dF\xbc\xa9\xd1\x08\xec\x9b\x08l\xcf\x03\xdb\x7f\x02t3\x02;\x1a\xbb.\xdc\xd8\x11\x15\x9a\xf0\x1b\xd7\x17\xa7'\x8b\xc9\x84\x86\x18\xdbB\x9c\xa9<\xc54\xca\xe9j\xa7\"\xc6\x85\x88[:\x9e\xcda\x1c\xd0p\xcc\xc3\x81\xb1n%a\xc1\x1c\xea1\x86\x00\x1cw\x1c\x83\xe3\xb2\x8b\xfbY\xe0\xa0\xaa\x95\x91F\x9a\xe8[\xe9x\xc2\xdeK>b\x1af\xb6\x8a3\xf6\x15\x06\x7fR\xd4F\xde\xd2\x18\xab\xe4\xf3\x19\xc1\xd4\x8e\xf0\xf7\xd4\x8e\xa60\xa5\xde\x1c\xa6\xf4\x11\\\x07\\\x7f\xbe\xc8\x0e\x7fB6\xdb\x89\x86\x08\xdc(Zp \xc5\xd3\x01\x8c8\x86\xdaV\x9c\xfeH\x84\xcd\xb0\xe70\xb3\x1faFgA\xf8t\xef\xd2\x07\x98\xb9\xbe\xb0;\xe0\x87\x08\x01\xfbCG\xe6\xd0\x81y\xf0\x90\x0b\xdb\xca\xc3\xd6\xd9\x0f#\xde\x8f\x90:\x0b\xd4\xbdz\x81\xed@H\xe7!\x84\x94\xe1&\xea@\x18,|\x07\xd8\xe0\"1\xb8\xc8s\xc7\x14\xa2 \x8c\xa9#t\xb4b\xb2#\xf6t1\x13\xd6\x96\xf1b\xeeQ\x1e\x00o\xe1\xbbla\xd8W\xe0\xa0\xc26\x82G\xde\x8b?\xddyIl\xbc\x8fxH\xd1\x0d|\n\xc3\xb5\xa8xIP\xbc\xcc\x96\xa1\n\x81\xf8Q\xfb7\xfb\xf5\xc8\x7f\xd9\xb5 Z$UI\xd9A1ncy\xfd\xa88;,\xcen\xe6O\x8dsE\xff\xc8\x02\xe7\xe5\xdc\xd0k\xd5\x1f0\xde\xdd\x8e\x8a!\xeb\xd6\x0c\x1eN\x8c\x134\x8485\xf0\xcb\xd8\x87\xeb\xbf^H\"\xbdal\xc9\xe9\xb5QNuS\xff\x95\xc2\xed\xe4&#\x17\x1bv\x9a\xbc\xbe\x92f\xb6\x94\\)o\x7fy\xf7\xcbs\x1c\xc5w5\xcd\x17\xb7%\"G\x99\x99%C\xb1\xc4\xb4V\x16y>\x01{\xd1\xba\xd2\x0c5\xd3\x073$f\x83\xe3\xe8$\xd2\x8f\xb8\x8d\xf2n\xee\x86\xcc\xa3\xfc\x08\xde\x8c\xa7\xe5\x17\xaf\xa5\xef\x10\xd8#`\x0e\xea\x87\xaf\xcb\x1d\x7f\xcdx\xcb\xf5:\x12*<\xdb\xf2\xce\xeeN\xbd\xf8\xd0R\xb8d\xcc\x05\xdb\xa69\xa8\x82a>\xd4-\xd6 \xc7\x8ei\xec\xce\xf2R\xdcQ\xd7\x989\x7f.\xeec\x0b\x8e\xbe\x18N\xfc\xa7\x05\xa6\xb3\xfcq\xc5`\x17Mxf\x90^\x0e\x11\xcc\xf1r\xfd\xdb\xa87-vi:\x0c\xf6\xf9?\xc3\xf9\xd3\xd2\x08\xb0\x9b\xcf\x177X\xf3Z\xa6!IB\xb5\xe5\xcd\x92v\xd8\x0em\xb2e8\xea\x1a\xd3?\xa8\xa5\xb1\xfeN\xff`\xdf\xc6\x83oAb\xdc\xd1\xaa}\xb4\xaaP\xc8\xd6^4\xd70\xa6\x7fL\xe8\x8d\xa5\x91F\x8eR\x9a\xdc\xce!9\xcb\x03{\x1cD`\xffq\xa4 \x82\xe2p\xa2\x12\x8d\xc1\x8e\\\x1f\xec(\x98\x80\x1d\xdb> &\xb3\xefo#\x8d\xd1\x96P\xc3\xcc\xe3\xd4\xf5\x18\xb1\x19\x07\x1e#\xa5!\xb0\xca\xc6\xc1\xc2\x8fa\x1c\xdc\xc38\x0c\x18\x89\x8d\xeea\xbc\xc8\xec\xc4\xa8\x17\xdb\x1184\x1a\x83C\xef\xc1q\x91>9n\x14\xbb>\xd2\x95{\xb4y\x8f\xec{\n\xf4\x0f\xa0>\xa2rAY2\x92,N\xf5\xe60\xb9ybD\xc6\x8b`\xe2\x86Q\x0c\x93;\xfa\x14\xc1\xc4s\xe7\x8c\xe8\xa4\x04\x9b\x13\x1b\xea\xdf\x03\xa6\x17\x83[\x06\x1f0\xe5\x81/\xa7\xbc\xd3S\xc6\x01L\x91\x04L\xa3\xa7\x19\xb8l\x1e\\\x87{\x8e\xb1\x0b\xf6s\x02\xee\x1f\";:M\xe2\x9c\x82\xeb\xdf\x03kW\x13fm\xee\x1d\x15$\xe8\x8f\x89\x06H%\xbc\xe0\x16\xbc\xe0\x81\xd1\xa7\xe8;x\xd8\xbc\x17\x87\xee\x0cf\xf6=\xa3O\x8f\x91\x063\xde\x91\x99\xf3/\x98\xb1\xd9\x99Q\x0c(n3Z\xc5\x1e#\x05ctk6[\x00\xa3\xbd3F>|z\xcb Y\x96\x84\x9d\xa7\xfc\x85\xb9\x1dF\x14\xe6x\xba9\xff\x03\xe6\xd8\xa7y\xe8D\x1a\xccCz\xcf\xd8\x91 d\xe4\xcda\x1fw\x80g\x05\x11\x84\xf6\x9f\x8c\xba\xd9\xce\x11~\xbe\x81\x90\x8e\xddy\x88\xdcL\x88K!\xc8\x1d\x84\x9c\x02\x06h\x8f\x17\xe2\xa2\x858(\xbc\x8c\xc6\xb6\x0f\x11\x83\x85\x88\x8d& \xf8\xcai#[\x8bh\x1a<\xa0\x1f\x02#\x82\xae\x0f\xd1\xf70\x86(\n\xb5\xe4D?Z\xdc`\x9f\xa3\xc5,\xd2 \xba\x87\xe8\xde\x0e!z\x8ab:\x03\xcc\x81\x1c\x01\x03\xcf\x18\xc3\xc1\xba3\x88\x1f'\x82\x84\xfe\x01\x0b\x9f\xaf\xb5pX\x983\xb4\x00\x8b9\xa3\xb5\x8b9\xae\x1ez\x05\xf1\x90S.}\x884\xb8\x8f\xe0\x81-\x07OE\x90\xb1e\xae\x0f\x0f\x7f\xbc\xd1\xe0\x81\xcd\xf7\xc3\x03<2\xd0x\xbc\xb1Cxd\xd0\xaf\xc1#B\xc7#\x83\xc8G\xde\xea\xe3\x1d}\x82G\xb6\xec\x8f8\xd7\x8c~\xdf!a\xb6\x9d{\x1a\xde\xe4}>\x0f\xcc\x86iZM\x0d\xcc\x1b\xb6V9S\xd0\x9c\xc9\xcc\xdaK\xb2\xc8H\xf3\x01L\xb4\x0fk\xc2 \xa7\x92\xa7\xaa\x06F\xb3j\xd6\x0e\x7fPv\xb4\xbfT\xd8\xdb\xdf}\x7fm\x11\xac~d\xde4\xb5\x92\xe4-k4\x95\x89b&#\xabu\x0c\x12\xf3\xcb\xbb\x9f\xb7[\xf1\xe5\x15m\xe1\xe2\xe6\xe9\xd9`T\x9bR\xf3n\xfd\x10\xae\xd5\x1bz\xeb\xfaf\x94\xc8Q\xd7*\xf5\x9d\"1\xd8.\xa0\xa4\x96PYf\xd9\xecL\xb0j\xca\x84\x11\x06\xd3\xc4\xb4\xbfkI\x881\xd8\x8fO\x1f\xcc\x9b\xad\x8a\xb1\xe2\xc4\xb0z6\x85\x8f\x0f\xfa\xa7v\x17\xf4\xee9\xe0\xc4\"\"\xc5\x11m\x8a\x1c\\\xd2\x98\xb8>\x1d .\x90\xffr\xd0\x04\x02m\x1ar6\xb4>c\xaf\xa3EH\x85\x05\x03\x8a \x89\xa7\x0f7EH\x02\xc2\xd1\x07\x81\x04\xb2()\xf3\x90b\xb0\xdf\xed&\x05B\x10)X\xd9F\xe3\x05\n'\xe1S\xd1\xba\x803\xa9\x18j\x05M\x0bJln3{\xdb\x9c\x1c\x93q{f}\xf9Vy\xb7\x82}\xb3\x0e\xaa\xaa\x02\xda\x12\x1a;\xaa\xa5\xfd\xc5\x18\xce\xa2\x9d \xe3\x05\xc1\xe0 \xe4NNw\xae\xf7A\xb5\x08\x03m\xad\xb9\xc1\x022p5L\xab\xae\x1c\xbf\x90\xdc\x88\xc1\xe7\xff\x9c\x0b\xf6\x98\xdb\xadnjP\x92H\xe9\xe6\xf2\xed\x8a\x1c\x92\xdd\xd4\x0b\xc7\x02qzsh\xae\xc8\xe1v\xfd\x88\xd0\xe1\xae\xa9p\x97y\x15\xee\xa6j\xa4\xec\xec\x86\x8ds\xab^RD\xa4/\xd7K\x1e\x0b\xe7\xa6\xf5\xda\xd2hk<\xe8\xa7\xfa\x8c\x87\x84\xfaJg\x90R\xf7%\xd8\xea\xd4T\xc8\x9e\xd8(\xf5p\xda\xee\xf7\x84\xb3\x9e\xbd,\x9c\x84\xd7\xbc\xa0`\xcb}r\x88\xca\xcf,Eb\xa3\xccUj\xab\xffT\x96\x1cr\xcd;C \xd1\x8d\xab<\x98;J`y\xe5\x0dO\xd7qT3\x1f\xff\xfd\xd1\xaa\x12C\xdb\xb140\xf7\xea\xe5\xfeY\xa5p\x9fK\xf5\x8c\x8e@5\x0f\xed\xe9\xbc\xb2\xe4\xf2?\x84\xa9W\x89_m\x18\xf4\xd6\x9d\xf9A\xb4x\xb4\x96G\xcaO\xab\x12\xaf\x9b-\x8a\xc6X\xf8\x1c\xe5\x15mk:\xd3\x06\x93a\xb8B8\x7ff\xc9O,\xf9\xcc\x18\x89\x03\n\xa9\x9a\x1b\x9d)u>\xd9\xc5\xe0N[\xe4\x91\xd7\xf75\xe7{\xd20\xde\xefY\xd5\xa2>\xad\xc9\x96\x01\x90|\x08y\xa4$M\x7fbG\x97Nh\xf8\x1a\xdf\x9b\xf4u\x1c\xd3RV,\x1em/\xf3\xb9\x0e\xab\x0dYS\x13\x0b\xab\x17\xddz,E\xe2$g\xbb]\xafC'B\xd3'\x17\x83\xe1i\xdbPV\xaa\x84\xe4\xd9\xfb\xf7r\xd2\xc657\xd8i\x14I\xb7\xc8\xfc]\x16v\xede\xc4\x9d\x9c\x00.\x13q\xfe9\x006\xbe\xff\xc7m?|\x89,-\x83\xe4\xd7\xc0k\x89f87IBC\xbb\xcb0:?\x8e\xdf\xe5\x8ap\xd8\xf4\n\xcep\xe0n\xa6\xc3\xfd_{prb\xd4\xfe\xb2\xb4\x17\x8e\xaa\xb9\x88\x8d*\xe3\xff\xf5\xb8\x1a\x9bK[\x83\xdc\x91\xdc^.\xb5{\"\x8e#\x184\xd6\x03\xdd\xf0J6\xcf\xa8_7\xd6\x83\xdc`K-\x0f\xfeo\x8f\xf6 m\xef\xe0\x7f\x19\xef\x01\x1c\xe0\xb9\xfc\xe6\x18-Eb\xac\xb0\xed;\xcf\x82\xf0\xe3\xdf\x83\\Qe^\xb4\x10-\xae\x1fEl\x98\x06\xbc\n\x9e\xd1l \x01\xe5o\xaf\x81\xe4\xbf\xd3#+s\xad\xde\xe0>x\xa9\x97\x11D\x9a\xb4\xb2\xa8=o\xa1\xee\xfb\x03\x974?\xb8\x98\x89\x1c\xce\x90!?\xe3g\x00\xd8a8wC\xd0Q\xcd\xc0~\xa1V\x95\x97\xfa\xc8x\xda\x8f\xee#{\xff#*\xb3?\xdb\xd1\x14\xda=h\x0bo\x84\x0b&o\x9c\xdb\xb1\x0d\x17\x9c\xaf\xbf\xe0\x8cy\xd7\xf5x\x15\xdd\xc5\x8c\x86\xee\x18xd\x0f\xb8\x0c\x831\xf4Q\xa7\xdbgDg\x0e\x83\xd8\x8ea\xc0\x05\xdf\x01\xf7\xc3\x1f \x90\xc1\xf0b\x00\xc3)\x93\xc5\xc5\xd7'\x141\x87\xee\x8c\xeb{\xb1\x01d\xb6\xd3\x93k\xe1Z\x94\xf3,\xca\x13\xab5\\\x1b\xde\xa8\x1b\xdcc\x16^\xfb\xe7\x9f\x9f=\x10\x8d\xc6\xb6go\x8d\xa2\xc0#\xb1\xbe.\x98\xac\x10\xfe^\x08\x16\xbby\x88\xf6\xc2\xa1Y\x9e\xba\xa6\xc4\xe9\xa4\x06\xea)\x14\x8d\xda\x0b\x86\xeb\xa9\xb0\x96\x18\xa5\x97\x9b\x90s\xfb\xf1A0\xa3\x89\xa9\xb8;v\xe3\xe4\\\xc8\xb3\xff|J\xce\x83\x98\x80\x86\xca\x19q\xdc \xb2\xb2\xe7]\x1e\xd7\xa4\xb4\xb5\xe0\xdby),\x8b\xab\x9d\x1ax\x8b\xd49^\xce\xbe{=hv.\x0c(\x9a\xbf\xa1g\x18F\xa0N\xbc\xc4\xf2\x8a\x7f\xa1V,\xb8\x83q\xd5b\x12\xb7xm\x93\xf9O\xd0\xf2\x9f\xfat\xc2\xbe~\xb3=\xf8 |w><\xc5\x14\xce\xa6v\x08\xe7<\x98\x05\xdfBm?\x86N\xe0\xdfB7\x88\xa7\x08\xf5\x18\x98Bl\x81+\xdf\x8d\xb1\xdb \xa6=0\xaeM\xc7\x8cL\x93\xa1\xe2\x97\x93\xc2 \\J[\x0eu3\x0eb\xeb1<\xc7\xfb\x82\xcd\x93$ \xb9\xfb=\x0b\xd0$\xcf\xb8^\xe6\xa4\x8du\xf9\x8e\x10\x84b\x10\xefH\xc2u\xfaU/J[N\xef\x0b\x19W\x90\xe4ll\x91\x9c\xb2\x88Fc\xbb\x10\x8a\xcf4\xcd= \xcc=cO\xb2\xcavW\xe2r\xbc\xcdJ\x80\x1b\">T\x9f\xe9{\x19=(\x92Es\xcf\\j\xaf\xc9\x87&^/E5\xe5\xa9\xcf\xb6\x87\xe5\xc0\x97\xd6\"ro\x0b\x12}\xf7\x9e5\x04\xe1\xc62E\xe7VYk\xd6j\xc0mh\xc8\xe6\x99\xc9*\xe7\xeb\x9e\xd5\xf8^6\xa4\x83o\xd6V\xcb\x9c\xea\x1a\x9ak\xbc7\xcc\x87\xfa\x9eUmX%\xf82\xcd\xadVj\xed\x93\x06/xk\xbe\xc5\xc0\x05\xdb\xad\xb6\xb8r|\xe2\xd2\x8d\xc8\xe5X\xfd\x9a\xc9\xe17V\xeb\xb7ok\x9c\xc3+\xb4n\xd7\xdf\xe0\x1b\xf2Qya\x83!\x9c\xdf>\xc1Y\xef\xaa;\x84\x8f\xed\xfe`\x08\x1f{\xfd\x8b\xd6\x10:\xad\xc1\x10:g\xad\x81\x0e\x1d\xbd\x0b\x17\xad\xdf\xe1\xa2}\x0e\x17\xed.\\\xf4\xce\xa1\xdb\xfb\x02\xfd\xdeU\xf7\x1c\x06W\x17p\xc5\xca\x91\xbc\xf9oQ\xb5\xd7:\x1b\xb6{]h\x9d\x9fC\xeb\xe3P\xefC\xab\xf3\xa9\xd7o\x0f?_@\xab\xd3\x81V\x07\xefu[\x9d\xaf\xff\xd5\xa1\xd5\xfd\n\xad\xcb\xcb\xceWh\x0d\xa058\x83\xd6\xd5\xf0s\xaf\xdf\xfeo\x8bWr5\xec\x8d\xda\xdd\xb3\xbe~\xa1w\x87\xf0\xa1u\xf6\xeb\xd5%|8\xff\x00\\\x81\xf8A\xef\xff\xaaw\xf4\xaf\xecF\xfbS\x9b\x15iw[\xfd\xaf\xf0\xa1=\x84\x0f\x9d\xde\x07\xf8\xd0\xebu\xf0Cou\xe1C_o\xfd\n\x1f\xfa\xbd/\x03\x1d>\x0c\xfb\xba\x0e\x1f\xae:\xbf\xc2\x87\xafp\xc6\xfav\xd6\x1a\x9c\xb5\xce\xf5s\x0dp.\xce>\xb7\xda]\xf6\xd9\xe7\xc3\xd2\xfb0\xd0\x87D\x83\xb3\xcf\xfa\xd9\xaf\xb2\xd6\xbc\xec\xb5\xbb\xf8\xbb\xd3c\xc5;W\x83\xa1\xde\xd7\xcf\xe1\xac\xd7\xea\xe8\x833\x1d\xcez\x9dNk\x88\xdfW\x17\xdd\x81\x06g\xbd\x0b\x1c \xfbn\x0fe\xad9\xd4\xcf \xde\xbe\xbc\xc2r<3\xd5Y\xaf;h\x0f\x86\xbcdw0\xec\xb7\xda\xfcr\xd8jw\x07\xec\xb5\xd6\x87\x8e\x8e/v\x87\xed\xee\x15\xbe\xf9\x9b\xde\x1f\xc2Y_\xc7\x06\xfb\xbd\xc1\x00\xce\xae\xfa}\xbd\xcb\x9a\x19\x9d\xb3\xbb\xa3a\xfbB|\x0e\x86\xad\x8bK\x18]\x0d\xf4>\xab\xe6\xaa?\xe8\xf5\xe1\xec\xebYG\x87\xf3\xd6\xb0%k\xcd\x0f\xad\x81>\xd0\x88\xc6~\xeb\xac\xc9\xf6\x85\x8e\xbf\xbe\xc2\xf9\x87\xb338\xd7[\x9dN\xef\x8c\xd5{\xae\xb3\x9fg\xed\x8bV\x87}wZ}v\xefc\xeb\xaa3d\xdf\xed\xae\xde\x87s\xbd\xd3\xfa\xaa\x9f'I\xb7\xce\xf5N\xfb\xa2=\xd4\xfb\x03\x0d\xce\xf5\xeeW8\xd7\x07g\xf8\xd1o\x7f`\x8f\x87z\xff\xa2\xddm\x0f\x86\xed38o\x0f\xd8x\xd9\xf7Y\xab\x7f\xce\xbe\x7fe\x1f\xc3v\xf7l\x98^\xf4{_\xf0\xba\xdf\xfep5d-\xf5\xe0\xbcw\x85\xef\xf5{\x97p~uq\xf1\x95}^\xcaZ\xf3c\x1b\xa7\xef\xfc\xea\xb2\xd3\xc6!\xe8\x9d\x01\x1bd\xfb#\xd1@\xefbkz\x17\xd7\xf5\x1c\xd5\xd4z\xf7S\xbb\xcb\xee]]\x80\xde\xefw~\xeb\xb0\xaf^\x7f\x00\xfa\xe0\xacu\xc9`F\xff\xfdL\xbf\x1c\x82\xfe\xbb~&k\xcd\xab!k@\xff\xbd=\x18\x0e\xd8\x17{p\xd9a\x00\xa5\xff>\xd4\xbb\xe7\xfa9|\xd4\x87g\x9f\xe1c[\xef\x9c\x0f\x80\xf5\x88}t>\xb6\xce\x86\xbd~\xb2A\xdb\xbf\xb3\x82\x9d^\x8bm\xd6N\xa7\xf7\xa5\xdd\xfd\xc4\xb6\xad\xac5+z\xeb\xecs\xa5\xdf\xfbB4v\xe7Lg\x9fz\xfbS\x17>\xf6u}\xa8\xff>\xcc\x01\xca\xc7~\xef\x02>^u:\xf0\xf1\xaa\xcbw\xe8'\xbdw\xa1\x0f\xfb_1#Z\xa7\xa3\xe3]\xa2\xc1\xa7N\xefC\xab\x03\x9fz\xc3\x1e|\xea\xb7\xbaC\xf8\xd4\xef]]\xc2\xe7V\xf7\xbc\xa3\xf7\xe1sk\xf0\x19>\xb7~c=\xf9\xdc\xeb\x9cwzg\xbf\xc2\xe7\xdeU\x1f\xda\xe7zw\xd8\x1e\x8a\x1aa\xd4\xee\x0e\xf4>\xdb \xed\x8f\xd0\xfe\xd4\xed\xf5uh_\\\xf6\xfaChw\xcf\xf5\xdf\xa1\xdd\xc5Q\xb7\xbb\x0c@\xda\xddn\xef\xfc\x03\xb4\xbb\xbd+\xf6\x9c\xbd \x0c\xea\xdb\xdd\xa1\xfe \x9f3ha\xbb\x03\xaf~ku\xd8E\x0f\xda\xdd\xdfz\xbf\xb2\xe7\x83^\x87c\x0d\x06VlM\xffO\xaf\xdd\x85_\xf5\xaf\x03\x0d~mw:\xd0iu?]\xb5>\xe9\x02\xdf\xe9\xad\xdf\x18\xbe\xfb\xc8.\x7f\xd3;\x80\x00 \x9dvW\xef\xf6\xf0k\xc0?\x87}6\xd2N\xafu\x0e\x0c\xde;\x80\x03\xee\xf4\xba\x9f\xd8.aH\x86\xcd5\x81N\xafw \x17\xad\xe1\xd9gYk\xe2\xb6\xbe\xd0\xcf\xdbW\x17I)6\x18^\xf2B\xef\x7f\xd2\x19\x8a=\xef\xe8\xec\xeeE\xbb\xcbv\xffE\xef\x1c?\xda\x1f\xdb\xfa\x80_|\x85\x8b^w\xf8\x19.\xae:\xc3\xb6\xac5s\x1dB\xe4\x03\x97\xbd\xce\xd7O\xbd.\x81.\x8e\xbd\xd5a\x17W}\xf6\xcd\x10\x17t\xf5\xdf\x87\xd0\xedA\xb7\xd7\xcd\xf0S\xf7\xaa\xd3i\x7f\x84\xee\xd5\x85\xdeo\x9fA\xef\xe3G\x8d}\x0c\xf4\xe1@\x83^\x17z\x97zW\xd6\x9a\x0c\x11\x0czW\x0c\xb2\xfes\xa5\xf7\xbf\x02\"N\xb6\x9e\xbd\xcba\xfb\xa2\xfd_]\xa4\xccc\xe8\xb1\xd3\xf9\xca\x1e\xf4\xcf\xf5>\xf4\xae\x18\xe8\xe9}\x10\xdb\xac\xf7\x9b\xde\x87\xcbV\x7f\xd8nu\xf87\xae\xd3\xa5\xde?c(\xee\xb2\xfd[o\x08\x97\x9dV\xb78(\xb8\xec\xebg\xfa9\x0e\xb6\xaf\x9f\xb5\x07m~\xef\x92\xe1\x97\xcb\xbe\xfe\x1b\\\xf6\xdb\x17\x0c\xdd_\xf6\xf1\xb5~\xfb\xb7vG\xff\xa4\x0f\xe0\xb2\xdf;\xc3U\xb8\xea\xb3\x0e\\^}\xe8\xb4\xcf\xe0\xf2\x8a\xcd\xfb\x7f\xae\xdag\xbfB\xbf\xd5\x1e\xe0\x0e\x86\xbe\xde:\x1fh\xec\xab\x03}\xfd\xac\xd7\xfd\xd8\xfet\xd5\xd7\xa1\xaf\x7f\xd4\xfbz\xf7L\x1f@_\xef\xe8\x8c\"\xf4\xf5n\xeb\x82}]\xea-6D\xb1\xb9\xfa\xfae\xa7u\x86\xf7\x11\x9d\xb0~\xf6\xf5\xff\\\xb5\xb1\x96A\xfbS\x17\xab\x1e\x0c{\xfc\xc6\xb0\xdf>\x1bB_\x1f^\xf5\xd9\xdc\xb1\x01\x0e\xb0\x1a\x06\xc9\xd0o\x7f\xfa<\x84~\xaf\xd3a\xf4\x8eQ\xde!C=\xfd\xde\x17\xdcW\x8cz\x7f\xbaj\x9f\xb3\x1d\x86o!\x1d\xeb_ut\x18\xb4~\xd3sdip\xf6Y\xbfh\xc1\x80\x8d\xe9\x1c\x06:\xdb\xe20\xd0\xfb\xedV\x87\xb5\xfa_\xd1\xfb\x81>\x18\xf0EL\xc8\xc1@g\x83K~|f\xd3=\xf8\xdc\xfb\x02\x83\xcfW\xc3\xf3\xde\x97.\x0c\xda\x17\x97\xac\xbd\x8bV\xa7\xc3f~\xd0m]\x0e>\xf7\x860\xe8]\xe80\xe8\xe1,\x0d\xfe\xd3\x81\xc1\xb0\xd5\x1f\xf2!\xb2\xaa\x86\xad!b\xf4\x01^^\xb1\xaf~\xfbR?\x87\xc1\xd7\xc1P\xbf\xc0\xf6\x01Q\xd6@\x13\xdf\x97lb\x87:b\xed^\x9f-v\x82\xd28\x85h1T/\x90\xdd\xa0\xfd_|\xf0Y\xef\x02#W\xec\x16\xa3s\xec^\xbb\xfbus#\x0e{\x97\x1a\x0c\xfb-6\xf8\x01g\\\x90\xe4\x0d\xfb\xedO\x0c\xe7\x0c\xfbW]$\x0f\xc3\x81\xfe\x9f\xabV\x07\x86_/Y\xd7\xae\xba\x1f\x18?\xa4\x9f\xc3U\x97\x93\xf2!^sb\xc7\xae\x18\x08\\u\xdb\xff\xb9\xd2\xe1\xaa\x8b\x08\xe3\xaa\xcb\xe1\xfc\xaa\xcb\x00\x82\x15\xbaL(+\xeb\x8b\x06W\x03\x86\x9b\xae\x06\xf8\xd7\x87\xab\x01\x83\x8b\xdfZ\x9d+\xd6\xe2o\xc8\x84\x08\xee\x06w6\xfb\xe0L\xc9W6\xbb\xf0[[\xff\x02_Z\xed\xe1\xc7^\x1f\xbe\xb4\xfa\xddv\xf7\xd3\x00\xbe\xb0\xb9\xf8\xf2Y\xef\xeb\xf0\xe53C\xb6_\xdaC\x86\x9f*\x0c\xbe\xae.\xa1\xcd0\xfe\x97^\xffW\xf8\xd2o\xe7{\xf3Uo\xf5\xb9W\xc2\x9a\xe1\\\xab3\xd0\x11\x83\xb0\xd9\xd1y\x91B\xba\x0c!\x18\x173b\xe4\xe5b|\xa5`\xd2vh6\xd4\x1f\xae\xff\xb2r\x01\x04w\xf2\x11z\xe0\x94\xa49%8\x93\xd9=\x87\x0f\xfa\xf0\x8b\xaew\xe1\xbc\xfd\x1b\xb4;\xed_\x19!\x816C\xda\xbf\xea\xd0\xed\x0d\x01\xf7\xf6'\xfd\xf7K\xe8\xe3\xbd\x01[\xb3A\x05\xaf\x7f\xef\x89\xd1\x15\xcfE\x8f1\x9e\xca7\x85\x9f\xe2\xff\xfc\xef\x1f\x9f\x15f\x1e\xdcI\xfc\x8c8\xd3L\xe4\x99F\xfd03\xe6o\x1c\xe6\xf3\x8a\x0b\xb3\xfeg\xfc`\xc4\xe7+\xec\xe3\x9f\xd1\x8bb\x8f\xa4\xdd\x8d\xf0\xb3\x8d,8gr\x8ah\x81)\xe3\xb78A\x04\xae\xd0\xbc\x96\x85:\x93\xfd,\xa4\xac\xaeJ\xc0*\x92^QUV\x8bd1Y\x7fG\x92D\xae\xa3\xb4.\"U\xd1\xb9\"\xdf\xd9\x17C\x06o7\xd57M\xee\xe2\xbc\xd9\x1d&\xc1l\x1ex\x89\ny\xa0\xfa\xb5\x8c\xdf\xf9\x83\xdf\x82n\x81\x00kf\xcb \xf1\xda\xc1\x0d\xb7\x08DU[\xe3YU\xfe\xc6\xd2\xc9\xbb\xd5\xed\xcb\xb7[}q\x01ws\x0bh\x91Cm\xfb\x02>WYV\x8f\xc5u6\xb9\xa53\xcd\xb7/\x87w~n\xadX\xc3\xffOV\x8b5\xb4m\xbd\xca\xce\x1e\x1c7\xe4\xb1F\x9b\x1b\xeb\xb3\xbb\xbe&\xb2\xd6\x14\xf18\xdc \xc9\xd2\xe0\xe1c~ \xc9\x0b\xed\x88\xd3I\x8dk\x10\x1f\xd0 X\x94\xd8:\xff\x0c\x8bn}\x96\xbe\x9e\xd9\x86\x90,UkU\"U\xc8\xfa\xc7C\x81\x14:H$\x92NI\x92^7sEI\xe7 =\x97\xdcE\xadZ\x91>\x14\xc3\x8c\xe5(C!\x08_\xd1\xcce'\x8dxe`\x1e\xb6Mk\x15\x05\xf1\xb1@py[(Yk\x8e\x03/\x08;\xfc\x11\x8c\x03o1\xf3\xc1\x89\x02\x1eA\x10\x8d\xea\x19\x03r\x0eI\x91K;\x9e\x12-\x0b^\xe2\xce\xec[\x9a<\xf4\\\x9fw<\xf1\xc5\x13\xc7\x03\xd2J\x91\x82xJ\xc3Z:\x0dy\xa8\xda\xc5\xe5+KN\\\xe6!\xf9\x1e\xe7M\x94\xb5\xe3p\xe1\xfd\x8d(R\x89cI\xa9kH^\xa3\xe9\xd97\xd4+\xa8g\xe5bHB\xc2\x13\x0eB\xd1jB\xb8\x85p\xfb\x80I\x96:*\x89\n\xb8-\x91r>l\xd8\x9aF\xc8\x7f\x82\xcb$r\xf1\x80z\x13\x18>\xcd)\xd8\xe38\x08\x85\xe3\x89{\xeb3\x1a\xca.\x83\xb1k\xc7\xd4A\xe5|\xf2\xd3\xbdw\xe3\xa7\xad\x9e)\xb9\xf3\x87\xd4?\x05}\x9f|\x97\xfa\xe3\xf5\xb4\xfc\x0ees\x0b\x8e\xeb\x0c(\x0f\x17-\xa2\x1e\x17\xe3E\xfb\x11\x83\x8dB\xfa~\xd7\xa3\xc9\x91\x838\xd3H\x13\xfa\xd3\x18n\x17v\xe8\xc0\xd4\xbd\x9d\xd2p8\xb5\xfd5g\x17\x9f\xc3\x0d\xb8\xfe\xc4}\x04\xec\x82\xeb\x07\x8b\xc4?\xc3\xf6\xc0\x8d\xc0\x8d\x18\xf6\xa2\x0e?\x06\xf1\xe8$\x06\x8f\xc6\xdc\x0c\x16\xeb\x9c-b\xf4\xcf\x03?\xc0\xf8\x82~\xfa\x86\x1f\xf8\xe9\xc3$\xbb\x1cn/\xe0\xbe_\xb6\x97;@ \xa2\x98\xf5b\x1e\xd21u\xd8\x1cq\x0b\xccyH\xf9\xed\xec\\\x05\xd7,\x8d\xa7#r\x88\xa1\xe1\x1b\x9e\xb6\xf0\x1c\xa5\xe2\xd8%to\xa71D\xf6\x84\x8a\xa3\x17\x1aC\x14\xcc\xe8F\xa8\xec\x1b\x9e\xa8x-hv!\xeb\xa98\x9e\xe1\xd6\x81\x0b?x\xf0\xa9\x03\x0b\x1f+\xc7\xe3\x1a\xb6\xfcE\xa3S\xcf\x1b\xd0\xb8\xc4\xd5c\x1d#\xb9\xc5M\xe1\xbb\xde\x96\xfd\x8eQ\xbfkI\x08\x1f\xa9\xd90\xf78\xf7\xaa\x0437.T\x92\x0fF\x9ae\x80.\x84\xcf\xc4\x1c\x96iNL:\xb2\xaaD\x03\x9e]\x0e\x8f\x1b\xb3\xfcrG\xb5_\xe6\xe2\xf1\x0df\xdb\xac\x02\x0f]\xc8n\"\xd3Z\xb4\x0f\x11\x07\x972\xcf\xdf:2\x9d\xb5<\xac\x05-\xf0zP\x0f\xd4\xe0\xe6\x0fA\x93j\xac\xe5[e\x05w\xe9\x99(\xbeW]3P\xe4\x194\xd5\x9d\x93\xd3}\xb8\xfeK\xb3\xaa`\xd6\x8d\xba\xb9~\xb7\xd4\x03E&\xc7J\xbd\x89\xe6\xa1\x9b\x81\xef\x19km\xac3\xb6V}\x12\x84\xba=\x9e\xcar\xd1\x9e\xf6\x19\x9f\x94\x8dsV\xaczE\xc8Jy\xf7\xee_?\xbf\x14j\xd38\xdc\xb7\x8ck32Lk\xb9R\xd8H|\xb5\xb1#k\xcd\x13\xc3|0k?\xec\x1e7\xb4\xe6\xfb}\xb5\xba\xa7\xd4w\xfe:<\x90 \x06\x8e\xc0h`\x02\xab\x9aN\xcd:\xdc!\xda\xfa\x0bu,n\xa1\xa9P(\xcc\x03\xfd\x0df\xa1*U\xe3\x8c@k\x90\xff\x99+\xe3\xe7\xca\x10I T\x11\x8682\x1f\x8f\x8ej\xe6\xe3\xd1\xcf\xe6\xe3\x11\xad\x99\x8fo&;\xd2\xee\x0f\xfb\x07\x87\x8aYkb\xf0]\xeb\xdb\x12V\xe6\xe3\xbf'5\xf3\xf1\xe7\x1f\xcd\xc7\x9f\x7f\xaa\x99\x8f\xbfL\xcc\x85\xf33{u\xe1L&\x13s1\x99L(~N,0\xb4f\xcd:Am\xe6i\x81\xe9`\x8c\xfbn\xd3\"\xe2\x194\x93BY\"\xe1\\&J\xfe\xac4[H\xa3\xbc\xeb\n.\xc3\xdf\xe9k\xd2\xec\x8a\x10\xc5U\x1b\xfc|Q*\xc4f\xe6!\x056\xc3\x80'F\x82I\xe7*6\xcf \x12\xabr\x0c I$\x1b\xca\xacq\xabH\x12\xa9J3IX{6d\xa3i\xd6\x14ci\x89\xd8/\xd1\xc9 \xe3\nNO\x85\x97)\x86\x8199A\x83\xfaS6\x8bj:\x8b{\xa0\x80i\x81\xb9B \xc2>a\xe0\x98]R\x92n%\xa9\xb6<\xe9J\xb8\"$_V4\xb7=CK\x92\xf1/IP\xac\xc4d\x95\xb7tx\xb2g\x9e\xba\xc4c\xbfp\x93\x17\x96\x0d\xb3\xd6\xdc:b\x03N-\x92\xc1\x8a\x9c\xf7f\x12\x81\x95\x07\xdc\x92\x91\xbb:\xbd\x15?\xaa\xe4\xf0\x1f\x0d|]\x14Y\xb7\x8bH\xb3\x90\xa2\xfb\xf9\x1d}*\x19\x107T\xe6K\xc9:\xa3\xe5F\xb0\xb1\xa2''w\xf4\xe9\xf44\xe5\xa0\xfeQ\xaf\xf3e\xb1\xba\xd2\xa2\x1c]\x04(\xba\xb9\x8cs/\x19\xef\xc6\x99u\xcaj\x96\x883\x0d\xf9Z\xc8#?\xa0\xe3\xd8\x8b<\xde\xa6\xcf\x98-7\xd0E\xacf:\xa6\xa3\xf1O\x06\xc1\xf1\xd0\x82d\x81\xd9\xbd\xa6\xe9,\xdf\xae\xf8\xa7\x9cw\xc6Jg\xf6\xbf`\xd4\xaaVR\x01/I4\x14~D\x03\xcb\xb7\xe2\x13rU\xa6e\xb3Z3\xf1g\x0b4\xa4Ne \xd3\x90\x1fN\xc6:\xa4\x96\xcc%)wJ&\x87I\xa4\x85\x9a\xd0\x90\xe5\xaf\xbfY\xcb\xfaA\xb4-\xbb\xcf\xd8\xc1\nn#\xdf*:\xb7%\xa1\xbb\xb9\xb9J\x12\x04\x19\xedV\x8a\xda\xb9\x92\x10\xc6`\xd6]\x7f\x02f\xdd\xb7\xfd\xe7\xd2\x0e\xf1Dy\xbe\x92\xf6~=\xa7r\xadV\x03\xa3\xc9\xd1wM\x81S\xcd\xc2\xb0\xdaf\xbd\xb1*\x18V=\xcdT\\9\xc6\\l\n\xc5\xa8&<\xed\xa5\x12\xd7\x11v\x087\xda\xab\xbb\x11~\xcb1\xd1\xe2\xfa\xcc\x9e\xcb\x944\xf3\xe9\xd9\x18\xad\xc2\x1cmy\nv\x82w\xbd\xb8p\xd3\\\x1c\x1d\xd9G\xecIE\"+\x05sU\xe6\xe7YtTd\xdeBq\x01\xf3\xd2\xc5\x01\xb7H\xaa\x8fm\xcf\x93)\xa9\xa3G\xb7\xfc\xb3R{CVJp\xf3G\xdb)\xab\x87\xd6G#\xd7\x01(\xcf\xe4E\x15\x89=N\x13uU\xab>\x1a\xe5\xb1\x9b+\x05\xe3\xa6\x16\xe61\x05\x0d\xc5=\xe6\"\x86\xec\xab>\x00[\xe6:\x9b}\x9cI9&d\xc9\xc4H\x89\xb7*5\xdd\x89\xec\xaa\xa2\x04vU\x8e\x89\xe2\x1b\xae\x95d\xd3e\xd7iB]\xbb\xe2\xfa\x15\x84\x1dv[\x0d\x95\x98\xc4\xf5\xa9\x1d\xf5\x1e\xfc\xb4\xe76\xd9\xdf\x97C\xc3\xb6T*\xc7\x86m)~Fg\xc3cl\x1cWLj\x8a\x9b\xe5\xedk\xec\xa3)\x87\xaaa\xa5\x8d\x950\xc4\xb1\x12\x90eh\x04\xd8\x9a\xe2cX\x98\x90\x1c\x0b!8i\"^\xad\x94[\x1aw\xc4F+,\x07\x1b\xdb1=N\xd2\xec\xc5u\xfaH\xc72\xad\xa3\xd0\xd1\xb5g\x14S\xd0\xfa\xd9|\xbc\xb1\xeaq\xd0aB*O\xaa|LUZ\xe71Zu\x1e\x9fR\xa4f\x95\x98\xd8\xca\x10[i\xcbl\xc5r\xad\xa8\xb9\xeb\x14&\x05a\x8e\x15\xe9\x96!!Ib \x80\xc5:n\x14\xf3\xb87 \xf6\xa8IU\x9f\xac\x94\xf1\"d=\x19\xa0\xcc\x99\xe7\xf7\xdd\x89,\xa1O\x16f\x1aLs\xd2:\xc1\x18\x05\xbet|\x0b\xcf\xc3<\xc0\x85\x8a$\xd7\xdf(\x99\xfc\xae\x17J\x1e\xc7\xe1\xd3\x12\xe5\xda\n\xdb\xc3z\x18\x06\xe1\n\x95\x16\xb2H\xfeLU\xb9a\xc7\x15\xe3Z\xe6\xcc\x8f)\xcb\xf5C\xd24\xae\x9bV\x95\x7f\x9ad\xaf\xe1\xf2u\x08\xeb\x11&8\x060,b\xbc\xc1\x14\xc5)\xceK{pK\x93\xa9\x8f><\x0d\xed[6\x89\xb2\xc4\xe5n\x89\xa4\xe0\xeb3\xf0\x8d\x89;\x91c\xc3\xb7\xeaQ8VU\x9a\x0c\x87\xddZ\xe5&a\xb5R\xdc\xa8\xc5\xf9\x86u$\x9cT\x18\xaa\x92\x1f\xd4\xa4j\x9c\x02P\xa0\xe6\x16\x88u6@\xcce\xbb~\xc46\x1f\xaf\x7f\xe7h\xedI\x98>y\xb3\x15\x9avv\xfc\xd5JIiEs9\xf7l\xd7o\x86\n~\xc7\xf41n\x86J\xf2\x85\x9f\xdc$\xb54\x99\xa4\xd8q\x88G\xe4 \x17\x1c\x89Z\xd9t\x85|\xba|#\xb4\xd4\xd8\x08\xadd\x17\xfb+%oJ\xb96;\x8aXfW\x95C5\x04\xc8\xd5N\x0cj)\xb6\xba\\\xa5MD\xac \x97\xad\x88\xbb\x8eG\"\x820\x1b\xa9jL\xd2t\xd6\xac\xb8O\xfc\xf5\xb2\x1e\xc39\xb6\xe1Y\xaaox\x169\xde(\x10\x11\x00\x19\xf3z\xbbFd\x91\x15\xcfy\x1d\x1a4\x1d\x14\xbbVm%\xd7\xdb\xfa\xf9\xc7A~n\xf2\x11\xa5\x18\x10\xf8\xaa\xaa\x8e\xf7\xf7\xe3\x1d\x95\xee\xef\xcb\xf1\xd4\x8d\x8c\xd8RmDA\xf6J9\xff8X\xc3\xd0J\x88)\xd1U\x97\xa1e\x11\xcc1\x8f\xfa\x8a\xb3\xc2\xe1\xb4lV|Nib%Rb#\xb2\x94\x10 \xe2^\x87\x9e\x8a7\xc6j\x1e\xe7{\xe48A\xf7;\xaa:\x06p\x0d[\xf6\x88\xa5 <\\\xb8 \x8b+u\xe7H\xa1\xb2\xa7\xf8J\xa4\xb8\x8447\xef\xb3]\xc2\x1e\xadV+e\xee-n]?j.W\xca\xd4\xbd\x9dz\xee\xed4ny\xde\x1a\xf0\x05\xf5\xfc\xc3+\xdf\xa1\xa1\x9clb\x85\x95(\xbe\x8d\x05\xb6p@K6\x077\xf6\xf8\xae\xe9+b\x1f1\xa6DI\x92\xb95\x0f\x18\xafa\xe0^\x0d\xc4HZ\x9e\xc7\xd0`\x92\xa4\x8e(e\xad\xda\x9eWK\x9a\xc9\xba\xc0\xdaO\xa1\xcaUl\xf5\xe8\xd8U\xb3\xfe\x18v\xb5j\x1d\x93\xdc\xaa\x08\x94#\xbb\xca\xce\x91\xaa\xaa\xb1\x12\xd6\x93y\xce\xaf\x8d(\xd6\xcco\x88l\xdf\x0b\xe0\xcb\x11\\F\xd4\x19\xacgx\xc6\xb5\x8eE\xb1(_Lq9 Gj\\D\x82\xc7\xd1\xfe\xbe4\x0f\xa9\xa4\xaajT\xf7\x03\x87\"\xa1,\x10\xe2\xfd\xfd\x92*\xa3\xa4JO]\x8aq7\xe3\x14\x8d6]E$\x87o\xda\n2\xa7q\x9d\xe1\xd03\xcem\xae2u\xc8\x98\x91\x1d/\x9b)\xea\x9c\x05\x0eUi\xe9jp\xf4()\x1eQ\xbcd\xb6\xeb\xae\xef\xd3\xf0\xf3\xf0\xa2\xa3nTS\xac\x84G\xb2\xcb-\xa2\xb7\xb6\xe6<\xe4RL\xf1I\xb8\xbf\xcf\x17IN\x9b\"+$/\x9b\xfd\x8al\xdf\x8d\x9fj\xe3)\x1d\xdf\xe1\xcbr\xa4f\x1d,L8y\xcd|\xefD\x0c?\xa5iee)\xb6o0u\xbfD\xf6\xf7#\xb6\x0ee\xcf\x14\xe9H\"\xca\x8e\xc7#\x15\n\xfc\xbb}\x80\xf7\x81\xeb\xc8e\xa3$\xc7[\x86Y\x9c:/\xcd\xff\xcf\xf88&\xafp\x11\x85\x83\xebBel\n\xbf#\x07\xf5\x89\xebQ\x1f\x99\xbeE=\xf0g\\\x8a)\x88[\x8c7t\xec\xd8&+eQ\x9f\x07Q,D\x1d\xf9\xff\x0cz]\xe1\x88\xe4N\x9e\xe4e\nc^\n\xf7\x1c\xc4\xf8\xc0\x15w6\xa3\x8ek\xc7\xf4\xcc\x0b\"\xca\xc4JBD\xc6\x7f9\xb7%eQ<\x1d\x86\x92\xd5G\xc8q\xfa\x02B>\x97\xb0\xc4+$\xbfe\xb7\xa2Q\xd6#\x9a\xee\x82\xdc\xd6\xf0W\xdb\xe67\x0b\xb2\x18\x12e'L\xe7w\x8d\xed\x93\x0f\x86SZI\xea\xabH\x07\xd50\xedy\xf5@\xaaL\xed\xa8\xe2\x07\x15\xf1v\xfd \x13\x13x8\xc6H\x0d\xd2\xb8\x8c\x88\x1e\x1d\xaad\x8d\x95\xed\x99B\xc7\xdc\xdcb\x14\xa7'\xa9\x9f\xe1\xe6t*WJ\xf2v)\xc7\x14c\xb8'.\n,\x0b\x1c\x92O\x18s\xa426)\xf1\x8e\xe7\x85W\x9c!d\xf3\xe1%C\x1b\xcb\x01\xeb8\xb5\x1d\x85\x12%\x92\xa9\x12(qr\xe7\x88(\xeb\x92 gt\x99\x0c\xa4R,T\xf7\xe9c|\xec\xef`\xa2r\xdb\xf5\x8eI\xcc\xb30\xfbu\x94\x14\x89\xe2\xab>/\x94\n?r\xc0 \x81MVsi{\x1e#\xd2\xb6\xb3\x8d1\x14!5=\xef\xd8g,\x11\xfb`\xcc\xb7\xc2.xK\x8cL\x87\x0b\xff\xa5\xf7\x19s\xc5w\x9c_\xf7\xa8\x7f\x1bOS>.T\\\xf5\xe88T}\xc3E\n\x14\xb2:W\xca\x90-@\xd3\xcda]7\xe3)\x19\x83\x85\x0c\x8dJ\x15\xbc\x16\x1a\x015\xe6?Q+\xa0\xfa\xfc\x07oO=\x029\xe4\xcak~cU\xd4n\xf3\x8ai\xdd\xb3\xa3\xb8\xcdP\x93\x1a\x1f'LG1\xfb\xfb\xe1\xfe~`\xbc\xb1R\n\xc7\x84@^\xe5qPG\xacVU]%0\x8e,\x95}\x08\x15\x80K\x12\x81\"\xc8Z\x8e\x92\x96\x15O\x99g\x8b\xecpPb\x13\xb6\xce\xf39d\x7f\xdf7\x1c\xd1\xfaDe\xd7\xc7\x13\xb5\xa8\xff\x98\x10m\xd24&\x99\xac>U\x8f\x8e\xa7'\x93\xa4\x9b\xd5\xea\x14\xf9\xe9\xf9\xfe\xfe\xbc>\xb6\x17\x11UU\xa7*)Ru*P0\x0e}\xa6N\x8c\xa9\xa5\xdc\xaa3q\xa2\xa4<\xa9;;\xb3z\xa6\xffR\xee\xf1\x06W\xc5)7\xea\x8c\xcf<\x9b\xa8\xfb\xfd\xfd\x9dY]h\xe4\xea\x0e\xbd\x99\xeb\xe07j\xe6\xca^\xb9Y\x829; j\x86\xf0\x17\xf2\xc6\xd4\xd7\xc1o\x11~\xef>\xdfn\x1d\xd8\x89\xc6/\xc8\xd9\xd6\x1b\xdb\x8bE\x18\xbexf\xc0\"\x0c#\x13\"/4\xe9\xf8\x9a\\\xb4\x17\x82^\xaa\x89\xfb\x12\x86\xd1k2\x8a$~\x8d\xbf |\xb6E\xbe\xb8*\x97\x10{\x84\xf0\x85\xc9\xa0\xb9\x98c<\xed{'\xd9\x01\x9e\xa2\xf8\x00\x9f\xe3\x03\x84\xf0\xfb0TY/\xf0{\x84\x8f\x9eu5\xd8\x1c\xaa\xdb\xcd2\xa7\xb1\xd9\xa0\x18z\x13\xbfX\xf5,\xf2\xd0\xfd\xc1g\xf8\x10\xe1E\x18\x1e\xea\xfen\x18\x81IQw\xb4\xd5\xaaDBYdy1\x86\xbf\x08w9U\xa7\x0e\xa9\x053\x82fr=\x0b\xf5\xd2{\x14V\xd7bauDY\x04\xad\xe0\xc3\xc6[\x84\xbc\xf2 j\x9f\x10\x91z\xcbr\xd7\x9anJ\xea\xa6\xc4\xca\x9df\xba9\x8e\x05L\x01\xe1\xd8\x82\xd2\xd6\x16\xf6\xd0\xecr\x9dW\xe3\x9a\xe8\xf4\xf8>\x0bCQ\x1e\xa2|k\x0b \x836z\xa6 a\x9b\x90\xae\x89\x16\xe1\x8a\xb46\x1co\xc2}\x1a\x83\xd4\xd9\xb1\xe9$Z\xdb\x15\x8ey\x06\x94D\x9d\x83m\xe7\"\x08\xca\xd1n`y\xa2[\xb1\xe5\xb3;W\xfaP\xba\x05\x8e\xb5a\x99[SA\x1e\xeb\x1c3\x04\xef\x16A\xbeHX\x80\xe1JK\xf3x\x10\x00d\x06X\x97\x1c\x962\\p\x9b\xf7\xc8A\x9c\x10\xc3|\xef%aX\xeb}\x82\xfa\xf5\xdb\xad\"\x16\xcc\xe56m\x9b\xe6p\x82b\xf7\xa1\xc9\x89\xa4~\xa5\xbd\x12\xc9\"(o\x82A\xd0\xab\xf0\x7f\xd2v\xd9C\x94o\x91\xa0\x11le[?\x90\xe0\x87\xad\xc8O\x1bd\xc3\xda\xc3u\x00l\xff\xbf\x97\\\xf6\x02\xb4\xf5C\xf0\x83\x99\xe6`?\xd8J\xdb2\x99n\xfd\xd0\x80\xae\xa9\xba\xca^j\xa3<\x0d]d+\xdf\n\x9e\xa9\xecfV\xb7\x82\xfdm[:x\x16\xacp\x93\xb6\xeb\x9cR\xdaN\xc6\xe3\xa3K\xca\xe4\xcb4\x97\x94Q\xd1\x8f\xf8}\xef%E\xb1^$\n\xccm\xa4f\xda\\\xd3]p\xf9\x00{~\x91\xd4\xd7\x13,\x08+/\x1e)a\x9a\x80N\x08kWo\x1e=Z\xb9\xc6\xf8W\x8f\xd4\xe7\x87\x0d\xc4\x10\x0b\x84p\xa2\xaeP`\x191B+\x84\x9b]\x849\x8a9\xac\xd6\xc2q\x16}\x9ep\x84J\x8an\x1c\xa1[n\xde\x97\x8a\xa2\xca\x10\x8a\xe0\xe2\xba\x08C\xef\"F\x16\xed\\\x8c\xf0\xa2v\xd1TCl\xe9Z\xd4]3\xb2U\x92f\x07!\xdc\xb4\x9f\x96dr\x9cbA\x93\xf1\xcd\x89L$\xed\x05\x19O\xc6zw\x92IQh\x81\xdaD\x0b;\xaa\xa80\x04Z \xe4\xe8\xfa\xae\x82\xf5e9|\xf3\xca\xb0\x0b^\xf2dL\xc7\x01\x1e\xa3\xf8*ec~\xd5\x16\xf4\xef%\xcd\xe5s\x96\xce\xe1i\xf0X$s\xda\xbf/1*\x0b\xe7T\xbeO\xe7\x94/e4\xc6\xddG\x1e1\xe9s\xf2\x9b\x16\xb7\xe8R\xa6\xf2xS\x0e\x0dj?\x03]v2\xe2\x0b\x1a\x869\xcd&\xfe\x81\xbf\x96\xa5\xafr\xc4\xb7+\xd4S4\xf1\x82\x0b\x99\x87a\xe4\xc2D\xe8\x0bz\xa3\xd3$\x84\xb5\xa7a\x18\xb1\xf6\xd4\xe0G\xe1_\xb0\xf2\xb6\xb6\xbb\xbfI\x85`\xbf\xd9ji\x81\x1a\x15B\xd66V\xbf\xd5zV\xd1[^\x08\x9eq_Wy\xff\xb4o\x04\x97\xfb\xa7\xfdj\xde1\x1f\x01B\xf4[9|s\xf0\xfe\xf3\xdb#\x10\x80y\x16\xfc08\x1d\x0e\x0b\xf0\xb4\xf2cP\x80c\x99\x1f\x7f@\xda/\x0ed\xd9\x0f~\xd8\x90\xa3\xd8\x8f\xfaM\xd5\xcd\xc2t{\xf0WkX\xb4\xa2~\xb3\xf5\x0c\xa1\x1f[\xadg\xe8\xc7S-\xc3\xf2l\xa3\xae~`\x85 [\xf9\xf2<\xa7\x15\x9f\x1c\xd1_\x83\xbfN\x07\xc3\x1fk\x8e9\x9e\xad\x9bu[\xabW\x1f\xd7k\xea\xdc\xb5\xdeW\xe7sY\xb1J\xd3,\x9e=(\x06jV\xb6q`\xe6\xaf%\x93i\x10o\xffe\xa6n;\xc5jW\xc6 \xb2\xb4\xff\xec\x87@\xcb\xf1\x8f\xd4~\xacL\xf5\xe9\xe0\xe0\xf0\xf9\xfb\xe7\xa7\x03\xa7\xdd><\x1d>\xabZ\xa8W\xa7\x91\xbf\x96\xdb\xd6\xdd\xfa_\xa7\xf9\xb3\xd3m\xf2`\xff\x7fiA\xc1\x1c\xfe\xfch\xe3M\xe4\x8f\xc6\xacW}}T\xb6\x1f\x82g\x90\x8d\x0cN\xf3gC\x84\n\x1d\xdcVa\xb4\x85\xfa\xa7\xf9\x8f\xa7\xdb\x15\x88q\xcbS\xed\xd5_\xaa[\xa6a\xcf\xf4@\xdd\xd1\xce\xe9v\x7f\x1b;\xcf\x8d\xf1\xf6_\xa6H<\xdc\x8a\xc1w@\xbe\xa0\xa34\xc9Z\xea|\n\xe2\xc1P\xbbOi\x01\xb1\xe3\x03\xc07\xc7\x846\xf7\xc1\xb3\x06\xf0\x17\xf1\xc4\xad\xa5h\xd1\xbf\x97I\x96\x07+\xbc\x1d\x14?l\x0fWu%\x0d\x98\x07\x9d\xb5n>s\xc3\xc0\xef\x1e\xe4j\x85\xb51\\\xbf3!\xc8b|\x1d\xdev\xf1\x93U\xaf4\xc0\xa4\xaa\x19\xb7t~\xd5\xb5\xf0\xbf\xae\xad\x95\x11\x9bu\xb8\xda\x80>\xd4Ak\xae\xa6\x03\x7f\n\x9d\xa9n]%\xd9PR\xa7l\xaa\xd3\xc0\xba\xab\xb7\xbeAm\xe5\x1bj\xc5\xc2wB\xa2I\x97\x8a\xbcf`\xc6H\x80\xd8\xbcQH7\xa2\x1e\x99\xd2\x96\xa9\xcc\xe0\xf9W\x1f\"\x9e\xecB2_\xf4\xb6q\x10\x06\x08\x08\xbd\xcd\x92\x02\x9b\xa7\x08\x07\xc9x\xfc\x82ep\x00X!\x82M\x0c\x9b\xdbU\x8f\x0d\xfcGd9\xf4MW\xfe\xe5\xedd\x8b\x91\xc0\x1b\xdaP#\xa5;\xdc\xa1y\x9d\x1a\xc8\xe1\n\xb36`\x08\xb2\xed\xd7W\xe8J\xb6S\xc3tQ\x88\x11\x8c\x96\x8e[\x90;\xf8>\x84b\xd1\xdfj\xd5\xe3w\x8f\xa4n;\xa4\xd6\xc3\x9e\xa1\xa1W\xbdt@\xbdrN4n\xff\xecl\xf0\xd7\xb3\xe1\x8f \x02\xea\xf5F\x0b\x9e\x0e\x87\xc5\xe9P!\xaf\xa1:\x02\xa0g\x05\x9cf\xf5\xc9\x03K\xe9d\xfft\xfb\xec\xec\xd9\x06\x81\xb9\xb3\xb3\xbb\x85\x157\x89Q\xada/^\xdd3U\x937\x1a<\x02\x1c\xe8\xe9\xc5)Z\xad\xfe\x01X92\xec\x0e\xc0\xfa\xc6\xa6\xad`B\xc3R\\\x9f\xef\xbf\x8aA\xf0\xc3i\xbe\xa6\xc3g\x94\xe6\xfe=\xec\x7f\x9f$\x9a;\x95=\x04\xa81\x1bQ\xe0r\x17\x9a\xae\xc3\x93\x99 \x7f\xeb@\x07\x07\xc1\x0f`7E\xfd\"\x84NO\x0c\xf8\xaa=\xb4\xb3~\xaak\xec8\x90\xb8\n\xc8w\xed\xab\x7fz\x02\xacV\xb0\xf4\xfeJ\xcd\xe4<\xdb\x8c\xdf\xfc(9\xfbv\xae\xfcr\xfa\xad,\xd7\xb5Z\xac90\x0b\xa1\xb7\xb5\xce\xe5y\xad\xc0\xf5<\xabdH$\x9f\xdf\x9bA\xe4\xf9Z\xba\x8f\xa6/\x9d\x14]\xa9\xd9Y\xb5m\xe7[_\xfd\xe1\x8e>>V\x8b\xd7<\xcd\xd1\xa0u\x96\xb4\xbe\xfa \xc6\xfc\xb3J\xaa\x95\xb0\xfax\x1b\x1c\x82\x97\xc2\xb6\xdbM\x17\x06\xfd \xb7\x02\xf5\xee$\xad\xaf\xe0\xb2f`C\x00\x95\xebN\\7\x99\xb7\xef\xc5xX\x93\xd6\x1d\xe5\n\xcf\xa8\xfdU\xf1\x00S\xcbbT\"\xe8\x1a\x02\xec1\xb8\x1c\xab\xa3\xb0\xa4\xcd\xa2 \x977\x19x)\xcc\xf3\x00a\x97\xee\xf1:*9\xd0*\xaa]\xab\xc1v~\x89[\x06\xf5mt:D>\xba\x89\x9cG\xbd\xefr\xc7Rj\xf7k\xd5\xfe\xbb\x0bm2%\x06\xa7\xdeF\\\xf9-K\x8c\xdfa\xcf\xff~\xbf\xe0\xa5\x87}F\x8d\x1d\xc4\xbbM\xff\x7f\x9f[\xdf;\xcc\xfb[\xedLP\xcct.\xc3\x8c]\xc8\x8a%H\x03\xa8\xceD\xbf\xef\xc4\\[\x7f\xd4\xf4\x9e3\xdex\xe3\x14Q\xbf\xa1\xe7Wb!P\xae6p~\x97\xa9\x8a\xe8~+\x8e\xa5D|\xd5t\x05\xa8+\x83E~\xd2'\xfd\xa2\xd5\xea\x17\xa7[\xa7[}\xcf\x90\xc5\xa0\xff\xe3\xf6\xbf\xfe\xfa_\xdf\xf2\xc2\xe4\xc3\xef\x97\xe42\xd1\xa2\x9a\x1bI\x02\xeb\x1a\xa2\x02\x10\x83\xb5\x0dP\xb3\xe0W\x03\xe0\x07\x9b1\xd3\xd9\x83\xe7\xad?7c\xa6z \xc0LmP\xc0fZ\xb5\x13<(\x18^\xf7\xda1\xb7\x1a: \xf17\xa4\x16\xd2_\xa1\xd3\xfcG\xa4\xc1\xf0|\xcd\xc0_\xad\xebm\xab;\x00\x8e\xa3\xc1 \xa9\xf5^\xe7\x8e\x7f\xad,\xec\xec\x9c[`8=/N\xa3\xa2>\x94\xe2\x01B\xf7x\xbc\xcb\xa5\xef\xf7\xee|9\x9d\x82\x1a\xb1U*\xd6nzxE\x7f\x18\xd4~+\x06P\xb3\x1b\xd7\x99\xd3[h\xd0:\xc7s\xf1\x83\x1f\x02\xdd\x15\xb7+\xa2~<\xd5\xce_P\x99\xeb\xbfN7\xf6\xdf\x18S\xb5\xdb\xde\xd3<\xde\x80\x002*=\xfb\xaa\x93{L\xaa:\xdd_\xd8\x85V\x93\xb7\xaa\xb8\xeb\xd9V\xd5j\xbb|R8f\xab\xf6\x16\xc3\xd3\xf1f\x13\xabu\x18)\xb7\xed\x7f\xf5\x1dL\x1aE\xca\xef\x07K=\xcfm\xfd\xab]\xfe\x9d\xa7l\x0cn\xfc\x00\xd4\xfa>2\xd8x\xd7\xfa\xeb\xf4\xea\xc1\xba\xbd\x94\xd7\xc9\xeb\xe2\x05\x03\xf5\xfc\x9b\xaa\xfd\x8c\xce\xe0\xfc\xa7\xe1\xa0\xd3\x05V\xdc\x19\x04\xd0\x8f\xac_\xcf\xc4\xdf\x0c\xb5\x02\x8e\xce\xa5B\x9b\xb2]\x7f\x1a\x0eN\xc7\xcf[\xc7\x80\xa0 o\xf9\xb9^\xc0\xf7\x1c\xc7\xb6\xeb\xf4\xdc\xf7\xb9\xa5[sJ78\xa2\xc3\x0d~\xe9\xd6m\xb5Tfj\x8dp*\xd1e\xab\x05\xd8\x11<\x95\x90~A\x9e\x15aH4\x9e\xb4X\x94\x14\xfb\xfb\xa4_<{\xf6L\xe1S\xad^\x1c\x16\x7f5\x89\xc6\xb4\xa7\xed\xdb\xddUq\xda?\x05\xa7w\xfd\xd3v\xbf\x18\xfc+\x06\x1f&\x9b\x11h\x15 \x0e:C'I\xf1O\x0fNud\x96\xa7\xe4=\xbc\x85\xb2\x13\x15G\x12\xdaaB\x1d\x03\xd6\x11r;\xf8AQ)\x8abU\xbd4\xdbOo\x1b\x00\xe0\xd3\xed\x92+\x7f:\xac\xa8\xae:\x1f\x10\xdb\xa7\x8avwN \xc6\xd3t~\xb3\xcc\x87\xb7\x1d\xfcx\x15\xf5 \xb0\x8c\xef\xb5+\x7f\x1b\x94\xd5\x7f\xbc\xeb\xe6_^\xfb\xa1\xc2`\xc3\xc5\xbf\x0d)+l\x9atv\xea\xc1w\xc2vq\xba\xfd`\xdb\xa6M\xb2d\x9a\x03;C5\xba\x05FRK\xc3\x1b\xce\xc5\xb9\xd7\xdd\xff\x0c\x0d\x0d\x88\xd5\x87\x85\x03 P\x0f\xd0\x1a\xde\x89\x14\xddg2\xe9\x9f5\xae@\x84O\xa4\n\xca\xd1,\xc0\xb38\x18\x05X\xd2kElKz\x1d\xac\xb0$Z\xa0,\x17\xa3\x96:Z\x97y\x80\x19\x01\x011:\x0e0'?,\x04\x1d\xd8,\xc3\x98q\x19\x0dj%\\\xf6!\xba']a\xda!\xfa\xa1W\x91\x1a\xd8\xa89X3\xfad\xdf\x01\xb6H\x80\x1b\xc1\x16\x07\xc9\xcf\x0d\x95TU\xbc\xcaJR\xfd\xc4\x95\x90\xd4\xeaO\xf5\xd2I\x94\xd8\x95\x8c8B\xb7)\x88\x08\x92 \xc0IUwKb\xd7y+\x95\x99\xb4\x93\xc5\x82\xb2\xf1\xc1,\xcd\xc6Q\xa9\x0b.h\"\xa9U#\x0c\x0e\xde\x1c\x1e\x05\x08\xf5r_\xab\x8e\x04/ue\xff\xe7\xff\xf3\xff\x0f\x8cn^\xd2\x9eV\x94\xc5\xec\xe4\x05\x08\x8fH\xea@\x1d4\xd3A\xad\x9e\x102\xb2\x1a\\\xd1\xf6i;:\xbd\xdaB\x0f\xb6\xb5\xdeF\x86\x8ab\x80uF\xad6>\"t\xb0\x1c\x16\xc5r%6\xe9\x08\x8e\xd4d\xae\xc5'x\x84\x8cX\xa3h\x1b\x0d\xd7v\xb2\x94\x1cVZ\xf4@>P\x85m\x89<\x1a\xf9*<\x98c3\xed\x19h\x01}z\xf5\xf2\x17)\x17\xef\xb4\xdc_/k\xf3\x05eQ\xf0\xf3\xd1\xfb\x00S\xdc\xec \x9c\xb59\x03\x11E\x053T# \xe2m\xe9=B2O\x861\x0c\xa3\xac\xad\xc1k\x7f\xaf\xd3 C\x95\x98/8\xcb\xe9{z-\xfb>\x08\xad-)CF\xeeb\xc33\xe8_\xea\x16w:\xdeB\xfa6\x17a\x1b0q\xa8\x8f\xfav\xb2)H\xd9\x82\x86\x84\x15*y\x0d\x9c\xa6H\x0e\xbaC\x84\x05\x91\x83\x9d!\xe6D\x0evKu\xeb>\xef\x0f\x186\x199\x1a\xc6\x03f\x04 !\xc8\x86\xabU\xb4\x11(\x84\x9a\x93\xc0(\xffY\x85\x1c\xda\xce\x17Y*\xa3m\xb0ZT\x9c\xb2\xed)\xc2\x19\xe8\xe2\xe0\x11Q\x146\x01\xa5\x9d~j$\xb9c\xf5\xd5\xcb\xf6;j\n\xb7H\xead\xf83\xf2*\x91\xb3\xf6<\xb9\x8e:X\x07S\x16e\xad.vy\x10\x1eA\xb9\x91_n\xb4\xb1\xdc\xc8/EIj\xf4\x102\xdf&B$71\x85G\xc3\x98\xc2\x99\x14S\xfb\x02@\xb1v2\x17S{?\xa2\xd6\x8b\x1a\xc5 S\xe5\xa0\xfc\x9bI,\xb1U\x9a\xa76\xa4\xc6\x1cSly\x1a\x90\x89i-b]-\xc4pF\xcb_(\"q>K\xe0\x97^'#\x19K\\\x9d\xc68\xc5kP\x11s\xa7\xf8\xc3\xda.'a\x98\xadV\xf8\xe1\xa3\xa7\x8f\xd7\x00\xb2\x04\"\x16)\x88E\nt\xf7\xba{\x95-_\x81\xda\xb2Dprt\xf0\xee\xe8\xfd\xd9\xe1\x9b\xb3\xd7o\xde\x9f\xbd}~rr\xf6\xfe\x97\x17'go\xde\x9d}~\xf3\xe1\xec\xe3\x8b\x97/\xcf~::;~\xf1\xee\xe80X\xe1\xbd\xbd\xbd'\xdf\xb7#\x1e\xef<\xddC\x98\xab\xd0^\xf7\x89\xda\x8f,\xda}\xb2\xd7A\x15{\x8b\xbe\xcao\xa0\xe0&\x8f\xb7\xb7\x05MF\xf2K\xde\xe6b\xba=\xe6\xa3|\x1b\xee+\xad1U\xb4\x9a\x00\xb1\xad~j!\x86\x04[\x143\xd2\xed\xb1}\xb7\x7f\xad\x8e\x1b\xdb\xdaBr\x8b\x04a\"\xa6\xf9`\xa8\xb2\x82:\xf4\x87w/\x0e\xd4]\x89)\xec\xe5J\x0d\xd8\xd0\xeac\x07\xafR\x96NR:V\x80=\x92\x0d\xe8@\xe3\xbf@\x16\xaf\xd7\xb8L\xf3T6\x82-\xb9\x154&\\\xc0\x1e\x9a,\xb3\xaca\xd4U\x14\xbeWS\xa2\xe2\x19g\xad\xb9\xadlL/\x1b\x94]\xa6\x82\x835d(\x0c\x05\xa1\xfe\xbc\x91\xb0q#\x19\x8f\xe1\x06\x97d\x8d\x19\xcd\x16\x93e\xd6\xb8\xd2\xe0\x91\xb7\x83U:\x89\x9aV\xeb\\\xef\xfd$\xda\xd9y\x8c,\x8d\xaap\xc2 \x958\x03\x933v\xa2GZJ\x11\x14\xc4\x10^Ft+8H\x16r)h\x80%\xaai\x90\xe9%\xc9\x06tH$\xa6\xa4\xd3\xa3\xfbV\x0f\xb4G\xb7\xb6\x90&\xbe\xe5\x80\x1a\xa32\x0b\xd2\xdchfIke\x14\x85&q\x08!F\xc7\xc3\x1e6w\xa7TIj\x84\xc7d\xfb\xafA\xfc\xbc\xf5'H\xd5,;\x9d\x03uc\xeft\x0e\x1f\xc1\xdf'\xf0q\x0c\x1f\xc7\xf0\xb1s||\xba\xec\xec>\x86l\xbb\x8f\x0f\xe1\xefq\xebt\xd9=V);\x9d\xceA\x0b~\x0e\xd5_\xc8\xb6\xd3}\xa2R\x0e\xc0\xca\xe8\xce\xf1\xd1\xf1\xe9r\xb7\xd3\xe9\xb6N\x97\x87\x8fU\x99\xe3\xa7\x90r|x\xa0>\x0e\x8f\x0d\xcf\xe0p\xf8\xff\xd6\x8e\x9d\xb6\xda\x9d\xd6S\xd5\xf4O\x8fU3\x1d\xdd\xe6#hf\xf7\x18\x9a\xd9\xeb\x0c\x7f|\xb0\x8d'd\xcd\xc2[U\x1f\x1b\xcf\xc8\xed\n\xcf+05uJ\xdd\xe6x\xd2*\xe9\xa3\x11]\xc8\xdc\xb8\xb9\xcc\xc9\x0e!D\x16\xc5\xae\xfe\xd9\x03\x03+:\xa3%o\xc0\x12\x98\xd8\x10 \x12\xf7\x84\xeb\x94\xf92\x97\x1fr'\xabk\x95\xde-;F\x9b\x13\xc3\xa5\xc2\xbci\x05\xae\x86\xe9W\xfa\xe1\xddK\x92\xea(A\xe7\xfc\x92\x1e)ZLS\x92$\x010\xbeQ\xa3\x0bF\xean'(k\x8c\x15\xcd-\xf82\xcfnN\xa8|a\x0d\x994\x0c\xe3\xfc\x0fP\x1b6\x1f\x07\n\xa9\xd3q\xc3\x99;\x81#V\xd0<7\x84\xda\xd18\x95\xa0\xf8\xa67\xb2K\xfe\xe5f,\xe0\xb0s \xf7d(\xfb\xa0\x11\xa0\xcd\x06\x91o\xc0L\x01\xbd\x82E\xe8\xe0f\x17Sm\x9a\xa8\xd9\xc5\xcd.H\xce\x0f\x06\x81^\x8b\x83Y\"r*\x03l\xbe[#\x131\xc4\xe6\xedTM^`\xa4\x8f V!\xd8c.\x02\x1cL\xb801rq\xf4\xf72\xbd\x0c0\x84[\x14>\x86w\x18l\xd6\xf8\x9c\x0e:\xc3\xde\xcd@\xda\xaeJ\xdc\x85\xae\x0e\xba\xc3\xb5\xde\x06\xa3\xeaL\x058\x18\x8bd:5\xe1|A\xb3\xec@_\xf0\x03\xab\xfd\xf0\xed\xa9\xd9\x81\xf6\xaa&\\\xd6\x9bV\xd7\xdbw\xf4\x92\x8a\\5E\xaf%(B\xbc\xa3\x9a'\xe5(\x0d\x98\x8e\xd127]R\x0bH\xc5%}\x9e-f\xc9\xbf\xd1\x9bz\xfbA\x92e\xfc\xeax\x99e'#A)k\xc0\xabNCu\xeaX5\x07\xa1\xb7Yr\xd3PS$x\x96[\xb0k\x80\x9e^\xc3(U\x8em\xe0m:R\x98\xfd\x053\x01\x1b\xff\x8e\xce\xb9\xa4\xaa\xa6\xf3dt\xa1\xce\x9e\xf9k\xfe\x87&\x13ic\x96\x8e\xc7\x9452\xce\x17\x0d\xc6\xb5\xa7\xe6\x06+\xd3\xd5\xbd\xbd\xb1\xc8\x92\x9b\\\xb31\x1b\xeaJ\xfe\x86e7\x0dk.\xbe!\xf4\x1c\x8e\x1b\xf9\x88/\xd4\x0fM\xe6\x19\xcd\xf3F*\xe9\x1c4\xeb\xfeM\xc8\xde\xfd\xae\xe5\x1b\xe9\xdd\x17\xe0`\xbe\xccd\xba\x80\xd5\x99/%Di\x1e\x12\x1d\x7f\xd7\x02\xed\xe2fg\xc3N\nF\xf6\xac\x0c\xc6\xfc\n\xf8\x96\xdfU\xdd\xde\xe6\x8d\x19\x8cx\x96\x078\x10\xfcJ\xfd\xe4`\xbcEk(\x7fO\xad\x8f\xee\xa8U\xf0\xab\x13\xd0r\x0e\xf4=\xf9{\xeaz\xf8\xed \x06\xba\xe2\x92l\x83\xe1gp:?D\xdb\xd3\xf2\x188\xf7\xed{jC\x91\x1f\x16\x0b[YIZ\\UM\xe5qrS\xb7\xf9!Q_!\x0bP\xea\xeb\xc1\xdd\xb8I\x08\xef+\xfa\x80\x03R\x8f\x9b\"\x0cw\x1c1\x12\x86Q\xc0\x03u\xa2\x0c:\xc3\xa2\x08\xde\xd80R)L\x7fuU\xcak\x1bF\xa8(\xa2*\xf5\xaa:\x94N\"\xcd/\x91Eqgj\x93\x10\x16\x86\xaa7\x0czS\x9a/4\xc6G\x9d\xbe\xbb67j+\nb\xf84\xee\x84cg\x0e\x11b\x8d\x80\xa3\x8b\x16a\xe8\x1a\xeb7Y\xfd8\x8d5#$h\x12\x12QR[8g\xff\xe1!Ba\x18(\xea\x18r\xd2\xbam\xd0fw\xb5r\xc3\xab\xd8g\x14\xe5\xa0\xbcQ#k]U\x8f\x1b\x86\xd7\xd8\xb5\x95I\x18Ic\xcfU\xae\xe6Z\xc7=t\xf6N\xf3\xd7\xc9\xebH\"\x1d\xfd\xa8\x1e]\x14\xddg\xce\xe6cw\x15\xe9;\xafP\xeb\xc8\x80\x93\x85\xb0(\n\xbdD\x84WX|\xa6Ps\xa2-e\xcd1EEa\xbff\x98\xaa:\xc6mIs\x19Q\xd4\x9f+\xe0ov\xe2h\xa6\x03\n\xc6\xd1*\x92\xc8L\xbbZ\xdc>5$\x82\xc7\x80A1]c\xc9\x04[\x0c\xa1\x98\xd7)\x93>\x1d\xf0\nY2$\xae\xe6\xdd\xa6\x05\xe50\x0c\x82\x98\xc5\x91$\xbcJ\xf4`Q\x8f\x012\x08\xdf\xdf\xbb\x88\x11EaE\xdcT\x8f4\xa9\xc5\xc3\x10l\xda\xb1~\x10\xc4\xaa\xc3X\xf4\xab\x03y}\x12 \xb8\xc3\xad\x0f\x90!\x84\xd0\n\x88\x06&[3\n\xac\x99$3\x8e\\Z\xe7IN\xe1\x1cHDr\x9e\x8eZ\xea8i\xd8\xc8V>K'\xb21J\x16\xb6\xe0(K\x17\xadE\"g:$\xd4\xe9\x02~}\xaa\xde\xc67\xc5\xb5&i&\xa9\xc8M\xdaB\xf0I\xeaJ\x0b\xca\xc6TQq\x8d1\x9f\xa7,\xf1{F\x99:\xf6Z\xea\xb4\x9b\n\xbed\xe3\xc6$\xcd\xb2\x16_$\xa3T\xde\xe8\x0f\xe8\xc8$\xe3|\xdc\x82\nM\xd8\xe5\xe1L\xb6&\xc9<\xcdLXa\xeb2\xd4J\xc6_\x96\xb94\x11RP9\x9a\xd9\x8f\x9b\xccd\xb4\x9c\x0d\xf8\xb8\xd2\xd31\xcdn\x163\x90Y3A.R\xca\xa4\x1e\xef\x8c\x8b\xf4+g2\xc96$^R!\xd3\x91\xba\x1c\xaa\\\xadd|\xd9\xba6a.\xd2i\xcaZ\xd7\x0dpx\xe4MMF\xa5\xa4\xa2\xa5 >U\x17R65#\x9e'\xe2\x82\x8a\x16ec\x1b\x9c\xa7.\x08gI\x83_R\x01\xebj\x9f\x17\xcb\x189KG\x17L\x9d\xf2\x8b$e\xb2\xc5\xc5\x98\x8a\xc6\"a<\xa7\xadnc\xc1a-[\xf4R\xdd\xb0\x1b\xaeO\xb0\xc4L6\x80?\xe2u5\x97|a\xfa\x05A\xbb\x10\xb9\x14\xe9\x055\x9ez\xcanT\xa3\xcb\xbe\xe4R\xf0\x0b\xda\x1a'\xf9\x0c\xd8:~\x04\x9fLr*m\x8c\x1a\xc4(Y\xf8\x9f_x\xca\xec7\x88\x99\x81\xb4\x99\x8d\xf1z\xa4>\xaf\xd2\xb1\x9c5$\xbd\x96\xad\x84\x8df\\\xe8\xf0\x98\x8e\xb8&\xed\xf5w9BuS\xaeMf\x19U\x8e`\xc9\xd2\x11\x1f\xd3\xd6y:N\xdd\x07<\x04\xa8/\x99\xb7\x16jV\xe7\x8d\xcbV\xa2\x08\xd0s*\xd3Q\xe3\xb25K\xd8T\xb5r\xd9J\xc7\x94OE\xb2\x98A\xfc<\x913:O4\xe8\\j\xe5(:\x99\xd0\x91l(\x88\x028\xba\xd1A\x07F\xfe\xd7M\xe3\x8a\x8b\xb1\x03\xa1+\x91\x02\x04\xcd\xf9\x986\xae\xe7\x19\xcb\xe3\xeb,e\x17\x8dk\xb3\xe1\xbfM\xe9\x99;\x82S\x04\xbd\xc4\xe7h\xd3ma\x8d^\x86\x86\xe2\x04\xe4!h\xc3|\x89\x91\xe0\x99\xfd\xf2\x82\xf9\x8c_\x99 (\x1d\xdb\xf0\xcd\xf7\x10\xa3\xdf\xdd\xc5\xc0p<\xaf\xae\xae\xdaW\xbb\xc0\xb7\xea>}\xfat\x1b\x1a\x0b*d\xda\xf5<\x8b\x15\x86\n0\x04\xb3\x84MM\x10\x10\xfd]d\xdb\x7f\xd2\x95O\xaf^\xaa\xee<\xd9vz\xec\xd5.\xc9\xe4\xfc\x85\xb1R9\x12<\xcf\xdf\xc0\x92\x7f\x17\x01\xd9\xfd6\x01\x89o\xda0\x0d\xbf\x08:1\xe5\x02\x17\x11\xe8\x1a\xcc\x9a\xce \xe6[\x93 \xa76\x1e\x04\xb9\x18\xa9\xcc\xbaL\xa2i-\xb8\xb1\xce\x9f\xeb\x8f\xffp\x00\x1d\xdc\xec8\n\xf8\x9a\x88\xf6\xd9\x99a\x96\x82\x7f\xea\xd7\xcf_\x9eX\xb6\xe9\x87\x93\xa3\x8d\x0cS|A\x1eu\xba\x9d]|\x06\xbf\x8f\xf0\x1b\xf8}\x8cO\xe0\xf7 >R\xbf\xdd=\xfc\x16\xbe\x9f\xe2\xe7\xf0\xdd\xc1\x0f\xe0w\x07\xbf\x83\xdf]|\xa0~w:\xf8\x0b|?\xc4\xef\xe1\xf7\x11~\x01\xf1]\xfc\x1a~\x9f\xe0C\xf8}\x8a_\xaa\xdf\xdd\x0e~\x05\xbf@\xcd\x95\x04\xa9\xe3\xd0\x9d\x00M\x1a\x86\xfaW\xcd\x96\x06\xb4cR\xc6\xf4.\xc8q\x14\x00G\xd6\xbe\xa2\x07\x08\x9f\x95\x91\xa0\x96\x96\x05\x08\xbf)\xe3&\"\x99\x9a\x9c'e\xac\xe6\x10\x9f)\x9c\x11 |\xe4U\xa1\x8ft\x11 \xfc\xb6\x12{\x99\x8e!\xf6y\x19\x0b|\x82kU\xf3\x03\xaf=.\xae\x121>S\xb0\x80\xf0;\xaf\xc9e\xbe\xa0,W\xed\x1d\xac\xc7\x9eei\xaej\xfaR&\xcd\xe9\x9c\x07\x08\xbf/c\xb2\xe4\xebM\x80\xf0\x8b2\xe6<\xe3\xa3\x8b\x00\xe1\xb2>\xb8\xdb\"\xfc\xba\xcc\xc3\x17\xc9\xdfK\xdaN\xc7\x01\xc2\x87e4\xc8_\x9eI\x91\x8c\xa8\x9d\x87\x97^\xa1\xc9$\x07\x1e@\x80\xf0+\xaf\x07t\x9a\x8cn\xce\xf4\x0d=\xd0L\xd7\xaf\xf8\x03\xf9\xf6\x8a\x82\xc0\x94\xe4\xa2\xbc\xae\xfd\xe4]\xd7\x0cMI\x8b\"\xe0\xd6X\xb6\xa9\x87\xf6Ub\xbc\xdeBD\xc9\x870\xa4\x83\x0f\xc3\xa2\xa0\x83\xe0\x7f\xffo\xdbD0D}c\x90\xc55\xf6\xb7j\xcc\x89\xe4\x10B\xbe\xa2\xd2T\xbe\xe6^#c(\xdfCq`\xfd\xbe-E:/\xcd%\x9e\xb2\xa8\xf1c\x94\xc8\x06\xea\xa3m\xd4\xfbJd\x18\x9a\xcb]`]\x0f\x9c\xb2`\xeb\xeb\x16\x85\xe9\xf9\x834\xbb\xe5\xa0?j\xb6v:\x89\x9a\xb4(\xfe0\x97\x9c \xe8\xfdA\x9a\x1d\xf3|\x04\xddi/\x04]$\x82\x9e\xa8.\xbcW\xab\xd4\xbb#\x9e\xe81\x81\xe9\x7f\x10\x03P\x7f\xfcG\xbc\xea \xef\xb08\xe0q\\1\x88\x96\xe5\x01\xbe\xcdi\xc5\x89A\xb5\xa2\x15\xc2v\xb1J\xbb\x83t\x92\xd1\x91\x0cC\x13h;}-t\xab\xfa\xb7\x16\x1dI<\x18\xd6f^\x10\xbaZ\xcfH\xf1`\x08\x1e\xa2\xb2\x9cB]R\xdf\xac\xbc\xc2\xaa 5\xe6\xd9\xcb\xe1\xf8E6/7\x94S#r1\xe9$\xa2`wt\xcd\x86\x9c\x01\x8a\xf2\xb1\x88;81g8\xc8\x14\xa4Dl\x88\x05+\xdc\xda\x96]\x17\xe7N~\xa1\xd5\xedu\xf7I\x12\x86\x9d}\x92\x87!\x1f$\xc3&\x01[\xf9=\x94\xb7Z`\x80\xcd\xcb\xd1KZ-\x9c\xb7Zj\xa1\xbd\xbc\xd0\xebn\x93\x90\xa4(\xd4O\x8e\xc6\x1c\x1ej[-\xdcy\xd6j\xe5E\xe1\xe7\xf6@UE\xbb\xe3m\x8f\xd3|\x91%p!-\n\n\xaf\xaeq\x10\xa0\xbe\xda\xa2q\x10\x94{\xf6\x17\xb5\x12\xe6\xc2O\xdb2\x99\x9a\xfb\xbe\xbb\xcb\xff\x1di\x9b.\xe62\xdf}T&\x04/\x01W\x9a\x84]/\xe1\xc4\xe1a\x93\xf8tC\xe2K\xc0\xc6:C\x07\xb8&\x8d\x1d\xfd\xd3u\xad\x7f4\xad+\x1a\xc0T\xd5\xad\xa7\xb55\xb1]f\xd9\xd9Y\xcbrV\xcf\xb3V\x8b:\xfdk\x8c\x93 \xf0^\xa4?\x1b\x90\xd5X\x94\xae9\x13YG\xce\xb44\x8e\xb7a94\x83\xa3\xb7\xc9\x84bY\xd0\xf2\x9a,\x17\xe6\x8d\xed\xd9\xb1=q\xf5h\xcel\xfc[}:\xeb\xd8#\x17k\x0f\\\x1d\x7fb\xe3O\xe0\x84~\xa5\x0e&\x9d\xf2\xce\xa5\xd8\x05\xd4\xf1\x07\xf5xX\xbb\x95\xea|\x1d;Q\xe4\xa0\xe9\xc1\x03\x1dg:\xff<\xb6 Z\x9d\x8f\xe0\xc0\x9e\xf1[A\xfb\x80\xb3|9w]}[\x9693\xa4\xc0=\x85\xdfZ\x12B\x17~\x10\x97d\xb4Z}gr\x92\xd4*\x91fE\x82\x00\xd7\xfa\x16\x05A\x93\x10\xd9\x0f\x8e5\xc9\xf1\x8eN\"x\x08FA\xec\xc5Y0\xfeb\xa1\xeasu\xd7\xbc\xf0\xe3\x0d,\x9a\xa4\xf7\xb1\xea\xe0\xd9\"\xb9\xc9x2\xc6T}\xa4,\xd5^f\xcaR\x91D\x1e2]U\xdc\xb88\x18\xfd\xd9\xdb\xccn9n\xab\x9cG\xf82N\xd2\xf4\x87YA\xc3\xb74r\xfc\xf0Q\xbe\xf2\xc6\x0e\"\xef\xd9\"\xbf\xf9\xc7\xbaj\xbfW\xe2$g`\x1f\x85a\x90\xb2\xc5R\x1asQUs\xfb\x91f\xef\x9f\xf3\xeb@?!\x06\"\x19\xa7\x9a\xed\xebq\x97\x7f\x8f@b\xf4\x0c\x9e\x86\x14\x02\xbc\xa0\xa2(\xa2Z\xcc\x06\xb1?\xd5\xc5\xbe{B\x88\xcd\xdb\x12f\xf6EtJ\xa5\xc7\xa3>\xa4Z@\x97\x8b\x88\xb6=\xadh\xef\x18\x97\x08\x0b\x12\x04[t \xc1\x16x\xb3\xfe\x96\n\xdc\xc6\xd2~`\x18n\xc0\x14L\xb5{GJN\xa5e\xa1C6\xb0s\x99Sg\xfb\xfc.\xe7Z\x12\xdf\x8e8\x9b\xa4\xd3\xa5H\xce3\n\x12\xfaUJ\xc3T\xc0\xcda>Ks\x04\x9e\x9c\xaa\xae\xbc`p8-3az\x8fM%h\x972\xb5\x83\xa1U\xd6.?V\x08\xdfN\xa9~J\xdd\xd0\x0f\x01\x8d\xd7R]\x0fV8\x97|\x01\x0b\x9b\xb2\xa9_\xbc\xbe\xe8p\x9b3V\xea\xd5\xaa\xacV\xabUD\x91\x07=\x9f\x0c*ozL}\x0b\xb6\x95\xba`Ae\xc92\xbf4v\xf2\xed(\"\xbd\xf8v)h\x18FB\x83\x18m\x1b\x18\xeb\x07R,i\x10\x07`\xcd \x88\xa9\xb5a\x1fQ\"\x90\x86\x88H\xb6\xed\xc8#\x8a\xe0\x1a\xea\xfa\xfak\x9d\xa6V\x9bI\xe1\xa5{D\xdd\x9d)\xcfX\x97B\xa8rZy\x88\x85\xb6\xb55P#z\xa1\xce\xa6s>\xbe1\x88Fz\x9e\xdc \xba\xec\xd6\x9fU\xc7\x01f\xb0v\"xt\xbbR\x80P}/7\xbd\xc1\xfe\x93\xba\x8d\xbb\xf4?Lm\xb1~\x90`}\x16\xd3\xf6\xd9\x95H\x16\x0b*@(\xb8\x0d\xde\xd4\x93\xccT\xbc\xf2\xe6\x8bR\xbfg\xe6\x99\xa7\xed7\xd9\x0f\x82\xb8\x1a\x835\xd04\xcb\x81\xf4]\xa8\xccj\x1a\xeb1\xf2sd\xb3C\xb7\xfb\xe67f\xe0\xbe\xce\xef(\xb9\xad\xf64\x16\xd8D\xfcaL@\x9bG\xde\x8c\x8e\xe3*\xea\x03\x04Z\xc1\x7f\x10\xd3\xaf\xf54\xaet\xc5\x97\xa03\x13\xa1\xd3#Y\x16Aax\x15Q\\>\xa4J`\xdd\xb8\x92\xcc\x9445\x18\xa8\xff9\x92\x16t\x85\xe9K\xf9h\xc4\x90=R\x08!\xa2\x1f\xc1+D\x18\x06\x1a\xc7C1\x05[\x10P\xb9\xc1@ |\x11xX\x89]\x1a|\xd7\x93{\xd6Hz\xa0\xb5I\xa0\x15574\xa7\xfa\xc3\x028@\xd0\xfa\x9b\x89\xc1\xf3\xa8\xb7\xe6m\xca\xa6\xf49\x8cV\x93\x82\x0c\xc5\xeb\x19}\x88 P\x18\xfa\x05\xd4\xe4\xf8\xe9\x08a\x0bzf\x96\xc3\xd0.T\x15\x9c`\xa8\xd5(\xd2l\xd6sy\xab#\xa8\x15\xc3\xdb\xe4<\xcb\x0eG\xd14\xf7\x0f\xa0\xb4Jn\x97\xb2\xe9\xa6\xd7h\xd3\xe8\xe9m\xc2\\\xbb\x13\xcc@\x81\x1d\x8f\xfd\xb6(\xa6'\x01]o\xde\xafz\xb7\xb1\xa2\x90>\\\xb8\xb5\x96j\xff\xf8\xbd$r\x05\xf4W\xc4\x88&\x9a5\xe0h\x19\xd2\xc0\xcb]\xce\xdc\xfd\x98\x02Cu\xac\xac\x85y3\xcb\xdd\xccz\xc0,\xc3\xf0\xd7\x88\xb6\xf9\x15\xa3\xe2\xd0\x8aMk.\x8a\xb9\n\xb0~\xad\xd3\xdf\x18\x7f\\\xcd\xee\x83|\xbd\x1a\xe6\x9fZ\xa9\xd9\x96\x16%\x13\x1e\xddZ\xf1%\x839W\x8a\x1c\xf1\xf9\x12\x8e\xee)\x0f)\xd1>0\x85\x1c\xbb\x94V\xc5\xd1\xf5\xc2\x82\xc7\xb7-B\x81\xa7+W\x91\x82d]\x0e\xe9U\xb0\x9f\xb0l\x9e\xdb\x11ZyJW\xa4\x1f_\xa8\x94\\\xfb\xda\xf6\\\xe3\x193\xf5\xce\xcd\xc8\xd6\x16\x92\x83\xe0A\xb0\xc5\x06|8$\xcd\x0e\xe4d\xa4\xd3c\xfb\xd4\x97\xf1\xe4d\x1d\xba\x1f(\x1a\x8c\x0d-\x8e\x82\xb0\x95\x06i\xc2\xdbhT\x89#\x1ca\xed\xf6D\xc7\x9b\xb9?\xb1\xc9\xea\x14\x06\x9e\x86\xeeC\x10l\xfd\x1c1\x84\xa5\xa6/t\xd7\xa9\xdfu\x18\xed\x80\x9b\x1e(\x04\xe8\xaeq*6/+v\xfe\x9et\xfe\x0d-\xa3\x9e\xdd]E\xa1\xf3\x18\xa1\x9f\xa2\x88$Q1hes\x18\xfa\xc1\xeb\xb6\xe7\x89\x85:V\x98C?\x9b\x05\xddj2\xa6O\xbb\xa5KS{\x9aW\xce\xe8M\x87\xb8\x83\xc6o\xec\x00\xff\xbc\xceh\x95\x92\x80Fz\xee\x9e\xad\xd1\x9c&1t\xe5X\xd6\xcesl\x8f o\x94\xf5\xd1\xeche\x9a\xaa=\x7f\x86\x8c\xcb\x92\xee3\xe2\xfc\xf7\xd4K\xee\xaa\xb5 l\xd0\x19\xae$a+\x83\xd5\xd5\x9c\x03\x06bD\xae\xee:\xf3\xf5\xdc(\xa8\xf1VdT\x19o\xe5P];D\x0c\x10(\xdc\xa0!\x90\xa1\xa6\xc3\x9b\xde\x19\xc9\xca\xd3\xc6/\x1f\x86k\x98f\x03\x9aa\xe6\xacj\x12\xb1\x11\x07 _^\x98Vnx\xa5fJO#\xf4\xbb\x97\\\xd1\x02\x1aX=\xb0-\xf1\xbe\x16,\xa6\xe4\xce\xb7\xa0\x99\x9cg\x81gb\x9f\xfal+s\xc5\xcd/\xa7\xf6\x9e\xba\xa1\x9e\x9dN\xa7\xb3\xad\xb2hI\x9cy\"g\xf7\xe4\x86\xf7\xb3W\x89\x9c\xc1\x9fW/\x83\xfa\xbd\xf7\xde\x8ez\xeb=\xa9bm\xc3=*\x8a\xfb+P\xb3\xd9\x1f\x83\xac\xc7}CQ\xd9\xd4\xb5\x91\x0b\x9aN\xd9\x1b\xcb\x89!\xb2\x7f\x7f\xf5\xb1\xe6\x9a\xcf(\x9eS<\xa5$\x9a\xfb\x0e\xe0\x0c\xc2\xb8\xafa\x00C\xf7\xbc\xf8\xe1\xdd\x0bp.`PI\x90\xb2\x06E\xd4\xf3\x06({\x0e\x93F3Jf\x9e\nR]\x9dr\x9c^\x06\x08ye\x83\xfd\xfcr\xfa,\xd82\x1b\xe5\xcd$B\x9e\x7f\xa5\xad`\x7f\x1b\xd2\xb1$3\xda\x9e\xa4\"\x97p\xbe\xf5*\x1f\xc8\x92\x84Z\x97\xd3O\xd3\xde#{\xb2\x96\xddW\xfd\xf4\xd3\xd0j\x857\xdd\xbd^\x9d<_,\xc2\x10~@i\xf0\x03\xcb\x93 }\xc9GIvl\xa6\xb6\xef\xcf\xb1>!\xef\xcd\x1fm0\x93<\xd7\xf0\xb4Bh\x15\xcf\xa9\xa7\\qS\xa2z\x87^*s`\x1c\x95\xc1F\xcd\x12\x13\x1b\x86\xbb \xe1\xc6\xf8\x98\xbe/\xa5\xdc\x80\x8e\x8et\xf4\x1fv\x8fVv<\xd1\xbe\xdf.)\xb9M\xacw\x87\x17\xf06\x94rv\xc0\x97L\xc6\xcd\x0e>\x07\xf1\x90\x17\xf3dJ\xdf,eN\xeb\x91'Y:\xa2\xb5\xb8\x8f\xe9X\xcet\xdc\xf5qF\xaf\xbd\xe0\xcf\x82/\x17\xe6\xfb\x8d\x18\xa7,\xc9\\\xd4\x88g\xcby\xd9\xb2\xfe\xccUpb*\x99\xe8\x1a\xael\xf8-\xc8c\\R\xfb}2\x13)\xbb\xb0_\xaf\xe94\xf1S\xdf\xa8\x0ej;\x07\xe9\xf8\xb9\xa0\x89\x0d\xbf\xd35\x9a\xe0\x915\x86\x00_'\x8b\x84\xf9\x9f2\x11\xd2~\x1f@\x0f\xab_^i\x1d\xe1W`bl\x1d\x13\xce\xe4G\x10\xbeP_Y\xca\xe8A\x96\xcc\x17\xf6\xe3\x17\x97d$X h\x07\xc1\xc5b\x96\xe8\xe9\x91\xc9\xf9I\xfa\x15\xc6y\x95\x8e\xf9\x15D~\x05 \x01\x08q>\x87\xe6\xd2,{S\xd6\x04rS\xdew.\xf9\xa2\xf2)\xf8\x05=\xb4\xf28\xd5(-\x91S\xc6\xbdrB7e\xdcZ]\x16,V\xf8\x9c\x92A\xf0\x11\xf4\xeb\x03\x1c\xcc\xf3\x00\x07\xaf\xf8\xd7\x00\x07o\x82a\xb9\x1f\xae\x1c5_A\xbd\xb2(\x1c/\xb4\xf4YT\x14\x81\xc1\x9bA\xcc\x8a\xc2\xd2\xffM/CG\xf3#/\xd7\xf8{\xeaRrI\x07t\xd8\x8f\x82`K\"\xf3\x94\x19\xcb\xad`q\xed\xbd\xb4\\\xd3R\xdb\xe6\xd2\xba\xea\xa6\xf0\xb0u\x93\xa9\x94M\xf79\xe6\xeeiZ\x12\x15\x1c\x81\xbd\x99DA\xab\x15 \xcc\xc9\x15\x8d\x18\x96\x036\xc4\x02\xf5\x82I\xc6\x138\x00\xc0\x0e+ Fy~\x0cQ\xc8J\x02\x96\x15c\x8ebE\xf8\x12\xbeZ\x19^\xde\x05\xbd\xc9\xa3Kz\x87t\xcc9\xdd\xec\xa9I\x12\xb9\xa5n\x03\x89x.\xa3\x0e\xaa\n\x04o\xd1v\xbe<\xd7L\xe5\xa8\x8b\xf0%\x1d\xc8!\x81\xe9Z!'mq\x01\x97\x999e\xcbT\xd2\xb96\x11\x99\x98-v\x9e\xe4\x1aC\x00\xdc\x8ex\xa6~\xe8\xfc\x9c\xc2N\x99Al:\x9f\xc2\x0f[,\x01\x84.\xe8\xcd\x942\xb3\x13`G\xcf\xa9\x84\xda\xc0V\x16\x00\x15\x08\xfb\x03\xfc\x8bd\x04y\xae\xa0\x89\x95\x87S\xcf*85\x9dD\x17\xaa\xe3Nf\xb7$J\xf5c\xce}\xe4u\x8d\xae\xec\xee>\xc6T\x13\xa5\xdf*\xe9\x13\xef\xee\nV\xad\xedQGW\xb5\xf6\xae\x7fg\xadE\xd1\x8c\x82\xb33\xa0\x06Rvw\xbez\xbf\x1fu\x11x0\xb2\x1d\x02\xd8\x0d\xc3\x0d\x0dCJ\xbd\xf4\x0e\xf2i\xe17\xe5\xf4\xb6\xbap.\x95\xe0\x1dX\x86\xc2\xba\x83\xb1v\x9a\xd7\xde\xc5\x82\x841n\x04&\xaf\x15}\x03\x91\x15\xf9Q\x13g\x04N\xd9\xf4Cn\xa9'ER\x83\x97\x8d\x8d\xa9\x08\xef\xc2\x1c\xdb\xa3\xbeo\x9d\xf0\xbf\x06\xcdV8\xce\x8f\xa8\xbe\xde\xbe5\xbf\xcf\xf5o\xb9#\x1eP\xfbrO~\x15\x11\xd57\xa8\xf2\xdd\xc2\xad\xffQ}\xe9w\x9et\xccf72\x1f\x92\xaav{\xfa*Ey$\x11>\xa2\x91\x97\x84\xcd\xbb\xac\xac\xc0\xcc;\xe8\xc0[\xda\x7f\xae\xfei\xd7\n\x14\xc5\xcf)\x19\xd0a\xfc\x96\x12\x8f\x15q@\xb5\x89\x98\xb7\xe6\xd2B\xc9[\x8a%y\x0e\xf7\xcb\xe7\xeaK\x8f\x12\x06\x85\xb5\x0f\xfe\x0d\n\x90\x0f\xa8\xd1~,k\xfeR\xe3\xc5D\xfe\xe3\xd4{Z\xaa\xca\xf9YLL\x99\xf1\x85\xea\x1f\xcc\xfbkJ\xbeP|HI\xb3\x8b_\xd2\x8a0\xcb+\x95I\x9f]\xe4\xada\xbb\x11B\x9e\xd3\xa2\x88T\x05X\x8d\xd2\xab\xf4\xb8r\xc1\xf4\xa7\xda]\xaaK\xce\x04,\xae\x11\x07\xe1\xc6\x17\xac\xc9#*y\x18\x11\x039\xec\xd1\xd8\xbe.\x9a\x8d\xc7\xd9A\x96\x8e.\xecK\xa2\xfe\xb2\xba\xa66\xf2\x90/\xcf3Z\xcd\xe8\xc5\xd5\xb3\xbf\xe2\xcb\x9c\x1e\xf2+\xb6\x1e\xb31\xeb+~\xb9!fc\xd6\x0f\x8b\xfa\xf7\xc6lG\x0c\x8cMF\x824\x85c\xbd\xa0\xa2P\x11Qp\xbe\x94\x12\xde\xe8\x8cR\x86\x16\xc0\xf7\x1e5\x8b\xc2\xe8!\xd9/E7\xab\xf3\x0c\xbe\xc1LFSh\xf1\x0e\xefAU-;\xb8^\xac\x8b\x16T\xde\x0c\xdd\x0e\xab\x9f\x01;\xbb],\xb1Kt\xdc\x1b\xa6\xe5\xc7\x00\xa8\xd2I\xb4\x00\x91,\x15\xf5\x81\x92\xdbUo\xf33\xde\x07\x8a\x83E\x92\xe7\xe9%\x0d\xe0\xd1\xce\x7fpSuuV+\x84\x8d\x1a\xef\xba\xbf8Is\x19\xe0\x0f\x14\x7f\xa0.\x97\xd1\xc3\xbc;\xa3yt\x9aS\xddB\xb7\x04\xe9\x9f\xbc\x0d\x85S\x9c\xe0\x1c\x1b\xb7w#R\xf7\xc8\x08J1\xfa\xb1\xd2)z\xe3]\xd4\xd3\xc2L\xda\xf8\x03\xc3#\xef-\x1d\xb4D9\xd3\xf3H\xd1\n\xe6\xebo\xd8\x8a\x7f\x18\x04\xf1\x11\xbe~1_\x9f)\xb95\xf9+\x0f\x95\xaaLG\x95\xa1+Oo\xf6\xe7\x8d\x9d\xaf\xd6\xff\x135=\xfbL}\xa3\x14\xae\x8e\xdf|\xbe\x0bf\x04\xf62m'\x19\xa8.J\x8a\xcc\x15\xd6\xb0\xe0\x91$.\x0c\x17oJdo\xcco;M\x12u;;\x8f\x00\xe3\xa26\x98N\xd5J76\xbb\x02M\x1b6\x12I\xd49\xe5\xdb\xd5\x8fP\xc9\xb4\xcfj\x82\x7f\xbf\xdbS\xa1\xab\x8f\x18\x10#\xb2\xb8~N\xe7<\xfdJ\xc7\xda%a\x89`J^\x10l\xa3r0\xfaD\xa8\x96\xb3<*R\xba\x17m\x8f\xe9\x0c\xf4i\xe9x\xb34\xc4'\xdb+\x98>\xd0\x8c\xaa\x11aO\x9e\xf8\x98\xf3\xd7:\x81\xee\xf7\xca1d{\x9a\x1c\xd4;[z\xc8\xb4\xd9\xe9\x95\xf3^j7\xa9\x9a\xfe\xa4\x98J,%f\x12\x0b\xa9V\x9e\x83\xc7\xf3\xd4p\x93\x13\xf3\x9b\x9b\xdfL\x82\xc0\xf2\xabd\x81Gep e\x16\x92\x04`\xa4m\xcc\xafX\x03B\xcbEC\xf2\xe5h6J\xd8\x88f:L\xd9X\x07\xb4FG\xb2\xbc\x06Sp\x0dk\x13\xcejj\x982\xe6\x0b\xea4\xe1\xe5\xa21\x16\xc9TU\xa4~u=c\xc1\x17\x0d\xcf\xee\x9cJ\xf5>u\xa6\x0bz\x03\x15]\xd0\x1bP{V\x81\xe5\xa2\x01\x08\x12\xd4#^@h\xc4\x177\x8d\xd1R6\x16I.iCwK\x1b\x84j\x18Y\x1fu%h\xc03T\xc3\xa6rf\xb3E\xb4\xbd\xd8TB\xca\x08\x9c+\xab\x7f\xf6y}\xd7\xa0\xe5\x92hl\x1b\x14[\xe1\x0b\xfa\xbd\xd3\xecC8\x14\xbcR#;\xd3/\xd8\x84\xc3a\x81V~\xa9*\xa2\x9eJO\xb6\x12X\xcb.g)\xa0S\xda\x8dY_\xce^\xa7\xa4\xd8\xed\x12|R\xf3\xe5\xef{\xbc\x0e\x1eX\x0e:C\\\x81\xbf\xea\xaay\xb0\xea\x80\x8ey@\xe7\x0f 7\xbb=\xd9\x06M\xc8\xc8\x9e\x99M\xcf\x1b\xf8\x8d\xb4\x0c)\x18\xaf\x9af\xbbq<(\xbb\x94\x91>\x81\xe0\x9c\xe8u\xf6ymd\x94p\xd5\xeb\xde\xe6\xe9\xba-\x8fTu?\xf3RP\x18\xfe\xa9\xceA#V\xfc\xff\xc8t\xdeV&\xcc\xf4\xa4\x9c3\x8b\x12\xcaLa\xc8\xab\xc9\n=\xc80\x9c\xca(\x05-^\x83W\x1d\x86Htb\x02\x89I-1\xd7\x899$\xe661+=\x90\xdfH\x84G\x95\xcfra\xce\x0d\xc2\xf7\x87`\x9f\xb1\xaa\x80\x8d\x85TW\x05\xa9\xa8Ao_\xe6\xa3\x19\x1d/3z\x90d\xd9y2\xba\x88\xbc\xb4\xd7\\\xcc\x93\xcc\xed\xecK\x89|\xc2\xe4\n\xf6\x87\xfb\x94\x9e`\xd6\xb9B\x93\x14X2\x1e\xa8\xa0\xdbs\x19q\xbd\x1a\xa8W\xd23\xdd\x1e\xf3\xe0\x89mmY\xe6\"\x97\x036\xec\x89\xca\xd0@\x9a\xad64\x85\xd7\xb9\x88\xbc\x958W+\x81ie\x01\xce\xd5\x02xq\xb9\x8e\xcb!\xce\x9b\xee\xealK\x84\xf5S\xff\xb2\xd2\xc3H\x90\xa5\xea\x1d\xfav\xe7\xf4KN\xa7\xac\xc0\xdd\x96#\xa6*\xe9\xf8\x95\xf4\xd0\\a@\xa7i\xed\x03\xdd\xb2\x04:7\xeb\xd72\xaa\xfa\x14\xb5\xb8aP\x13b\x1d*\"\xb9\xaa_\xe6\xd8\xd5[tH\x82+\x13\x96*\xe1\x15\xff\xaac\xe7* \xb1\xbe\xae]H\xefY\x85\xb2q|-\xa3\xc0y\xd1\x0ep\x19>b\xe3\x00a\x977\xb5O0w\x97p\xaf4~9 \xdc\xee.s\xa2\x0d5b)\x12\xe6\x08?\xc8\xfe\xde\xc5\x04\xd8\xfb\x80n\xad\xf0\x99$\xb7+\xfcFV, \x9dXt\x7f\x06l\x153\x8f\xf0\x01bH\x17~\xb46\xf7&1#\x10\x0dK,\x1b)k\xc0\x91\xca6 \xdbB\xf2\x1bY\xa9\x98\xb0\x81t\x969\xe9j\x11\x86\xd1\x1bI\xee}\x844|yo\xaa\x15B\x0bR\xe6,]EF\xca\xf4B\xb6\xfd\xc5*?\xf0\x86\x0cn\x85\xee\xcf\x06\x0bR~\xa2\xca\xe4\xd6;R\x96\xaf,\x90\xf7\xa5YoG\x92\x9c\xc8(\xf0;\x1b \xfc\xb6\x16\x9bz\x00\xf2\xbc\x96f,v\xe2\x07:\xbe\xd2\\\x80\xf0\xbb\xf2\xb6rP\x06\xbfH2\x08\xc0\x88u\x80\xed\xef\x91\xc4e\xad\nZ\xf0[?\xa6\x04R\xfc\xdc\x8f\xd7\x80\x88\x83Q\xc2\x16Yr\xa3Co]H\xc5\x19\xed\xf02\xe9\xbd\x8b\x18/u\xa5\xfa\x92\xe1E\x1c\xd8\x08:_\xc8\x14,\xc9x!6\x127\x0b\xb9!<\xae\xfe\xaak\xa5\xf7\xbbNEC\xdc[\x1d\xe7\x0c\xb2\x81\xdd\xe1\xea\x0f\x1dk\xef\xb5\xe6\xe3\xd0\xff\x98S\x99TR_U#\x8c\xd5T\x08\x9f\xb8\xf0\x1a\xdd\xae#\xd7\xfa\xa2&\x10\xfc\x01\xf8!\xc1\xa7\xea\x1aW\x0d\xe6\x94^\xe8t/$\x93,\xd3vx\xca\x10h\x8cTC2\x9dSm\xa4\xdc||0\x1f\x0f$\xf6`\n\xc0\"\xb8J@\xf7\xdc\x0by\xaf|\xefe\xfd\xce^\x13\x16#;N\xdfm\xc0\x86\x98\xab\x9f\xad\xee\xb0\xc7I\xc0Y\xb0\x15\xf1A\xa7f\xc3f\x8b\x1b\xcb*]\x84\xf0\x01\x88fG\x02K\x05\xdc&\xcc\x11\x1eE\x1c\x0f\xc4\x10\xadVQ\xe5\x90g\xfc\nEz\xb3\xbd\x90\xe4I\xd9\xd1\xd7\x16\xe9\x01\x13&t\xf2\x92*[\xf7!\x06\xde\x9cJ\xda\xa9%\xed\xe1\x1d\x9b\xb4WK\xda\xc5{\x86\xa1\xbe\xb3\x17Z]\x0b-\xa3\xd9\x8fT\x86\x1d,Q\xacJ\xee\xaaZu\\\x17\xef\xee\xe8HI\xbaO\xcb\xf8\x8e\xcd\xbb\xf3\xf0\x91\x8d|\x8aw\x1e>\xb2\x99w\x1f>\xd9\xb3 Ol\xe6\xbd\xceS\x97\xfb1V_6\xfb^\xf7\xc9\xa3n\xd7\xd5\xff\xc8\x96\x90\xe4\xd1\xce\xd3\xee\xde\xc3G\x1d\x9b\xf4P%=z\xdc\xed~\xbc\xf3\xc4\x16\xda\xc5.\xca\xd6\xfb\xa4\xf3p\xb7\xf3h\xf7\x91\xcb\xe3\x86\xdf\xed<\xde}\xbc\xd7}\xb2\xe3\x06\xd0\xc5e\x1c\x8a\xf5\x90\xfc\xbb\xde\xa1\xac2\xd1\x15\xdc\xa6l\xfa2a4\x87\xe5\xf0\x99\xe8/$\xe9\x18&z\x07s\xd2\xc1)\x01\x83\x9b\xa9\xa0c(\x81\x13B\x8d\x12\xf2\xd8F\xe5\xaa\xd6\x94M\xcd\xb7Yc\x92\"AR\xcc @\x85\x13{V\x83H\x89\x1d\xf1\xe3\xd0\xbe\ng$\x0d\xff\x95\xf4T\xc1\xac\x1f \xf2ZF\x19\x82\xd2z\xe0yHR\x04J \xafe\x94\x9b\x14}\xdb\xd3U\xb2\xf0_ 2%S\xaf$\xc9\xeb\xa5\xec\xa8\xdd\xb3\x806 DX\x18E\x9dg\x91 \xbb\xdd\xd6O2\x12\x08\xf5;qw\x7f_\xa0\xfd\xfd.juqG\xdf\xdb\xa5\x96)\xee\xa8[T\x98\xe8\xdb\xefk\xb8D\xf1}U\xbf\xe5\xea\xf5^H\xc2Wf6\x80\x0fH\x99L\xd843\x13\x85\xcc+M\x19\xafY\xbc2$B\xdd[z\x88\x93\xee\xfe~\xc4L\x87$BX\x14z\xf3\xcb\x90\xfc\x8b;9\xd8r\xb5_\xca\xf2\xf5\x0d&\x86\x92\x96\x83\x8f\x87au\xf9Q\x9f\xc6>@\xf5\xcb\x8f\xd8\xbb\xed\xbd\xda\xc8\x1f\xf24\x1b\xbbF\x0f\xd1\x1aRj\xec\x98\x08\xa7\xbch\xb4=\x8ee\xb4\xb3\x17\xfeK\"\xd4\x7f%#\xbdQ\xa9\xc9\xdbY\xcf\xab6\xb5\xcd\xfc\xc4\xcb\xfbd=+l\xe9\x7f\x01\x13\xa5\x8c\xb4\x1bW\xc7G\x94<\xec\xee l*\xa9\xf6M\xaa\xfc\xe5\xb63%$\xd9y\xf4do\xf7\xe1\xde\xc3G\x08\xcbU\x95\xe5\xba\xfbPm4\xff\xb9\xca\x9f{\x1a\xb6\xbc\xe7\xbb\xaf\xfa\xda\xe3.\xaa\x83!\\\x10v\xbb\xcf\x98\xb6\xf4j_\xff\x9c^_Y\xf6\x83\xbblWW\xaf \xd2lU\xd9\xea\xf6\xea\xbb2$\x02W\xb6\xa5\x8a\xd0\xc0\xa6H\xae\xf7\xe9\x9c\xe6h \x1dh\x0d\x89&\xd7\x7f\x92\xda4\xfa(\xfb\xba\xbb\xd3/\x83U=\xa6r\xe6h\x7fw'\xde\xed\xb6\xa2\xbf\xd5\x10\xb7\xff\x90E\x07\x15\x9d\x15\xfe\xdb\xd4\x93\xf1)\xfe\xc3\x84_\xbe\xde\xc1\x1f%\xf1\xce\x98\x0f9\x15?\xa9\xcbJ\xca\xa6\xee\xca\xf8K%K\x8d\x07\x84?K\x90\xa6vo\x12\xb2\x94@;\xa4E\xf1\x82F\xd6R\xfe\xef\x12\xa7\xe4\x90\xf6\x0e\xa9*!\xc5\xcd\xed{\x1aql\xb3;e\xe4\xe8\x90\x92\x14\x15\xc5+\xd0\xe9._*\xbc\x9a\x7f\x91\xd1G\x89\x7f\x97\xed\xf3\xd4\x18?w\xd5\xf8\xaa|^ \xe8\x82\xc2+\x9fA\x1a&\xe2D\xe1\x8b\xbdP\x83hyu\x0d\xc3Vw\x7fQ2\xed(B\xc01\xac\xb4\x81y \xf0\nr \x16\xcb?\x95\xedy\x8f\x11)\xe2a\x08<]ark\xdb\xfb \x9aPk\xca\x02\xabj1-\x9b\x03.\x9d\xd7f:Y3=\x87y\xa9\x9eYg\x18\x9bZSIf\xfaJ\xed\x8a`k=\xce\xe3\x18\x9b\xdc \xe4N6\xe6\xf68\xc6&w\x0e\xb9\xf3\x8d\xb9+,c=S\xbc\xe4\xe7\xda\x1d\x96i\x12(\xc53\x19e\xa0\x07\x17) \xf0\xe7\x1dsT\xd6\xba\x81\x91l\xc7\xe9W\x8fG^\xbd\xa3{\xeb\xf5\xcc\xc6\x95souO\xcc\x02\xae\xde \x98q\xa1-\xbb0\xb4\xf2 \xf4S\x1d\xde\xc8 \x8d\x84\xcf\xa7\x8a8\xf9$\"\x8e\xcc!\x9b\x92\xdfh\xc4k\xc0\xa2Y\xee\x0e\xac\x12\x92\xb6e2\xedY.oR\xe1\xeer\xf2;\x8d\xd2\x92\xbb\xcb{\xba|\x85\xef\xaa\x8b\xa4w\xb3^U&h\xa5\x9f\xde\xcbi\xadVnT\x1f\xb8e\xdf\x98\xca\xdc\x0cqlx \x80\xc8~5\x0fP\x7f\x9a_\xcaj\xf2\x1f\xd2x\xdd\xa1\xa5r\x03\xd3Nm\xd4\x9c\x92?%\x16N\x96\x1esb\xd4\x91R\xd6\xf8U\xf6\x7f\xb5zr\xbfJ_\x92\x14\xa7\xce`C\xaf\x94\xc0\x10a\xc8\xd4\xbd\x9d\x10\xae\xae\xfdtkKc\xa8\x84\x88\x16\xd5\\\x00\xd2\xedI0\x97\xc0\x06\xa2%u\xd6\xb4%\x87=\xa92\xbb\xee\x11K\xcfS\xdc\xdd\x97\xfdn\xcb\xa9E\x96@\xc1*F\x97.\xe8\xcd\x01\x1f[\x8a:\x18\xcd\x12\xa1\xbeA\xae\xb9ou0\xdb6\x1a\x85aw\xd7\xb2\x02Iw\x17\xc5\x94H\xdc\xed\x18.\x15D\xe1\xdd\x9d}B\x8bB\xbf\x8f\xf6\xa9O)\x88R\xba\xd7g\x17{B\xbf\xfe[x\xc2\xea\xbc\xc0\xf2e\xc5\x1e\x95I#e\x0dx\xd6>\x03\x8b2`-\xd9XH>\xd3\xcc\xde\x17,\x97\xd6\n\xb3\xbcYPk`\xd9c\xddZS\xcc\xba\x805\xa7N'\xa9Q\xc8\x89O\x18\xd6\xb2K0O*\xa0\xe6I\xd0,\x91t\xacw\xf4\xa6\xe9q\xaa\xe7\n\x04\xbd\xbc}\xda\x9e\x08>7\\SH/\x85\x15\xfb\xb4-\xf9\x91u\xac\xe1g\x8ck\xd5\xac\xf0\x9c_B\xca\xa7\x0d\xad\x07.Q\xa3_\xda.sG\xb4I\xc8\x88\x85a\xa4\xfeh\x82G\xa5\x1a\xcb\x127\x0b\xda\x8fr\x90\x81\xd33\xdd\x1a1\x1b\xc4Y\x19\xff\xb9\x8c\xff\x8c\xe2\x8c\x91\x9c\x91\x0e\x1e1B\x11\xce\x15h\xda\x16?\xdf\xd7\xbf\xcf\xf5\xfe}\x8e3\xb6Z!<\x87\xc5\x9f1\x84\xa7\x10\x82\xf5\x9f1|;Nd\x02L\xdd \x15\nL\x10\xbe)3(\x00\xa9\xae\x0c\xe4\xb8,s(Ps|Q\x10l\xe8`\x9a%\x8b\x9c\x8e\xd5EE\x01LN\x97c\xb7\x08P\xfe\xbcZ~\x94\xa5\x8bs\x9e\x08`1n\x1a]%\x83\x1da\xb5\x94\x91\xef\xaaD\x82\x93\xa2\xabj[j\xb8\xba\x13\xd7\x8c\xdc\x1e\xe5\xa388\xcaG\xc9\x82\x06\xf8d\x91\x8c\xe8y\"\xe2\xa0\x11\xe0\x97t\"\xe3\xe0\xb9\x10\xfcJ\x05\x03\xfcaa>?,\x02\xfc\x0e\xb4\x1a\xf47\x84\x03|\xc8\xaf\x98\x89\x01\xa9A|H\xb388\x04\x9ex\x80?\xa6,\x0e\xde\x9c\x04\xf8\x15e\xcb\xd8\x9a\x8bQ\x1f\x01~\xbeX\xe4\xb5\xa8\x13\xf0c\x18\x07\xfa\xf7%\x1f]\x04\xf8\x15\xff\xfaV\xa4\x0c\xaeVjk\x05\x1fX:\xa6L\x82\x93\x8f`\x85/\x18\xb9}\x12\x07?%\xa3\x0bcn\xf1i\x1c\xbcO\xce\x03\xdc\xdd\x89\x83\x83\x8c&\"\xc0\xdd\xdd8\xd0r\x85\xb8\xfb(\x0eN\xd4\xd6\x0dp\xf7\xb1n_\xf0,\xc0\xdd'q\xf0T-\x8e\x03\xbc\xfb(\x0e~\xe1sU\xe6qefw\x9fx3\xbb\xfb\xb4:\xad{\x9d\xca\xa4\xee=\x8c\x83\x17\xe0\xb83\xc0{\x8f\xca\xf9\xed\xaa1\x1ewU`7\x0e\x8ewT`/\x0e\x8ewU\xe0a\x1c\x1c\xef\xa9\xc0\xa388~\xa8\x02\x8f\xe3\xe0\xf8\x91\n<\x89\x83\xe3\xc7*\xf04\x0e\x8e\x9f\xa8\xa9\xea\xc4\xc1\xf1S\x15\xe8\xaa\n;*\x04U\xab\xbawT\xdd]U\xf9\xde^\x1c\xbc^\xce\xf5|tU\xaf\xfc\xa5\xda\xd9\xd9\x8b\x83WT&\xc1\n\x9f1r\xfb<\x93q\xa0qc\x80\xcdD\xc7\x81\xc1\xa0\n&d\x12\x07\x06e\x06\x18\x16%\x0e,Z\x0d\xbcG\xab7\x1e\x85\xb8vtZj\xa6]G\xb9\xfd\xf5\xa8\x88\xa2\xb8\xd9\x8c(9S\xf4-\n\xc3fS\x0e\xe8\xb0\xa4\xf0N\xbe\x85\xf6\xef9'\xdf\xd5\x8ej\x9a\xc9d#y\xa2S\xec\xc9h\xf2\x05\xe0\xe6\xf6\xd0Kj\xd1\xb6\x17\xa7 \x00\xb2n\xa4(tJ\xa5\xca\xcf~\x95\x9f7TY\xc9\xb0!\xdd\xb5\xf8'P\xa6\x99L^i(A\x08\x1f02x\x8a\xbb\xbbx\xe71\xde\xdd\x19\xe2/\x8c,\xc208(\xc5:k\x0f\xce\xf8\xbda\x0b\xa8l\xf6\x0d\xfd\x95\xb9!\xdb\xef0\x8c\xde\xb3\xf2\x85\xdd\xcff\xde\xc7t3\xef\xe9\xb5\xac\xd5\x1f\x86\xcd\xf7\x0c\xbf\x86\xf4\xa8\xf9\x85\x15\xc5{\x16\x86O\xf6\xd5\xdfn\xf7\x19y\xcf\x10>dd\x13\x16\xda\xddA\xf8%\xab*P\xb0\x8d\x92\x9az\xeb\x18vT\xab\xdb$\xe4\xa0T\xaf\x93v\x1fi#mn\xef9^\xfd\xceS0}b9\x056\x93\xde\xba\x9e\x84\xe6\xb8Tc(\x85A\xede\x7f\x83\x9f\x86\x92/\xeeCD\xcd\xc6\x1e\xb0\x1f\xf4\xf5\x02\xa9\x15\xf0H3 \xb2\x1c;\xe7\xab\x9a \xfc\x81\x91[\xd0\x85\x8a\x9b\x1dO\xea\xb3=\xdb?E\x7f\x82\xaa\x95\xe3\xb8\x95y~\xf6\xd4\xf5M\xa7\x88g\x9cR_\x96\x7fcN\xf7\x03f\xf9w\xe6}|b$\xe0L\xcf\xa3\xb7{A\x10\xe7\x13\xd3y~e\xf7K\xca\xf4~e5\xff\xad\xb6F\x1c\xe8\x9e\xf4\x02\x84UK\xb6\xe3\xa56\xdf\xaf\xacm2\xaf~g\xe4\x13\xd3l\xcb\xdf\xa1\xcb\xbf1\xf2\xbb\xba\xdd57b\x91\xa2x\xba\xbf\x19\xbd\x94\xf3\xf3\xa7\xa2\xa5\xfePu\xfc\xc1`\xc7\x8cf\x80kT\x0f\xed\x91`\x17\x93\n\xa4\xd6\xe6\x0f+\xe9\xe6*\xa1\xc2,\x84\xe1f\xc2q\xeb\x1f(a\xf8\x99E\x1f\xed\xa3\xac$\x03\x90c\xfa\x9bE\x12\x7fd\x98b\xd0\xeeC\x98\x92_\x18>\xa4\x08d\x83\x81u\\>\xb2\x18\x852\xf7\xbc\xa2U\xc1\xf4\xe3\x8ao\xd4K\xd8g-\xf7p\x00\x0c\xc5H\x0d\x14 \x0bG\x7f0\"Q;\x91\xdf\x1a,\x8aK\x94\xa4y\x95\xaa\x12\x8f'\xea\x86\xad\x95\x99J\xb9\x19\xa3\xd5T\x12\x1f\xfa\xc3Q'\x16\xfc\xf4\xacx\x9cN\xe1A+h\x83\xd5r\xfb\xf2\x96\xdc\xcb\\Q\xad\xda\x00\xe7\xba(0\xeb\xc5& 3JNi\xdew\xa1\x8aSK\xcf\xa8\x92\xe6\xe3v\x9a\xd0Vw\x9b\x12\xd2\xdd\x96\xa8((XD\x92M\"W8\x11\xdfr\xa0Wn\xee\xbc\x1cF\xaa\x83\xa5\xba\xc8&\x8d]\xea\x1c\xdfl\xb2\xd3-]\xaa,%\xa3/AH\xc1\xd7\xe1\x06s2~\x84\x91\xc35h\xadI\x88\xb0\x92\xa2\xae\x16\x909&\x9d\x9e(\x0d2\x89\xad-\xa4\xf0@\"\x8c\xf5G\xcc\x06b\x88\x8a\xa2\xa9\x862P\x1fC,\xf5/*k\xb2\xe3+\xd72\x13\xf6%\xb7\x07H\xbdbj\xa3j\xa5b\x1d\xc7\x8d\x84'\x8b\x81\x05\x81\xca\xdcK\x81\xd0\xfa8\xea\x9e\"J+\x16\xf0\xfaB\xe8\x96\xf0\x1f\x1a\xec\xb3\x04\xdd\x07!\xf7gn\x0eo\xc1\xb7\xab\xc0\xc6.\x81l\xd1U\x8f\x12\xb6\xa2\xb1\xee\xb3iC\xb4\x19\xbd\x96'\xe9y\x96\xb2)\xba\x15\xa4\x12a\xf5\xf9V*\xbeT\xac] c:|\x05=\x17\xfec\xe9R\xf8\xc0\xd7\x04k\xe5M\xa9_\xdd\xc1\xd8\x00\xc4\xec6}\xad]`\xack\xab\x1d\xb2T\xe5\xd55y\xcd\xa280/C\xb9\xe3\xda\x98\xefH\xaa\x0b\xa8\xfa\x9e\xab\xfc\xd6\xa8\xd9[C\xeb\xa9\x0bi\xd4}\x14\xde\x99!\x92\xa8\"\x9d\xbc\x10Q\xf9\xf4@\x8doO,\xc9\xaf\x11\xea\xc9\x86\xf5\xa1\x0bL\xe2_\xde\xbfz\xf9\xe2X$s{\x80\xf4\xb4\xc5r\x0d\xc1\x1b4\xbd\x8d\x97\xc0\x8f\x9a\xc5do\x84\xed\x99\xa0\x93R\x81\x8f\x19\xc5\xc9&CZ\x87E\xb5\x1dQR+\x8e\xdc!\xe14\xda<\xca`,\xfe)\x11\xd2P\x08\xc3\xa3D\xd4\x17X$\xf6/j\x9a:\xaaDI\x9aU\xbe\x97\xa2\xfam\xa9\xac2\x12\xd5TI\xa5\xfa\x16\xf6D\xaayT\xd4\xf8p\"\xc8\xfdD\xba\xa2\xa77\x9e\xa2xfL\xa9\xce\xcd\xef\xd4\xfc\xde\x88\ny}\xe9\x8e\xa4K\xed \xb8\xad!\x00\xfcP1We\xfc\xb4bg\xa6\xcfbV5\xaa\xd7\xbbq>\xbff\xa2(f\xa2I\xc8\xaf\x91\xd0Z\xb7\xe5\x11\xa4E\x1aS\x16 2\x13(\x0c\xc7jO\xf5o\xb5\xfc\xb2hW\xf3a\xca\xc6~\xe4\x11\x1b\xaf\xe2[\xed\xb7\x07\xb4\xde#A\"Q\xedG\x18\xd6\"\x9cE\xac\x94^\x95*\xf8Sj\x0c\xb6\xc1S\x05j\x97\x95b\x1d|\xa3\x91\x89h\xfb\x9f\x18N\\hZ\xb4]X\xc7\xba\x02\xde\xd7\nOE\x18\xe6\"\x9a\n\x0cS1\x15D(\x9aU(\x9au.\x14\xd1\xaa\xbbQ!Z\xa5G\xb4\x9ad\xeb\x1a\xd1\x10\xadj\xc1jD\xab\xf4\x88V\xb1BX\xda\x97\xbf\x99P\xfb\xfd\xbd\x8c\x02\xa3,h\x7f\xb4\xc2\x9e\xf9\xcbsj\xffz\xba{\xa3\x92\xb7j\xf4\xfd\xac\xd2\x9f\xfa\xef\xb4\x12\x93\xe5\xf5AU=q\\\xea\x87W\xd4\x10\x8fj\xea\x88\xc9\xf4\xa4TL\x84?\x860\xd2\xbf\x0dK\xe24\xce\xb3\xa50*\x88\xf6/\xf8Lw\xbf\x9e\xd6\xe2a]{\xf1\xad\xa7\xc6xAo>,\x1a5\x15\xccC_\x19s\xaeU\xcb\x8d^\xa3\xfd\xbb\xcc\xdd\xdf,\xb91\x7f6)a\x1e\xdc\xa9\x92yXU\xcf4\xa1\x0f\x8b\x86H$5\x9a\x93*x`\x82\xa08i\xd4')\xbd\x00\x1f\x9d\xfa\x07\x94)\xed\xcf\x9a\xf2\xe8\xc1&E\xd2\xa3\xaaF)\x04\xf5\xdc_\xf2l9\xb7\xed\xeb\x0fsU\xf2\xb45q\x07a\x05Cj\xc9\x1a\xee\x0f\x88\xb3\x98\x85\xb5!z\x9d\xea\x95=\xb2\x01P\x8b\x84\xd0K\x17\xe2\x97&\xfb\x1b\x15po?:\xf4\xca\x85\xd4\xd2C\xe0\x8d\x0dp\x97\x1fJ\x9aI\x84\xb2&\xfc\xca\x0b\xab\xf2&\xf8\xa6\x0cr\xaf$\xd4\x92\x03\x0f\xda\xfeH>\x9df\xb4\xfcY\x8efP?\x84\xa0v\xe0\xcc\xe8\xbf\x95I\xea\xc2$}\x91x\xa7\xd4\xdb9\x17\xc4\x10\xbd\x8d\x1a%^Q\xa6\xad)\xe1\xde\xad\xa4k$\xaf\xfdf\xaf\x14\xe5w%\xf6\xcf-]\xd8\xbbR\xc4\x9f\x91~>\x17\x83+1\xc4\x1d\xd4[FU\x13 xP*\xa2bO\xe2h\x88p\x99\x15\xd6\xec\x9bY\x8d(\xba\xab\xd7\xd3X\xc5\x15\xe9\xa4Z\x01W\xfb}\x05F\x1b\xae\xef\x06sU\xd0\x05w\xd8\xc1\xc3\x06\xcbE}\xde\xfd\xb93\x95;4\xeb\xea\xf1\xd1\xa0\xc5`\xb6\xb1j\xed\xeb\xea\xdc\xdfn\xef':\xe1\x82\xbe\xd0\xb7\xecAP]\xed\x00\x97\xcc(\x1c8 \xc0\xa8\x83\xa4\xe5\x8cx,>(U\x03\x1a7\x96;4\xbaK\x16\xd7z\x07\xbd\xba\x9d\xd2F\x1dF\xff\x87\xea\xb7\xda\x03\xc1\x1a\x90\xff\xc3\x16\xb4\x0b0A\xb4\xb2J\xc3(\x964\xaa\n&\x8d\xaa6I\xc3(\x8c4\x9c\x8aH\x03\x04K\xb5\xaf\xffF\xa9\xd6\xd1\xa8\xeaq4\x9c\xd2F\xfdtH\xd9\xb4a\x15.|\x0c\xef\xa1r\xedB\x11T-\x1aF\x94\xb5Q*WT\x11\xb3\xd5\x9e\xf0\xf7\xfd\x85\x00J\xe1\x84z\x87;\x9c\xe1\xf6PT\x9d\xabb\xb5\x8a\x1b\xbd\x11g\xa3DF\xd7\x02\xf9V\xb3j\x14aI\xe1j\xb1\x11\xed\x1c2\xe8\xd1\xba0\x11\xf6\xef\xe4\xcebF\x8e3<\x82\x0b\xd8\xcf\xd6L\x06\xb8!(\x0de\xe0\xbf\x8d=\xff\xbf\xd7,<<}bVsI\xfe\xa0\xbd\xbaU\x8f\xa2\x88>\x82\xd1\x8e_(Y\xa2\xd5\n\x9c\xa3\x1ac\xb6T\xd1G\xeb\xd2N\xe5\x8d\xe1\x8d\xb9\xbdI\xa2\x953\xa4\xafi\xb9f\xb2\xb8\xaa\x84\"\xb4@qO\xdd\x15\x1d\xd5\xd5\xa3\xb1\x1184\xce\xa6\xc0\xec\x98\x13\xearw\xf6V\xb7\xd7\xd9'I/i\xb5t\xb59\x11\x83d\x883\x92\xb7\xedu\x0b\x8fHMVK\xd5\x96\x93\xdc5\x87A\x833\x0c\xf9F\x99\x9c\x08!k\x9f\xe6LD\x1c\xe7x\x84pJ\x8cT\xa1\xeaSB:\xbdd\xdf\x9d\x17\x89\xb1\x80\x9c\x91Hw\x07\xdd\xd3\x17\xfc?\xd0\x91\x95\xba\xf2}\xb4\x0bN\xc9/\xb4f\xa6\xc5c!\x9c\xf8,\x04\"\xc1\xd8\x94 t+8;\xd3\xf2BA\x0f4 \xf5u\xe3\x81\x88$\xd6\xee\xdb\x11f\xedd<\x8e\x84\xe1\xe1\x1e \x12h\x99:m\xc3F\xed\xa7-\x10\xd3\x16 \x1b\xf3\xb9o\x9bt\xf7\x91u\xd1\xbc\xe3m\x8e\xb7p\xcf\xa4\x83#1,\x8a\x08~\x15\x00\xe6\x9bm\xeb]\x08\xe8\x96DE\xf1\\\xf5\xca9\xc8DX\x7f[\xff\xe5hU\xb9\x93?\x17u!\xd7\xbd}\xb7_\xdc=\xc1\xd9twI\x83\xbda\xdf\xff\x88;8%\xc0.\xde\xc8\x04\x0c\xc3\xa7M\xffV\x17\x86QJj\xf7:\xa7\x05,\xc2\xb0)\xc3\xd0\x0c\xc9\x9a\x0e\xd3\xb8E\xfb\xad6\xbcb^\x90\x1d\x9c\x12\xb1\xd2`/y\x94\"\x9c\xeb\xe5\n\xb6\"\xd9w\x0e\xda\xe3\xc0,\x1f\xea%Pk\xae\xd6O\xdd\xc0yA\xf6\x10~ @H\x98c\x89p\x02\x0b\x99\xfb\xb3\xf4`m\x96\x0e\xb4\xec\xb1D\xd6\xc0\x9c\x93}\xe2\xfd\x9d\x98\x1b%\x8eN\xcc\xc9\xcf\xd23\x98\xd1\xe8\xc6\x9c\xfcfc\xec\xab\x0e'\xbf\xcb\x15#\xdc\x93\x7fW\x8dQ\x84\xb9\xd9\xe1\xb8\xf9\x158\x01\x8e\xaa66\x92\x03G2\xda\x08M)j\x83\xe0\x11\x07y:\xd1w\xeb\xc7\xfbt\xdd\n\x93j\xeb\xd6\xcc\x94}\xb5I/i\xccW(\xbe#{\xb3\x83\xe2\xef\xa8\xf4{j\xf2\x1dJ\xbc\x13\xbe\x00\xbcFq\xc2(\x14E\xddPj\xfd\x93h\x07B\x16Z\x10\x8d\x81\xf9\xd6s\xa2\xd4\x9e\xf6\x91\x15\x05\xb6B\xd7 @\xad\x9d`'\x0e'\xde%%\xad1!!\xbc(\x9e\x10Br\x0f|s\x8f\x85\xa6r\x18\x86R:\x89t\xd5\x1a\xf1 k\\\xc9\xf45\xe9Yu\xac\xc4v\x08z\x94\xe9\x1ee(\x0c\xa3H%\xde\xd1!Tv&\xf3:\x93\xd5;c\x07\x9f\x90\xc4\x9a\x19\x82)2\xdd\xc8+S\x15%\xe4\x93P\xf0nK\xa5\x93\xe8\xa1\x8a7\xbdDE\xf1\x08:w+HJ\x92\x9e\xeaQ\xca\x96\xb4AW\n;{\x1cL\xe0h\x9a\xf6\x9a\xd5#\x1a\x1a|Y\xfa+\x8bP\xef\xa5{\xd3xm-\xb0\xbaW\x8d\x97\xde\xabF\xc5\xb8\xb1>\x1cS\x0c\xc2\xf8\x0c\xe1\x84\x0c\x86\xf68\xcc\xc9;\xbd+\xb5N\x85\x83\xcf\xdcN\xfa\x82\xe1\x11\xa9\xbbJ\xf3^c\xad\xbe\x1e\x8bXy\x98T\x9fu\xfd\x17\xe1\x8c\x1c1\xdf\x18Ni\xd2\x87\xe8p\x803r\xb3\x9e\x05\x9evG$8\xcf\x96b=\xcb9\xd0\xeb\x90\xa6[K&\x92\n\xfd]\xcf\xab\xdfFT\xbfw\xb4e\x02\x90\xd5\xacv\xdd\xb2N\xac\xf1 \xc37\xb9\xe3\xed\xb9\x14\x8d\xf4\xbe\x97\x8b5[Bu\xc5\x11\xdd\x9d\xf2\"\xa3\xfa:gu+F\x9e\x01#u\xf9\x88\xeb\xca*\xe5\xf7u*\xd7\xad\x1d\xb9o\xafM\xc7\xe2q\xdf\x1c\x96fZi\xdcc\\\x98|\x96e\xe1\x7fz\xe3\xf60m\x9c\x91\xe7~e\x8d# y\x1ao\xcd\xefs\x19g\xe4\xb2\x92\xe5\x81\x8azP\xe9\x829\xbf\xe2\x8cL*\xf1\x1aa\xc7\x19yW]Z\xbe\xb8\xb1\xd3\xea&\\_\xca\xe2\x8c\x9c\xb3\x7fl\x85))ux*\x13\xe2q\x91\xaa1\xde\xacx7\xe7j\xc4\x9a\xfd(\xbd?\xdej\xa9\xb4\xa5#|\xf1\x824\x97ah'C\x91\x06xL\x96}\x8b\x98\xfa\xf9V\xe0\x0c-\xaa\xc88\xef-\xd5\x16\xb7\xc4\xed\x04\xcf\x88\xb0x\xcc\x1a\x9d\x99\x93hBf\xa8j\xc1R\xa1\xb0\x89\xc2_\xee\xa4\x98\x87a4!sKf8O;\xd1\x9c\x1c\xd3h\x86\xc7\x08\x85\xe1R\xb3:\x0fD4\xc3s\x0d\xe6w<\x0dV\xec\xc1fa\x18\x80 j 6\xe1!O\xa1\xb7)\xf9\x999\x0d\xff\x9f\x98\"\xd5\xd2I\xf4\x1bCS\xc2\x85\x96\x0f\x99\x12&\x80\xd4\xbd!R\xc0\x10\xa3\x8c\xe4\x9b]if\xf7\xbb\xd2\xcc\xd7\xfc\xc9\x99\xae\x84a4%B\xb8\x1b\xcf\x14\"\xa6\xa0H\x89\xfa\x7f\xb3(\xc1S\x80\xa38\xba \xc3\x9b\x88\xe2\x1c\x0b\x84\xeb\xb2#\xd1\x0d\xc9\xab\xfe_P\x18\xde\xb4K\xf7va\xe8y\xd5\xd2m\x83\x0f\xb5\x1c\xdbx\x9c[Wb\xf8\xa66\xe7x\xcd\xbe\xa2\x9a\xb1\x1b\xe4=\x80\xde\xac=\x80\x86a4\x13\xe4\x06\xcf\x05\x11\xf6\xf5\x12m&\xdb\xa6\x82\xcc\x051/\x9ekf\x17\xf5\xe1y#\x14a[9\xcb=\xba\xa8\xcc\xed\xc8*G\x0f\xc1\x8b)\xbeT\x80\xa6&\xb2B>\xd4n\xd5\x8a\xe8\x9b\x08\xe4\xe5\xd8H\xa3\xba\xba\xb4\x13\x0eu0~aj\xfb\xd6\x88\xe0:\xc7U\xab\xf6\x9e\x93M\xfc\xd9^\x85\xbe\xac1\x94\xe3z\x99#6\xbe\xbb\x84yaX+d\x18\xb5NT\xe2\xdc\xcaF\xc06\xf8\xca\xfa \xab \xee\x017\xb5W\x13\x82\x0e\xc3\x9d\x1d\xfd\xaal\xc407\x143\x86\xabz\xe7a\x18\xbdfa\x18\\p\xf0\x00\xd7\xd6\x12\xe2a\x18}eE\xb1\xa9L\x93\x90\xf3\xfez\x1f\x08!\xe7a\xf8\x95\x85atI$\x8b\xd4\x89\xf4\xa7,\x15]\xa3_%\xe1\xe8N]\xd7\xaf\x0c\xdc{\xe1\xce~tC\xbe\x88H\xe0s\xff\xe1\xf6\x1c\xb0\xf8\x15\x8b\xce\x0d_g\x13\xd1q\xee\x11\x1d7+\x84\xa3K\x877\xa3Kr\x0c\xd7\x1c\x98B\x90\x06%\x97\x8a\xd8\x89.\xc9\x8b\xaa\xff\x995\x81\xd8\xfa\x8a\x9b;\xdd1\x8b$\xaa\x0b\xb8\x9a\xb4\xdd\x1d\x90\x82\x05av \xf6\xe2\xe8\xa5\x1a >d\xa6H\xf9\xf6\xe0\x1c9\x83\xab\x03\x99\xa8\x93\xeb\x90\x85\xe1K\xa6K\xd6=\x0bkc\xbe+\x80\x87\x9a\xb0V:\x89\xbeZ\xfd\xe3z\xb75\xf1\xd4\xfc\xc2\xc2\xd0\x08\xfe\xf6U\x93,B\x982\xf2\xa7$V\xc5Y\xcb\xc6RM\x88\xd4/\x8f\x86\"\xf7zR\x9f\x01p\x1c&\xdbF$\xbd(d[\x0b\xac\xab\x90\x91X\x07'\x8c&C\x18\xda\x0c\xda|0h\x0f\x87aw_\x87\xaa\xd2X\x0d\x1d \xfc_=\xb96a\x93\xc8\xb3\xcd\xb2Z\xeb\xed\x1d+\xea\xed\x03i\xf6\x81^\x02\xbd0\xf7\xac\x03Xa\xd0\xb2\x07 z\xe0?B\xf9`\xcc-\x18\xd7\x1f\xaa\xcc5\xd8\x08\x87\xde\x05\xe0\xbc&\x89\xc0- \xaf\xde(\xbc\xa7\xbd\x1f9\xee\xd2\x81{n0\xd2\\\x96\xef\x1cSWO,q\x85\x01\x1d3\xdf\x98\xbf\xe1\x0e\x97\xdc{Y^W\xb0P\xf7\x14\xb3\xbdh\xcf2\n)h\xad\x977\x93\x87\xa0\x82\xec_KR\x98\x87\xd4\xd0\x1cQJ\xc00?\xcc\xa1h/\x99\xb6/\x08}O\xc1\xb4A5\x9f\xd4\xf9\xec\xa5\xc5dB\xe0\x1e\xdc\\V\xcc\xf2xvl\xde[\x89Mf$\x08\x91\x0f\x12c~\xeb\x956\xc6\xbd\xc3\xf0a\xd3Z\xecv\xb2w\x1a\x9d\x94\xf5\xbe\xa8\xf0\xef\xec4\xa5Dz\xfa\xe5\x9aec\xc6\xce\xc2\x905 \x11=\xcb\x8bc\xf08\xe1\x889x\x11XsL\xa0I6\xcd\xe6\xd3\x07\xe0CM*x\xb3:\x82\xbb\xcb\x08ss\xb7\x8c25_\x0c\xa7j\xbe\x12\x7f^\x19\xcep\x8eP\xcc-r\xace\xb5Sk\xf2!\xcc\xe0\xda\xa2\xef\x81MB\x12\x07\xcew\x8b\xc9$\xbe'\xc3\xd7\xc2zs84\x92R/EM\xd2\xfb\x95\xd8\x88y\x8dC\x01}\xc2\xeb\xbd\x11{\xd4\x81\xe5]X\xc9/\xab.\xd0\x94\xedd)\xf9\xb1\xa2bJ\xb3\x18\xae\xb1\xe3\x8ata\xd5\x07\x81:\xf2\xc0)\xa7\xfdb\\{:\xb7\xdf\x1bD\xf1\x9c\xab\x9b\x92\x8e\xdb\x94X\xd3U\xb8\xdb\xb5\x8c\xe7A\xf6\x1b9\xee\xcc\xd0\xd6\x1el\xb4\xae\xc3F\xc9\xdf\x9c\x82\xd5\x1e\xbe\x94\xfd2h\xfdU~\xd8Xd\x94\xd1D\xd8B\xfe\x87)\xe6).\xc0~\x8b\xb4\xeb\x1a\xcb\xb7-\x8a\xa7\x95o\xc7\x8eP\x9b\xef\x9c\x8fo\x8c\xfbT\xdf\x97Z\x10xp\xf4w),\xabK\xd2\x1e\xf8\xcf\xf7eO/\x8d\xa5\n\xdb\x08\x18\x1e\xd1\x12\x81 \x19\xaa\xf7\x8fE\x11\xdeK\xd8\x1f\xfa\xf9\x89h\x13\x04)_\xe6V|\xb5\xb4\xb3\xd4\xe9Q}'{R\x19Hi\x0d\x0dN uQz\xa0\xc0E-\xfa\x83\xa6\x0b\xf5!\xa4M\xddyr\xca\x0d\xda\x93\xad\x16\x10z\xc1\xb6.\x17\x86rkk\xb5\xa1/\x15s\xfe\xaa\xd1\x8f\x82t\xf0/\x82|\xc7K\x1b\xfe,Hp\xa6\xf1\xd2qzN\xc5\x83`\xeb\x17\x81\x7f.c\xdf\n\xbe\xc8u\xecoe\xac\xb3~\xacS~/S\xe0qC\x17(\x97\xfe\x93/.:\xf8,\x86\xfa\xb1\xd6\x9e\xdf\xdeK\xb0\xefe\xa7\xc7\xac\xf7\x006\xf8M\x0c\x8b\x82\xa9\xa2FZYz\xf8\xd1\xed\x0c\xd8X\x8e\xbccn\xcf0\x9db\x8c\xa1\xc1\xaa\xfa\x87\x94\x16\x7f\x86\xca\xed\\\xf6L\xb6R\xf6\x95\x81f'\xaa\x08+{\x13\xef\xc6\n\x8e~\x9c\x902\xd5\xf5\x16\x05\x05\x9e\x92\xe6\xd8\xd0\x92cc\x82\xdd\xdd2\xec\x82\x86\xd2\xf3\xf43\xec\x89\xf5\x90\x98,\xfaUB\x1fH\x16r|wAUkb\xbb>!@y\xe4\xd9t\x18\xfc\x0c\x13\\\x19\x89\xe4\xfe\xaa\xfd.\x9cEX\xf7\xccg\xdc\x11\xa94+\x19amN0N\x06C,8iy\xd2\xaf\xdck\xf3\xd6\x90\x18\xb1\xef\x86=\x85\x0c\x9dg\x82\x83\xa3k\x93\x850>\x10|\x88\xf5\x8f>-\x04o\xb5\xbc\xd1$\xdc\xa0o\xbe\xb5e\xf3\xb9\xf2\xa5h\x82\xf1\xc3\x98sr\xbb\xc2\x19'\x9cG9Gx\x04\xa1f\x17\xe1%'9/;\xbc\xe0Q\xc5\xb2!(/\x98\x9b\xac\xda\xe5`\x89\xb0\xe9\xac\xfb\xe4\xdc\xba\x07\xaa\x9e\xd7BQ'f\x83\xbc`\x00\xb6\xd9+\xe3\xb0\xe3\x03\x9b'\xf9\x05\xd5\xce3\x8dr\xbd\x8f \xee,\xf8j\xad\x986J\x86S\xeb5\x9a\x1b\xcb\xbf\x03>$r\xc0\xdd\xfa\x01\x0b\x8c\xfa\x9dD\xffV\xef\xd4\x84~w\xa7H\x8apZ.\xd4\xc4\x07;\x83\xb1\xf5\xee<\xf0\xa6\xb5\xcc?\xe3\x11\xbaMy4\xe2\x08\xa7<\xca|\x8fPs\xee\xbd\xabe\xdc.r\x93\x90\x9c\xd7E[\x1e=A\xa8\x97\xa8\n\xe0y[U\x88}m\x9b)\xaf\x8b\xe1TV\x90Z\xec\xe2\xf7\x12op4$\xdaS*\xfd\xf1\x97(\xc5\x91\x82jY\x04Y\xcb\x19\x01K\xab\x19A:]\xf3\x81\xd7y\x82?\x83lC\xf0\xc1\x18\x94Q\xc4Y\xc5\xed\xb4\xb69g\x87tS\xd9\xe1\xa4\xb6\xe2\x8aR\xbbk\x11\xa9\x98V\x17\xb1(r\xae\xf6F9\xc9X\xcf%\xb5s9r)`w\xccu\xe2\xf2\xfeym\x8a\xb5\x85z\x8aP\x8f\xa9k\xa8Y\x92%G\xf8\xeeM\xb0\xd6Uu\xd9\xf0\xc1\xc5u\x14\xc5&\xde->pw\xb4\xad/|e~\xaf\xf9}\x96\x01/*\xa9u\x1b\xf5\xf8\xac\x92\xac_\x96\\\xe2\x9bj\xd9\x19_f\xe3\xcf)\xcd\xc6\xf8\xa4\xda&\xfd{Is\xf96I\x99\xc4G\x95$\xc6\xaf\xf0\xdbJ\x8c\x02!=\xed\xb6\x8f/\xe9%\xcd\xf0\xf3J\xae\x17\xf39\x1d\xa7\x89,\xbda<\xe0\xdf\xb4\x91\xf8\xae\x92\xa5fs\xff\xa0\x92\xf8\x92_\xb9\x94/\xd5\x96\xc7Y\xd9\xe8{@\xbb/\xac\xe8 \xbe\xd6\xd1\x1e\xa5\xcd\xab\x9c\x03\x97\xf3\x82;\xc9\x05G8\xf3\xc8]\xad\x9b\x84\x1crkG\xeb\x90\xf7\xec\xc2\x9e\xa9\xc2\xab\x8f\xdc\xd7\xa2\xfch\xca5_rG\xbc\xbd\xe6\xe8V\x01\x81\xb5\x1a\xa6\xc5%4Y\xf2\x9a\xf7~\xe2\xd1\xd3\xa7\x15_-Zs\xae\xea\x95\xd0\n\xb3\x0d\xe8P]\xed\x19aQ\xb3\x83\xcc\xbd\xdeR\x89\x08\xac@\x18\x004\x1aS\x12\xdd\xea\xe9s\xbd \xc3\xe85'\xaf\x9d\x9d\xbc\xad.\x829x\xce\xf1\x1f\\\x91?N~CA\xeeJ{H\xfb\x85\x93\xeb\xf6; \x9d\xf5v\xfdI\xd5~\xc0\xd9$\x9d\x96\xc0\xfa\x99;\x96\x9d\xef\x8f\x1eh\xf0\x9a+\\\xa9-cI\xcd\xe4\xa8d,\xc9\xb3\x01\x1b*\nm\xc0\x86 J\xe9\x99~u\x01U\xe1\xcf@\xfe0\x10\x94\xfb\xcd\xac\xce\xef\xe6\xf7\x13\xaf\xdd\xca\x7fUK\xf4\x89\x93\xdf91y=\x02\xd5\xa3\x18\x7fv\x07B/\xe5\xd1\xcf\x1c\x19\x0f\x95\xed3C?\xb5\xcfL\xbaq\x99\xed\x91\xa6i\xc9b\xaa3\x93\xaan\xc6\xd2I\x14\x19\xf2A[\xa0\x95\x08h'\x8f\xad\xc3\x8a\"b\x1b\xb2h\x9e\x89\x9fR\x10\xa9Y\xeb\xb4\x1a\x89\xcb\xfbDT\xcb\x8fz\x1e\x93\xc8\xa3\x9c\xcd\x00~\xe3\x84b=W0\x99\xa6\"c\x91\x00L\xe9\xb2QJ\xf3R\x90\xcbjw\xea)\xd2\xba\xb5\xc6\x93Q\x0e\x02_\xd1\x97\x04\xe4\xd9\xaa\x19\xebJ\xd8,u\x80\xf4\x89\xeb\xe7\xdafW\x0b\xc7\x81\x85iEh\xac3&\xc2\xd0Yg\xde5\xc2s\x9f\xd4\x08$)\xe3\x11\x96\xe4\xd6\xac`L1?\xcf\xa9\xb8\xa4\xe3\x9fR\x99\xc7\x12\xabk\xb76\xa8`=\x85\xfc\xce\xfd\xc5\xf8\xadN\x97\xedv\x14]\xf6;'\x12\xff\xc6+sBna\xd0q\x07\xfb\x03\x8d%6\xdeZ\xa9\xc8uKF\x07^\xcd2\\\xfb\x89\xb30D\xab \x06\xb0.\xd2\x8a>\x1eO\xe1\x86\xdf\xd6o0\xbf/\xe9\x92\x92\xdb\xf3$\xa7\xda:J\xcd\xaf\x9e\xee\xcaOInL\xf0C\x07p\x96\xac\xc7\xe5\xb3D\xd0q|k\xac)\x9b9\xa1\x93 \x1dI\xdb\xef\xf2\xd6cVK\x81\x85\xd7\x11,+\xdd\xd2\x0f\x87\xf2\xee\xae\xba\xf0Z7\x0d\xb0\x941\xf5>k\x1f\xf7^\xba\xe9?m\xeb\x80\xeb9m\x9b\x90\xcf\xcbKR\xff\x04\xb9u\xd6\x9fc\xd5\x0e\xa3\xb1\xc42\x99\x82I\xbe\x9b\x8c'c=C#C\x17\xe9\xaf\x12p\xcaj\xf3\x12\x88\xfd\x8d\xe3\x8d\x1fY\x9c\xa0i[\xe8*\xb2\x16\xac{\x16\x01\xf4\xa5\x81\x8b82!\x06?\x98\x99x\xd0\xed\xd3\x85\x88\xf4:\x90\xa5\xd5\xdb\x9f\xbf6\xa2\x8e\x87L\x17E\x182BH\xa4\xe8\xfb\xf5\x9e\x1a<\x90j\x9c\xea\x0d\x8c\x11V_#\x84n\xc7\x1cJ%\xc4\x9bSVZ\xd7\xd6\xb3\xcb\x00;\xc0\x14\x83k\xb1r\x9a\xdb&\xe4\xcdu\xdb\x06\xbd\x19\xb7\x13\x95\xf69II\x12\xa7$\xd5\x13\x93\x00\x97W\x05\xeb\x07e\xb5\x88,\x8b\x18\x0c\n\xb1\xce\xe7\x8f\x0f\xa6\xe2\x1e0\xe5u\xb0L-\x1c\x8a:\x1c\n\x07\x87\xd88Y\xf3\xb7\x05s\xde\xb1\"JX\x0d\xb6Q\x7fm\xaa\x89\x8c\xa9\xe9?\xaeg\xf7\x0f\xa6QZ\x15\x81N\xab@\xd1\xd3\xc8\xe5\xd2\x988\xae\xef\xb9\x9c\xa4\xf5m\x96\x91\xd4\x8c\xccA\xad\xc7\xdeG\xb7\xf5T\x0d7\x97\xe0\xcb5\xc3K2\x82^\xf7F\x06\xac\xed\x19C\x08\xc9\xfb Y\xc6\xb9NX\xe2\x9c\x8c\xa0\xd8\xe2\x0e\xb05\xf6M\xc6$Z\x90E\x05pk]\xee\x8d\x8d\xbf\x03\xd3\xce\xb8\xbfX\x9b\xcde<\xb6\xed.\xea\xb39\xd2R_\xa6\xd9\x04\x19\x11\x9a\xd4\x03\x8b\x9ct\xf0\x82,\x89\x16b\xea\xf5\xd0mF\x12\x00r\x18\xc2\x84$\xe5\x16\x00\n@\x84\x19\xd2\xc2\xb9v4a\x08\xe3\x80Nx{g\xa2wL\x076KR\xd9,\xc9\xfafI6m\x16d\x05mg\x84\xe29I\xec[hF$\x9e\x10\x86\xe7\xda\x9d\xebH\xcb\xb9W\xdc};\x83D32\xb7\xad\xa9MNf\xda`\xc4\x04\x8f\xb1\x15\xb9h\xd0\xd5\x98\xcc*\"\x03\x8d\xddx\xa6\xbd\xd0\x92\xd6^\xe7\xe9\xe3\xd0|\x15\x8f\xf6tz'v\x07m\x94m\xe0\xd5W\xda\xedW\x1a\x8dg\xa5\xac\xef\xd8\xd8\\\xf5\xfa\xa2\xeb\xdf\x89\x15|wV\xd6\xb5\\9?\xc0\xa2\xd7\x9d!\xbb;\x16\x04#\x05\xddf\x9b\xa2\xbe\x0b\x92A2\x8c3\xfdJ\x94Xw\x8a\x93\x0d\xcb\x94\xfd\x07\xcbd\xfb\xb0\xe8GK\xb2 \x13<\"c\x14;\x98\x98\xe0\xbc \x0e\x01k\xf9\xef\x04\x92PE*|}\x7f\x9ay\xea%$\xd3\x87H\xe6\xed\xbd\xfa\xfe&*j\xc3\x0e^Y\xf4\xb4\x00Y\xbd1\xc2\x1e\xfc\x93\x11^\xc3\x1dd\xb9^\xf7\x02\xbf\xc8\x0b\x92cC\x1dB\xa8B\xad\x90\xb1o=#\xf5xe\x94H\xbb\x1a\xd8\x85*$\xaav\x92,\xd5e\xab\xd4\xcc\x92\xbef\x96\xd4\x9aYv\xee=\\\xc2\x8d\xfd\x0f\x9bd\x18\xb6\x84m\xe2\x97\xad1\xea\x9ev1G\xa8\xc75x\nd.P\x8b\x94D\x8c^5D\x1bDL\x18e\x12\xb5\x05\x9d\xe4\x9e_[\x0f;3#>\xa8\x0e\xd6H{5\xadzHF}\x19\xeb\x1b\x94\xd6\xed\xaf\xce\x1c\xc3\xda\x82\xaf\xa6\xbb\xc3\xea\xf1\xe2-\x95a\"MRr\x9b\xe6\xaf\xf8\x12\xcc\x1e\xbb\xabh\xf9\x0e\x00\x0f\x01\xed*\x0bKQ\xfd\xe0kY\xb5\xb4\xc2\x94\xfd\xad*?\xa1R\x1f\x94e-z\xd96T`\x98\xcdi\x16!\xccI\x92\xa9\xcbxJ\x92\x14\x9c.\xf5R\xbbU\xdc\x0dF]`RoY\x10\x06\x12+E8\xcf\"\x8a9\x16\xc8\xf5\xe3\x1d]d\xc9\x88\xfe\x8f\xf5E&S\xd2\xc5\xffY\x9f\x8e\xb9\x18Y\xd2\xc0\xef\xd2\xdd\x1db\xbaC\xc2t\x88\xab\x0e\x81/\x0b\x90> ;\xa6\x13\xa0\x03UvB\x9aNp\xd3 \x01N\x11J@\x9b\xa5\x91\xafr\x99\xb8W\xe3u\x94[\xe3\xb2k\xae\x9f\x83`=\x96>\xdd\x1c\x1f \xa8\xeb\xa2\xa3\xe9\x91Q\x93d\xf3x\xf8\x11b\xc3\x1b\xf8383\x86V\xef\xd9\x1c\xfcp\xa00G\xa8\xa61\xcbe\xc4\xcf\xd20\x87\xb5f\xb29\x98)\x98\x12z\xbb\xf1Y\x8c\xd9\xc4\xa6\x82\xadO\xaa\xd3\\\xffG\xd9\x06\xc7\xbdT\xa4\xb6N\x0e\xc6\xc2+\x82`:\xd7\xbd\x87\x07\x18\x1bc\x00\x07\xc6F\x85\xa3!\xa4rs\xa2\xc9@\x04\xaf\x83\x98+\x98\x9d\xf5|\x14\xb3\x06\xfcG\xa4\x7fb\x96\xd3\xc6i<\xedS\xda\x0e\xb0\xe8\xac}l(B<\xb18\xb0s\xcd\xeb\xcb\x9dO\xecF\xed\xdc\xf6w\xd3\xa0\x87\x83?+.P\x9f\xec\xf4\xf1n\x7f\xd3\xcf\xeb\x98q\xf8\x0c\x82R\xff\x08\x99t\xcc]\xc2\xb1\x125\\P\x9e\xc3e\xc2I\xed\xe5\xc4\xc6\x014\xc5T\x90\xb8\x16\x158\xaf\xcdU\xc7\x16\xa4o\xad\x80\xce=\xc2\xf5\xc4\xde\x80\x1fFW\x1b\x01'\x11\xa8\x8dR\x1b\xceX\x7f \xc7\xb86'\x96\xa4r\xa0\xac\x19WT;\xb4\x17\x19\xb82\x97\x95\xd75S\x8f\xb1G\xd9O\xecF\xb3n\xac6\x01\x90!{\xa0}\x84\xc8\xc8\xa4\xd6\xacM\xdd\xec,Z\xfaD\xf3\x86\x18}]B\x016\xdf\xd3\xa1\xe6`\xcc\xc7f\xf6\xd1\xa7\x1c\xd9s\xd3ir\xec7\x920\xe7H\x08lWp \x9a\x80L\x12j\xe1Gb\x82j\x0b\xca=\"p.\xf3\xf4YDb\xd8(\x81:\xf39\xc2\xa3\x96A*m\xbfM8\x9c2\x9c\xee\x11\xa0\x8d\xe1\xdd!\x80\xb0..&z\xff>)\x91\xd0\x9c_5\x03G\x1a\xabQ\xa1\x1a\x18\xb0\xbf+@\xb7\xa4<\x92\xcauvc\x13i\x0e\x98q\xa4\xd3\xbc\x00x?\xd4\x90\xe8\x04I\xd3\xa6a1\xa0\xe59\xf5\xc4\x95\xc8\xd0\x93\xd4#\x90\xf4E\x89\xcc\xb7\x04\x1c(\xdc\x97\xc6*;\x19\xf9\xd6v\xa2\xcb\xf8\x1d\x809p\x80Y\xaf\xebm.\xf0\xc6\xa4-.I+\xf3\xc5\xd2\xcc\x1ab\x83@\xed\xb4\x08\x80\xfe\xd7\xd7\x00=2V=9\xdd\xb6\x02K\x7f\x1f\xe2\x1d3z\x90,\xf5\xdfq\xaf\x9a\x95\xfag\x8b=\x8b\xce\xbf\xb6\xddm\x97\xb9\xad% \x06\xcb\xfa\xfd\xdd\xda\xf5\x9e\xf6\x11\xc7\x97\x8dUb\x0e\x97B.\xc2\xc17\xdf\x98\xd7V\xcc\xf7\xc99k\x08\x8d%\xb5\xc1\x12K\x12:\xb0D\xc4Xb.-\x98\x880\x12a\xa4mg\xb9\x1f\xf7_%\xda2h}6]q\xb0\nz\x82|\xb0\\\x03\xe5\xf0\x89\xe1Y\x92\xc9\xdaC\xa7\xdb\x84q\xde\xe4\xca\x1d\x0c&0+\xe3\x03\xd2\x05\xff.sg\x81\xd3Mil\xd1sC\x1b\xfa\xfd]\x97Z\xb2\x05\xfb\xc8|\xd3\xc3^l\x83\xfd\x0e\xecJ\xe0\n\xcc6\xd5\x87\xe2\xc4\xe2\xa5Y\x04\x8f\xc9`\x98\x9f\x07\xaaa\xe6\x93\x00=jn\x95\xd6\xb3\x10\x17\x00q\x81\xbb'\x17\xf6\x03@\xde@[l\x81\xf6%\x8a\xdc\x05\xba\xa0*;\xa0\xea\x13\x0b\xc3:S\x06!\x1f\x84K\x02\xd9\xef\xef\x1a\xb1K\x07Xe\x144\xc4\x81Un\x05\xabo\xdaF\x14\x81CO\xe4\xf0\xd7\xf5&c\x80\xd7\x84\x11\xd9\x04xE\xcc\x07\xf9\xd4\xbc\xd7cK\xe1\xbd\x8a\xa7qW_\xa4\xc2v $,\x81Og\xb9\xb3\xec\x82\x04\xa4ltkPk\"\xdc\xb9\x06\x0bT\x11p}\x0dV\x16F\xfb@\x8c\x93,Y\xd2\x82,hA\x87\xc4\xea`\x84\xd74,\x1e\xb9\x18A\xe3\xc5\xee.\xbe]\x9a3\xf6\xbb\xc5\x04]\xd0\xa5um\xc6\xf9\x05]zN\xe0\n\x9cT\xe7\xa8\"K\xa2N\x16\xa7\xa4\x8c\x13f\xde\x18=\x06uz\x8c\x0b+\x87\xdf\xb0,[\xfa\x03\xf8&>\x80k\xdd\x14&\x05\xe5\xe8\x86\x14d\xe1Y\xdc\xd5dJo\xf2\x95g#n\xc8\x8a\xde\x90%\xbd\xd0@\\\x80\xc3H\xeaL%LK\xd3h\xba\xc5v\xc4\xa9`\\\xa9\xc1\xcf\xf0\x06c2\x8d\xe4;\x10\x7f\x0b\xa2\xb1]A\xfc\x87'\xc8,s\xc7%m\xd5\xbc:\xdd\x1f\xe2\x08%PIW\x86\x93/q\xcb.\xf4\xfe\x08\x87XjKj\x11vA\x15\xb9\xa0\x8a\x0e\xc9\x8d)\xb8\xb2\n\x0b\xe4M\xdf\x17Y\xd6\xbb\x1a\xcc*\xc1\xc6\x17\xbb\xbbQ\x05|\xbb\xb08|1A7ta]\xe8q~C\x17 \x0e\x9f\x03\x0e/\xc8\x95q\xdf$\xd3\x18\x8d\xcf=\x1a/\xb2\x0c-\xe8M\x84\xc6\x0b\x8f\xc6\xe7M4^`\xa2(G\xe7D\x91\x0b\x1c\xd48+z\x9e\xfb\x0dD\xcf\xc9\x92\x9e\x93\x05\xbd\x01Z\x00s\x88\x11x\x81\xc9*\x1a\xc9\xc2\"\xf0\x96\xd9:\x0c\xbb\x02D\x0es1\x91\x1f8\xbaj\x0d\xe5*\x1a\xca\x15Y\xd2+\x8f*+\xc0\xe5\x05\xe0\xf2\x02\x7f\xb9\xc7K\xb4 \x15\xb9h\xf4\x1a\xd0\xfa*\x06\xcf\xa2\x81\xd6W\x80\xd6\x17\xf9\x95A\xeb\x7f:Vh\xf1\xeb\xd0z\xe5\xc8f\xa8\xa5\x997M/\x0d\xad\xbcK\xca\x96e\xdc\x9f\x10~\xdd9\xa4\xda\x9aB\x0c4\xde8/\\\x0c\xc2\xbb\x1a\xd5\xcb\xbb\xc2\xf6\xfc\xe2\xed\xf3\xcb\x06gX\x99\x8e\xc84\x04L\x99\x1a\x8f\x8f\xa9=\xe1W\xfe\x14\x9cF\xaa\xdb\x079\xa4\x17v\xc3\xc6\xb7z\xc6S\x07HL\xe0\xfe0%\xad\x91GL\x16\xa32\xb8n\xcb8\xd4\x19\xf4\x9e\xdeKLW_\xe8&f\x1c\xa7\x84'\xd7\x8b\xb8\xb7\x0d\xb4\xe2\xb6[\x0d\x0fdJ}\xbb\x9b01\xb8 \xfd]\xa2\xe6D\x1c\xefX\x12\x80_c^\x9aO/5\xb3k\x1a2u\xdc(\x13f\xb7\x8c\xc7\xac\xd9}R\xc6-\x95\xfe\x0bgB\xee\x81PST\xd3\x90\x9f\xc0\x87\x12\xaa\x07\xa2X0H\xba\xf9\xcb\xfb\x97\xf9\xdc\x1c$\xa4\xdf\xc7\x8dX\x8c5\x9d3TS\xc4(85N\xe2\\\x19y\x8d\x93f\\\xdey\xe3\x85\x06\x81V6\\\x8f\xd3\x0d7\xbe\xbd\xbf\xe7\xc6\x9bG\xbf\xe5zV\xf0\xe7\x1d\x8f\x1d\xd4\x01t\x8f9z\xc7\xbdG\xc9\xd8\xc8t\x1fst\x1c\n\x89\x80QZ\xb3b<\xae\xad\x89n\x03Z\"\x96b\xfe \x8d?\xf7\x8dX\xa3\xcadDF\x04\xff\x01\x16u\x18\xad\xe9K\xee\x1d\x98\x1f\x84\x15\x17LZx\xe4\xd3A\xfch\xde\x19\\\xb1o\x0c\xaeD^\x18D\xd2\xf4#\xb8\xa7\xc6\xb5s\x86$q\xdd\xd9\x0c\xb2FBn\x86\xb4\xfa\x0f\x0f\xc9\xddt\xca R\xb4\xa4K\xc2\xa9\xc4\xb9\x87\xc3\x92\xfc\xc4\x0di^\xd3\x15X\xee\xaf6S\xeb\xbf\x93zWM\xb3l\n\xeb\x12Z\xe4T\xe6\xb6\x1dE\xb8D\xb2y\x1c\xe0\xf5\xda9\x866\x0f\n]7\x18\xacs\xfbd\x10\xa3$)~\xda/\xec\xb69i4E\xc4`f\xcf\xe3\xd3\xc8<\xe4\xbfks\x84\xdeH\x15\xb6\x05X*o\xbbVW\xf8V\xb4]\xa5\x14u\x08\x0e\x07\x1ae\x88\x13\xe5\x10\x03\x92\xabD\x8b\xa0\x0c\xe8\xb9D\xfc\x1f\x00\x99;\xb2\x14A\x17\xccb\"\xc8\xe3N`s\x07lNd\x04\xd5\xb2@\x89\x9dv=8\xbb`\xb5\xe5\xa1\xc6\x92jv\xf8LU+9e\xce\xc0\xae\xbe\x9b\xe3\x8a\xc14\xd14\x81R\x99\x1b\x0ey\x05\xb1\x1a\xde\xb3\xc2\xf85\x13\xc4\xa8\xde\xd5\xc63\x01R\xa8~\x81\x99\x93\xe4Wn\x1czj\x08\xbb\x17t1\xd1(\x0d\x06\x84\x8a\xc4#\xc3\xfda\xccwM\x8b\xa6\xf9\xc1s\x15\xa1R\xcb\x83\xf8\xc0Y$\xf2\x14J\xa0\x0f \xfd\x93\x92\x06\xfe\x82Li9X\xd9\xa5Ir+\xd8\x91\x97\x05\xaaLL\x03\x8c\xc9\x8aNOF\xa7dI\xa7'\xc3\xd3\xf1\x94~\xe4\xd0\xdf\xace\xf0;\xa7302$\x97t\x1e[\xd8\x92\x05\x9d\x0d\xcc8\xc63\xfdsu\xae\xa6\x92\x9f\x1bT\xbf\xa0?\xf1\xe0\xb2\x9c\"\xd6\xadn.\x9f\x13\xf3q^\x13\xffi.7\x04\xe6`D\x00\xc9$\x92\xce\xa9 \xf3\x81\x8a\x9eW6\x90B\x0c\x9d\xb1\xe5T\x15a\x18\xdfj\xf6,\x82\x1c\x97hI\x00\xfdW\xfa\xc2\xc5hQ\xa2\x0bL\xaa\x16\xe6\xac)\xcb*\xb7\x01\xa1D\xd7n\xd7#\xd5\x80\x89\xba\x10\x17%\xf3\x1fz\x96Z\xd2\xf0\x162\xeb\x90\x82\xb2\xf1\xf0Q\xc8\x1b\xb2?\xba\xf7\xa4F\x05&S:z\xf4\xa8\x1c\xcb\x93\xf2tM\x19)2\xfa\xaf\xe9f\xb3\xc1\xe4D\x90\x9a\xc8S\xbc\x15B\x16\xdc\xd16\"\xcd\x0c\x1b\xac\xb1\x86\x82&`\x84(\x14\x02\xb1\x08P\xce0\x16\xc03\xee\x02\x8fl\x80'J\xcb\x9b\x0c\xcf\xa6i\x82\x18\xf9\x18\xeb \x99\xe9p\x89.!\xe2/\x97hAj\xf3cf\x92\x9d\"F\x13ws\xe2\xc8g\xf0Ro\x90\xda\x9c\x17\xa4E\x91\xf2\xe5\x06{\xcaKW\xf4y\x11e\xe4\xf9 \x04\xabSC\xdf)#\xd3\xe80\x11\xc6N\xc2\xef\x1c2m\xe0\xf24\xa2\x86KL\x96\x91=\x9c\xa7vv]\xa6\x05\x82\xb3\xa4\x19Wd\x19\x1d6\x9a\x85\x1fo\xe5\xe2\x18\xe4\x85f\x08\xb7\x89uL\x95\x19\x81\xc0H\xf6\xc4\xfa\xcf\x00\x90\xc5\x00\xec\x00_\xeb\\e\x11\xe1\x9f\x15-\xdb@Fo\xeb\xe2\"gd*\x99n\xbf&3\xa6jY\xdd\xe4\x82\xcc\xd8R\xe5\xb2\x83?F\xb5\xbe7\xc4\x8e\xbc\x13\x04\xdc\x98\x93\x19\xda\xeai%\xb8hFrE\xeb\x15m\xe3\xfe\x1aiu\\\x01O:\xab\xe7H6|\xec\x19\xb1\xefd\xa3\x03\x1c\x1b\xb5\xce\x8b$bU\x14\"\x8e\xe8\xd5n\xacc\xf4\xe1e\x11\xf6t\xd5\xaa\x19\xd9\xf9\xb4\xce\x16\xc0\xa2\x9f\xb83\xc0g\x9a\xaa%\xbd\xcc\n4Z\xebOl\x18L\xaf\x9c\x92F8\x19\xdbu^\xb4\x9a\xaf\x00Ii\xeb#{`\x85\xd4u\xc2]p\xb1u\xf9\xff\x99\xb7\xd9\x1cN\x8b\x81]\xfbH\xa5W\x17H\x12\xfdb\x19\x04\xf9\xd0\xf0\xac\x00#aN$\xde|\xd5\x14y\x1a?,\xb9)i\xd8\xdd\x1f\x1d\x92\x03\x92\x1ad^\xa5\xb5.\xbak\x9d\xb7j\x1d\x90\xbdF\x9d\xeb/\xdf\xcc\xcc\x96&\xfa\x82Fbr \xe0\xc3\x1b\x83\xa6=\x1a*z\x81\x02K\xea'\x92\x91\x8dK\xe3\x15\x86\xf2\xb9I\x90\x84\xbdv\x8b\x89pi\x1cO\xd8\xa9\xe9\x8f\xd8\xd9\\\x17I\xee2\x86\x13\xd2\xf5I\xa3hx<+b\xbd\x03\xa0I\x1d\xd0\xa4\xb6\x82o\xcf\n\xa7\xa8\x90\x8a\xd2\x83E_\x0d\xc8P\x13y2:\xc5\x13y2<\xcdQ\xe3[z\xc2H}JX4\xb2\xb7\xff\xa7\x86b\xd6\xe4\xcb\x03:N\x06\xf4w\x850Dyz\xf8\x9d\x98\x1c=\xccErR3\x88\xe3\x841\xd15\x1e<\x12\x93\xa3\x07\x8d\x1a\xa6\x95\xdf\xf9\xa0\x96\x850\xf1\xbd\xc7\xc9\x13\x1d\xc1Y\xce@\xcd[\xa3\x90\x80+\xad%6I \xed\xe7\x0d\x0e\xbd\xe1\xf9j.\x99\x95\xbbd6n\x97\x80\"\xd1\x9dR\xa4\xb2$R\xd0\xba)\x07\xa0\x94\x16\x13{\xbd\xe79r!:\x0c\x95-l\xb9\xc6xw\xff\xe1\x9ao\x8a\xa2\xa42J\xe9O\xdcGG-\xb2\xac\x80\x12\xfc\x07\xa7?r\xda\x1bziO\xea\xfb\xec:_\xafu\xb9 \xc4\x10E,B\x85=\x11\x1ag#\xc6.L\x97jT0\x87^I\x0b\xa4\x88\x00\xce\x93\xa7W\xf9\x82\xf0\xe8\x8eMK\xcd\xf6@\xd8i\x83l\x81i\xda\x04\x1fa\x90\x1f\xbf+4\xc3\\8\x87\xcb\\p\xb2R><_\xce\nxt\xc1\x8b\xe0\xc9\x1e\x86\xe6\xe1\xe5b\xc9dQ\xf3+\xf6C!f%\xb3\xc5\xaf\x8a\x9bjU'5_\xb3Ee\x7f\xba5uOs\xfb\xcb2\x03\xf0\xfb\x19;_]@\x10\"_0gR\xb2Y\\\xf6\xc1\xe3\x9a\xeb\xc4\xf0\x8f\xc7\x86\xf77eo\x97\xc5_+\xf6r\xc6D\xcd\xe7\xdcv\xeb\xa2\xedq\xf5\x86]\xbfg\x9a@\xf1\x92\xc9\xbc7\xda\x90\xc7w\xc3\xc4o\x94\x98F\xedM\xd1JyX\x7f\x05\x11\x87\x98\xcd\xdd\xf4\xbb\x86\x8b!;\xc5Dl\x1a\xdb\xadu\xf3[\x16\xe60\xa0L\xdf\xf8\xed\x904wJ\x8fc 1}\xb8\xe9FIm\xe0\x92\xee\xd8/\xa3@s\xb9\xcdu\xff6\xbav\xea+\x7f\xf4d\x8e\x07+\x0d`\x914@l\xc8T\xf3\x81\xf6\xc6\xd4I*\xa2iF*q\xc82\x99\xbaP\x9a\xd1\xdd:\xa3\xca\xfc\x0dq\xfe\x849#`\xa8\xfav\x9e\xb3FVJ{g]\xaf\x11$\x89\x16\xa8/\xf3\xfe.\xfaM\xee\xee\xa6\xd1\xc7q,\xfa\xb9\x8f\xe1\xf4\x16\x1a\xe45\x8e\x10\xc0\xe48\xfd\x89\x83\xb1\x19\xce2\x148X\xcd`\xce\nt?9\xe6\xef\xe8o\xe3L\xca\xac#\x0c\xf1\xf1\x0fu\xa7t\xebw\xa4\xde\xdcM[\xbf\xb9\x9b\xb6\x9e\x15[\xa9\xe3U7u\xfc\xdc>o\xce\xc3y\xf369o\n\x7f\xde\\F;1\x82\x88\x9dcQ ^\x18\x8c\xf8\xc7\x1b\xd4|\xdb\xbdC\xaf\xfe\xaf\xeeP3\xb2\xb0;O\xf4\x150\x04\xfc\xee\xda\x8e\xab\xee\x03t\x1b\xc4N\x86\xa7_X\xfe\xf7\xff7\x97_}\xe5\xf2\xab\xff\x8d\xe5W\xff\x9f]~\xf5\xdf\xb8\xfc\xea+\x97\xffi\xd1\xb0Hx{-\x98$\x7f\x16\x89\xa1\xc1\x87H&`-\xe6\xbc>~r\x06n\xbc\xc0\xfc\x13\x89\xf3O\x1c,b\xa0R#\x98\xf7\xcb\"v\x133\xd9W\xf4I\xee%\xdf\x92\xcd=c\xa1\x9b\xa90\x9142)\xe0\xbaDxC\x80?\x0b\xef\x01\xbc\xa6#bG \xda\x7fg\xf3\x977\x82M6\x83S\xc2\xc7\x19\xbdw\x7f\xf4\xc0\x05\xa1\xca\xe8\xbf*\xf2\xa3i\xab\x8aoKo\xda\xb6\x0dn,N\xe0!b\xab\xb4\x0e\x1f\x99b\xbd~U\xa2\x02\xaf\xd7!\x13{\x12\xf86$~\x80 \x0b\x85dQU\x91T\x9d \xc4b\x97\xde\x15\xb8\x8a\x81\x95E5c\xd6\x06zn\xa0JXd\xf4h\x17\x90\x01p \xa6\xd1}b<>iA\x9e\x99I\x16v\x92\xde\xb4\xb8p!\xee\x89>\xd4\xaa\x8cc\xc8vT\xf8\xc3\x1f\xc6D\x90\xf0\x86K\"\xcc\x01OD\xae$F\x15D\xf4a0.\x1b0\x01O,\xa89\xce\xe3\xc54\x9e\xe4\x85\xf7G\xbec\x1aa\x85\x9eu\xaf\x90\xb1'S\x125\x0c\xb5:F\xa3?\x01\xe4\x87i\xf2\xac\nf\xa5\xd6(\xc5b \xf1\xc3\x1e\x9b\x1c\xad\xfb\x0f\x0f\x9c\xc1[\x08q\xeb\xa0\xf7\"\xc2\xe1h\xbc\xafZ\x1a\xb2\xd8\x90\xd0\xc4&s\xce\x0c\xfcn\xa3 0\xd7\xba\xe4\xb3\x19\x83\x0c?\x12\x90`\xbd\xee\xbb\xdd\x7fo\xa6\xe9\xe4\xbdk^_V\xab\xfa\xde%\x9f\x19\x03|[\x13\xdb,\xb6\x07\x99A\x1f\x8c\x9b\x12g\x88\x7f\xf9\xca\x84\xb3\xdd\x90\xcb\x12\x0d\x89SI\xbb\xbc\xee.\xc0\xeeA\x16\x9cJ\xbd\xad\x07\x9f\x18\xdb\x08\xa3E\x10\xb9\xf0f>u\x14\x8f8D\xe9=h\xc9\xbc\xa3\x110;\x02f\xc8\xc1\xf8k\x06\xdb1\x8c\\X\xbbE\xff\x12I\x9a\x0c\xb3\xd3f \xe7\x92\n\xd3\xaa\xf4l\xb0\xa5>\x15\x11\x9e\xfa\x84\x85~\x9dH\x83\x0c\xa1\xf3\xc4#\xf8\x08\xfb\xdd\xcf,^\x82\xe3p\x88M\xb0\xa6\xa3\xbd\x87\x11\xfe\xbcH\x08\xaa\xa1\xa2\xf3\n\x89F\xec\x1f7DN\x97\x15\xd2(K\x1cu\x15\xff\x98\xba\x8a\xff.\xea\xfaw2\x17>G0\x117\xab\xdep|S\xa1\xda.\x17\x98\xc1\xf19\xf2\xd3\xf0\x06\xda\xb5\x0b\x81\x15\x00\x89\"\x01\x923\xedj\x15\xd8i\xeea\xb2pQ)\xc8\x8d\xfde\x8e!+[\xda\xe9\xa0\xfaQ\xbfD5\xcd\xd6\xc7\x85\x0d\x01\xa5\xac1J\xe1\x021\x91\xa9\x8d\x80\xe0\xc2\xf0\x05\xfb\x0f\xf5\xea\xe4\x17\xfb\xfb\xf7\xef\x1f\x1c\xec\xef\xe9a $\xe8/%\xba]T3\x96\xf7\xaf\xb8\xe2\xe7%\xeb\x137\xfd\x9cm\x9c|\xae\x19\xd1,H\xb4\x84>q\x9af\xb9\xc5\x04U\x91~\xaby\xeb\xb7\x8dz)\xdd\x98\xd1\" s\xa3\xa8\x1d\x93\x95\x11\x85!\x89M\xaa\xae\xe2\x18\"2\xeb\xd7=J\x8b \x02{9s\xe1\x8f%5\xc3\xe0\x8faN\x13\xe5\x88\x0b*l\xc2\x12g`\x87\xd2\x08\x99\"~Jm\xe9\nk\x06\x12\xc5\xcb\xbc;\xbe&T\x10FV\xa8\xb0'o\x13i\x02QJ\x9c\x9b\xe0 @\xd2\x1d\xc8\xdd \x10\x82\x8fD\xde\xce\xfa\xa7\x0b6#\xc3\xa2\x10\xb91B\x8b($X\xc0d\x81\xc1\xde\xc5PP\xeeV\xa1\xc5Q\xb6eI\x90\x80&A\xb5\x87*^RW\xb9y\x13\x00hE\xb6\xa2\xb1\xd8`b\xb0\xa5\xf6\xbaMa\xb7\x83\xc4\xdd\xb0\x04:\x9a\x88e\x1a\x0bM\x98\xf72\xbfc\xc5Y8\x99DkED\xfbH2\xdd\xc6\x92\xa6\xef\x8b6$\x8c\xc8\xbc \x92z\xeb\xa6\xa97v\xfe\x15\x8eBq#\x9en\x10\x9en\x90\x1a\xe7\\S\x87\x9aT\xc4\xeaq\x890\xc1$+\x17g\x8f\xf0\xd8\xeb\xde\xff\xe4\x01\x8c\xee\xa0\xa6\x9cD.\xf3?Y #s\x0e:\xb5M\x1e\x10\xe7\xca\xb1\x03\x15a\xb5\xd6\x909\x8a#\xe6\xc3\x10D\x80\xfa\xb9\xc1\xf6\x18v\xa7A\x99\x9c\x87O\xd1\x14K\xd3[\xae\x9e\x14\xd3O\xd7\x85\x9c)\xc8y\xa6\x99\x12o\xec\xe1\x1f\x8f\xebB\x9a\x9c)C\xb0\xee\xc8%\xa9\x0b^\xe6\x02\xfe\xbc\xd6\xf07I\x95\xac6\x91orT\x0c\xa2\xb6iM\x8a\x81o\xce,xT\xe0\xdb\xa7CR\x00&\x01k\xab\x1b\xa7\xc2\xfe\xd0\xbd\xd0\xca\xbe\xb6\x88\x16\x0b\xea?~YP\x1fE\xa7 \x1c\xc2\xd3p\x10\xca;\xadT\x82\xa4\xe6\x0cG2b\x0f0\xc6\x92\x8e2\xb9\xde\x0b\xe2\xc8\xc3\x83\xc4{\xd1l\x1c\xcb88]\x03f\xb9\xf1\xf2v\xa1,\\\xcd(\xa2\x87\xf1,\xef\xe6(\xb2\x0cP\xc7\xca\xf2}0\x0e\xf3I\xf3\x95o\xc2\x1c\x07\xb7\x8e\xcey\x80\xdc\x1f\x8b\xc4\xe6\x97t\xdb\xcb\xc7W\x86\xa8\xe6!z\xb1\xe7\xc8 \x0c\x0b\xe8\xcf\x04\xc8\xe0=\x10\x84\xb7P\xaf\xb0>\xf0]\x07\xb1\xd2\x15\xb2U\x88@\xaa\x13\x02\x8b\xc9\xcf\x9a\xb1\xe9\x8d\xf4aGxr\xb8\xba\x0890\x95s\xb7{\xdc\\`\xdbt\xf7\xe8&V\x8dc\x95\x1a\xd2\x07\xc6\xb6\xc9\x05=q\xe5\"\xe6E\xc7K\x15Q3A+RQ\xb61\xe3\x1eZ\xbe\xe8\xae\xa1\xd7\xd5\x05\xab/\x99\xec\xe7n\xae\xfehq62]\xdf\xfa\xc0@\x1d\xab\xeds\x896o*?\xfa\x8d\x9f\xecAT\xa7y\x1e\x1b\xa90\xc17\xd2\xb2\x87\xb0\xd7E\x16+\xb9p\xa3\xb5\xc0m\xb9\x8d\xd5\x0c\xfd\xb4\x1f\")\xc6\x01m\xcc\xcaiF\xc7\xaf[\x1a\x8b$:+\xa3C\xd9\x93\x88\xb0\xf9\xa2\xdd\x02:\\\xbf@\xc0E5\x1a\xc5QK \xf65\xc1h\x1fE\x9a`\xd5\x9eT6\x16G\x14\xe3\xc5\xd0a\xbb\xd7\xec\x91\x9bCD\x0eMKC\xb8\x82\x18'\xe3`\xe6q4oA\x1b\x91\xcb-v\x8a \xb3\xa4__\x95\xd3\xe1\xc7H6\xad\xca\xb2X*6\xeb\xe7\xa29\x02\xb9e\xbb\x8bd\x04r\xcb\xe6\x96\x93:\x8aa\xa0\x1bN\x86d~'\xe3\xcae\n\xe5\x00K\xa6\xee:\x97\xc6>\xdas\x88\x9fc\xa3\x8d\x8d\x0e}\x98\xb1\xae\xe8c\x0f\xcc\x9f\x87\xb6\xd4~\xe4\xa2s\x1d\xc4qpl\x08\x1bW4w\xd2k\x9ce\x97\x15\xb2\xfaY\xa8\xb3\xefS?s\x84\x1b \xce\x7f\xd3E(\x11\x88\xe0\xc6-_\x83\xd4\x8b\xa1dS&\xd0,\xb0\xd4P$\x97\xe1\xb0\xc3\xd6k\xf4D_N'A\xe6\x94\xcb\x81\xbd\xf37\xa5D\xf1$\xee\xe7\x7f\xea\xef\xac\xc9J#\xc4\x97\xde\xa2V\xb0\xdf\xea9\x9e\xd9\xaf\x81\x03%N\xcfk\x93D\xa4\xaa^\x7f\xfc\xf7d\x1as*\xb4\xd5L=\x7f\x18bE\x08\xeb%\xcf\x9aQ\xc7`\xea\xf86\x95?\xb9\x91\xdb\xebbS\x8d\xe9\xc2,\x9f\xfc.OiM\xe4\xc9\xf7\xf2T_\xf9\xecv\x9d\xf1\xa2\xac.\xfa\xf9\xb1D}\x934\xbe\xafg\x07\x8fe\xa5X\xdf\xc7\x0f4\xfb\x8b\xcfe\xb1`}\xc0(\xa7\xbb0\x0flq\xaew\x9d\xfe\xb2\xac\x8aY\xf3\xc3+>c\x95\xadZ\xacf\xbc\xea[\xfeg8f\x8f>\xcb8\x86\xcb\xb1D\x9f\xe5 ;m\xb4`,OM\x0fL\xc3\xad5\xb6\xc5\x85\xed\x80/\x8a\x0b7\xc8\x92\x8bO\x8d\x8f\xc8\xb6A\xce\x98\xde\xc4\xcaT\xaf\xab\x8b\x8b\xb2\x0d\x00\xb1\\\xd5\xfd\x9c1$\xf5\xc5UW\xe4\xe2\xaa(y\xab1\xc5J\x80\x8e\x1c\x9c]\xcbb\xb9t>\x05\xb7\xd7\x85z\xbd*k\xbe,Y\xde\xeb\xa9\xc1\xc2>l\xeej\xcd\xa7\xe7\xc8\xcb\xee\xae7>z\xf4\x0e\x17;g\x0c \x02.\xb0p\xbe*\xac\x06\x97\x85z{-4V0Y\xdf\xa0)\x86\x00\xa8\xeadzJ\xfa\x8e\xc9\xedSJ\xa7\x93v\x9c\xc7\x89\x1c\xe8\x01\xc0&\x15\xb5\x89\xac\x8a\x18= \x1f\x12~\xda!\xcd\xe1Y\xd6\xfc\xb2\xdf\xdfm\x7f\xac\x0bOq^v\x0d\xd2\xecC\x9ee\xfdJ\x1cOeU\x960\xca,\xd3\x00P\xa6\x80H\x8c\x1d\xaa;\xd4\xb6+\xf53\x92\x98H\x80\x19\x84\xee\xea\x84)TZ1\xd4\xbd\x82\x06\xd9\x97 \xce\xcdS\xae\xa4CA\xa1\x06\x95xZrHM)\x07\x95\x98\xea\xdf\xf4\x8d\xc4\x1bI\x9b\x89\x95e\xe4K\x17\xcb\xd1\x8dV\xd2\x05\x87\xa5G\x10\x19\xd4G&\xe39\x1f@\xa2\x97g6\xcc\"8\xd8,\x8d\xdf\xe9\x8c!\x81\xb1-\x99h\x00\xf1e\x0d\xe1\xa0\xc0\xf2l:0\xae\x9c62#\xea\xcf\xf8U\x1f\xd2~\x08&\x7f\xf8\xf0\xfa\x15\xed?2\xdf|\xf7\xe8\xbf\xbe\xb5\xbf\xfa\xc4\xf0\xee\x8b\xea\x8aA\xdc0\xc4\xe2 b8o\x07\x8e\x1fp5i\xf7&\xc8-W\xb9~\xb9\xc1y\xc7h\x04&\x0e\xea\xd4\\x\xa7\x94\x11\xe9\xb7\xc8d\xea\x7f\xd2\xde\x10\x0e\xd8\xbf\xf5\xb4\xa7\xf0\x83\x9ag\x8cq\xdej\xfa\xcd1\\\x89\x08\xb3\x84\x90\x01!\x94\xe4/\xc3\xd6\x90\x88\xa4RF\xa6\xf4-3)[\xee\"\x94,!\x94\xe0{%\xffMb\xd9\xfex\x0b\xc1\xe4t8\xe6\x11\xc1\xe4\x9e`\xf2S\xc2\xf0\xb8\xd1J\x07\xd1\xec\x18\xe7\xd7\x11N\x16\x13\xcev+\x9d\xc4\xb3\xa33O@!\xb2+\xa7\x7f\x98\x1f 9c\xc9>t[\x8fS\xce\xa2\x88\xb6\xe9&ew\x93Y\x19\x91Yn\xd2\xccJr\x0b\x0e\x05\xce\x05\xf3\xce1$\xf4\xd7\x8e\\\xb1\xbb\x86\xeeC.S\xb9\x01r\xcc\x9d\xa5\x0f\x07\x96Ti:\xbd\xc2|\x8eVM\xb2\xa7\xac\x01\xd5\x92\xaeN\xd4\xe9\xb8\xaf\xea\x9b\x92\xf5!\xb5\xf2g\xdd\xe7\x12\xe7\xfdY!.\x98\xacV\xaa\xbc9f\xf5K\xb7}M-CU\xd0\x92.'\xcb\xc1\xd9\xd9e\xbd(\xed,q\x96]\xb8&b\xaa\xaf\xdaT\x7f9I\xb3B\x89\xf5\xba\xdf\x87\x84\xcdYv\xe3\xdahR\xfc\xa5}\xd7\xef\xef\xea\xd7j\xb5\\J\xa6\x94\xa5\xff\xcfg\x1cd\xfb\xbf\x15R\x98\xa4VTe\x99\xaf\xf5\x030r\xbc\x12\x8d\xf7\xc5\xaa\xae^T\xd3\x95\xb2\x05\xa8uP(l\xe7\xbcl\x9c\x13*='\x98S\xb4,\xb3\xec\x1a1\xa2\xc8\x92L1\xdel;;\x18\x9c\x1d\x8cH\xd2\x1bm=;\x18\x9c\x1d\xdd8kz\x93&\xc6z\x96A\x96\xa6\xc7u-\xf9\xf9\xaaf\xa8\x0f\xc5p\xfe}\x8fl%\xbc\x05\xbd\x03\xe1\x8b\x90\xd9\x9e\x1fH\xb9.\xf0\xa4\xd0\xe3M\xea(=x?\x12\x8b\x97\xbf\x9a\x01\xb5k\xa75\xa23\xf3\x8e3\x8fGg\x1eK\xce\xbc\xd7.!hr\xbc\xf9\xbb_\x07\xf3\xbci\xddR\x0es\xcd\x0dwq\xe4\xbf\x15hHZ\x91\x1c5\x85p\x1cx+}\x9a\x8c\xf2H\xdd\xcd\x8e\x8b\xc6=\x81t\xb1\xe3\x13\xd4f\xc7\x1b\x83q\xac7\x1c\xe0\x00T+\xccMm\xa8\x90\xa4\xe8\x08\xa2\xed\x86\x10\xa4\xb9H\x0fzl\x0f\xb5\x0f\xec3DDF\x12c\xdb||\x80\xc9\x0e \x8e\xfc=\x8eW\xe8\x03\xc7D\xb6Lg\x1a\xba\xcd r\xaa2\x01\xf9\x91\\NU\xcd\xb5P+\xbe\x01-\xe2\xd6\xd0\xbfA\xa5\x08\xb0\xca\xbd\x95ySM&\xb3\xac'\x9c\x8e4\xd2MxS\xdb^W\xf3w)=\xc1\xba;\x8b\xe4\xb4\x93!\xa5\xf4\xa9&\x1eO\x15\xdd\xc79\xd2-\xea\xe7}\xf8\xbb^\xeb\xf2\x03\xaf\x1b}\xae\xc0\xe9\x18\x8d\xf6\x0f\xf6F\x0f\x1e\xec=\xc8^*\x9cei\xd1\x1b\x85\xd7\xebe\x89\x9e+\xf2Xa\xac\xaf\xc2\xeb\xb5h \xbbQ\x10\x98E8H\xee\xd2az\xef$\xda\x9aq+\xbe\xc6\x8e\x86\xae\x81?*T'o\x1e|\xc5U~t\x04\xb9\x05\xcc\xfa\xdb\xdeQ\x0b\x0f\x92\xccB\xfar\xac\x9aZo\xff\xed\x94\xca \xb1\xc7\xfa,S\xf8\x8f\x02\x19j\xe9\x8d\xcc-\x80\xc5VY\xf8]\x92p\xfb\x84\xa6VBi\xc4g\x91\xac\x9d\xb8\x0e\xbd\x1eS\xd1i\x12~\x04\xd6#f\xbb\x15i\xae\x0fX\xd4\x07\xe1\xa3Y\xc1X\xf7 b\x89D\xa3\x15\xd7\x87\x14\xe3\xa29\x031\xc6\x9a\xc5G\x8a\n\xect\xfd{D\xb5\x14h\xaa\xd5\x15QMmi\x04r\x95d\xd6S\xa9\xeeJ9\x7f\x07\xa2\"Q0Q\x0d\x13\xa2Fa\xa4sS\xed\x00\x9a*\x95\x9a\xda\xb2@n\x84\x11o'#\x99F\x0f~PS+[uC\xb3\x95Z\xa3\x9b6Hhs\xa0\x8d\xf0>\x8d1'\x8bO\x941\xd8\x9c\x1a\xf1\x8e\xfe\x11O\xa6kn@\xd3\xf4\x8f\x1c\")\xa8\xdc\xf9\x8e\x98+\x8f\xf3\xe1\x1f\xc4\x8f\x9bTfh7\x903\xb9\x08dh\xbd\x17\xecjbU\x87\xa3\xac E\xcc\xb2\x17\x15\xc2\xdf\xbdP1!9< \x8a\xf6\x86\x01\xdb\x9bv\x0c\xf6\xd2\xc8\xe7\xa8\xa7p\"\xef\x7f\xc9\xd1\x14\x1b\xe9u\xab9WK\xa4^\x00\xed=#\x92=cF1\x8c6\x8f\x19x\xe2\xcb\xe2D\xc3Y\xd6\x9b\xc62\xd6(\x96\xb3\xeb\xbe\xa1-\x8e\xf7\x96\x19J\xd3\xba\x00:6n\x05{\xffS\x83\xeb\x9e\xec\xd0\x1d\x02\x0c\x83oJ\xf3\xdc\xfd2L\xc72VYN\x90Od\xd2\xd2\xb8Lq\x8e\x020\xcd\x04\xf0$H\xaa\xa7\xb9\xafI\xcc[:M\x8ei\xbf\xfc\x13\xf8^\xff\"2V\x90\x12i\xe5\xcd^\xe4\x1f\x83)\x01 \xe9\x02\x06}\x01\xa7A\xaa\xd9\xaf\x13S'\xc0W5\x19e\xf5z/\x1fe\xfa\x84\x89s\xd4\xed\xed\xdb\xe4\x17\xfe\x1c[\x94\xa8SZ\x9b\xec\xcf\x1e\x0d*\x90\xa6Y\xd4\x17<\x9dz\xce\xd3\xa9\xe3L\xdd4\xd5-\x87\xc4\x88\xcc\xe3H\xca\n\xb1\xce\x80\xf4\xa3|^\xb9\xb4\x1c\xe6\x9c\xf4\x81\xc4\xa1\x17\xb7\x85\x0f\x86G\x87\x19\xc4\xca7F\x0e\xf7\x0e\x86G\x0f\xb2z}x\xe0\xee\x12NJ\xce\xe7h\x9b\x84\xdc\x9ew\xc8\xb7\xdeJ\xa5\xb5\xf7\xf0~\x14,\xb8\xa3/'\xc6\xb6U \x9bD|\xb27\xb9;\x18w\xd4\xe1\x97g0:j4\x11^\xb5\xd9\x96\x0ev$\x19\xcf\x1d\x982N\x83\xe6\x1bqwX1\xa1\x8c\x9e\xc9\x85p\x11\xb4\xdf\xd7\xbc\xeaxV\xdd\x8a]\xfa\x03\xb29l\xac&\xd9\x84\xce\x94.\x12e\x14\xa1\xa5\xa2\xfd\xff\x12\x00\xdf\x9d\x0b&\xc0\xdbY\\\xec\xa8\xba\x98~\xcaw\xfa\xbb\x1aG\x95*.\xd8n\xff\xbf\x84~\x847vCZ\xc1\x00\x8b\x82\x1f\xc2wU4P\x19\x0dtZ U\x95l\x00\x92\x12T\xdb\xabX\x18\x8bb\xb0\x03\xabU\xbd5\xd6\xde_Eb\xf1\x13\xc2\x9cw\xb1\x15\x9a\x94\xdf\xa76O\xf6z}\xe8~b6(\x96\xfa83R\xba(1D0\x068p\xf9\xb5\x83\x03\x9bSL\x8a\xd4.@\xc0\x99f\xfa\x8e\xed\x02\"\xb5~b\x15 :\xad\x02\x84\xb7\n\x10\xb1U\x80\xf99\x16\xfe\xfdF4\x8d\x02\xdc\x9b\xf8h\xddl\xc8\xaf\xc5\x16\xdb(\xde4&\x86\x00?&\xdd$Kni\xe9M\xce\x18\x04\x13s\xfao\x11#\x1b9\x15\\\x9b\xac\xc0J\xd1\x93\xd3;\xa4TP\xd5\xca\xabZu\xdd\xad\xdeJ\xa2xK\x12%\xb7\x89\xa8\x9a-\x059\x84\x95GA\xbf\xaa\xddo\xfb\xf6\xde\xeb\xb8\xbdw\xdc\xed\xe5\xd6\xbb=\xe4N\xf4\xda\x06 ,\x90\xb1B\x06\xd5WSF\xb3\xc4Y\xc6\xbb\n\x0d\x1a\xf2\x93\xe5)67v+\xedZ\x9ae\x9d\xc2+\xc0\xb4B\xf76\xc5\xd3f+\x05\xdc\x16\xd7k$L\x92\xf5\x93\xe2\x94\xf6\xfb\x86#\xda*)394\x83\x14\xcc>\x7fYd\xb5\xfc\x82\xc8j\xd9\x14Y-\xbbDVK<\x01\x17\x17zr\xaa\x99g\xaa \x93\x97 Q\xbb4\x97F\x93\\\x11@lQ|E\xa5\x86\x05\x9f\xa3\xa9\xbdK\xf3\x89\x86\x8eE\x10\xd2 \xf4\x95 \xedl\x0f\xe1\x95\xbb\x89Mq\x13\xdc\xbaYCx,\xa0{\x1d\x90^\xafWY\xd6\x12Y\xea\xf2\x8e\x15\x08\xab\xb6\xc2\x1d\xdfd\xd9\xf4\xa48\xedQ\xba:)N\xdbK\xa8K\x9d\xab\xaf\x06\x95\x03\x17Q\x1eL\x10\xc0e5\xbes\xa1!\x1d!Z\xd1\xd5d\x95\nC\xc9\x94N'\xd3F\x99\x85\x92 \x85\xbd\x82D\x8c\xe9\xd2\xacpCv\xba\x9c\xb4\xa4L\xab,s\xa2\xd1P\x06\xc3O\xdb\xea\xf7wW_%&\xfd\n\x9c\xebD1\xe4\xa7\x93\x88E\x97M\xb1(Q\xeb\xf5\x94R\xbar0\xc6y\xcb\xabu\xe5O\x0c\xc0\x00\x17\xa3\x87R\xfaf\xb2\n\xf1k:\xb0y\x85\xf1F\xb4@iQ\x8f\xd8\xac\x8bK\xaa\xc6\x8dK\xc7\xb2)8\xdc\x90\xdf\xba\xa8\xbf\xe8P\xa1\x19\x8e@u9\xbc\xfd\xc6\x8aO\xaf\x8b\xe5\xc4\xfe\xcd_\x17\xcb\xe0\x1d\xc0\xbdq\x06\x12\xb4\xe0\xe8\xde\x082_\xd7\xc5\x05\xdd'b\xb0,n\xca\xaa\x98\xd1[\xeb\xfegC\xb0;C\x0e \xd7^\x93\x0f\x99S\xcf\x8b\xe9'\x1a\x9d\xfa\x7fi<\xfe\x0b.\x1e\xbf\x82\xdd\xadTh\x08\xe1\xc1\"\xc3\xd0\xe2\x8eQ\xd8\xce\x0c\xf7\xba\xd5\xabd\x9c\xe4{\x0d\xe4\xdcY\xcf\xba\xb1\x86)Ec\xb4\x13\xb0##\x12U6\xce\x1dO\xb7_\xb29\x1b\xa4,%\x00\xfe>\xda0\xa4\x07\xc3\xd9\x10\xac\xd6\x01\xc9\xbeH\x97\xb0\xf12\xf8\x1bFo\xaek$\xb0\xfe\xe7\xe5*\x8er\x98mn\xb7\xff\x9e\xcb$\xdb\x14\x95\xdcMY\x96\xaa)\x1e`\xe3\x86@\xc0m\xf7\x08\xdc&\xf1`\xfb\xacA\x90\x0eX\xb3ax\xa0X\xed8\xc7\x89\x8c\x9fP\x7f\xc6\xd5\xb2,n\xfa\xa4/*\xc1\xfa\xa4\xcf\x17\xcbJ\xd6\x85\xa8\xfb8\x97\x03\xfb\x9a\x9a\xb7F\xf1\x93vo\xa53\x0d\x05\x1et<\xae,u\xa9\xb2\xacjr\xb0\xbeg<\xa9\\7\xd6\x11\xc5|\xed\xfb\xbef\xd105\xb7\xe2\xe4\x1dA8\x12\x0d(\xe8bi=\xe9\xf7\xf3\xc6\xc8\xbc\xb0\x04\xed\xed\x07q\xc9\x9e\x17\x9dxK\xe0\x06~\xac\xd7\xc2&.\x11\xff\xbeh\xa5+\x89\xe9?\x10\xad\xb0\x7f_\xb4\xe2\x91l\xa6\xbc\xb1\xf7u\xd5\xc9\xd5]W\x83J<\xad\x16\x0b^\xbf\xe0\xe7L\xfe\"\x16\x9a\xa2\x02\xe7\xb2\xe5\x1d:\xaf4\xfb\x12\x85P\xfe2\x8frp\xd7\x11\xa9y\x8c\x942\x867q\x8eR\xec9\x17{\xd0\xb9cIR\x01N@\xf60\xd4\x9bD\x9a\x14\xd5$8\xc6b\x9b\xb3\xf6 \x93\x18\x7fS\xa2\xda\x07\xd0\x92\xd4\xa4\xe2\xa8P4\xab?K$5 \xdc\x08\x9b\x87\xc0\xa5X\x02\x16j\x93\x10Q>G\xa5BuW\x9c\x83&\x03\x95\xc6V\x88\x80\xcd\xac\xdf\x7f\xd3\xec\xc0\xb2\xe9-%?\xebl\xaa1\x03 \xe2\xd1P\xef\xe70\xce\xf8\x088\xc8\xaf\x0c\x92Dh3\x07f\xb7\x15\xb8\x89\xc5\x9aH\xd6\xa1Ldm\x05(k)@Y\x97\n\xb3\xe9\xbcf\x0b\x13\xff=[\xe60\xdf<5\x95\x9ca\x12\x97*\xca\x04q\x9f\xfad\xa2\xfb\xe1\xe7\x81\xfb\x19\xbeZ\x98\xa9\xe7q\x96f\x97\xe5\xd4b\xa5M\xd6|\xa9!\xe9\x9d\xa2\xe2$\xc3\x0d\xb2?\xb4\xf9\xa0\x05\xad\xbdK@r\x84\x8aV\x82]I{\xa3x\x91\xf6\xdd\xf1X\xd3\x86\xf3\xbc \x8d\x95\x8a\x06\x9b\x03\x18a\xbc\x19\x1dF\xbc\xd4\x0dC5\xe9\xf7\xb1K,\x9c\xd1{\xa3\x07x\xcc\xf2\xdaz#\xc1Q\xf4O\xe8\xd6\xa5B\xee\x01ClI\xef\xcf\xb1\xc36\x11\x01\x83\xe6\xbf\x86\x88\x8d\xef\x07z}\x18~\x8e\x1e\xba\xdff {nV\xd8Q\xdf\x9d:N\x1a\xe6\xdc\x0d\x0e\xfc\xe1\x11\xd5\xdbN\xcb7\x90\x0564n\xc2e6X\xa8\x1d\xb6\xd9\xc8\xc9\x85\xde=`Xs\xe3~\x05l\xbah8\x88\x00\xb2\x91\x8ajt\x94F\xde\x0f\xf7\xfb\n3ZM\xa2\x1by\x1e\xa7^\xe5B\xd5\x85\x982RO\x1e6\x0c\x8b\xa2\xac\xea\xba\x1a\x93\x96\x07\x85\x1d\x9d\x8b\x8e2\xd4h\x02p1\xb4\x82\x9b\x9f\x08\x9c\xeb*8QH0\xa7,\x04\xee\xc90\xc3\xef\xab\n\xb4\xe8\x80\x9a\xd8\x9b\x89\xd4N\xd4\x0cn\x1d\x91\xd89\xd5d\xc8\x94\xe8\x9b\xd3\x16\x0cJ<\x0cc\x9f\xc2\xc8\xb8\xa4\xf3}X\x82\x9b\xff\xf4\x12t\x01U4\xa0\xf3\x95S\xbb\xf9\xc2\xd4:\xdf\x87\xa9]5YH\x0210\x08\x84f3\xfb\xa3\x07iX+G\xc1\x8c\xb3\xea8\xd9\xc4\xbce47\x8c\x8c\xf0)\x8f\x08\x15O\x08U R;\xacA\xa6\x84\x8d~\xd5E\xa6v\xd8\x86S\xe7f\xbd\xe1\xb47\xdcX\xa6\xb7\nZ0s\xa5\xbc5\xe3\x05\x91\x0de\xa4\xa4\x15\x99\xd2r<\xd6G\xf9L!E\xa6^imMP\xb2\xec\x00\x1e`\xa7\xa7\xdb{J\xa6\xae\x967i\x9aRJ\xcbN\xcf\xd8i'\xc1\x9bz\x827\x0d\x8cZh`\xea+l\xa6M\"\xe7\xde\xc0(\xdcR\xca RT\xe8\x89EP\xd6\x1bT\x85\x0d\xaa\xe2=\x1e\xdb\xee\x978W\x8d\x02\x8d\x89qI\xd4,\xf6\x8c\xf4A\x80o\x94\xd0\xcf3\xb8\xf1X:\x16\xd1\xf9\xfb\xbbyU\xa4r\x1f\x07\x0e\xd8\xf7\x05\x0ch\xe5W\xc9\xf7\xf25\x8d\xe8M\xb9ECYu\xaeN\xe5W\xa7\xea\xd0P\xeai\x83\xb0\xc2\x1eS\xe6@A\x1cB\x10U\xcd\xe5r\xd5``m\xc6\xfa\xfc\xeb\xc5sm\xd6\xd7i\x83#\xde%\x92&\x86\x18\xbeb\":\xa42\x96\xe1\xb5\\\xa9f\x81\x8d\x88\x08\xf8]Hs\x1f8a\xe2\x7f\xd1$\xf7\x94\x8dq\x8a\xb0\xd1\xc1G\xec\xad\x84\x98\xa7\x9d\xc2\x19\xc7B\xfa\xa1\x82\xb7]@0\xe3\xd1\x96\xde\xbf\xec}\xd1\xcba\x1b\xb2\x189f\xb1\xdb\x1bo\x03\xa5#\x0f\xb4m\x8d[\x07\\\xeb\x00b\x15\xbc\xc6\x0e\xb3/\x8b\x19\xaf\xac\xf5\xd2\xcd\xd2[\xb4\xc8\x81(\x16,\xcbj\xab\xe8|\xcb\x0cz\xd6\xf4\xad\xd5\xb4Vt8\xae\x1e\xf9\\\xe4\xd5.\xdd3 W\x94\x9fT\xa7\xa4\xd4\x7fvG-c~A\xca/\x19\xf3_\xb8Z\xb1\xceIMnl\xf15\x12D\x91R\xf3\x0f\xce\xce%U]\x0b3\xe8n\xad\xf1\xb4\xfd\xd2\x9b\x9c\xeb#:\xf6\xa9\x18D.\x15\xe4\x8ew\x9d\x16\xea<\xb1P\x17\xa9\xcd9\x07\x0bu\xd6\xa3\xc9\xa7^e\x99\x9a\xa4w|\xdf\xb6Y\xcf\xbb*y7\xa2\x93\xd3\xbc\xdf\xd7}\xe2\xcd&\xc1\xd9\xc3\xfc\xeb\xdc5\xf7\x82\xb5\x0e\xc8\x96\xean\xd1BC~\xd5%\x96nl\x06\xe7\xcc\n*\x12\xfb\x9b\xf6F\xe4\xbaF\xa2)\xa6v\x02\xa6mR/\xcfI5\x05^\xaf\x95\xb1\x05[*\x17KL\x83\xcc\xa6\xaa\xb8\x86\x9b\xde\xb4HL\x82Zo\x1e$}\xb6\xcd}\xe0\x03\xdd>\xe9\x1e\x05\xbe[\xcau\x9d\xa8M\xba \x1e\x84Mi\xeer\x1f>%0\xdd\x8e\xa7\x07\x99\x1d\x8b\xedV\xd9\xf5\x8e\x02g\xfby%\x9f\x17\xd3\xcb\xc88\xa7v\x04\xf3e\x19g]!5\x1e\x8b\xc1e\xa1!\xb1^#aTO\xba\x89\xfa\x92 $\x89\x84\xa4\"\x11\xc5\xffl)~\xba&,H\xa6M\"\xdc\x046Q\x18\xb1 a\x8c\xc4\x1bu\x87!\x9dG\xda\xf0\x05\xdc\x1e?)\xfa\xba\xa8/\x07S\xc6Kr\xa6\x1ay\x03\x9e\xd9\x0c\xe9\xe1\xb4s\xe4i\xcb\xe8\xbe!\"G\x0f}\xc9\xd0\x96X\x91\xf9\xd1\xa1{\xf3\xd0\xbe\xf0J\x85\xbd\xa69\xe1p\xb3\xd1\xd7\xcc\xba\x8c\xd6\x04r\xb5\xb9p \xf7\x87\x8f~T\x96\xa0'\x88\xe1I\x11\xd8b\x86s\x001Z\x1a\xd5k\xea\x19\xf1K\x1dnY\x94>WY\x86\xde\xa85\xad\xc9\x81\xf54Y\xea\xaf\x1e+\x9f\x9c\x17\xd2 \x8e@\x19\xa5\xe1\xf5\xd0\xc0\x0b0\xc1 \xd7L\xe3N\x8e\xa6\xa5\xf1U\xd5(p\xac\x9b\xd5\xbb\x83\xfcZ!\x8cqn1\xe7X\xe1\xf5\xfa\xe8\xa1\xb9&\x1e\x1d\x99\x88\xd8n\xc4\x1f\xd5\xe4c\xa4(g\xa78\xffh\xb4\xe4\x0ccb\x9b\xc7zGF J\xed\x1c\xef\x0eE\x05\x9cS\xa4\x03\x89\xc2Q\xb98B\xf6\\\x10\xfe6\x1aG<\xd3\xe0\x11\x9e_eI \x1a\xa7\x88z\xb5\xadI\x0b\xfc}'\x93\x99D\xa2\x15c\x86\x11\xd4\xe0eKK\xe2\x0d\x0e\xe0\xb2\xa4/\xf4j\xa5@\x12\xe92CS6Xrq\xe1\x9e9e\x03\xf6y\xc9\x8d\xad\xcd\x07\xbe`\x8a(\xca\x92\xdd5\x1e>R\x8d\xe4\xd0\xca%\x87&+\xcaOJ0\xd6\xba\xa7W}\xe5\xc9\xc24\x93\xd8\xb8(M\xb3\n\xe3\xdb\x15\xad\xc9\x9b\x1aM\x9d\x1d\xcc\xcbz\xac\xbf\xa4\xa3\xe1#\xba\x9c\xacv\xf7\xee\x0f\xf3C\xf3\xf3>\xdb\xcf\xef\x8d\xecEi\xf5\x88\xd6`\x95\x07\xc3\xf4 \xad\xa7x\xac \x1f5\xc8\xb3\x9fi45\x18:y\x0c\xe4\xa0\xa6/k@.\x89\xe3\xb5\xecQ\xfa\xa1\xca\xb2\xb3\n PiF\xe0\xf2r\\[\xf6N\xf2J\xf2\xfa\x86\x0eq3\xd4\x95\xd9d\x1dUc\xa3\xcf\xb8\xab\xcd\xe8>l $\xe8,9k\xbds\xc1\x9bj\x82\xdeT\xf4D\x9c\x92g\x15\xfdT\xa1\xc7\x15\xf9\xad\xc28\x7fS\x19C\"\x88\xd8\xf2\xa1\xc2\xb9\xa0\xa3\x03h\xec\xaf\n\x1d\x1d\x91F{8\xff\xabJ\x02\xeb\xb5\x88\x92\xbbl\x85X)GG\x9e\xabr\xccVzM\xf3&\xd0G\x8e6\x99\x176\x08\xcb\x83.#\x02O\xbd\x8e\x1e$\x02\x10\xd7\xb6\x7fm)c\xe8c\xb8EX\xbb\x7f\xff\xa1\x9e\xe0f\xa3\x99\x91Uc\xda]\x0bW\xb7V8\xe2YV\xee\x0c3g\xa5()\x1c\x97\xe1\x18l&\xc2\xdf{\x80\x83\xfd|\xdc\xacF\xfew%\x02\xcdm\\\xde\x0b\xd8`\x88\xa9\xd9\xa4-\\u'\xa1hU6\xba\x9bc5>Vk::\xb4\xf7\xc0\xab\x12\x19\x9b\xc3\xe7\xca\xdc\xe8\x1e+#\xaf34\xf4\xc2\x04\x97\xc4\xe31\xe8N>\xeb\xdap\xf3 V67\xd6\xca\x86\xcf\xd1\x8f\xfax;S\xde\xd2\x86kf\xa8r\xf4\xeb\x9d\x9aH:\xcc\xd1\xf3\x98'\x92\xf4\xa99\xab\xd1\x07\x95\xbdQ\x18C\x8f\xc3 \xd8\x1b\x1asd>G{\xd4\xd8\xac\x1d\x1bG\x14\x16q\xfe,\xe6\xfc\x9fH\xd42P\x01n\x00 \xfa\xaa\xd6\x14\x1d\xa2\x16\x9d[\xaa\x8e\xc9\x08v\xb6Y\xa1\x9a\xfe\xa9\x88\x1d\x03Y\xdas\x05\x88\xa3\xe6Z0\xf1\x9a\x056\x98s\xc1\xd5%\x9b\xfdV\xc9Oz\x15\xcd\xa4\xe3,\xae\xbe\xca+\xeb\x15*\x1b\xa2\x8b&R\x1e\xdcww\x94\xbd\xfcm\x99zH\x1b\xab\x057$t\xb8w4:\xb8\x7f8\xcc\x046\xbc\xfah\xf8\x08I\xfaZin\xf0\x1e\x0c\x16;gB\xc0\x92\xa1\xd5\xa1h\x0cA\xa8j\x91s\x9c l\xc9Q\xa9\xb9\x94\x98\xb4\xaf[\xb53\x1f\xeflP\x1bC}\x93\x17\x8d\xfe-\xd1\xdb\x06Ur\xb7\xe5MkJ\x07\xc9\x94\x1c\x0bef\x14I\xa3\xf4\xd9\xc3\xae\x98\xa8\xcd\x99R\xd1{\xa3\xf1\xf0\x91\x18;\x81\x819G\x04\x1es}\x8e(\xc8Mq\xa2N\xf1w\x15\x04\x9fS\x98\x88\x8c\xfe\x8b\x1b}qE4\xa4\x04E\xa3\xbd\xe1wH\x007zO\xe0\xc9ho\x98\x1f<\x1c~'&\x07\x0f\x87\xf9h\x08?\xf5\x9f|t\xb4\x07\xbf\x8f\xf6\x86\xf9>\xdb\xffNL\xf6\xd9~~\xb0\x0f\xa5\xfaO>::\x1c\xfe\xcfO\n\x89o\xf5/\xac\xdb\xd3|\xc1\x17!#\xb6B\xe6~\xb2\xfe[h\xd8\xde\x91\xa6`v\xa3GH\xda\xa0T\x9a\xbe7H\\\xe3\xf4_F\xa7\x7f\x9d\xd1\x7f=SD\xffy\x03Z\xd1d\xdd\xd7@\x08#\xd4\xc8\xe8\xbf \xd5j\xf3\xe4\x1f\x0f\x1f\xd5c\xa7G6\x0bTc\"\xf5\x02\x891;\x11\xa7p\xa9\xc8\xe8\xbfd\xacF\xf7w\x81\xbb)\xa7%\x92\x9e\x8f\xd4\xd5\xd3C={\xecbB\xd4\xf4\xb1\"\xc2l\xf7\xdad\xb12\xa4\x06\xae\xb7\xa6\xd8\xec\x10\xcd\xafZ\xe3\xe9\xa4|hz\x04a\x9e5l\xb0\xd7\xe3\x7f\x9f\x14\xd5\x81\x14\xf9\xb1YR$\xec\x94E\x8b\x14\xd5 )\x12\x91\xfb\xd3?%E5\x01\xf4J\x9aK0bn1\xc2\xac\x9f;5LZ@\xdb+\xaaCv@}\xe4\xa0ce\xb28\x05\xee;Z\xdaK\xdb`Q\xa1\xf7\x8a|\xa30\xf9\x06\x90\xe9\x83\xfe?R\x0b\xeb[\xe47\x8a\xbe\xf7\xa7\x08\xe1\xfa\x8bX\xd7\xe7\xf9\xeed\xda\xc2)\xc6\xe3y\x0e=K\x9e\xecE\xc3bZ>\xae\xb9O\xef\x8d\xc8/\x12b\x02\xf9\x83\x0b\x1bm\xed;\xd5`\xd6\x1d \x92T\xf8\xc0a\x83\xd8g\xce\xd43F\x127K\xcb\xd8?\x0d\xe9J\x94\xf3\xa5K\xe8\xfc\x16\xb7\xb8\x94>\xfc\xc9\xd3\xe8K;\x07\xf0]bu\xe6x\xb0\xa3\xdc\xb8\xa8%/\x87\xf9\x1fU\xa3\x89H,\xa5\x17\"V(?W\x94\x91w\n\x02%\xfa\xa5\x11\xe0Y\xfaX\xd1o\x14\xfd\xa0\xb1*\x11jA\xc9+\x80C\xa5H\xe9\x00B\xce\x07\x8a\xd5hJJ\x8cs\x9f\xd5\x01\x95\xf4|p\xa1\xcb\xe1\x18\xed\xacMz\xe0\xe3\x03\x01\xa2J\x80\x9b2\xf7\xaek\xfa!\xe6\x888\x99\x12\x85\xc7S#\x95\xbe&\xd7x\xe3\x01y0<:$3\x97\xc4\xd1OoF\x9dV\xd5\x19\xac\x19\xcc\x9a\xe1qI\x0d\xbb\x82~G&\x9a\x02^\xaf\xfb\x8fw@V\xbc\xe3\xad\xc9\xfax\xb7\xbf\xe3\xb9\xab\x1dhd\xc7{\xa1\x93\x9d\xf3U\xbd#\xaa\x1d\x87t;\xbf\xbc\xdc\xb9.\xd4\x8eZ\xb2)\x9fs6\x1b\xfc\x97\xf8/\xf1x6\xdb)v\x1e\x1dC3\x8a\xf9\xdat0\x18|\x17\xfa\xda\xb9\xe4\x17\x97L\xeep\xb1S_\xb2\x9dZ2\xb6SW;KY]\xf1\x19\xdb)v\xca\xaa\xd0\xf4q\x87\x8b\x19\x9f\x16u%w*\xb9\xb3,\x8b)\xbb\xac\xca\x19\x93\xba\xb6\xb5\x16\x1d\xf4\xf1\xe6~/\xc4\x86\xd9\xc3z\xa5\x14*\x89\xf2\x1b\xd4\x1e\x86\xb1\x8d\xf4~\xceiIR\xa8\x82\x14\xd5\xc1Vs\x03%G3\xc2\x15\x1a\x12\x0e^)\x89\xd5\xc3H\xb7\x00\xab\xf7Y\xef\xf8\x9b%#\x9f\xe8,\xb5\xd9\xd5\x1b\xe2\xf0 \xb3\xddh\xbc\xe8\xa0\x85\x9f\xb7\xfa\x00yEB\xb7k\xe7\xa7n\xd7\x1c\xe7m\xb3^\xf7~\x83\xb8\x91\xe8\x13\xd6\xd7\xaf\xaf\x99l\xa1\xf4\x8c\xe3\xc9n\xee@\xad\xcdY\x89DdzX\x9bC\x19\x18\x19\x11DS\xfa\xfc \x07S\xd0\xf4\x9b\xf3(2l)}\x96\xe6pmwlet\x91\x7fW\xb8s\x8fM\xde\x15y$\x04=\xef\xe4\x13\x0f\xad\xc4\xa1[\xbaP\xaf\xd7\x96\x87\xb3b\x85\xeb\xaf\x10+h\xe62\x96-\xc8\x88;k\x84\x068\x1c\x05ec\"lx\xaa\"\x85\x99\x9e\xba7u\x80v\xc6\xf8S\x89\xde\xc5\xac\xe6\xe7v\xa5,\xeb\xbd\xd5\x0c[\xab\xee\xa72h\xe0~Qq6N\xc24\xbf;n\xdac\xa6V\x97\x0e\xc0\xf5\xe4\x0c\x84\xda\xef\x80IW[\xbc\x96\xce\xa2\xce\x98;\x11E\x1c\x1bz\xcc\x8dI\xac\xe56\xe0\xa0\x18\x1e<\x0c\x89xn\x13K\x08\xa6\xc0\x15\xe1\x1b\x15d\xf6\xa0m\xd5\x98\x04'\x0d\xd8rC\xb8i{\x05\xda\xff\xb2m7\x9c\xdf![\xee7\n\x9b\x18Q\x07\x99p'V`\xec\x86\xa4\xf2\x16\xde\x8eu\x1bc\xb9\xa6\x95\xdd1U$\xed\x8e\xadE\xc6\xb1\x18\x9cJ\x17\x1a\x86\x19M\x01L:JX\xec\xf08\xe6\xaf\xe0\x12\x90f\xe2\x88\x9ep\xd0\xc8&\x01\x8f\\?ii\xfc\x18\x07ai4\xc9\xb6E\"\xc1d\xf4\xa8N\x9cq\x1a}L\xb6\xf6\x907&\xd1\xe8\x04\x87\x807a\xddk0\xae\xf5\xc2B\xc7!\xec\x0d\x0f\x1e\x90\x08\x01\x02L\x1b\x90\xea2;\x8e\xf8\xd8\x86W\x94\x0fS\xdeB\xb2\x1a\x8f\xf5\xff\x94\xa5\x14O_\xd8\xa30d\xf7\xa3\xfd\xf66\xda\x02\xa0(\xb2->\x01I\xf6qS\x0b\xdd\xbc\xe0\x1e[\xc25\xabn\xdf\xe9\xabN\xd2\xed\xef\xca\xdd\xf8\xbf$\xbf\x154\xbd\x86\xc66\xb1\xcd\xb0`_ua%\xe0\x92\xe09\xde\x86\xd2\xff\x81\xee\xb7C\xd5\xe0$\xbcv\xab\x88t\xabHP\xcd\xc4j\x98\xec_\xd58-\xa1UK\xd6C\x87\xa9\xa8\x07\x9e\x13!\x0b|\xb40\xa9\xfb\xdf\xb3\".e\xa2.\xc4E\x19\xd5\xach(]0Q\xabqds\x18\xcb\xf7\xcaNi\x12\x1f\xbb\xcb\x8b\x91&qLVt\xf4\xe8\xd1t\\\x9dLO\xe9\x90(\xfd\xe7\xde\x88\x94\xf6/\xcf\xe8\xbfV\x11\xfe}T\x96\"\x1cd\x12g\xd9GsR3\xf3s\xc6JV3\xc4\"\xdd\xe4;E\xe3\xd3CoL\xbb?&\xee\xa8\x8d\xb7%\x12[\xf6\xa5 2M\x05\x05y\xb5\xf3F\xa1#2F\xd6]\xd1cE\xf4Q\xba\xbf\xd7\xba\x81>\x93\xf4\xf7\x9a\xcc$Rt)\x9d\x98\xd7\x1a!\xf1J@\xf8\xa2>\x17;\n\x97\xf4V\xe9\xa7\\\x0d\xd2\xd7\x84\x89Y\\\xf8\\\xcc6F\xe2\xce\xc0\xc7B\xf3\xd6\xaa\x11I1\xcbJo4\xc4\xd9\xf5z}\xcd\xc5\xac\xba&hEKpWu\x8d\xe9\x8a\xf13\xb2\x1e\x8bt5\x90\x85\xb8`O\xc1\x15\xe3\xb6\xa4\xabA!\xa6\x97\x954&\xaf\xfe\xf1\xed|\xaeXM\xa6te|\xd7\xe0\xf5\xca=\x99\xb7 .(\xbd\xed&\x99\xfa\x9f\x817*\xa3;\xf8\x0esWJ2\xd3\xb81\xd7\xff]\xd2!Y\xd0!\xb9\xa0\x8a\xdc\x98\xca\xb5\xb7\xdbu\xb8y5\xbe0i\x93\x87\xc6a[\x1f{\x17\xbe\xb7\xf5\x1a\xcd\xe8r\x97c\xa2kMM\xadUG\xad9]\xee\xae0\xd1\x97\xd5P\x9eeh\xb9k\x9f\xc1\x00\xcaZ\xc3\x85\xc8|W\xf4\"\x0e\x1c=\xc67\xf4\x82\\\xd0\xabqd^|\xa1\xefm\xd64\x16\xc4 7\x14\x04\x03\xbb\xbb\x97\xd4\x04\x1e\x9f\xd1%&7&\x08\xf8\xee\xee\x82\x9a0\x0ds]\x1aw\xa4q\xf6\xd8\xd1g#\x15\xba\xa1\xe8\x82\xde\xe0\xc82vsA\xaf6%\x05\x05\xedl\xbd\x86\xbfs\x1b\xfd\xcd \xdb\x0c\xb0knU\xaev\x15J\x0dB[a\x08\x15\x86i\x85W\x92\xde\xc2\x02\xb3\xd9\xf3\x92-rE}\xa7&\xe8\xf3\xa0\x98\xcdL\x03\xd7\xba\x9a\x01\x012# \xbeC\x9c\xa3k\xdd\xfc\xf3\x8ew$iC\xff#\xd7\xf4\xc4\x04\xa1\xfaL\xcf\xc7z\xf5\xc2!2\xc6\xfa\xd8\xf8\x1c\x1d\x84\xd7\xc60\xc5\x07\x89\xf9LJ6\xaf\xf3\xcf\x03\x13q\xe7\x15\x9b\xd7\xa4\xae\x96\xbe\xe0C\xb5\xdc\x18\xd1B\x07\x1d<7 \xd3\xbb\xc7z\xbf\x93s:\x1c\x9f?\xbav\xe6\xe6\xe7\xbb\xbbX\xa3\xfc\xc9\xf9)v\xd1\x0c\xa2\xae\xe8\xe7\x81\xee^\x83\"y\xf7\xa1Z\xd2\xcf\x83\xbaZn\xf4Q\xd4{&\xc9+I\x9fIo\xed\xe3hn\xeb\x988\xef8&\xce\x92cb\xff0;\xcb\xb2\x95B\xe7\xa4I\xe8\xe0\xa08\xc3\xb7\xd7\x16\x83\x81\xc0\xbd\xd5_\xa7\xe1Q\xde\x9av\x8fi|\xd28\xbd\xd4\x13\x95\xf8\x14]\xd3\xe3\x86n\xf9\x9a\x1eo:`\xf9v\xf2\x16]\xe3\xfc\xad\x9f\xdc\xf5\xe6\xff\x18\xe1t\xc6\xac/\xad\x00\xa82\x1cC\x04h=\xfb\x1f\x14\xf6v\xad\x8c|\xafhmXY\x0dwX\x87\x08\xf0u\xda'y\xd2\x0e.\xfc0\xf3\x87S\x86\x90^$\x9cF\x00=\x8b-\xa2A\x9d\xf4D\x19=\xce\xd0\x84\x87N/Vz\x9fZ\xfb[kj2\xd1W\x8c?\xd4\xe4G\xb5\xbb\x9b#gR\xc9p\xfe\xa3\xb9\xff\xc5.\xab_\xe9M\xfe\xbe\xaa\xba]\xc9\xf5\x0bt^\x11\xe1R\xc6\x1d\x1e\x18 \xa9\xf0Zb+\x0f\x8a\xfc\xcc\xf9\x1cE\x8a\xe1\xbf\xdcB\x1a\x9bbF\x7fU\xde\xb0\xd8G4\xf2\xf6\x99\xeb\xf5\xaf.\x86v\xb8l?o\xca\xd1\xfc&`)\xe3S\x95^\x9a$\xcb\xf5\x1a\x99f\xdd\x82\xe0\xc9\x8f\x9a\x8d\"\xb2\x84\xac\x82%\xed\x0dq\x0e\n \x83\xddY\x06\xc6\xe3O4\xcc\xdb5\x9d\xc1\x95\xdfu\x10=\xfd\xfea\xa6I\xe9\xd4~\x08\x82\xb2\xfb\xa3\xbd\xac\xc6\xeb\xf5\x0fj\xbdF?@\xe0\xa9\xbf*t\xf4\x80\xc4\xb1(\xed\xc4\xdf\xb90\x9d\x1bM\xf3\xdaH\xeda\xa0+\xea\xedq\xa4\xaf\x08\xdf+7\xfd\xa3\x07\x8f\xbeW\x93\xa3\x07\xf9\xf7>\x84\xaa\xb1\xcb~R!F\xde\x97\xceE\xa87\nM=\xb6\xb2\x8b\x9flX\xb7Z\xef\xa7\x7f<\xd8\xd0\xde7\xb6\xbd\x9f\xffC\xed\xbd\xb7S\xb5+\xf9\xbb\xc2n\x0e6\xcc\xd4\xef@\xf2\x9c\x1d\xfav1\xcb\xfe\xc8\xaf\x9a\x15-\xef\xefY\xb1\xcb\xcfj\x0c6\xebQ\xb6\xba\xe1X>\x12\x8e\xc2K\xefPTQq\"O \xd7\x7fvG\xa7D\xd1*\x0e`P5=\xb7\xbaR\x14\xc1\xdeR\xdd\xb7\x8b\xa6_\xa7\xa7s\x1c\xc2\x1a\x18\xd3\x81\x9f\x945\xb4\xef\x1cfc\x88c\x17\xcb\xb5\xa4\x95\x8b@\x14\x86\xb9\xe5\x92\xf3\x15\xc3(#\xdb\x90H\xf4\xe06e9\xc6L\xf3)\x81<\x96\x1d\xd4\xb1\xf4\xc41\xcd\xdeG\xca\x16],\xa9\xa7\x0f\xc7\x8a\xd6`\x13Bz\x915\xc0\xd3\xd2\xd9\x99+\xc8WOA\xf5SS\x01\xd2hLF\x18\xeb\xc2(f\xb2\xb3-\x1f\x81\xce\x0f,\xcaG\xde.\xa6\x8e\x91\xd0F\xff\xba5\xa1\x9dl\xa2W\xe8\x104\x0f\xfe\x88pR\xbc\xb6e\x87\xfd\xd2F\x0dx\n\x01\x96\x88\x0b\xea\xa0\x89\xe4\xe8\x0b\x01d:0I\xdc\x1d\x83n\xbd\xee\x0c(\xfa\x95Z'\x89\xb1C\xf9BC\x90i@\xc2f\x1e\xc1-Dq$H\x85I\x95\x82Th\x90\n\x0dR\xfcK\xad\x7f\xe8:SH\xd7\x1c\xec0\xffw\xc7\x05\x96C]!\xe5H\x1c\xf7\xd7i\xa8\"\xc3\x93\xb0\xa2\x1f<\xb6\\Y\x0f\xf3\xa0M\xb6s\x91Y&\x9d,\xaf\xf6\xb8\xf3%[FA\x9c~\n=V\xde\xa0\x12\x19\xb7\x04\x13\xc8\x02$\xd0\xde\xe6\xf2\xb1\xd2u\x1e\xab,\xbb?\x1c~\x07\x16\x84\xaf\xd5\xc4\xdaj\xe5\xcf\xd4\x9a\n\x8f\x92a\xfc/\x13]Y\xd3\xe3\xca\xa8\xeeD4z\xe3[2\xd4\x88n}cj\xef\x1b3\xa9\xe9(7\xba\x94Z?$\xee0y\xdb\x19\x86B[/\xea0\x87\x7f\xd5%6n*\x07\xa3\xa3\x83\xfd\xe1\x01\x86\xd0\xa0]\x9b\xad\x0e\x9b\xad\xf6\xf6\xb0I\xae\xf17vi\x88\xc4\xb7\x10;\xb0..(#\xf0\xf3\x13\xbb\xa1\xc2\xfc\xf4\xb1\xe0!\xbc \xc48\x81\x9ff\xa9\xcd\xef@DLC7K\xfb+\x0e:\x06\x04\x07J\xb9\x98\xb1\xcftHl;\xf3\xe8U\x9a\x94\xdc\x94%\xb1T\xa0$5?\x81\xa2\xd8\xe8\"\xa9\x13\xc5G1\xe5\x90<\xc6\xfc\x06\xaa\xe8\x06\x12\xeb]\xe0e\xac\x97\xd1\x05M\xba\x1a b\x0d\xf4L+F\xea\x0e\x0fi\x8c\x98\x00\xfag\x11\xe8\x9d\xc2\x81]\xc7+\x12\xea\xbe*C\xa8\x96\x1e\xea\x81\xaf\xd5RVue\x8d\x14zl\xc0\x95qis\x1b5\xfa\xfau\x03\x7f\x03\xdb\x16):\xa8I\x9c'\xa8\x1e\x17\x84\x80\xa8 \xd38@\x1c\xea&\x0b\xc9\xe2'b\xa8\xa3\x0d\xd4I\"j\x1a\xef\x16\x12\x05\x1f\xa3\x8c$\xd1sp\x8eDs\xdd\x9b\x8d\xba\x85\x12\xadE\x10\xed\xb0:\xa2\xa9\xdf\xc2$Q7\xc6\xbe:D\xb8\\\"6\xff\x85\xad\xe9*5\xc3\xb3\xb5\x02C6\x14\xa8\xad\xac?I\xa0\xba\xd4\xcd\x93\xd4\x8d\xe4\xccDt&\xea\xa8\x93D\x1duW\xa2\x8e:M\xd4\x11%@\x08\xb9\x93\x85\xddw\xcc\xfc\x85\xa4\xcbs\x13\xaf3\x0e\xca\xfa\xc2#a\xc8\xac\xaf(\xb8\xebI\xca\xba8-\x86\x01G!\xf4\xed(:}\x9a\xb9\xd6\x18V\xf4\xbeSY4\x9cR\xde:\xef\x8f\xbfK\xe7\"%\x99\xd0# \xce\x1d\xf7Y\xae\xe8CR\x81\xa9B$F<\xf6\xc5q\xe9s\xdb\x1eb\x1a\xa9G{D\x90\x9a<\\W\x0dT~N\x0c\x8a\xc1\x0f\x83\x08\xdc\xe5!x\x9f6\xb1\x0fM\xe8\x06\xe0\x83\xf7$\xd9\x06\xf0\xdch\xe0i\xda\xc0\x91o \xfe\xeei\xfb\xbbW\x0e\x16\xbf\xc0y\x1e\x81\xe0u\xd2\xe2\xdeAg\x8b\xaf\x93\x16}\x86\xbe9jY\x1dF\xc9,B\xaek\x17\xf1\xd8.\xcc\xbb\\\xd1\xd105\xeay\x9c+z\x94\x16}\xa3\xab5\"\x9e\xfc\xa9\xcb\x0e\xd2\xb2\x0f\xba\xec\x90\xc8D\xcfc^\xbd\xcc\x15\xdd\xdb\xf3\xba\x9f\x86\x16u\x7fh\xad-\xd8\x84\xe5n\xfc\xa4\xdf\xc7\xee\xb2\x85j\x0d\x13\xd5 \x12FL \x05M\xf7=l\"\x0b\xe6\xbf[\xf4\xd8@\xf8\x01aD\xea\xa3\xd4\xe7\x08\x8b\xcch~\xd9\xf2\xd1\xde\xbe\xff*\x1e\xc3+\xbf,I+O<\x83\x14\xb7qHLL\x81m}\xff\xd5\xfc\n&\x7f\xe0\x98\x00\xe6w\xd0$\xfc\xccON-U\x8f\x1b\x8dS\xaa\xdd&f\xefy3\xc2\x89\xcbb\xed\xda\x83\x01\xf2\xc5\xd2L\x12\x14\xbf9\x1b\xa4\x05\x9b\x18\xcc\xbf\xfaQ{~\xc3\x1e\xf1IG\x8e I4\xef\x86;\xf0\xe6\x86\xe6++R\x8a9\x077\xba\xe8\x88n\x99\x8a'\xf5mNn?\x0c\x97\xa0\xdb\xd4r\x8e\x01\x96\x19j\xfb\x0b&\xc5\xc1e\xd0\x94\x07\x059\xfd\xbbFClKS=\xb9~uo\xe4\xde%*x\x9a\xc0!*j\xea\xefih8\xa9\x17[\x02@A\xc3Z \x86\xc4\xab\x98sI\x94\xfe\xf1\xe0m\xcf\xc7\x903\xe4yq\xc1\xa4\x8f\xd4\xfe\xac\xa8\x8b\x06\xa3\xf3[\xb4G\xaelDn\xef#`\xf8VE\x8b\x12\xe9K\x0bD\xa5\xc0\xb7u\xae/q?\xb1(z\x96\x0b%\xab\xb0\xc9\xd09rfL-S\x0b'1*\xa9\x88L\x1a\xcb\xc4\xa4\xb1\xa4e#\x88\x0f\xfb\xecLDko\xb58G\xf3J\x7f\xa8\x99,|\x9b~\xd3\x88p\xfb\xda\x1e\xf8\xaf\x99\xbc`&\xcc\xd5\xd3\xb4\xd5\xcdF7`/G\x89\xc8\xb4\xc4\xe3\xe6\x1cF\x18w\\T\xa76d\xef\xd8\x8cl\na\xd7.*$\xc8\x94\x94\x91\x1d\xa2\xa0\xa5\xf3\x87QU\x83\xc9\xab\xddl'u@\xf5\xbcn\xa5\xa7'\xa8\xa6\x05G\x9c(\x8c\xdb\xb1\xe0\xd9\xc6\xdf5d\xd0\xcfH\xc3\xa4\xd8,\x98>\xee\xb9\xc4DqT\xe9\xeb\xbe*QE\x14\xe1\x98D&}?8\xef!\xc3\xd8:\x13\x1a\x1b\n)6\xc6\xf1\x07\x94 \x8e\x14\x0b\xc6\x1b\xde\xf1\xae\x8a_\xb0\xe8>\xfa{\x900\x84\x0bS34E\x94\xe3)\nMq\x1bI\x1d\xe4\x8d\xde-\xe3\xe87\x1d\xda\xcb\xe0\xa3z\"\xf2X\x88\xf8\xbd\xed\xd2vM\xa0\xc3\xd8'\xfc\xf7\xe6\xa5\xf3\xa7\xc6\xa5\xd9\x8c\xc6\x9b\x8b\xba\x98)\xbc\x12o!\x1f\x8b\xd2w\xd0fY\xbaSmjB\xd0<\x80\xd1\xb5\xa3\xc5\xae\xe9\x1ex\xa0:z\xa7\xaf\xe1\xcfJ\xb4o\x0e!\xf8o\x0f8\xd1\x07\xb9\xf1\xed\xdf\xcf\x87\xc0U;\n\x9c\x9c#\x82T\\_\x86\xd9\xc9O\xf2\x94\xfaZ\xe4\x9d\x84\x00{,\xc4\xefb\x91\x82)\x07\xb7\xc3\xb9O\x98\x9f\xe4\xcb\xb7\xd4\x03\xd5T\x9e\xb0S<8\xbb`\xf5\xafL*^\x89qE+T\x0f\xceL\x1a#\xe7P-\xbeD\xa9&_\xacAOjR\x9d\xe6_\xac\xe7\x04\xb0\x15\xde\x00\x89<\xe3\x960\xbc\xaf\xaa\x9aF\xac\xf5\xcf\xe9U\x8e\x19J\xc6\"\x95\xdaQ\xe3y\xd4\xac\x80\x1e&\x05\xebu\x7f\x07h\xd1=\x88pzoYqQ\xdfs\x1e\x0e;}_\xf9W\x93u7\x8c\xe5c\xc4\xe6\x1b\xe8\xf2\xeeh\x85\x1ae\xec5\xa0\xa0<\x9d\xdc\x16\x81Y\xe5n\x0d\xd5\xb8\x8a3\x1f\x18A\xf2\x0f%*\xf0\xd8\x1c\x9a\x88\xe1\xcd\xe6\xb7\x12\xd5\xa4 L\x03\xd0Y;n\x19L#}\x14\x9f\xa3z\xbdF5\xd5\x17\xe3\x9a\xb2\xc9Q\x13\xbd\x1az\xf6<\xce\xe9n\x82\x86\x99E\xa8#\x90\xf6\xea\xc1e\xa1\xa2\x04\xc6\xb3\xa2.\xee\xc1`dU\xd5}\x8c1\xe9\xd5\xd8\x0b\"\xc7\xc2\x9aTB\xabc\x9cF\xa2\x13\xde\xcaQo;\xd8\xdaCROn\xedN\xcb{\xc3\x8dK[\xbd1\x81\xb7Z`\xee\xbatY\x18\x97w\xc1\xb8\x0c0\xee\xa5\x80\xbb\n\xa6\xdf\x19\xbd\xb7\x07fk\x0fA\x84\xfdu.\x82I\x86\xafx\xfd<;\xbe\x03C\xd8\xfc\xa2\x1a\x99L\x1cM\xb3|x\xa4\ne\x18\xec-\x93\xeb5\xacL,\x1bX\xaf\xa7\x95?%\xfe,ho\x18R\xb0R\x8aD&\xb1\x0fx\xa0_\x8fH\x9d\x1c\xfeO\nM\x98\xfejy\xe6=\xe5\x8d\xd0\xbf\x90;\xcf\xe7\x98\xbd\xa9Z\x91\x81\xbf\xe1(\xa1z\x0d\x9f\xd1\x86\xdb^+\xfa\x9bML\xe2\x98\"\x900\x9f9f\xa4\xa8\xd0\xf7\x15\xa9\x06gv\xa6f\xf76\x0b\x92\x9c\xf3;\xa38B~3tR\xa4\xf1\x13\x99\x0d\x87\x15IA\xf0\xe4\xf7\xc2.O\x8e\xda =\x83p\xb1\xa6?\xba\x8ax\xe2-\x83\xcdF\x1aw|\x98\x0c\x10\x12\xf3J\x9a\x0c\xc2tO\x9a\xc9r\xf5zJ7\xea\x8f\xae\xcbq\x94\xd426R\xae:BE\xa1*N+ \xb6g6\xb3\xa4\xf9\xdd\x12\x11\x99\xd1\xc7\x93\x96\xd6\xa0.\xe6B\x8c\x11V+\x12X\xed\xe5~\xaf\xdc`\xdd>\xf0\x00\xdb\xfcY\x18\xef\xb8\xc3\xfd\x87a\xaa\x86Y\x03T\xf5\x01\x90\x83\x101\xc2\xdd=\x03=\x970\xc4\xee\x190\xeen\x84\xa2\xae\xdb\x05\xce\xbc\x1b\xc2$\xa5>\x0c\x15]V\xa8&e\xd8V\xa4\xe6\x10\x00\x9cTT\x14\xc6\x1a\xbb&R\xefo]\x18\xf2\x98\x93\x96@\xa1\xf2\x9cS\xb7\n\xdc\xadI\x96y\xbe\xb1\x8a\x04\x0e\x10\xd2\x10\x1c\xd8\x9ai%\xdc\x85\x10\x0b5\xfd%Z\x84\xde\x90p\x8dK6?\x8e\x06\xd6\x90|\xf0\x15\xcc\n\xf9d\x8a\x0e;\xed\x06<\xcc\xf5N\x89\x84\x12c\x96\xfb\xdc-\xffA\x84B\x9cV\xfa\x04\xe35F\xd5\xe0\xcc\xde \xb0\x13\xc2T\x84S3\xf4p4\x18\x83\xe8.\xd9\xa2\x9d\x03\x88\x18'\xa3|\x18N\x0c\xf3\x11\xb0\xd3\x1e\x87(\xa5\xdf\xf8\x18d#\xe3PC\xe9\x9f\xbe\xe8\xc0m\xcb\xbd\x0d\xaa\xf4\xe0\x7f\xafP\xa5W\x88\xfb0\x1f5}\x11\xc1\x93\xf9\x80\x0f\xc1\xa5\xad\xa6\x7f\xdf]CWyyw\x95\x83\xbc\xa6o\xa2*z\x1c6}3&2\xaa\xdf\x10\x84\xed\x0f\x0fI\x15\xcb\xbd\xdc\xea\xfa\xf89\x9eFT\xcd\x95yaH\x11\x04Bn\xe4\x83\x91\x93*\xff\xbdB\x12\xe2\xd1\xba\xf8\x87_n\xf1\xef\x7f\xd6\"\x1cQ\xe6\x08\x96i8S\xef\xab\x16lIZ\xd9c\xf7LL\x07\xd9F\xb8\xed\x07\xc1\xa4\x1a\xc49\xcc\x08\xe7\xe6\x1265;\x0c\xca\x04&\xed\x04\xf1\xee3\x8dQ\x15\xd6\x0c\x03\x89\x0e?\xcft nzm\x07\xb7\xd4g\xd03N\xff\xba# Sl&N\xdep\x88N\xfdJ\x931@\xc7\x10J\x96\xd1\xeaKw\x10\x133\xdb\x04heI\x80V\xc4);\xa9\xf4\x95\xe9\xba\x92\x9f^\x8aw\xb2\xba\x90L){{z'\xf9\xa2\x907\xba\xce\xee\xe8\x94\xfc\xca\xcdm\x86\x1bC=A\xcf\xb8\x0do H\xe93A\x8b\xb1\x18c\xa7\x97\xb9\xb7\xef\x82\xc1\xafG\xc3\xbd\x83$\xdf\x06\x10\xaa\x0f\x0eM\x84\xe5\xbd<\x89j \xb1\x0f\x1a\x05\xfc\x98G\x8a,\xfb\x9b;\xa4\xe9FD\xeep\xa0\x1dG\x17\x06\xaf\\\x08e\xc9\x04y!\x01-'F\xc3\xe22\xa1\xf1,\x83\x17<\xc9\xc77:\xc4\xe4ua\x90\xc6NCE\x800\xc3>\xccSA\x8b\x1f\xb0\xe8H^\xecY-\xc7I\xda\xf2/0\x94\xa4\x85\xf7\xae\xb3\x89[\x94O\xc9Z\xe51\xd4\x93\xe1\x8e\xbebg\xbf\xfcg;\xdb\x85JuK\xdd\x1cjc\x04\x0f}\xa0\xb1\xbb>\x0b+\xd6\x9a\xc10g\xf9\xadl2\xce\xedi\xb4s\x86\xe8\xb3)\xf0\xdee\x8b\xf7\xe6sd\xd8\xef\xb2\xc9~7\n(w\\\x18\xa4\xa2/\xa9\xe5\xe9\xc1\x06\x80S.QI8\x9e\x0c\xf3\xe1\xba\xdb\x12\xe3lZ\x94\xd3UY\xd4\xec\xe9e!.\xd8\xec \xaf\xd5dK94\x96{\xcf\xcc}\xebC\x14`Di\x84\xe2Y\xd6\x8b\xeeI\xb71\xe5\xf2\x92BoM\xe3\xa8g\xe96%\xb8\xe6{\x05?\x8el\x8d\xac(\xb2L\xf4\x94\xd1\x1dn\x8ao\x15-\xedJ\xb9\x0b\xf2\x8aN\x13\xf5\xa4koe\xecuV^\x16 \xb6 \x9aE^\x0d\xaas\xc5\xe4\x95\x99z\xc61\xbe\x1dQJK\x1b\x96\x1c\xad\\\xb6\xc8\xec\x9eK\x18 a\x0dJ\xb2\xc2z\x9d\xac\xbb\xb6\xf0\xf7\x96U\xecZ\xa0\xa7\xb7\xf2u0a\xdc\xcf\x16,%\xfc+k5\xb4\xa2+\x13y\xc4\x80L\xd1\xd10\x0c\xc6\x88\x88\xa3\xac~\x9a\xa28\x08\x04\xc0(\xec-&\xca`\xc7\xa4h\xe9\x80\xa1\x0c0\xc0\xd7Z\x03Q\x84X$\xd1MG#\x99w\xc7\xbc\xf5k\xa4B\x80\x12\xf7\x91\xf2\x85\x9b\x92\xaa\x8d\xdd_U\xba\xa5\xb6Pa\x1f\xb5\xd4\xddL\x89\xd4\x18\x9dn-\x1c\x9ar\xf7\x05I\xf5\x11$8\xaa\x08\x0fa6\xe2\xa5\xc4\xc9\xfda;\x81\xf2D\x91\x03\x83\xe6\x86\xd1\x18\x01ycgEL5S\x89[\xfe\xc9\xb4\xe4O\x94g\x8e\xc2t\xb4\x14\x7f\xf0\xe0\xcb\xb4\xf1\x0b$\xf1\xdf\xe5\xa4\xdd\xdd\x07\xee4\x13\xc4hoH\xe0>\x83s\x88L\xe5\xc0\xbc0\xbcK\x85\xdd=\x01\xb8\xfe\xc6-\x81\x85\x19\xf9\xe5\xfc\x98\x9e<\xedkl\xb8\xbc6\x94\x12\xf7\x0f\xed]\x14o\xc8Oe\xb0?\xb1\xf7\xb9\x84\x917:\x9f\x96 4\x88\x92\x9bm\xacLz\xa6\xb6\x14\xab\xa3\x11\x88\xbd\x18\x9f\x8b\xe3\xdfJ3o\xab0MR\xcf\x1b\xf9\xb3\xb1u\xdd\x90?\xd2X\xbd#ob\x98e\x08\xa2\xe7\x1e\x10^\"\x8c H\xec\x0f\xf4'\xac\xfe\xc2'\x87\x0fF\xc3\x87\x0f\x0f\x93/]\x99n\xa0\xae\x9b\x97\x9c\xd0\x86\xf3\x846\xe6[\x14\x82*\x8f\xa1U0\xa4\xfc\xdeXlm6$\x86\x0d\x8b\xe2l\xd7\x08o\xc8s\xd6\x92\xb099B#\xbb\xfb\x1c \x93\xb4\x86\xd4T@\xb0\x7f\x12r\x01\x18\xed\x92\xbb\xbf\xdbhO\x82\x9a\xd4\xb9\xc1\x07D$ q,\x8f(\x06\x7f\xad\x98\xbc1n>\x95|\\\x96\xc8tz\xa2;\xa1\xfd\xdd\x1f\x8f\xdf\xbe\x19\x18s\x10>\xbfA\xfd\xfen\x8dw\xff\xc7\xe9 \x90N;\x86\xd3\xff\xa1\xc75\x1c\xd7\xc1\xd0\xb6v\x82\x7fI\xc5I\x0dAf\xa5\xd9Yr0\xaf\xe4\xc2\xc4\x04\xa8\xe4\xc2\xa9\x07\x18\x04\xc7\xe2s\xd4\xab\x1a\xb7\x87\xa3!\xc6\xe3\x8fHb\"\x18l\xd3\xcd&\xca\xfd\x95\xe6\n\x08\xb75\xf3\xd2\xe5\n\xb0\xdc\xb8\x06\x9e \xf2\x9fe\x85\xae\xdd\xeb\x89\x10\x80\xbf&\xbd\x91^\xb3?\x19\x9d\x97\xe4Csqbq\xbb5\x8f>\x88#\xb4=\xa9\xd0\xd1C\xc2\"Gx\xf7Q[*\xcb\x9bRY\xf2\x92\xc5\x9b\x08L\x0d\x8fL\x00\xe6x[\xc4\xee\xd5n\xab}T\xe3\x8f!QY+R\xbdd\xb3Ui\xd3\xbd\x9a2\xcb\x8d\x86h\xfc\xef\xd9<\xdf\x1a\xa9_\xafj\xbc\x9cOn`\x8d\xf3\x18%\xd3K\x17bMR\xdbk\x14]\xd9\xe0\xbd\x89\xd3n\xaf\x8e-\xf2QM\x7fb\x88\xe1\xa6[\xc3\xe8\xe1\xc3\x10\xa0\xa6\x86{&pzl\x13\xd9\xa3\xeb+\xda\xd8\xc7\xb4s\xd6\xd0Qx\x89\xcaJ\x94\xcd\xfe\xaf\xda\xde\xc3\xe0\x13\x10+\xa7e\xc8\xc9\x83o\x05\x95\xcd\xb8@\xe0\x0can\x7f\x94r\xcb\xbe\x03\xed\xe6>i\x107\xac%\x8f\xe3[|d \xfe\x1a\xdbr\x99\x96\xd7cN\xb9\xbf\xc2w@\x02xR;\xb0\x1e\xa5\xd2\x8dQ\xd0\x8aH\xca\x8dx$\x84\x8a\xe8\x8d \x8d\x93\x19Ni\x86c\xc2m\xdc\x82\xb3\x8a\xfb\xcc\xcf\xc9\x08\x80\xccKI+\"\xfcK\xb0\xc4\xb0\x03\xd3\xab\xa7\xcclK7\xf9\xee\xe6\xb9ne[\xf3\\\xf7\xbf\xb5\xf9\xe6\xec!~+L\xdf\xaf^\xaf-\xad\x1a\xe9\x03GW\xdb\xdff\xab\x12#T\x9c\xb4\xd5\xa9\xd4)\x15\x13\x96\xd7\x1b\xc4\x1a!\xf9\xe7!\xf9b\x94\x14\xb7\x1e\xf8\xfc`\x86S\xf3,=H\xd5\x0db8\xcd\x8f\xbb\xdaE\xa2b'\xd0\xaa\x9b\xc9Y{u\x9aO\xaaW\xfbLRu\xc8$\xc5\x92!\xc6 \x1f\x9b\xc9\xa3|x\xa3(\xb4\x8c\x0f\x88\x0b\xbc\x9a\x9e\xb1\xdd]\x91\x0d\x07\xd9F\xe7\x7f,\x07[^\xad\xd7\xd1\xa9\x17\xf7\xd0\xa2.\xeaE\xa5\xc9\x91d\xea2%`\xdd\x85UU{\xfagk$\xe4\xef\x829\x8af\x88\x16t\n\xca\xf2\x95\x98\xb19\x17l\x16\x92\xff\x9f\x9d\xbd\x7f\xfe\xf8\xe9\x87\xb3g\xcf\x7f\xfd\xf0\xf6\xed\xab\xe3\xb3\xef_\xbd}\xf2\xf8\xd5\xd9\x0fo\xdf\xfetvf\x0f\xe8)\xbd\xbb\x1aP26\x1dp\xf5\x8c+}\xed\x9ae\x19\x9b\x0e\xd4j\xb9\xacd\xad`\x18\xe0\xcfq^Q]M\xfc\xc9\xa65\xfa\xa3\xc4\xe4Z\x17Xo\x8e\x05\xc3\xb7\x9bM\xed\xad\xde\x9a\x8c\xa5\xee\xe4\xe7R\xdfH\x1a\xb2\xd9\xe10 \xf3G\xcf\x90\xd7\xfa\"\"4\x17\xdc\xbe'\xfc\xbb\x0d\x8el\x83\xfezy\x0e\x07\x86MH\xae\xe8\xbc\xdc\x90\xfd\xa3\xfd\xfby\xb3\xab\xfeJ\xdf\xddk\xc9\xa7u\x7f\xec\xd5\xe1;\xcc0D\xff|a:\x15\\w\x7f2\x98^\xb2\xe9\xa7gO\x9f\xc3J|e]\x14\xfb\xdaL+\xa1\xaa\x92\x0d\x18\xc0\x89\xe1\xcd\x06\\e\xd8gXe*\xd0\xc1\xc1\xc1C\xbc!GG{\xa3<\xe5\xb7\x92\xf9\x9b\x03\xebp8\x1a\xee\x13 \x7f\x0fI\x05\x7f\x1f\x10\x0e\x7f\x1f\x92B\xff\x1d\x1d\x10\x05\xcfG\xa4\x84\xe7!\x99\xc2\xdf=\xb2\x82\xbf\xfbd\xa9\xff\xee\x0d\xc9\x0c\x9e\xef\x939\xfc=$\x97P>\"\x0b\xf8\xbbG.\xa0\xfc\x01\xb9\x81\xe7#r\xa5\xff\xee\x8f\xb6\xd8\x90\x1c\xdf,\xce\xab2\xcb\xcc_\xcd\x92\x9a\x9dpNC\xc9X\xd0sd86w\x1f\xefc\"C!\xe4\xef.\xfb\x98T\xa1l.\x8b\x0b[\x93\x87R\x03\x98\xb3E5c}L\x8a\xa8 Y\xcdy\xc9d\x1f\x13\x95\x94^\xf1\x19\x94\x96\xa1\xd4\xca\xb1\xfa\x98L\xa3\xfe*y]\xc8\xd9\x99d\xf3>&\xab\xa8K\xcb8\xf51Y\xb6K\xcfJ\xaetK\xb3\xf0j\xc1\x16U\x1f\x93y()\x8b\xbfo\xfa\x98\\\x86\x92\xf3\xb2\x9a~\xeac\xb2\x88Zd\xf2\x8aI\xff\xe6\"\x1a\xdaJ\xcc\n0\xd5\xd50\xba /f\xec|uqV\xcbb\xca\x1cH\xae\xa2^\xd9E1\xbd9\xbb\xe4\xb3\x19\x13}\xbc\xa9\x07\\\xfdZ\x94|\xf6<\x92\x89\xb4\xf9\xb4\xb6?@\xa7\xe7\x1c[\xaf\x99f\x95\xcc\x9f\xc2\xfc\xb91\x7f\xb8\xf9\xb32\x7f\x96\xe6\xcf\xd5z}\x97e;\x88a\x9c~\x90R:_\xaf\x93\xe7Y\xe3Y5\x9e\xcb\xc6\xf3\xb4\xf1|\xd1x\xbe\\\xaf\xd9\xc9\xf0\x94R\xba\x00B\xa5_\xbc\x9d\xb7T\x9dw\xd9\xe2{F\xd55;No\xf4;\xc2\xbbOX\x17\x19[^\x19\x81Na\xfep\xf3ge\xfe,\xbdy\xa4\xf7 \x08\x8ddY\xcb\xf0\xbf4\x9fM\xcd\x9f\xb9\xf933\x7fT\xbb-\xc7nl6PCF\x05\x9b\x0d9zxxp7E\x8e\x89\x98\xa6^xC\xf6\x0e\x86\x0f\xef\xfe\xc8\xca\x06\xd0\x83\x83\xd1Cl \xd8\xbe%`\x87\xe3z\xf0\xc2\xeeuK\xd9\xea\xc11|\xf8\xba\x9a1K\xe4\xea\xc1;\xbb\xc1\x0d\xb5\x83&\x0bK\xf1\x94\xa5x\x86\xf2\xed\x8d\xeb\x81\xbb\xec\x18\xd276\xd2pC\xf6\x0c9<\xfc\x87\xe4l\x19\x93\xb3\x8a.\xdb\xe4\x8c\x87BO\xce\xa2\x99-;\xe8Z2\xcfe7\x89\x8b&\xbe\xec\xa0uER\xeah\x9d\n\xa5\x81\xd6\x95\xd1\x18\x12Z\x17\x81k\xd9A\xf4\xa6\xa1\xd4R\xb6U(1\x94\x0d\x02\x80\xcd\xe8\x97\xe1\xc9k&\x8b\xba\x92!\xb5\xd9\\o\xb4\xc0*\xf7/\xebz\xa9\xf2o\xbf\x85\xe6\xffT\x83J^|;\xab\xa6\xea[8J\xef\xcd\xd8\xb4\x9a19\xb8\xac\x17\xe5\x84\x8b\xabB\xf2B\xd4\xb4\xbf\xcb\x88\xa0\xa3\xb1xT\xc8\x0b0$TN8%vwq\xbdK\xfbY!/\xd4\xc9\xa9\xae*t\x1b\xbf\xbc\x7f\xe9\x1d\xf1\x90\xff\xeaD\x9c:~\xa6\xff\x9a\x0b\x08\x06l\x83\x0b\xc3\x00v\xfe\x9f\xfe.\xdb\xed\x8fw\xae\xb8\xe2\xf5N\x7f\xb7\xde\xed\xef\xcc+ \xa1\x7f\xe7\xab\xb2\xdcY0\xa5\x8a\x0b\xb6S\xc9\x1d\xbd\x05t\xb9\xa8\xc4\xbd\x85kl\xc6\xaev\x98\xb8\xe2\xb2\x12\xbaG\xf8\x18>\x84\xf6\xd5N!f;\xc5l\x06i\xd5\x8ar\xe7\x92\x95\xcb\xf9\xaa\xdc\xb9.\xa4\xe0\xe2B\x0d\xfa\x00\xecKz\xcb\xd5\xebj%j6\xcb[\xdcso\xb4!L@\xa8\xf6\x17\x95\x9c\xba\xeb}T\xcf\xbf\x7f\xcf \x12\xb1\x11]tU8\x86\x987\x8d\x97\x1b\xb2\xa0\xb7\x9b\xb0\x8a\x17n\xdb\x1bG\x05\xe3\x81G\x12_\x8d\xda\xbb\x91*\xba0\xbf\x9d\xad\x8dX\xaf/\x83\xc5\xeb\x8d\xee\xc0?]\xfd\xef\xb7|\x11\xc9\xb0\x9b.\x98\xf4vC\xe2\xf7\xca\xce\xb6m\xc0\xeaN\x82^t\x12\x04\x84\xef\xb5\xce\x874O\xe7\x1cA\"\xb7xp\x83\x06\x80\x91~ \xccs\xdf\x8d\xa2\x8f\xd3\xd1\xcd\xc3b&\x07UW\xb3\xd1\xc2\xbb\x96\xfb\xd1\xf7\xba\xe9\x9b\xd04\x8d\xba\xb1\x01\xc5\xaf\xa2\xb7\x82]\xef\xdc\x8c\xcf5\xc8U-W\xd3\xba\x92\xf4\x8aHt\x1e\x0f\x0f\x93\xf3\x01W\xefV\x925`\xdc\x1b\xda\xb8\xe0\xb7\xf6\xd2l.Z\xe43}\x0b0\x8dfxY\xa8\xb7\xd7\xe2\x9d\xac\x96L\xd67\xe4\x13\xbd\xfd\xc4nr}\xfdgs\xfd\xe7\xecL\xb1\xd2\xfd\x02\x1b\x8b\xbc7\x8c\x10\xf1\xcc\xa1\x0b\x1c9\x84\xeb\xf55\xce.\xc4\xea\xea\xbc\xd0\xc6X\x06C\xdcno]\xa6/@sp\x90\x84_\x98Do>\xb1\x9b,C\x05\xed\xf7w\xe1\x01\x93\x1a\x7f6\x96\xbb5\x918\xcbz\x9f\x1a\xc3G\xe0e\xc1O\xe4)\xadO\xe4\xa9syi\x92\xa8{\xe0\xb4 \x8aS\xcc\x83\x9eXx\x0f\xcd\xd1\xa32\xd0\xc8)},eq\x83JM\x87\x87\xe3\xd5\xa3r\xbc\xda\xdd\xc5\xd3\x93\xd5ih\xf9d\xb5\xbbw:\x8e\x1a\x83\xfck\xc0>XF\xc0h\xe6<\x04J\xdax\xe3\x0d\xff\xf4\xf0\xdd,J\x98\x85\xa11\xb7\x8e\x0f\xc9+\xa2\x7f\xe4\x8c\xe8\xa5*`\xa5\x14\x81\x9d\x9asr\x06\xb1\xc9\xf2k'/\x89\x1c.\xdeF<\xe7\x9d\x8ca\xc2\xb7U@\xff\x8e\xe9\xb7\xff\xf5\xed\xee\xb7\x17a\xe5\x9f\xc7*\x97\xbb\xdb\xb3\x1bT/\xe2\xa4-w\xbc\xed\xd3~\xde\xa7\xc3>\xe9\xe7\xfa\xc7^\x7f\xe3N\x84o\xfa\xbbl \x0d\xc5D\xdf\x9e\xd0\xfc\xf4\xdb\x0b\x82\xda,\xf4N}\xc2N7\x18oP_\x7f\xa1\x91%\xaf\x07uu\x0c\x9c5\xda?\x8c\x0c\xfc\xdfy\x85C\xe1\xcc\xf1\xdd\x98\xc7\xc9m\x97\xaa,\xeb\x9fWU\xc9\n\x01\x8f\xeb5\xb2\xd1@,b\xf5F\x91|\x92\xe1\xd2Y]\xefX\x06RYE\x93e\xf0\x81G\xec\x8b\xd5\xe2\x9c\xc9~^\xfa\xe4\xf6F\x9bb!\x98os8\xad\x1c\xf3\xaa?\x04I[\xe9dK\x05-PI!\xdek\x1f\xf2WO\xfa\x83\xfe\xeesT\x92!\xce%\x01\xfc\x1dpe\xf0\xb8\xc0\x13$h\xbfo\xf5\xb1\xccf\xc6uP>&\xfdo\xb2o\xfbx\xb7\xffm\x1f\x93w\xa8\x00`\xf5\xfb\x9d`g\x1b\x8c\xb1\xd5\xff\x14Y\x86\xde\xa2\x02\xc3\x9eM\xa9\xf96\x046jd\x8d\xc55`\xb1\xf1\xb96\x98\xcc\xcc\xd9\xe3\xf0\x99\x0d\xcc\x8f\xcd\x06\x15D\xec\xa2^\xa1Wy\xbd.\xb3\xac\x84\xa8\x0c\x94B\xc9\xa4\xdf\xcf5\x12\xc0\x03\xee\x9e\xd5.\x03u;\xd8s\x15\x18\x13XE\xc8\x06\x1b\x81/\x97\xbb\xfd\xbc\xdf\x80\x1d\xc38\x90\x85\xe1x\x1aL\xca\xa6N%\xb7\xa2r\xf79R\x94\x9dLO\xc9\x14\x8f\xcb]\xfa\x0e)\x00\xe2\x8a\x14!\xa1~\x9bwC\xab\x8e\xcb\xa1\xb7\x9c\n\x97\xb9p\xf4\x19a`GK\x8c\xce\xb2\x8c\x9d\xccN\xf5\x9d\xab\xff\xbf\xfe\x97c\x03\xfb\xa7xb\xb3e\x82\xf8\xd48\x15\xad\x9c;\x04\xd1\x93\xea\xe9\xc1\x83]\x07\xc2x0\xab\x04\x1bc3 o\xc8\x03\x931\xf3$z\xe2\xa4\x88\xbc\xdb=%\xa0\xca\xe7\xa1\xd3\xbb\x92\xb8\x83y\x7fD\xfa'\xa6\xd6\x8e9\x8fN\xfb\xe0;e?\xdd\xb9\xe6\xf5\xe5\xce'v\xa3vn\xfb\xbb\xf6\xc4\xd2\x8f\x88\xe1\xc1\x9f\x15\x17\xa8Ov\xf4Rn\xfay\x1d\xa4a\x91w\xe5\xe3H\x8cf\xe0\xe7\xc5\xb0\xcc\xde\x8dNN!k\xbb-\xd54Aj$\xdf\x82\xe7\xc6q\x0fb\xe6T\xbb\xbbx\x831\x91Q\xc8){w\x85\xf8\xb1lp\xa6\xea\xa2^\xa9p[=\x93L\xad\xcaz\\\xd3\x1a\xa4R\xb6\x02\x84\xa0\xb6\xef\xc0Q\x0c\xf2u$Y\xa8\x87q\x83\x10\xdf\xa4v\xa7F\xd4\xce(n\x07o0\xb9\xb3\x8d\xf0\xdd^\xe3;\xef^\x19\xe6\xe0\xa0\x16\xe6\x00+\xea\x9f\xe1lx\xdf\xe03\xc2\x19\xf1\xd4\x9b,\xbc\xf7\x19\x19b\x8a\x99rl\xfb{Q\xb2\x03\x13\xe4\xf8Oz\xdb\xad\x07\xcb\xdf\x93\xf8\xc5\x13]ju\x86\xb7!Mr>\xdc\x90VV\xeb\xfc\x9a\xbcT\xc7\xd5\x82\xbd\xb7\x9a\xc5\xc7\xd3\x9a\x8b\x8b\xdcOBs\xf3\x85R\xfcB\xe4r3\xae\x07\xdeu\xfavQ,\xf3\xc7\xc4\xaa\x81[Wp\x8dv\x89\x99\xc5\xa0X.\xcb\x1b\xc3\x0dzVA/\x90\xc0\x1b2\xd5\x97\x89\xbc}\x1cz\xa4l5\xb7\xbb\xab\x11\xaf\xde\x90\xba\x02r\xd4\xa5\xf3K?J)\xf5z}r\xba!\x95(\xd3/\xf9\x1c\xf54k\xd0X\x8d\xd1\xc1~\xbc\x1a\x1bR\x0f\x02\x87y\xa1\xef\xc9+\xc9B\xc9\x15\xa9\x07gg\xc7\xcf\x9f\xbe\x7f\xfe\xe1\xec\xe5\x9b\x0f\xcf\xdf\xbfy\xfc\xea\xf8\xec\xd9\xdb\xb37o?\x9c\xfdr\xfc\xfc\xec\xed\xfb\xb3\xdf\xdf\xfer\xf6\xdb\xcbW\xaf\xce\x9eY\x9dF>\x1a\xd3\x89\xe6Fs]jD\x03\xab;x\xde\xd56\x9ew\x85o\x1d\xaf\xbb\xc2^\x9b\xb6\xa4\xc3\xf1\xf2\xd1j\xbc\x04\x9ew\x19\xf3\xbc\xcb\x16\xcf\xfb\xe5\x83~\x0b\xbbZ\x02~\x99\xf0p\xce\xdd\xba\x8b\x87\xd8 \x00r\x08\xdc\x18A\x8c\x86>\x15\xe9\xb4\x13\xcdk\x92X\xa9\xe6,}\xde\xd3\x05\xf5\xa5d\xc5\x0c\x82\xde\xe6C\xf2\xce\nx\x8c\xee\xeai%\xd4j\xe1\x94Vx\xe0\xdeF]\x17\xc4Y\xcb\xe6Lc\xa3\xfb\x84\xb20;\x87\xe7g\xbe\xe4E\xa1\xafw7\x1d\x1a\xf9\xb3$\xcf\xa5\xd7\xb2\x1b\xcbJ\x06\x94\xc0E\xcce\xf3\xd8\xc2\xc5\xaeCB\x95ue+\x87Jj\xb36\x7fVZ3\x8c\xdcl\xfbT\x8aM\xdf\x12#\x86\xba\xb3\x89\x15q\xee-\xf9\xad=L\xf2{#b\x8f\x0d\x0d\x1e\xf0\x83\xc9\xbf\x81\x1e\x16lQ}\x81g\x9c\xbaK\xcf\xb4Z,\x0b\xc9B\xee,\x1b\x06\xa8\x86\x96V\x8a=u>\xf6\x9d\x08\xf4\x14\xe1\xb8\x12\xbcs\x1f\xde\x85x\xee;S'\xfe\xec\x19;_]\x18\xcb\xe7h \xecK\xebJwW\x93\xa6J\xdc\xe2\xcb\xc5R\xf3k\xfc\xca\x1a\x8f\xb4\x88b\xda@\xb3\xba\xb3U\xfc\x7f\x89{\xf7'7r\xeb`\xf4_\xe1`\xb5\xdc\xc6\x12\xe4\x90\xa3wS\x10-\xeb\xe1U\xa2\xd77\x92\xbc^\x93\\\xa5\x87\x04gz\xd5\xd3Mw\x833\x9a%\x99\x8a-\xdby'v\x1e\x8e\x1fy8\xb1\x9d\xf8\x918v^vv\xbf$U_v\xf3\xe5\xd6\xad\x92\xb5\xce?p\x95\xaa\xef\xe7\xfb/\xdc:\x07\x8fF7{F\xa3\x8dSW\xa5\x1a\xa2\x0f\x0e\x80\x03\xe0\xe0\xe0\xe0\x008P\x99\xdd\x08\x0e\x92\x99<\x06\x1d.\xa2K\xcd\xcd\xc3:\xc7$\x04\x047\xc1\xa6\x18\xcfF\x15\x9b\x9a\xc5T\x1a\xabHl5g\xe6I&\x9e0\xa8e\xb3Q\x19Y\xd9x\x14\xba>\x88\xc4\xcd\x11\xa7%;\xbbq\xfe\x05\x0c\xef\x1b\xa7\xda\xe7\xe8\x92\x9d:s\xeeda\xea<$\xc1\x0ed\xe0GK6sbc?\xf1b\xda\xcdZ\xbbA&E\x8aD\xa8 \x8f(\xe65\xad\x92H\xa8\x1c\xee\x89t+\xc9Do\xbe\x1f\xa4\xb1k\xdcW\x0b$5T\x1c\xc3x\x14\x8e\xd4\xe3H\xf9f \xbe~\x87\xe7\x1c \x0f\xbd\xba\xd0 t\x8c\xeb\xafd\xbe\\.=|\xca\xb0\xa3N-\x8d/\xb6\xbbt\xcc\xdb,\xf5F\xa6\xd5\xdc\xf5\xa2rI\x14N\xbc\x00\x87\x8a\x12\x02 \x07\xb9\x01,?n4L\xbf\xf4\x93\xa1\x8a\x15<\x87\xe0\xc5\xd2V*\xb2$\xda\x13c:EB=r\x07\x98>\x8c\xb7k/g\xb8\xff\xf2rFX\x02\xeaz w(K\xf5\xc9\xe9~\xda\x9a>\x14\x07C.Z\xd0\xf8,k\x9d@\x9d|EX\x94\x13\xd4\xeb^\x19\xd4W\x89\x87<\xc9\xef$&\xb8\xb4\xc52\xf5\xab\xd4\xc2,'~\xe1^\xb8\xbd#k 6\"Q\x0bd\xed\xc4\\a.\x7f\x81vM-\xee\xc7\xa6b5\xb5\x91\xb7Bx\xe8\x89\x96\xb2\x92\xdb\xca\xad\xa1\x9b\xf4\xe7\x13\\L\x0b\x0b\x0b\xfa\xe1\x1a \xaf\xb8\xba\x97\x93\xcf\x10\x12IBb\xe4N+\x9bF\xa1\xf4\xc8\xfa \xacK\xbf=d(=x\xc2L}\xaf\xc0@\x9d\xe8n\x0b\xa4\xee5\xa9+&5\xb5|\xc6$\xf6\x17\x0f=\x03czi\x84\x95W\xb1xwP\xa3\x99Ac\xd0lV&\xa2\x94\xd2\x10t3\xcc2 \x07H\xae\xc9 \xdd\x16\x92\x98\xf8\xc5\xce\xfa6#\xeb$7\xa8\xae\xffb\x1b@\xbfH\xe8\xd2!\x15D\xbfK\xa9\x11&VW\x17\xb9\xf7\xf4p\xe2\xad\xc5\x8b\x85!\xd9Z5\x01\xf6\x12q\xcf\xe4\xdaun\xdaK}u$X\xb9\xea\xbc=\xf1\xc8K\x84^\xe4m#\x89b\xc3\xd6/\x11\xbc\xef \xfa\xeda^d\xccE\xbf3d1W\xbb\xda\x85\x1d\xe9XI\\\xafCM\x16\x0db\xcc\x8d5B\xe92V\xcf\xafd\xaf\x87r\xc7\x83\xb6@\xc3y\x9eL\xc9\xff$'a\x9d\xd0\\)\xe3\xedn|!q\xf7\xc8\xe7 \xe8b\xd2KP\x1b\x03\xa40\x7f\x9f9\xad\xd7c\xce\x0d~\xb3\xc3\x02\x8e\xba\xe1\xf5X%`\x9d\xb6\xba\xcfQ\xb6O/\x16av+\xb8\xe5\x05t\xb1\x08\xf2\x1d\x10\xd0i ]/\xe0\xe5\x14\xf5:iBscts\xc3ov|\xa4,\xbe\xd8\xee%\xfd\xb8\xd9\x19\xfa\x84\xb0fg\x0d\xcf\x1c\xc1LVR\xf4\xb0\x02\x14\xa6\x0c\xe8\x88\xb0^\xf7D?\x18\xf2\x942\xc1!d\xe5os\x83s\x1e\x98^\x0d{\xde*)BY\xe5S\xcaR\xf3:rW\xe5\x08\xa5\xd8L\xf1\xc3\xfaD\xca}\xadU\x19\xc9\xcbZ\xa8\xa09C\x98l\xc3^\xea\x93\xb6n\x85Fg\xb8X\xd86it\x86J\xe3u\n^\xe6\xfa\xfc[S\x91\x8d\x82i\xa5fZ\x18A8Z\xda\xee\x08\x1a\xac#\xacC(d3\x8buF\xb0\x8e\x05\x8d\xeb\xb8\xda\x99Q\xbaTrWph\x8d\xad\xacd%\x8e\x02\xc5t\xd5\x0b\x0c\xe4[\xaf\xaf\xe5\x99\xd0y\xbc\xaa\xb1\xd6\xeb\xa5A\x8d\xe4\xd8\xedT\x95\x89\xa66\xd3\xd4\xeaz+1\x92\xc2\\of'.Y\xea\xb6 K\xb52\xac\xbb\xbb\x17\xe7\xca0S3\x19\x0f0\x89\xf2n\x18\x9b\x10K\xb1H\xddN,\xcd[g\xad\xe3|\xe5\x8awE\xd5\x98P\xd4\xe2=3\xddU!\x9e\x83;}\xf2\xb9\xa7r\x95\xdf\xe5n\xd5\x19\xc1\xa9H'I\xba\x0bk\xb5\xca\xd3\xc7N|+N\xf6\x8d\xd36\x07\xdcu\x0eN\xc7\xc9\xfe\xaa-\xad\x16@J\xcf\xe8Tj\xdf\xf8\n(\xcf\xb0z\xc0\xa8\xe7\xe7\xa1\x11\x9b\x11n\xdf:\x9b\xcd\x96R\xf5^\x98{\xfe\xd3\x8e\x85\x9b\xea\x9c\xd3\xe5\x9d \x8eEdn\x9c\xa3mp\xa6~\xa6n\x91\xee\xdds\xb3\x1e\x15\xbcH\xa2G\xbb#o\xad\xcdp\xe7\x0f\x8d\x84\xf9c\xdc\xa8 g\x02\xbd\xb4&3\xe9MY\x9b2\xb1\\v\xe3\xc2\n\xc7\x94\xd1sPc\x06Y\xfa\xde\x88\x0bV\xca\x81.Y\xd9W\xdd\x8c;8\xca\x8aTp\xdc6\x8aD\x90\x9a\xf8Y\xf1\x8c{\xb6\x93\xcc\xa2\xf1\x1b\xa1\x88\xc6\xab\xcd\x0dR%tk\x8c\xa7q\xae\xa5\xc1\xae\xd8,\x98\x8e`\x95d{u\xccU\x1f\xb4r\xaa\xd8\xc4\xc0\\Z\x0e\xbb\xb6\xa0\xd7c\xaa\x83vlJ\xe0\xb2\xe8R\x1c\xee\xa2k\x12\xa4\xa2[\xd1\xcb\x1a=\x15\x9f\x9a\x89L\x16\xf1\xeb\xf5\xe21wro'\xccj[i\xb2\x9f\x89\xb46ND\x16\xbf\"k\xfajC\xad2\x8bV\xedf\xf0P\xd4\xb2Y*jr'\x90\xb5\x83d\x86\xef\xe5\xd7\x82\xda4\x89\x0e&a\x14\x81TU\xef\xe4\xeb\xac\xb3V\xad\xea\x94`\x14\xc6\x0f\x15\xa0i\x92f\x84\xb2\x8aJ\xed\xbc\x18\xe5Um\xf5\xdfO8n\x9c\xec\x824\xd3~\xd1\x0ex\xb3\xc3\xf6\xf8i|o\xed\xb8LW+\x8f\xb0\x8b|\x0b\xd8\xd0e6v\x0c\x9e\x14t\xde\xbe(\x16\x8b\xce\xc6\xe9\x0b\xa2Wj\xbdb\xa2\x9a\x0c\x1e\x8a\x0c\xdb!\x0be\xb8'ja,k[B\xee\x0b\x11\xd7\xdax\xc0\xb1\xb3q\x9a\xc1\xca{\x04\xcb\xa7 \xa4\xac\xa5\x81\x14Ym'\xdc\xde\x11)4i\x0cH\xb5\xc94\xab\x85Y-Nlw\x881\xa1\xfe\x1eo_\x10=|cp\x12%I\xeau\xc4\xc9uA\xfd\xd3K}\xd2\x0c&\xfb\xa2\x84b\x8f\xf8>\x9e\xcc\xdd\xe8\xaa\xdfN+\x89\xf5a\xcdjA\xb5M\x0f\x93R[\\4\xf6\xd0\xac\xb6\xad\xe4U\xefQk\x9adR\x97\x88\x19P\xdfsz\x8f\x96EYE\x02f\x9c}@\xba%+\n\xb6m.\xd8\xeeb\x01y\xb6YE\xe2\xb2$\x8b\xe9\xfc\x80\x8f\x0b\xfe\x1f\x85W\xae\x88\xd9\xfb-\x08\xb8\x89w@\x91\xd9\x9c\xa3Zj_B\xdf\x05\xb6\x87L\xb4v,iW\xd8\xb7}\xb5\x9d\xb1\xd9\xb9x\xf1b\x87%\\\xf4S\xb4\xc2\xac\xe5[\x9bI\xbd\xde\xbep\x17\x9d\x0d\xeb\xb7pk\xa2+\xf0\x94\x1c\x13\xa0\xea',\xe6\xa9S\xfa\x03G\x89\xcd\x1f\xd8\x04\xfd\xb7=\xa4\xf6~\xa7\xc1\xbe\x9doX\x01B\xb7\xb0\xab\x9a\xd7a\x9aL=\\\xb3\xc4\n\x8e\x97\x01b]\x93=\xfbl\xbe\xadlz!\xe9\x9a\x1b\xe1\x1b\xafzi\xa3Cq\x1d$\xfa\xe1\x90eg\x9dQ_\xc1\x02\x06Y#,\xcc\x8dFN;\xdal\xe2r;\xba\xd9-\xed\xf2@\x16n\xef\xd9\xf6\xba[\xec\xdb,I\xe5uX\xcd6e\x1ev\x9e\xa2\xe3q\x0f\xdd\xc7\x8f\x9b\xb2\x15\x8eQJ]\xe5\xfd!\xbb\x03\x7f.\xf1\x0e;\xa1\xc4\xd5&?\xc9.\xc3\x00x\x0b\xfe\xdc\xe3k\x9d|]\x7f\xdd+\x1c\xfa~\xe0\xdd\xb1\xcekd\xd7\xbd\xe6\x9b{\xa8\xa6\xb7\x01)o\x05\xa9\x96\xbf0\xf9]\xe0\xc2\xbc\xa9\x0cH\xcc\xa1\x9b\xcb\x92\x17w\xf6\xd0\xbb\ns\xba*\xd4\xe1\xb1[\xfa\xe8\x01\x10\xca\x80>\xb6\xf6\x16\xcde\xc1\x03\xef*\xa5o\xe1%U\xef\x8a\xa6\xa3\x82\xf8z=\xf5n1\x87\xb6\xa6p\x0b\xb9\xa2\x06\xa6j\x91z]\x15\x86\x0f\x01^6\x87dC\xbe\xd95/[^\xf7b\xcaN`\xd9\xa6\x84\x13\xf5\xba\xb7\xe6\x9d(\xd5\xeabLq-\xbcV=-x\x94v\x8d\x92y\xc2\xb6\xe8!7 \x02:\xcfqLW\x9ehM\xb5\xcb\xfc\x1bbOD\xda\xd5b\xb0B\xc8\x05\x1e\xd3n\xbc\"0+\xdf}\xeb9\xc5d\xfe \xae\x1a\xb9^\xbf\xed]\xa5\x0c\xaa\xae\x84!|vU#8\x1evN\xe0Q\x06{\xc2Qk\x9fn_\x8cT_\x8c\x9c\xbe\x88)\x8b@\xb4jf\x8e\xac\xf3\x02\xcb\xb2!\xb2\xec\x12\xb9\xfa\x06\x0f\xddi\xf6\xfa8\x12\xf6\xdd\x80\xd3\xee\x9cy}wW\x8c\xc3@\xe6\xd1\x1d7\xfaF\xb2o#N\xb9\x11\xb7@\xd9\x8fl\xdcI7N]\xfa\xb0>Q\x9d\x98\xfb\x99H?\x1a%\xa3\x87\xe8\xe6F\xa7\xddp1\x94\xbeR\xb1\xedL\xe7\xa2\xd8\xb3\x85\xa9\xdf\xdcX\xbf\xfaH\x8cf\x90\xc0\x9d\x14\xdeZ,./\x16\x9e\x1d\x01E\xbd7\xbfG{\xc7e\x93\nud\xb3\x9c\xee\x1a:\x9cr\x9fkXM\x84}\xef\xa6\x8b\x8b\xdb\xe2\xd6\x93\xca\xa6>\x9b\xda\xd1\x0es\xd4\xcfI_\x8dT\xf3\xfe\xb6\xb9\n%\xf9\xe6RI\xbd\xcd\xee&\x97E\xd7\x16\xb9g\x8bM\x1e/\x0b\xa5O\x83YV\xddJ\x054\xad\xf0\xde \xc2X\xf2\x1b\x85\x98Y\xfcz(wl\xef\x15\x17 \xa5\x17w\xcau\xc1\x9fS\xea\xe7\xb4_\xac\x91\xe0'\x9d\x1a \xb7F\xf2\xa8\x1a\x99\x0b\xd3UG\x15B\xe7\\rY\x0f\xd2\xa4\x06\xab\xfb\xa7\x815\x10\x04\xf5\xba9cl\xcf\x83\x06[\xe3|j\xb34\xaf\xe3\xb6\x97K\xd69\xd9>\xb5z8\xb4[\xe1\x0c\xcc98\xf2\xca\x9c\x9c >\x19'Q\x14\xa4\x84\x91\x97\x89O\xa6\"\x1d\x89X\x12F\xea\xc4'A<&\x8c\\ >\x89D\x96\x11F.\x12\x9fl\xe3\x01\x04H\xb0 >I \xf0\xbf\xfe\x8c\xf8D\xa7\xfb_\xdf\x80l\x92\x19&\xfd_\xdf\x84\x08\x9c{F\x07\xf0\xfd-\xe2\x93\x03\x11C\xf0;\xc4'\xde\x88B\xf0\xbbP\x16\x04\xbe\x0f\xb0\x14a\xef@\xe6\x84\x91\x7f\xfd%\xe2\x93K\x10\xf8\xb4 |\xc6\x04\x1e\x9b\xc0gM\xe0s&\xf0y\x08\\\x85\xd0/\x13\x9f\\\x86\xc0\xaf\x10\x9f \xe4WM\xe0\xd7L\xe0\xd7M\xe07\x88O\xaeC\xe07M\xe0\xb7L\xe0\xb7M\xe0\x0b\xc4'W \xf0E\xe2\x93[\x10\xf8\x1d\xe2\x93\xdb\x10\xf8]\x13\xf8=\x13\xf8}\x13\xf8\x92 |\xd9\x04\xbeB|r\x1f\x02_5\x81\xaf\x99\xc0\x1f\x9a\xc0\x1f\x11\x9f\xbc\x01\x81?&>\xb9\xf7\x1a\x84\xfe\x84\xf8\x04;\xe3_\xbf\xae\x9b\xed_\xff\xd4\x04\xfe\xcc\x04\xbea\x02\xdf4\x81o\x99\xc0\x9fC@@\xe8/\xa0s \xf0m\xe2\x13\x84|\xc7\x04\xbek\x02\xdf3\x81\xbf$> !\xf0W&\xf0}\x13\xf8k\x13\xf8\x01\xb0\x13\x04~H|\x02\x9d\xfc\xaf\x7fcz\xf1oM\xe0\xefL\xe0\xefM\xe0\x1fL\xe0\xc7&\xf0\x8f\xc4'3\x08\xbcc\x02\xef\x9a\xc0\xff4\x81\x7f\x02N\x82\xc0?\x13\x9f\xc8\x1d\x08\xfd\x8b\x06\xbdgX\xe6\xbdO\xebJ\xbfgX\xe6\xbd\xc7\x06bX\xe6\xbd\xcf\x19\xc8\xe75\xa3\xbc\xf7\xcb\xba]\xde\xfb\x0d\x03\xf9M\x03\xf9-\xdd\xf7\xef\xfd\xb6\xae\xea{\xc8\x0d?\x07!`\x87\xf1[\x10\xfa\x1d\xcdN\xef\xfd\xaen\xbd\xf7\xbed \x7f` _6\x81\xaf\x98\xc0W\x0d\xce\xd7\x0c\x04:\xfdc\x10\x80>\xdf\x86\xc0\x9f\x19\xc87\x0c\xe4\xdb\x9a-\xdf\xfb\x8e\xee\x85\xf7\xbek\x02\xdf3\x81\xef\x1b\x1c\xd3S\xef\xfd\xc0@~h \xd0\x0b\x0f!\xf0#\x13\x806\xbf\x01\x01h\xf3\x08\x02\xffd \xff\xac!\xef\x7fZC\xde\xff\x8c\x81<\xd6\x83\xe2\xfd\xcfj\x1ex\xffs\x06\xf2y\x03\xf9e\x03\xf9\x15\x03\xf9\x0d=(\xde\xffM\xcd\x03\xef\x7f\xc1@\xbeh 8\xca\xa0\x81\xde\x87fM\xa0\x85\xde\x87q\xb6 \x01\x18g \x8a\xde\xff\xb2\x81|\xc5@\xa0]\xefB\x00\xda\x15\x06\xce\xfb\x7fl \x7fb _7\x90?5\x10h\xe9{\x10\x80\x96\x06\xc1\xf6\xfe7\x0d\xe4[\x06\xf2m=L\xdf\xff\x8e\xe6\xca\xf7\xbfk\x02\xdf3\x81\xef\x1b\x9c\xbf6\x90\x1f\x18\xc8\x0f\x0d\xe4o\x0c\xe4o\x0d\x04F\xc9\xeb\x10\x80Q\xb2\x0f\x81\x7f\xd0\x92\xe0\xfd\x1fi.\x7f\xff\xc7\x06\x02\xc3\xe5\x93\x10\x80\xe1\xf26\x04\xde5\x90\xffi \xffd \xff\xac!\xff\xf6\xdb\x9a\xdd\xfe\x0d\xdau\x02\x81\xaf\xeb&\xff\xb7?\xd5M\xfeo\x7f\xad \xfb\xb7\x1fh\xc2\xfe7\xf4\xd8\x0d`\xf7\xff\x0dR4\x02v\xff\xdf =o!\x0c\xba1\x06\xd8\xbf\x7fY7\xe8\xbf\x7fE7\xe8\xbf\x7fU7\xdf\xbf\x7fM7\xdf\xffe8\xff\xff\xfe\xaa.\xef\xc9\xe7\xf5\xa0|bd\xf5\x13(\x05\xc4\xde\x93_\xd3\x1c\xfb\xc4\xb0\xca\x93\xdf\xd2\xf5\x7f\xf2\xdb\xba\xb1\x9e|A3\xf3\x93/\x9a|\xa0n\x1f\x85\xc0\xef\xea\x81\xf3\xe4\xf7\xf4\x08~\xf2\xfb\xa6\x88/\xe9\xa6y\xf2\x07\xa6, \xfe\x1c\x04\xbeb\n\x05\n\x7f\x1e\x02_\xd3\x0c\xff\x04D\xf4M\x08\xfc\x91f\xe6'\xc0U'!\xf0'\x86Bh\xd0;\x10\xf8S\xcd\x94O\xbe\xa1\x9b\xe5\x89a\xa6'\xdf2\xb5\x00\xb9|\x0d\x02 \x96?\x01\x01`\xaf;\x88\xfd\x1dS\xc3\xef\x1a\x82\xbeg\x92\xfd\xa5\x16_O\xfeJ\xb7\xe6\x13\xe08\x90\x87O\xcch\x7f\xf2\x03\xcd2O~h\x90\x81\xe3\xb6 \xf0\xb7Z\x8e<\xf9;-\xd0\x9e\xfc\xbd\xc9\xe7\x1f4\xa7<\xf9\x91\xc9\xf0\xc7\xa6]\xfe\xd1\xe4\xfc\x8e\x16\x16O\xde\xd5\xe3\xff p\xdc.\x04\xfeI\x8f\xed'\xffl\xda\xe5_t7\xff\x04\xe4\xf3\x14\x02\x9f\xd6c\xf4'\x9f\xd1\\\xf2\x93\xc7&\xf0Y\xcd%?\xf9\x9c&\xfe'\x9f\xd7|\xfa\x13\x10\x1f\x8f \x00\\2E\xec_\xd5\xc3\xe4'\xbf\xa6)\xfb\xc9\xaf\x9bd\xbfaJ\xfdM\x03\xf9-\x8d\xfc\x14\x8a\x7f\x03\xe2\x9e~\xc6H\xf1\xa7P\xee\x1bP\xff\xa7\x9f\xd7m\xfd\x14\xca{\x032}\n\x05\"\xd6\xaf\x9aa\xf0\xf4\xd7\x0c\xf3?\xfdu=[<\x05~\xbc\x02\x1c\xf5\xf4\x0b\x9a\x0f\x9f~Q\xf3\xe1S`\xc8\x8fC\xc00\xe4S\xc3\x90O\x0dC>E\x86\x84\x06\x7f\xfa\x07\x9a5\x9f~\xd9\xd0\xf2\x15C\x81\xe1\xc8\xa7\x86#\x9f\x1a\x8e|j8\xf2\xe9\x1fkF|\xfa'\x9a\x11\x9f~]3\xe2\xd3?\xd5\x8c\xf8\xd4\xc8\xb9\xa7\xdf\xd0c\xfd\xe975#>\xfd\x96\x1e\x0fO\xff\xdc\xd4\x0cX\xf32R\x06\xbcy\x17C\xdf\xb1\xa1\xef\x9a\x1c\x0cs>\x05\xe6\x84\xdf\xbf2U\x03\xde|\x03\x04\xc9S`\xce7\x80\x17\x9f\xfe@3\xe5\xd3\x1fj\xa6|\n\xdc\xb9\x07\x01\xc3\x9dO\x0dw>5\xdc\xf9\x14\xb9\x13\x8b\xfd\x91\xe6\xd3\xa7?\xd6}\xff\x14\xd8\x13\xa4\xd0S\xc3\x9eO\x0d{>5\xec\xf9\xd4\xb0\xe7\xd3\x7f\xd6\xfc\xf1\xf4_4W~\xf0K\x9a+?\xf8\xb4f\xc6\x0f>\xa3\x99\xf1\x83\xc7Z\x0e~\xf0Y\xcd\x8c\x1f|N\x0f\x8e\x0f>\xafu\x84\x0fP}@\x10\xb0K\x86\xa1_\xb5\xa1_39\x18\x06\xfd\xe07T#}\xf0\x9b\xbaj\x1f\x00\x7f\x1e \x0ep\xd2\x01\xb4\xcd\x07\xc0@\x07@\xe6\x07\xbfc\xd4\x8c\x0f~\x0f\x95i\x08}I\xd7\xfc\x03`\x98\x03\x0c}Y\xb7\xc1\x07_1r\xfa\x83\xaf\x1a\xe9\xfc\xc1\xd7\x0c\xad\x7fd\xa8\x01\x0e\x19C+\xfe\xf4\x0b\x9a1\x7f\xfaE\xdd\xf8?\x85\x12?\x06\x8c\xf0S`\xdam\xa8\xc6O\x91\xfd\x10\x06y=D\x18\xb0\xd2-L\n\xbc\x14cZ\x9c\xfe\xa0\xeb\x7f\x8a\xf3\x1fP\xfbS3\x01\xfe\xd4L\x80?}Gs\xdaO\xdf\xd5\xad\xf9\x1f_6\xfa\xfb\x7f|\xc5\xe8\xab\xff\xf1m\xa3\x00\xfc\xc7w\x8c\x02\xf0\xff\xfc\x18zm+\xd8\x81\xdey\xf6\xf8\x0b\x9a\x95\x9e=\xfe\xa2\xe6\xa5g\x8f\x7fGW\xe3\xd9\xe3\xdf\xd5L\xf4\xec\xf1\xef\xe9\xa6~\xf6\xf8\xf75\xab={\xfc%\xcdF\xcf\x1e\xff\x81\xee\xedg\x8f\xbf\xac\xdb\xf5\xd9\xe3\xafhNz\xf6\xf8\xab\x9a\x95\x9e=\xfe\x9a\xe6\xa5g\x8f\xffP3\xd3\xb3\xc7\x7f\xa4\xb9\xe9\xd9\xe3?\xd6\xec\xf4\xec\xf1\x9f\x18V}\xf6\xf8\xeb\x9a\xb5\x9e=6\x8a\xc6\xb3\xc7\x7ff\x8b\xfb\x86n\x8fg\x8f\xbf\xa9\xd9\xeb\xd9\xe3o\xd9\x82\xff\xdc4\xfe\xb3\xc70\x0e?\x85\xa1o\x1b\xc6z\xf6\xf8;\x86\xef\x9e=\x86\x91(U\xee\xdf3\x1d\xfb\xec\xf1_\xe6\xd0\xbf\xcaq\xbfo\xfa\xef\xd9\xe3\xbf\xd6<\xf3\xec\xf1\x0ft?<{\xe7\x97\xf4\xd4\xf3\xec\x9dOk\xb1\xf9\xec\x9d\xcfX\xd8c\x0b\xfb\xac\x85}\xce\xc2P\xcf\xba\x8b\xc1\xafkI\xf8\xec\x1d\xb3Xy\xf6\xce\x9fY\xd87,\xec\x9b\x16\xf6-\x0b\xfbs\x0b\xfb\x0b\x0b\xfb\xb6\x85}\xc7\xc2\xbeka\xdf\xb3\xb0\xbf\xb4\xb0\xbf\xb2\xb0\xef[\xd8_[\xd8\x0f,\xec\x87\x16\xf67\x16\xf6\xb7\x16\xf6w\x16\xf6\xf7\x16\xf6\x0f\x16\xf6#\x0b\xfb\xb1\x96x\xcf\xde\xf9G\xc3k\xef\xbcca\xefZ\xd8\xff\xb4\xb0\x7f\xb2\xb0\x7f\xb6\xb0\x7f1\xb0w\x7f\xc9\xc0\xde\xfd\xb4\x85}\xc6\xc2\x1e[\xd8g-\xecs\x16\xf6y\x0b\xfbe\x0b\xfb\x15=\xa1<{\xf7W\x0d\x8f\xbf\xfbk\x16\xf6\xeb\x16f\xb4\xadg\xef\x1a\xcd\xfc\xd9\xbb\xbfea\xbfma_\xb0\xb0/Z\xd8\xefX\xd8\xefZ\xd8\xefY\xd8\xef[\xd8\x97,\xec\x0f,\xec\xcb\x16\xf6\x15\x0b\xfb\xaa\x85}\xcd\xc2\xfe\xd0\xc2\xec\xc8{\xf7\x8f-\xecO,\xec\xeb\x16\xf6\xa7\x16\xf6g\x16\xf6\x0d\x0b\xfb\xa6\x96M\xcf\xde\xfd\x96\x19\x8c\xef\xfe\xb9\x85\xfd\x85\x85}\xdb\xc2\xbeca\xdf\xb5\xb0\xefY\xd8_Z\xd8_Y\xd8\xf7-\xec\xaf-\xec\x07\x16\xf6C\x0b\xfb\x1b=\x8d>{\xf7o\xf5\\\xf1\xec\xdd\xbf\xb3\xb0\xbf\xb7\xb0\x7f\xb0\xb0\x1fY\xd8\x8f-\xec\x1f5\xec?\x7f \xdat\xf0\n\x06\xbf\x92\x07\xa1\x05\x07\x03\x82\xe1?r\xc2\xd0b\x0d\x0cA;\xbd\x8a!h\x89V\xab\x05\xe1\xcf@\xbc\x18\xcd0\x8c\xf6\x9ft\xf6\xb6\x08\xd3\x04\x01\xd0\xa0\x93T\xc4\xa3\x9d\xda$\x0d\xe2\x11\x02\xa1m\xa30\x0d\xf0\x03\x9aw7\x8c\"\xfc\x80|\xe3\xc0D\xfd\x05\x1a\xa22!\xd5'4u:\x9b\n\x81_\xd0\xdc\xfbI\x8cah\xf0X\xec\xd7\xb2\x1d\xf1\xa9\x99PY\xa1\xbcKp\xf2\xf9\xcf\xcf@\xeb\x8b\x99\xa6 :\xe0a8\xc50t\x81\x9cm\xa7\xe1C\xfc\x84~\x18\xa7\xc1hgW\x15\xf9\x03\xa4 \x8e\xb1\xdd>\xf3CE\x8f\xca\x05:e{\x16\xa4A\x1c\xe27\x8a\x86Y&\xd3@\x95\x0f\x1d\xb4\x93\x1e\xec\xc5\xa1\xca\xea\xef\xd146V\xc8\xd0+\x0f\x83\xb7\x83\x87;\x99\x0c\xe2\xb0&E\xbc\xad\xaa\x85\x1au<\x0e\x83\xb8\x96\xd7\xf5\x1d\xa42}\x18f;5\xdbp\xff\x84\xcd\x91e\nu+R\xa88\x0d\x86r\x94\x84\xd84\x9f\x85\xde\xc9v1\x88\xf3\x0b\x06\x7f\xe53z\x06\xfc\xcf_\x01\x990\x16\x91j\xe2_\x811\x9b\xcd\x14\xce\x1f#%\x930\x0e%V\xff+\xd0SQ\xb2\x07\xe5\xfc\x9f\xcf=F\xdd$\x80B\xfe\xcf\xe7?o\xady\xff\xef\x8f@\x90\xa5a\x10\x91%z\xa0/\xda\x19\xc7\x82\xf8sm\xa6\xbbj\xcdRhW\xfa\x92\x99\xd4\x95\x1d\x08a\x7fh\x94\x06e\xee\x11\xc68\x99&o\xe7\xc6IeaD\x1b\xe4\x18\xcd\x91\xb6\x1a\xbb\xc2Vd\x16\x8bx\x1c\x858\xd5\xe9\x9a\x84bK\x90%#{!\xd0\xf4\x9e\xb1\xe6)\xf3\x0dDLR\x88xY\x991]s\xa8\x90\xda\x1a:\x8dfYm*d(\xb5M\x14\x01\xdbi\x90\x934s\xcd\xa2!R\x84\x96\xd1(\xdcK\x85\xb1\x8c\x8e\xc5^\x98\xa9\xfeS\x03F\x8f\x14U\x91\xc4\xad\x88\xea\x11[\x8b`7\x99\xa5d\xb9|\x85\xe6\xdb\xf6\xb1g\x0e\xd0\xaf\x9e\x92_\xb9\xc2B\xb2h\xb6\x1dN\x0e\xfc\x9a\xc2\xad\x99m\x84\x9ax4\x15#<\xc7c\x9e\xd5\xec{)_\xb9+\x90\xf6\xe6\xfal2>\x0b\x96.\xfdt\xb1\x98/i+JFA$\x86\xf0\xc1B\xe7e\xeb\x96\x83\xde#M\xe2\x17 ,\xc8\x8f\xc2\xe3\xb1\xe7\xf1l$\xbc\xc2U\xa3\xfc\xd0T\x03O\x91/\x16\x02\xff\xc6\xf9)\xe9T\xbf\x19\xbbX\xac\xf7\xdf\x1c\xec\x0f\xb2\x13\xaf>h\xfcb\xcb\xa3\xaf\x90\xb5A\xd3\xff\xc8\xb0\xb1\xbe\xcd\x08\xa1K\n\x7f[2\x0dw\xbd<5\xb4\xce\xa6\xd8\xbe\xfah\xea\x91\xfe`\x90\x91F\xd8 C\x90\x81\xdb\x84\xb2\xd0\xde\xcaH[Q\xb2/R\xbc\xd8\x1f\xb4dr\x03\xbe.\x07\x99\xf0(e\xa9\xf6\x10\xa8c+\xf3~3h\xbe}\xa9\xf9\xc9v\xf3\xbc*B\x97@\xc8\xf1i\xa1,\xc8o\xfa\x89GR\xc4\xce\xf12\x99\x1f\xdf\x88\xd5\xa9g<\xb8#\xfb\xf1p\xc9\xe2\xa5\xe3\xeaV\xba\x8eo\x8d\xcb\x01\x8e/b\x9c\xeet\x8e\xb3\x13D\xe7\x02=\x1d\x99'\x82)So \xab\xa3\x894?\x8d\xcb\xfbC\x16\xf25<\x94S~P\x98e\xc5}\xda\x88\x13\xed\x17\x95\x8d8\xd9\x0b\xb3p+\x8cBy0\xc2\x1b\xfa\xa4k7\x96Dk_l=\x0c\xe5k\x88]\xaf{\x11'.\x04\xd3+\xc0J.\x94\xe1\xfd\xc9\xcb\xc9\xeet&\xc5\xf8\xae<\x88\xc4b1\xf1\xa8\xf3\xe4R\x1f\xe6\xc2\xa6\xca\xa0 \xc1\xdd\xe4m\xf5\x9b5\xc9\x90Mm\xb5\x8b\xf7\xf5=2\x0e\xf7\xd0\xed\xec\xcc^\xca\xe8\x8e/\xf2vw\xdcl\xd2\xb9L\x0f\xe6\xd3V\x06\x05\xb6\xd41\xbc$\xe6\xb3\xfex\xd8 \x99\x0cG\x0f\x0fH~\x1emI\xc8\x1a/#\xd7\xeb\x13\xcfqR5\xf1\xe8|\x93\xdf\xe2\x97\xf9[\xfc\x1e\xbf\xce\x9d\x97\xe1w\x9c\xc3Y(\x8e\xafEI \xf1\xeaG;\xc7\xda\xf5\xe8<\xe6s\x99L}\xd9\x9a\x06\xdb\xe2\x8d\xdb\x93I&$\x8b\xc4Dj\xd0'\x14\xc89/\xb3\xad\xce\xe3\x15\xa2\xd7x\xdc\x82D\xe6\xde\xc6\xae\xa7\xfda\\\xc6#\xcfN\xde\x80)\x93i\xbd\xee!\x8e\xe7>\xab}\x80\xa7\x06\xf2\x83\xbeE?)\x95\x99\xe0//R\xbf\xa7\xce\xd0\xb5\xa9\xeb\xb00\x1f\x1b\xc2\xb92\xd3\x15\xd0;\xa2\xd9\xa4[^\xd2\x17C'\xc9\x96>{$Z0'\x9a'\xec\xa5*\xf9\x02\x17\xad(\xdc\x0d\xf5\xa1\xa2^\xdbG\xf0E\x0b\x16\xf1\xb8\xb7\xe1w\xba\xa2\xb5\x9b\x8c\xc5\x1a\x97\xf5zq\xf8\x98\x93]q2\x16\xaa\x9b\xcb~j!O\xcb&$\xd8\xca\x92h&\x05a\xaa\xa5\xb9h%X]\xfcj\x90\xe9#\x88I\xc3\xed\x1d'\n?M\x1c4\x94\x8d\x91\xc9\xd4\xc0\xb7\x12)\x93]N\x82\x99L\xe0{?\x1c\xcb\x9d\xfcs7H\xb7\xc3\xf8\x06\x14\xd9\xb6\x9f\x9bXN\xfe}/\x99\xf2v\xf1\x05h\x97\xf8I\xf8H\x8c\x1d\xca\xb7\x92G\x95d\x03\xbc\x82\xe6Q\x96A\xe8\xbf\x8b\xd6\x8d\xff\x86\x86\xb6$i\x8a\xdb/F\xecR\xf1\x0d\x97Ku\xda=g\xcb}dK\xbc\xbe\xe5\x0e\xec\xd6H\xcb3(\x9d\xd2\xc5B\xb4\xc2\xec\xb2\x88\"\x90\xd2\x9a\x83\xf9Z\x9b \xe5H\xc7q\xee\xaf\x0e \x01\xf0h\xa9\xd6\xdd\xd3\x9e\xaa\x90cc\xf1H\xdeU\xef\x0f@Y\x00c\xc0\xce\x98\x91\xe6\xe7\xb8\xb5#t3\xa9\x80i \xd5\x10B\xfd\x1a`\xde9Ne,\xd0\"|T\xb5\xe7\n\x8e\x82\x17\x9bu\x05 \xa0\xa5\xa6^\xc1A0\xde\x95\x19\x8f\xf1\xa8Wk+I\xc7\"\xb5\x81\xbb\xd3`\x04\x11\xd0i\x93$\x96w\xc3\xb7\x05'\x1d\xb1\x0b\xb5\xc8\xf9(\x93\x81\x0cG\x00\x1be\x19\xf6\x92[\x96\x811\xdd\x9e\xf9\xb3P\xad0\xceD*?*&I*<\xdd\xa2\xc0\x03\x9e\xa0,\xe7\xce5n\x12\xe5\x99\xe6\xf3\x04IE\x84\xce>\x9e\x83\xe7\xd9\xc8\\\x0e9u\xb0\xb9P\x06\xe2\x90Yl\xdb\xb1nj5\x16^\xc3(\x86\x93\xbd\x12\xc8\xd0\xa7wMM\\y\xff(?\x06\xb3\xd6\xeej\x04WPZ\xd6t\xdbG\xe9z\xe8o\xcbfj\xf8Z+\x9e\xd8VEy\x0b\xd2\xff\xa18Pz\xd1\xca\x9d\xac\x87\xe2\x80\xe2\x0dB\xbc\x01,\xf1\x07Z\xdci\x16\x86r(\xd7\x12bw\x1a\x89a\x1a\x89\x9bM\x1aNPI\xc5t\xa8\xa8@\xa0^G\x98\xd3V\xfa\x92\xb9\xfd\xa6s\xc9\xd7\xf4\xc9\xaa\xa5|^\xbf\xe4=\x9ae\x16\nm\x802\xa3\xd9q\x8f\x88?o\xde\xdb/\xcf{\x0f\x9e\x9b\xe4Q9\x89s\xb8\xbb\xacYAG\xe4\x04C\xff\xb1t\x15 \x9fK/W\xb3{\x04?\xea\x13@Zu\x81\xb9\xc1J\n_:R\xc3\x95\x0d6B\x8b\x8a\\$\xd8\x18\x94\x0f\x8e\x18\xb0\x11J(\x98A\xebK;~\x97,ST\xecxH\x07-\x16 P\x17@\x99\x16+X\xec\x0e*Q\xf6\xdbF\xaa\xb2\x9dX\x04P\xa6\xe4\x0f\xa0\xbe\x0e\x92\x131J0\x83\x84)\xcaX9\x90.W[7\xd1\x0eK\xe7\x06\xe2\x97Q\x18T\xd4\x00\xa1\xd1\xd5\xe4fA\xeaSi\x8f\x06\x06\x1f\x0c\xa7G\x0b\xc2/\x86\xc2\xdf\xc2\xf0\xcb\xe9D\x03/w\xe5\x0d7\xefC:\xad\x18\x8d\xb0%\x1b\xf1\xab\xc0\x8b3~\x15\xb8m\xca\xe70\xb0\xfc\x18\xfa\xd4\xcfk\x1c\x97j\xbcdFh:H\xa9\x13\x1d\xcfvE\x1a\x8e\xfc\xf9j\xdf\xa4\xc7\xea\x9bt\xb5o4\xda\xbddZF2 \x83\xa2\x98\xaa\x8c\xe5@\xe9\xd2\xb8\xc9U\xf5\x15l+y\xe4\xcf\xb1\x87F\xad\xfd0v\xfb'h\x8d\xa2P\xc4\x8a\x8a\xa6\x8aNU\xeb)\xd1\xee#\xa7\xab\x08\x99L\x9b3\x1b\x9a\xb6tC\x94\x08e\xa5\x92t\x12\x0c\x96\xd3\xd8v\xd2\xe4\xb8\x144fyx%a\xdetK\xec\xce\x88)\xd5\xc7'x\x02\xb39\x12QD\xd0QD\x98M\xa3\xe0 \xef\xd3\xd0\xf6_\xa6\xf9\xd1)\xb3\xe94\x90\x9a\xeft\xacb\xf3\xa6m\x07\x06b\xd7ov\x98R\xb3\xfc\xb5\x8e\xb9\xf0\xd6\xbb\xe3Q\xb6\xdd\xca\x84\xbc$e\x1an\xcd\xa4\xc8\xf8\x0caj\xb9\xc8#\x8f:\x8e@\xc9\x8e\x08\xc6\x04\xa2\xc7\xc9\xee\xa5;\xd7y\xe0\xe0\xa2\xcem\x1cu\x8e=\xca\x12\x8fz\xbb\xadO*\xe67\xd6\xe0\xdd\xd6'\xeb\xf5\xdd\xd6'\x95e?\xeb\xe5A}L}\xc9\xa0\x91\x0ew\x18\xa4\xfa\xb7?t\xb7*\x9c\xae\x8fy\xb3\xc3R\xde\xee\xa6\x17\xa4\xbd\xce\xd9h\x00\x0b\xca~:\xd4\x8e!&\xa1H\x91\x11\xf1\xfdN\xb5>2\x06\xf0\x9c\xb3SO\xb04\xcfZ?0\xd1\x1f\xb2\x8c\xb7\xbbY\xee\x80=3\x07\xf6\xd5\xa5P6\xe2ik+\xc8D/\xea\xb7\x87\x0d\x15\xf6!\xccf<\xec\x8f\x86\x8bE\x9bM9!\xadQ\x12\x8f\x02\xe9\x8d\x18\xa9\x11j\xbef\xb4\x0bH|\xd6P\x07\xfd\xc7\\w\xf0\x1c\xb5\x90~g\xc8\xf0\x0e\x9a\x1f\xf57\x86L9\x90\xba\x19L\xfd\xa8\x7fr\xc8\xcc\xe3\x82~\xd4?5dQp R?\xea\x9f\x1e\xe2K\x87\xcd\xce\x1a\xe7c*\xfb\xe3a\xcb\xfa\xc1\xcb\x1a\x0d\x86\x10\xfd\xa6\x887q\xae<\xee\xf0\xc4\x9b\xb0\x94v\xd3\xd6\xd6\x81\xba\xa2\x921i\xc6K\xc6\xdal\x9e7\xa8?e:\x0f\x7f\x87\xe5\xf9\xfb\x9d%]\x06jxO\xed\x98\x0e\xf2fN\\\xd3\xa5\xd4\xac\x05\xa3\xc6nI\xa8l\x0b\xabo\xe5{E\xff\x85u\x13\xae}GYV\xaf\xcb\x16\xb6\x0f\x020\x04 \xdbN\x08\xb6_\x18\xa5\xdbL\xc5\xe8\x0f\x88\xc0\xe6C(\x86\x8c\xd4\xca\xe9\xe1R_\\\x8c\xb5\xb0E'\x1dU;\x1b\xf6\x81\xe9\xd4\x13\\,\x16\xe8\x03>\xc1=\xae\x95\x9b:\x82\xce5\x8e\x9d\x98\x02\xde\xee\x06\xf9\x0d\x91\xc00\x1cH\x8b\xb0\x1f\x0ciW\xf63\xb7S\x9bM\xfb\x08n\x04e\xb2Dy\xd8\x1f\xe5\x998\xcf\x06@&\xa3!\xed\x1a\xff\xceNF\xe8\xb8s\x96s\x07\xcd\xbb\x7f\x86\xe22\xe4\x11zQ9\xf3\xdc1;_v+\xdb\xc6\xbc\xe0R\xb8\xc6\xe4\xfaV\x92}14\xfca\x8d\x89\x85\xe7\xcda\x06 '\x9e\xf6`\xf1\xda\xbd\x9b7\xae\xa3\x8f\x02-\x8e\xea\xf5\xd8\xf5\xa8y\x18\x1a:+\x89y\xac^\x1b\x8a\xe5\x15S\x16\x88\xbd|\x13%V\xf7)\x81*\x1e\xdb\x0b\xd7}1\\j2\xd6\xd2\xd5\x1d\xd2\xcb\xc9,\x1a\xc7\xaf\xc8\xda$\x8c\xc7\xb5\xa0\x86\xb2X;\x92k\xd5\xd0'\xc54M\xb6\x82\xad\xe8\xa0\xb6+\x828S\xae&\xe4\x8e\xa8\xe1\xc3\x07\xf6\xe1\xa9W\x94\xb4}\xa56\x0d\x80t)\xd2Z\x98\xd5\xc2x/\x88\xc2q\x8b\xc0P\x0d\xa6S\x11\x8f\x95)\x0b\x1f\xab\x87\xb9\xe28\xfe\xde\\\x14\xd5g\x87\xd9n\x91|\x92\xfbh/\xce!\x9e\x04]\xcc~\x822\xa2\xa8\xc6\x88d\ned\x94I\x98BO\x9fy\xce\xbb\xa0G\x91\x17\xb7\xe2QW\xd6\xeb\xc5\xf2=\x12'\xf1H\x104q3\x98`?\\\xe5E\xc5\xcc\xe6Yg\xd8\xf3Y\xe9\xa5\xad\xd8]:\xb8O\x13q\x02\x8a@.Y\xbc\xb4\xc1\xc9G\xccw\xcd\xb3\x13A\x8e\xc4\x08\xad\xcd \xba\x8a\xd2\"L%\xc2\x8f\x9a\x93\x00\x01\x8c \xb2\xdebw\\F\xa1\xdc\xea&&5~:\x89\xf1[\xcb\x83\x8b\xed\x1e\xa9\x95\xe3(\x1e&U\x94\xa4\x0d\x8eFgf\xb2[\x922y\nR\xaa\xe8\x92\x18G\xf9q.w\xbba\xbd^\xe5\xc1fK&&\xb3A\xbc\xfe\xeaK5\x9bb\x1a\xc6\xdb\xf77op\xf4\x8d\x1aLA\x04\xa1\xca\xbb\xfeV\x96\xc4]\x98b\xcf\x9cb\x96~\xc8\xc73~\xcd\xbc\nG\\%G\xc7!\xa5\x942R{u\x9d\xe0\x03-+\xaa\x92\xba\x8fhyw \x9c\x8c\xfe4\xcajh\x81 \\\xff\x06\xae\xb5\xd2q\x03w\xa8\x0d\x1a\xca\xa0K\xe50\xf7\xdc\x11\xc2\xf5\xb0\x9dt\x9c\x18\xb1\x1eww\x84\x90\xd4\xfd\x80~\xbc'\x1eI.\xf2g\xc1\xbb\xb25\xc1\x0b\xda\xf8\xf64\x95\x05j\xdc8\xda\x95\x05\x11S\x92\x11\x90/\xd4\x06\x9dG/\x97\xec\xdc\xf9\x8d\xe7\x8c\xf0\xdc\xa1\xdc\xf9\xf6\xa9\xd3\xa8\x1f{g\xcf\xb6\xcf\x82\x82\xec\xc5\xde\x99Sg\xdb\x94\xc5\xde\xa9S\xe7\xda\x14Ue\x1d\x9b\xd9Pd\x9c\xd1\xb1\x11\x8f\x94\x17\xe0Y\xd1\x0b0\xea\xcc\xcaw\xb0\xda\xfa\x18\xe7\xdf\xae\xc3fT\xa4\x8b^\x87w\x00\xf3\xdc\xe93J\xa3\xee\x9ck\x9f\x02\x8d\x1a\x94\xf9S\x1b\x94\x1d@9g;\x1d\xdaR\xae\xe6/'c\x91\xb1=\xc8\x05\xd6\xdd\xad\xf0\x1c\xdb\xe2\xe4d\xab\xddj\x13\xf4\x91\xb6\xdf\x1dEA\x96\xd5\x1e\xd5\xd4I\x8bLM\x11s\xc7S3nX\xcf\xa6\x02\x02\xea\x91\xbb8\xd8\x15\x9c\xdc\xdd\xb8\x8d\xb8d\xd5]\x8b\xf2\xf4\x08\x13\xce#=\x0b\xc5\x86Y\xb9dkx\x0bu7\xcc\xccK\x16q\xd7BZ\xa9@\xe7\xd3q\xc1Z\xaf\xfb)F\xf7\xa7\xb7\xe3\xe8\xa0'\xfb\xea\xc3\xecn,\x16\xe4Q3\xdbH\x9a\xfa\xb9B2\xe4\xc2\x7f\x88\xf3y\xc1\x86\x0f\xd4\xed\xb6\xf6\x83\xe8\xe1\xdd\xd1\x8e\xd8\x0d<\xc1\xe6K\xf8\xef\xb9:\x00(\xdak+\x0c,\xfa\xe4Q3\x15\x9f\x9a\x85\xa9\x18\x93a\xbd^\xf2\xa7X\x8c\xc6\xbd\x96\x96\xf9\xc6-J\xf3\xc1\xfbC\xb5$\xd6\x9fy\xd0H\x8cr^l,\"!Em\x05\x8e\x80 >\xb8=\x01\x82<\xd1\xc20w\xc1\x85\xb4\x1a\xa6\x13&\xb1\xb0 1\xcc]p!\xa1\x86\xe9\x84q\"u\xb28\x91<\x07\x15\x92 \x842\xfbt\x98\xe3\x8c\x15bgQ\x14lE\xc2\xe4\xa3?y)\xb2\x98\xa3\x05Wx\x15D\x8cq\x98\x8d\xd2p7\x8c\xd5+O\x95\x9e`W\xd1\xf0\xb9\x14`\xa3[\xc1.n\xc8\x15\xe2yU\x92\x02]\xa58\xeb\x98Q\xa2\x0b\xfabn\xad]5}\x98QrHt_\x0e\xbbEO\xab/\xad\xe3\x04\x85F\xf9L\xb9]=<-\x8f\xedy\xabrBF^Z\x1f\x99\xa9'[\xcfp\x1c@\x86 \xcb\x9b\x8a\xdaK|\xde?\xf5:\xfa+\x1c\xed\xe0Z\xadD@Us\x971\xcaD\xf3\xb9\xdb\xf8~)v\x89\xea\x9a\x14\xbb\xd9\xcapS`h\x06\xf5\xb2\x13~j\xfd\xa1\xa7?\xf9|\xe9w\x0e\x8f\xd5\xbf\xfd\xf6\xd0\xb7 p\x84\x98\xcfe\xfe\xaaM\xb9t\x80\xa2\xb7W\xdd\x1e\xda\xfdf\xde6\x8a*\xbcj\xafo\xe5\x1b\x96A\xa0\x9a\xeb\xf4\xb8C\xf1\xa0F`\x7fH\x1d\xfe\xc1\x16\xc4\xa24\xbb\xccq\xf1L\xa0;\xd0\xe11u\x86\x8e\xf1I\x13\xab\x87Qd1\x9f\xedV\x00\xa4k\x89\x19\x8a\x8c:g\xcd\xa0\x0f\xf0M\x029\xe4\xa2/\x1d\xf6\x96C\xba\x8c\xed\xcb>H\xa3\xb1\x8e-\x0b\x15\xd2\x15V\x18\xba\xa1-\x02B\xfdb\xec\x85\x0d\xe4\x06\xa4U\xc7\xf4\xdbC\x95W\xc1\xef\x81\x8d\xa3F=\xec\xd4\xeb\x0f\xd0\xd7I\xfeveE\xe5\xad!\x04\xeb^\x91\xa3\x8b\xd0\xd8ne\x014B&\xbcr\xfb\xb8x\xd0x\x0e?*\xbb\xb8\x95\x8d\x92\xa9\x80\x15\xb6\n\xe0\x9d9UGX\xad\x98 t^\x9c+\xda\x00s\xd4\xee\x12\xfdy\x8c!!\x87\xa8R\xdcV\xd2\x8b\x15\xa9\x14\xfa\x9e \x145{\x9c\x02\xfc\xd2bN\xf5v-\x13\xa3Y\x1a\xca\x034\x14\x8a\xac\xa6\xfc\xda\xe2X\xd8 \xf6D\x0d\xd2\x9a\xd5\xe7\x01\x01\xbd~\xe9\x9ek*\xbcz\xb6\x86B/\xdbH\x9a\xaah2t\x0f9Y\x03#\n\"\xaa~\xb8\xfa9T=;L\xbf\xa3\xc6\xb0\xa0\x98{M\xb3s\x80|\xae\x82\xb8\\t\xb8_A\xdd\x85\xaecuq\x97\x9f\xca\x88b\xd3\xa9\xcfQ\x12E\xeaY\x8bk\xb8\xbaD\xcc2\x10\xd7\xeb\xb7D&\xc5\xb8V\x8e\xcbjA*J\x9e\xd6\xd1\xdfb\xdeO\xd5%\xd9\xb5\xb1\x1d\x98=\x8fd\xd9\x9e\xfa.c\xf7\x1ex\xa4\x0c\xf3\xb3lO\xb9y\xafEI\xbc-\xd2\x9c\x04\xdc\xe34\xca\x96r\xffH\xa6\xe1T\xaf\x9a\x8e\x97;\xe2\xbf@\xfe\xbb\xb3H\x86\x87\xe4\x8f;+Q2\x16|\xad\xed\x13yh-\xbd*B\xe4\xa1\xd5\xd4-\x8d\xfcYNF\x86\x1c\x0b\xa2\xe6\xb81'Y\x88\nd\xde3+}\xe2Wu\xfes\x86\xe1j&\xa5!YF\x80\xca$qtP\xd3Bw+\x125\x99\xe8\xe6DN0v\x17\xe9\xda\x15 \xa2l\x14\xb3*\xe5\xbd\x83\xa9\xa84\x8e\xe1Dm\x87I\xa5\x85\xec\xf8\x96\xb6cd\xb6t\x8f6\x16e\x83\xa3\x80\x964q\xf3\xf4\x974r\xc3(\xa6E\xbc\xae\x16.\xb2\xdf\x1e6\x8e\xb70\x95\xfd\xce\x90.W\xcb/.\xf3/\xf26\x8e\xf1+\x16Z\x9beb\\\x0b\xb2\xfcl\x80\xe25\xf7\xdc\xa3\xf6\xb7\xca\x12\xe5\xed\x17Uq\x16\xc1\x041\xe3\xca}\xaa\xac\xd7\xa5\xb5bT\xa8Qy\xa4z\xc0=\xd0\xd6X-{\xcb\xa2]=\x10\x9c\xc46\x952\xd7\x15Lu\x01\xed\x06\x0e\x97\xe6%\xf0~\x1e\x1e.\x8b\x16.\xc7\xd4bMO9\x0c\x15\xf01\xf7<\xd9\xcb\xb3\xc0\xe7\xa8\xe9b\x91\xa3-\x16\xfd!mM\xc2H\x8a\xd4\xdbn\xcd\xe2\xf0S3q;\x8e\x0e\xd4\x1bn\xf5\xba0\xef\xf2\xadN\xd78u\xcc\x81a\x02\xb5\xa6\x91U\xaf\xbb\xadN*\x87p\x00\xae\xffY\x8c\x8f\x1a\xf1\xb0\x95c\xe5\x03&\xc3\x95\xf7\xc4K\xeb\xf5\xb5\xb4<\xbf-\x16k\x86\x11K\xda\xedb\xe1\xad\xcc\x86\xe8Y\x18\xad\x9dq\x91\x8dY\xccG^\xc8t\xf5\xbak1\x9e\x91*\xe5\xd8{\xae\xa2*\x194\x8b\x8f\xb7\xc1xLq9\xa2\xe60\x98\xc5\xd1\xa2\x1aS:?d\xabj,\xa6\xa9\x18\x05R\xed\xfay\xa2\x95\x03\xf8\nBqc\xc8\x89pu8\x883\x8bq\x95\xa5\xfe*E\x152\xb3P4\xdb\x8e\xf5\xb4\x17\xc6@\xbe2\x0c{\x81\x11\xb3Aa\x93\xa6`\x06^\x11\xae\xb6C\x95\xe0\x0c\xb3\xdan\x10\x8f\x03\x99\xa4\x078I\xc5I\xdc\x84\xf2j\xceR\x9f\x054W!V\xb7\xe2\xec~\x01\xfcj\x9e5j\xb6\xeaO\x1bA+-\xd7\x86A\x924\xdc\x0e\xe3 \x02\xe1L\x86\x1a\x81e\x8e\x9a2\x16\xd9(\x0d\xd1\xc6ZII!\xbe\xf0\x99\xd3\xe5\x005ye4j=i\x97r\xb4s\x8b\x03\xed\x1a\x0e.O[\xb84\\1\xe7+\xaf\x02d\x043-\x83\xc9\xb2\x8cR\xafWw\xec\xcf|\xfe\xc4\x0e.L\x9f\xd0\xcdH\x99z\x0b\x9a\xe0A7\xad\x0cB{\x8f\x92\xe4a(\x0c\x00w$\xb4\xa60I\xd2]\xc2\x1c\xad\xa5S\xcc \x16\xf4NFj\xea\xae\xcaH\xab\x1c\xb0FQJ\x0f6\x91\"D\x8f\x80^\x8e<\x0dF\xe2\x8a\xc0+)bL\xfc\x17\xd4\xf9\xc4\xa3\x91\x98J\xe4\xfa0\xf6\xb1\x8c\x02\xd7\x0b\xd5 V\x0f<\x8a\x14@z\x0e%G\xea\x87\xc7\xa4\xc5\xea\x8cR\xcb\x11\xa3$Rf\xb4D\x88yq\xad0x\x9eVx\x04\xff\xe5\xa2\x01\x05\x95\xc3\xc9\xc8\x17W\x02\x19\x98\xae\xa6\xca\xff\x80Zl\x18\xbd\x88>\xf0r[_m'\xc8\x14?2D\xc3\x87\x9c\xb4\x01\x08\xe94+\x1e\xb3\xd0)\n?\x03\xad\x90\x0d*J1\x9b\xbb2Z]\x10\xe5\xeb\xa1|\xbdT\xd8C.\xadU\xd8\xa4\x84\x87\xe2\xc39e\x82Z\x0f\x9d\xaft\n\x9a\xa9*&\xf8\xb8\x9f\xc2D!\xebu\x08\xa9'_^xI\x15\xd8>\x83L\xf0\x11\xf4\x9f\x95:L]\x15v\x99\xb7\xfam\x8bi\x19j7kf\x0f\xc3is\x96FM4~\xe2y\x9dz\xbd8\x90\xd4i\x96(J\xf67\x95u\x0f\xef\xf6\x17l\x88\x95\xf9P=\xb7\xe7\x8c\xa63\xa4\xf3\x19h3\x919P\xcb\xe7K-\xa8]\xd3\xcd\xfa\xa3\xe6\xfe\xfe~\x13\x12C\xc6\xca8;& \xb9\xc7vWx\x9c\xeb\xc18\xfc\xa6A*\xd71 Z\xfc\x942\x0c2\xbd26'\x01\x1a\x0f\x8d!\x9a\xeb\xdd\x08\xc3\x91\xb6\xf9,?\xe9i+2s$\xa80dX\xad\xed9I\x8ec,\xd4[>\xf3*B\xe6KV\x01\xd6\xba\x85\x1e[\x95\x18\xf9\xa6\xc8ay\xe4\x18}\xa5\x91\x0dM\xe7\xc4\xbc\x02\x9f\xa5U\xd0\x8a\\\xba\xa5\xc9\xdaK\x0bS}!Vy\x0bB\x0d\x0b\x11\xadBfB\x8e\xc9$-\xd8J>\xec\x10J\xed\xd8\xe9\xae\xa9\xb3\x13\xcevz\xec\x1e\x1d\x8b\x8b{\xebq\xf5\x06:\x8br4\x10\xff\x8e1L_x\xd1-\xa0.\xbfX(\xbe\xdfn\xc9T/z\xe7]&\x9c\x0f\xbc\xd5\x16E\xb7'\x88\x84!\xae!\xab\xb6\x18\x90\xe6Ff\xa6%a\x99\x1eb\xd1\xb1\xfa\xd4a\x08FY\\\xe3\x1cV\x83&|\x88\xbe\xb8X\x98\xae\xb2g \xd2\xd53\x10o\xe1\xcd\x1a\xfd\x04\x9e0\xb9\x16\x0d\xc4N\xcfDU\x07\xf7hA\xae8L^\x90-\xc9H\n\xd9\xccd*\x82]2<6b\xe5\x08|>~\xa9\xe6/\x94\xb4\xd4H\xd8F\x115\xcb\xd0\xc2\xf2\x83\xce\x0bU\xb7\x96\xd7\xb2|RKy\xbb\x02\xbf>\xee\xe5F\x86KQ\xe4\x15\xe2\xa8O\x08mx\xe4\x01ih\xeen\xc9\xe4r\xb0+\"\xe3\x8d\xac<\xb4\xa3\xa3\x87\xf6\xf3;P\x82\xe2\x90n)\xeas\xfbq\xdf\x00\x87\xdc\x8c\xb3|v+\x08\xd8\xde\x7f\x8bD\xf6\x1d\x0d\xc6\x19aN\x17;d\x94\xd4(=\x88>\xc4\x84\x91'<\x16\x91\x0d\x82V\x10\xd0 \xf5$\xb9Xh\xe1D\xca\xc7\xe3II`\x8eiy>\xac\x9a}\xa6^\xae\xae\x81\x92v\xdb\xab\x9a\x18\x02\xdaU\x9c\nJ\x80\xbb\xb9\x18\xd9\xcd\xc5\xb6\xbb\xbct\xed\x0f\x92\xdaSL\"\x93\x1fM\xc6\x07\xf5\xfa\xacW\x84X1\xb3'\xd2( @3\xc0\xb4\x0f\xbf\x18\x81\xc3 9\xe6!\x04\x93\xaa\xe2\x10B\x82^\x88l\xff\xe5\xb8\xbc\x9f\x87\x87\xcb\xd4!k\xad\xc8\x03y\x14u\xccj\x06\xa6M\xdf\x9e\x17\xf7\xf2\xfc\xcc\x89\x84\x1c\xed\x88\x13 \xd2N\x88R\xaf\xf4_]\x7f\x95\xa0\x9bR5\x17\xbak\xd4\x18\xe4\xac9\xc9b\xe6\xcaX[\xbf\xf3o\xdd'\xcej\xdf1\xcb\xa2a\xc3\x84A\x10\xe9\x93\x02\xf3eW\xb6\xf0l2/\xc4\x17s6\x11+E\x9a\x88\x96\xe9x.\xf3\xcd\x1c'\xbb\xa5c\x17\\\xa18\xb7\x14\xaeVf\x0eq\xbe\xb5\xc3)\xd3\x9aoLkK\xe7\x1a\x9dJ\xb0,]\x1f54P\x9b9\xeeX\xe5\xad\xec\xb4y_\x0e\xddHeP)\xc6\x1f\xd2\x12\xb2\xaa%\x9e\x8b\xb1\xda\xee\xeaL\xc8J\x032\xd1\xd2\x87\xddh\xa9z\x06L\xd4\x95\xf5\xdaH\x9f\x88\x95\xc5\xf7\x07zF\xfa\x15\xe4\x9a-G\xe7\xd2\x97C\x10j\xaf\xb8\xe3\x8d\xdcU\x19\xe3IZ\xb5\xe1)kA\x0d}\x94\xe8#c\xaf\xc0\xe4q\xc2s\xb3a\x89{\x10\xeb\xba\x9d\xe9\xc2|\x1a\x0d\xd44\xaa\x8e-q\xd1\x0f\x86\xdd\xac^\xcf@\xf7\x90i0\xc2\xa3\x1d+\xbb\x8e\xc5h/ka\x98\xbb`S+\x17F\x99\xc9:\x9b\xed\xee\x02\xe3T]n.#xYK\x7f\xf1bT\xa1\x08\x0b\xcd\x0bq\xe4\xff\xe1\x05\x95\x90\xbc\xac0\xc9\xac\xa2\x14\n-\xc48\xb5\x13\xe9\x9eH\xb3\xd5\xeb\xf5\xc5X\xaa\xea\xa6>y1\xaeX7\x9b\xc2\xca\"\x01\xdd\x96\xd1p\xe2m\xb7v\xa4\x9c\xde\x14r'\x19gV\x0f\x11\xa0x\xa0C\x81`7x;\x89\x9b\xc14\xdc\x0e\xa4\xd8\x0f\x0e\x9aA|\xd0\xdcE|\x14\x04\xaa\xefg<\xeb\x0bd\xfbY\xbd>s\x0eH\x95\xeb\xe0\xc6\xa9k\x80\xeeq*ZPJ\x0b1\x15\xc7\xde\xb4Qw\x13\xdf\x0fa\x12\xcf\xadHsV\xc5-\xa85 \xe3\xb1\xb7\xe2\xdf\xc0:\xcb\xd17gd\xcbX\xbe\xc3\x18?\xc3xI\xe9bQ\xd8\xb0\x97\xea\xb0\x86\xd9\xd4\xd7\x9ff\x17F\x9acH3~\xd9\x93l\xc62&X\xc0B 0\xb6&FTrf}\x03\x18\xda\xc9\xc9\x81\x95L\xc4\x85vs3\x17\x0d\xe2\x93\x86*\xa2\xfbbE\xb0\xb85\x16[\xb3\xed\xc5\xa2\xd8c\x85N\xe2\xa5\x86\xc4i\xf0\x12E\xf32\xf6\xb59$^\xaf_\xf5\xf2\xaf\n\xef\x043\xa5\x19\xcc\xac\xe4\xcc\x14\xef\x08>wF\x82O\xae\xa8=9\xab\x89\x91e\xd7I\x03\xc8\x18\xef\x8b\xe5\xb2\xc0\xcfn\xc6\xf7<\xe7\xab/\x86\xac\xcdf\xd8D\x86\xec#\x07Z1\x96\xd2\x99\x1df\xb3\xcaaV\x84\xda[|\xaayFxv\xde \x9a\xbb\xf09\xf1\xd8\xbf:\x16\x06\xa5\xb7\x16\x9a\xcf\xc5\xc2\x06\x9d\xd1y\xa1M\xb1\x9bt\x99\xc0o\x96\xc4\xd5\xab\xc7\xa1\x89\xa3\xb48\xc0\xf2\x08{\x91QR\x96r\x98^R\xbc?6K#\xdaM\xd5\x93\xf9\xa3$\xe2\x82!\x8c\x9b=D\x0f\x06\x9a\xce\xc4\xde\x89G/\x00\xc8Y@\xa4Y\x87\xda\x1b\xbcC>k\xb9\xc7=\x99E\xb1\xb7r\x01\xa5\xa0\x7f1\xc5<\xa6\xbdmz\xdb\x03\x16=\x87\xe8fS\xd9\xeffM{\xb7k\x98\xcf_\x8aq*\x10\x94^\xb5\x1a\x03\xbc\x14\x97\x96\xe0\xca\xbf\x8b\xac\x92c\xea\x85\x1e7F\xdf\xe6qa\xfdxX\x18\xec\x85\xf1W0\x07e\xe5\x08j\xa5\xa0\xd4\x8ev\\\x19\xa8\x04\xda\x1a\xe71h\xa8\xba\x12h\x1f1\x15*|\xa0\x9e\x94\x7f\xf6\xc5\xd0\xdc~K\x97\xd8\xab\xd2\x19a\xf9\xd6\x0b\xd6\xd0\x19\xd3E\xc4~:\\Q{D)\x8d\x8b\xa39\xb1:\x16\xe6\x98\x82\xee4\xab\xceDr\xe5R\xb4:\xdaQ\xe3x\\\xae\x18\xe0m\xe1\xce\x97W8\xf3\xeb\xa8\xc1\xa6U\xa6U\xe9\xe8\x92\x15K\x85\x91_\xc0\xd2\xca$\xa5G\xd5\xc4 as$\xbc:\x164\xcd\xc4\xed\xcb\xa4\xd8\x97I\xb1/\x81+\xfc\xe2b\xd1\xc4\xaf\x93F\xbc\\.\x97\xae@+\xf0=\xca\xcd\xc2,\x01K\xfa\xc2\xdc`\x8f\x06\xd9!i\xe3\xb0I\xac=\xcb\xf4\xf1\xec\x88\xad\xf0Yq+\xbc4\xe0\x1aAi3\x9c%\xee\xfd\xb8\xd9Q\xd6A42\xd0\xae\xa5\xf2PT}\xcf\xbe\xe4\x99\xacX\x13\x96\xf1\xed\xd6N\x90\xedx\xa1v5\xd8\xcf\x86vZ[v\xb5n\x910\x81\xcc\xc1\x0b\xa9\xd1\x086\x01\x89\xcd \x19\x17\xcb\xc8\\R%\x0d\x897S+n\xc6\xc20\xd7\xee\x00\x02J\x15V\x83\xac;\xf9\x92n\xaa\xbdOj\x99<\xa2\xea\xfa)h\x98\x05YT\xd4\x07\xdd\xa8\xcb\x05Y\x83Ro\x16EL\x1f\xe2\xd3\xea\xc6\x9a\x15\xf3%E\xd5\xcd \xd5TG\x9f\xc8\x0e\xd1'\x96%\x17\xc6\xf9\xd51\x01SN\xa5\xfdd\x96F=\x0f\x7f8\xfe5\xb6\xd5\xf9\xdc\x1aW\xe7\xb8\x1e_\xc1X.-\xc6\xd2`X\x13\xc8\xfa`\xee\xb5\x1a=:X\xaeo\xb3\xd23u\xb0\xdeKCXV)\xef#\xf6K\xaf2\xed7\n\n\xa3\xab\x90Y\xfc0N\xf6c\xb2\\R\xca\x04\xf5E^\xdb+\x8e\x97!\xc7X\x16\xc6\x93\xc4\xb1\x92\xc1\xa7R\xa0d\xd1\xb4\x12{\xca\xcbX\xc1\xc0\x02\xd85\xa5\x80\x15\x8dWT=\xd4\x95\x1b\xc5\x00\x93\xcfa\xfeF\xe5\x8b0\x19\xcaH\xf8\x84 \xc7\xac\xda\xd94]+\x9e\x88\x80\xbc\x15\x92\x90\x0c\xc7\xb2\xa3sS\xa7hJuma\xc1\xa5\x1a+\xe0\x8b\xd5[\xa5\xa9\x8d\x82X\xbb\xa0Ag3\x95\x15W\xa8\x9c\x90e\x05=\xbaM\xca\x14i\xf0\x0b\xd2\xa4S\x1d\x8f*\x8d\xac\xe9Zy\xf0\xf1gB\x88\xed\x95\x9a\xb9\x14q$)\xc5\xcf\x96L\xeeb*\x8f\xe6-\xb7f\x9b(J\xb6_\x94W\xcbWK!\x8b\xfcji%m \xad\x01\x0d/E\xd8r\x9dS\xc8\x06TE\xa2\x14\xe9nv{rW\xa4{\xe1\xa8\xe4\x17\xf20\x84c\xd7\xa6\x94\xf8x\x9d^L\x03}\x8f\xeeo\xc5~\xed\xfe\xe6\x0d\xaf\x9a*\xed\x047\xfd\xaf\x91\x97\xb3\xc2\xfd\xcd\x1be\xea\x8a\xcdYL\xe9\xca\xec\x1b\xd5Rl\x1a\xc8\x9d\xec\xf8\xe4!\xfa\xf1\x04\x17\xa2\xf2\xb9K\xc3MC\x83.\"\xf4b\x06\x85\xdcQ\x9e\x15\xbd\xc2\xd9se\x89\xc5\xe7-\x95\xdek\x0eNr\xc1dK\x8aGx)\x05\x03U`\xff\xa1G\xde\xb8t\xf3FME\xd6\x92\xb4\xb6+\xd2mQ{(\x0ej\x81\xac\x91\x06Z>w\x98\xa4~\xdc\n\xc6c\x95\x0c\xddPy\xea\x16\xaf\xf1\xc8Q\xa9/\xd88\x1b,\xec\xb3\x9cl\x11;\x87I\x83\xc1\xc7\x9e\xa0\xec\x8ag\x01L\xb2\x94\xb2\x1be\x002\xfd\x8e\xf6u\x05\x9c\x80\xfd\xe8I\xda\x92;\".\xbchb\x8bP\x1e\x81zq\x9e\x17\xf5c\x0f\xddj\xb5\xd4\xd0\xf6\\?\xb3\xd0KI$\xd0\xed'\x10\x95z\x02PQ\xf1\x14\xadl?\xd8\xde\x16\xe9bA6Zm|\x11NCL\x95R3\xe2\xee\xc7\xf9\x1d\x1b\x8d\xb3~{*\xe2Kw\xae\xd7\x8c&P#\x0d\xcf\xb6R\xcf\x86\xfc\x98\x0f\xf6\x1b\xb0\xb4*\xedG\xac\x9a\xc9\xc2\xa2\x99L\x0c\xbb\xa11w\x85|\xea\x8d\xbc\x84\x85\xda\xd6\x85\xbb\xed%\xfe^,L/\x84\xf6\xb4 \xb3\x10\xbc\xd3f\xbf\xc2\x98Y\xad%t.\x8b\x84-\x11\xcfv{\x16\xc4\x15\xa0\xdf\x1e\xfa9\x8c\xc4I,\x08e\xa1\xbeK\xed\xa9\x00O\xfb\xc2\xf1^4/9,Z\x9a\x1b\xe6\xce\x9a1\xd4w\x7f\xc2\x9c2\xe6\x1dr\xbd`\x9f\xcf5\xcd\xfe|\x89\x97\x14\x9d\xbd\xae\xfc\x8bv\x8b\xa7\xca\x8eh\xaa\xe78\xf3:\"%\xaa\xd0\x0f=re\xa6\x0eW\x8a\x9a\xc9a\\\xf2\xd3\xa4\xdc2\x91F\xaa\xf4\xe1#\xb3\xe4G\xc6;\xfe\xc4\x8eF\xa3\xec\xce\xf3\x88G\xb7'\x877\x93j\xe6\xd5\xe6\xb9\x14E\xea\xddX\x82\x17P\xb1\xa5\x94\xdd\xb2[\x95A?m$\xc3.Mx\xd2k4\x12\x7f\xe3p$^\x19sX\x8dm\xf4r\xdf\xf9\xe0i#a\xb7\xbdC\xcb\x80:K\xed\x13\x10\x06\x11\xae\xa8\xb4S\\\x7f\xae\xbd\xe2\xfar\xb9dw\xab\x1e2v6\x90T\x1eTo\xf1\x08\x10\xcah\xcd71@\x99^\x02\x1d\xc1\x8c\xab\xdbP\xc7\xe0Cg\x02>\x82\x05-\xd6\xe1\xdcW\xc8\x88\x1f\x16uH\x0f\x140(\xbb|\x04\x8d\xcaD\x9d\xffI\xb5\xcf\x9dC\x9b\xa5\xb4\x1f}\xacV)\xee\xf0\x1c\xd2(\x06\xe9\xf06q\xb3\xe1\x87\xc4\x1c\xd2\".\x82Y\x89\x1d\x9a7\x8c\x9d{^\xc2\xda\xaaIp\xa9\x9cT\xef\xcb%\x87\x1eG\x12\xa5\xe3HGy\xb4J\x9c-\xbb\x0fw\x1cIR\xff\x84\xe7f\xe3v\xa2\xac\xe8Dg\xc62\x1dy8\x06\x1eo*\xef\xed\xe0\x13\x80z?'\xa1,\x809 P\xaa\x9cd\x81\xda\xc1IY`wm\xe2~8\xe4\x01h\xfb\xd7=m\x90bxF\x1a\xef\xb3\xc5L\xb8j8@\x87\xf5\xfau\xaf\x04b\xee\x97I\xb6&\xd5\xceJ\xf9\xa4X\xf5`>l,\xc8a\xbft\x08\xdc\xf1\xd6rX\x92\xae\xb4{\xf7\xa2b\xef^\x14\xf7\xeeE\xc5\xde\xbd(\xed\xdd;E\x16w\xed\xc5\xca\xae\xbd\xd5Q\xbb\xaa\x03\xfb\xc3\xae>/y\xb8j\xb2&\x8d\xd1\x0c_P\x8d\x83\xc8\xaco:V\x16&\xd0|\xb1YU\xc4\xfd\x04\xf3\x0d\xd5\x1eY\xeesU\xcd\xfc\x84`\xba\xb26O\xdc-6\x16s\xd9h\xd0njW\xcb\n\xab\x11\xa3CV\x1a\xf3\xb8\xd7h\xc4\xfeFW\xa76\xd1,Uzvho\xd2\x1e\xca\xa2f10\xf5B\xb5\xb5\\\xdc\xfbV\xd4;\xeaJ\\}\x1c\xd8\xc9r\x9d4T\xa6\xcc\xce$*\x17t{\x8e\xaf\x1bU\x8b\x10\xb5\xdd[|\x92\xa0R\x82\x96w\x81\xab\xd1\x0e\x9b\x18\x9eS\x8c\xc3\xf2G\x96\xe3h\x87\x05x~\x8a\xf6\xc8b\xeci\xd3#\x0bq\x8eu\x1e\xd6\x83\xcfm5Wd=\xa7\xe5\x1c\xd4#\x95\xba\xe7\x94Y\xd6G\x8f,\xb5\x84\\,W\x0b\xe6\xe7\x94g\xe6\x92#\xcb\xd1H\xa5z)E\xeay\xf5\xd1\x8a\xe3\xd1\xf5PH\x85\xfc\x8f\xce\xf7\xc8\xfc\x96\xd4\xb5\xfd\xe2k\xaa?\x13;\xee\x92\xba\xaf)\\{\xb1\xcd\x0c\xa5\x00\xe0\xec\x1e\xe2OW\xa6\x07s=\xc5\xa9\xe3\\\x82\xea\x8d\x8d\xf2\xbc\x97(\xad`\xc3\xec'\xc5t\x1e\xf2Xg\x90\x99\xd4L/\x86|2JRA\xd84\x15R\x1e\xe0\x03X\x99\xbf\xd6v6\x1f\xde\x08v#\xb5\xc5\x81\xa5\x89\xfc\xad\xc6\x90\x8b\xe52\xe9\xdd\xf4\x12f\x17b\x82_\x84V\xc8\x9bJ\xf0\x8b)\x02|c\xb1\x0e{akWdY\xb0-|\xc7\xcf\x1d\x12\x96\xef_b\xfb\xe5\xcf\xaf\xcd\xcd\xf3\\\xfe#V\xb6!kC\xac\x7f\xd3\x84no\xbd\x95\x7f\xdcO\xa3\x95\x17\xd2\x8e\xd7\x0b\xc6\xac\xacjo\x8c\xcd\x9e r\xec\x82=\x91n%\x99\xa8\xd7\x0b|@>v\xf5^\x8d4\x10c\"\xe4h\x07\xd3a\x88\x07\xf9{\x10+\xf6\x19\x8ds[\xad&\xd8<\xd8\x16\xb1\xf4e\x0b\x7f\x97\xb4\xab\xe3\xf1\xcd\xd1\xf2\xd2W]G\xd8h\xb7\xf1\xe8\xaaR\xf7\x9c\xb72\x1fy\xbf\xb0)F\"\xdc\x835f\xae\x0b\xd6N\xcc\x0d\xf2\xd2\xaf\x9d\x98\x8b\xe5/\xd8K\xf2\xaa\xcb=\xe4\xfcRa\x82\xce\x91\xa7\x9f\xdf\xef\x87\x0c\x1bw\x98\x98\xae\xba+S\xff\x9a\xf9\xb8\x16F\xe2\xc3t\\B\xe7i+\x15\xc1\x182\x80t-\xe3Li\xb1 399G\x1c\xe3:\x9e\x7fO{\x89\x97\xe2\xa5E\xd5\xb1\x90\x90\x0bv\xcd\x0b\x8f\xae_\x82\x80\xaaZ\x88`\xf7\xc3\x90nG>!]\xd1Jb\x8f\xe0%kVh\xb8\xa4\xc1\x05\xb4)D\x8bx\xec\xc6B\x9f\x1ck,\x1a\x92\x97K\xb6q\xb6\xd39\xee\x0b\x82g:g\xcfR\xe7M\xc4\xb9\xf3*\x9f\xbf\xc2\xcb\xf9y\x99\x95C\xc0\x8ct>\xf1 \xe2\x93\xeb\xb1\xda\xafA\xa3\x0ea\x9d\xf6I\x9f\\\x0d\xd2\xe8\xa0\xb6\x13\xc62#\x8cl \xde\xdd\x19:\x17\x9f\xcc\"\xc2\xc8I\x04m\n%\xa7\xc3$&\x8c\x9cB\xd8e\xf4K\xae\x9e\xfc#\x8c\x9cVi\xd1 j\x81g\x11xE\xec\x89(\x99Z\xf8\x92\xa5\xad\xbb\xf7.\xdd\xbb\x7f\xf7\xc1\xe5\xdbW\xae\xde\xa5\xcb%;w\xba\xdd>\xce\xcb\x90\xf3\xf0\x9cO\xce\xb6\xda\xad3d\xb9d\xa7\xce\xb4\xcf\xbb\x0fVf\"\x9aX\x11\x90\x7f\x94\x9c`\x98\x01\xc7%\x9a\xd0\x8e`\x10\xf5\x0c) |\xe2\xe6\x8d\xd7\xa4\x9cn*m\x82\x85\xb0\x88\xd1/h\xcf\x97,\xe2+{\x94\xf3\xe4\xa1\xbf\xc1\xb9\x97\xe8\xf1\xbe\xdei\xb7\x17m\xca\xd4\xd7=\xf1H\xfa&\n>4\xdc\xc2\xd8,\x8d\xfc\xdc\x80w\x7f\xf3\x06\x03\xf1\xe0\xaf\xee\x85\xde)n\x7f{y\"\xc8\x97.\xd9[Y\x12\xbfx:\xc5\xd6\xf9\x1cH\x97l+J\xb6\x8e\x91\x114\xd7G\xa3d\xcb\xeb\xe7Y\x0eq\xc8FI,\xfc\x88i\xa5\xc5\x9f\x83\xf2P\x91a\xb8d\"\x96i(\xaa\"\x83%\xdb\x16\xb2\xc0*:&\xeb\x97\x96\xd9\xc3%\xdb \xb2*\xd4\x12b\x18\xd72\xd0\xe0\xed+\xd5#\xb5\x9c\x07\x8d\xc4\x93-ugc\xb1 \xdbB\x12&\xd8Z\x9b\xb2\xa4\x95\xc4Q\x12\x8c\xdd\x8eOZ\xdbB^\x8a\xa2M]\xe9\xd7T==gc\xeeM\xaf\xf5j\x8f\xfa\xfd7\x07w\x07\xf1\xf0U\xaf?\xc8\x06w\x87\xaf\xf6\xe8\x89\xf5\xed\xdd\xd5}\xc8P\xef\x8b\x95\xef3Q\xa6\x9f!\xefK\x16\x0f)\x83U\x08\x87?=\xf8\xd3 \x8c4b?^R\xcab/\xf2\xa0\xed\x81^\x01\xa3\x8f\xa7,i\xed\x87r\xc7yQ\x80\x930\x1eE3\xb4U\xe0\xe3\xa7&\x82I\xab\x86&\xadLH\xcd\xfe\xaab\xde(\x8f\xc6G\xb7\x01%\x1e{\x12\x97\\\xea\xf0\x97\x12~Kv\xfaT\xdb/\x0e\xc2\xb5C\x07\xbb\xd5\xe3\xa4\x97?Y/x\x90n\xe3\xe3\xacf\xd5\xc9$7\xf7UY\xcc\xdb\xdd\xf8\x82\xe8\xc6\x8d\x06\xc5\xab\x81\x16\xb9\x1f\x0f\xd5\x11\xf3|\xa9*\xfb\xed!\xfa\xb0ne\xf8\xfaw\x9b5;\xd4v}\xca\xa5}4\x86%\xbc\xd3M.\xa4\xddF#\xa1\xb2\x9f@\xb2\xc4$\xeb`2#K\xfa)D\xa66\x12t\x11sG=\x7fY\xbb\xed\xb8\xeew\xf8\x91x=\x1f\xcf\xa2RRx\xb3\xdf\xf2k~,\xa8\xe7\xbc5\xec\x9bm\xea\x9ez\x15\xce\xcc\nx\xe7@\x1eL\x85=l\x86{3\x9e\xb07\xe8k\xe5\x07e\x86\x84\xb6\xb2\x9dp\"=Z\xe4\xb4\xc2\xe3\xf6\x85\xf1s\x7f:]E\n\xcd\x9b\xd3)'\xfdK\xcdO\x06\xcd\xb7\x87\x84%\x9c\xf4\xdb\xcd\xf3C\xc2B.\xbd\x84A\xd4\xb5\xa09\x19\x12\xf5\x08n\xec\x91\x97\xfbW\xaf\x89\xc9\x904\xc2\x06y\x19\xfe\xda_\xda \x0b\xd2@\x94s\xe7M\xba\xaah\xf5\x89/\xde\xf4\x07\x83\xb5\xc1\xe0\xc4`P\x1f\x0c^\x19\x0c\xbc\xc1\x80\x0e\x06\xaf\x0e\x06\x8d\xc1\x80\x0d\x06\xdd\xc1\x80\x0f \x8b\xb8\xf4\x00\xd3\x1f\x0c\xd6\x07\x83\xde`\xf0\xd2`\xd0\x1f\x0c\x86\x83\xc1G\x86\x84e\x94\x8d\xa0e\xfb\x83\xc1\xecj\xbb\xddn\x0e\x06\xb3k\xe7\xae]\x1b\x12\x9f\xf4\x87\x84\xcd\xb8\xf4R\x06u\x19\x0c\x9a\x83Ak0x0\x18\xfc\xe2\x900\x95\xe6\xd1%L\xb1\xd1n_\xc1\x9f\x8e\xfe\xdc8\xaf~\xae\xc1\xe7\x95\xb3\xd7\xaeA\xb6\xe7u\xf6W.\xe3\xe7\x95k\xea\xf3\xdaUS\x1a\xc5G\x7f\xd3F^dC\x95:$\xb4A^%\x14\x1f\x01\x8e\xbd\x00\x1bCz3\x96!\x96?D\xffZ\x800\xe1\x1e6\xf4\xc6\xe9~\xbby\x1a\xd3\xa9v\xdb\xe8\xb7\x9b\xa7\x86\xaa\x7f,\xb0\x83\xdf%`\xbfS\x82% _\xfeky\xb6{\xa5\\\xdb\xbdv\x0fr\xa6\xf8Z\xf1\xa4A\x06\x83\x16i\xac\xfc\xaa'\x8c\xc3\x06\x99w\xd8\xa9%Q\xef\x18\xc7\xde.\xc4\xfb\xa4\xb1\xab\n\xd8Q\xaf\x1a[8m\x90\xf9\x99%ilS|\xd7\x98`\xe7\xfb@\x88\x83pZ!l\xa9\x84\xb4Az\x95h\xa7\x14\xda>\xa2\x15b\xda\xac\xb3T$T\xa7<\xa9R>\xaaJ\xb9qd\xca\x0d\x95\xf2aU\xca\x93\xe5\x94\xa6-\xb6){P\x95\xe0T9\xc16e\xb7\xab\x10O\xaf\xe4L\xd9\xdd*\xc43%D\xca\xae\xf2\xd8\xeb\x1f\xb0=\xb6\xc5\xf6\xd9#\xf6\x90=`\xb7\xd9\xdd\xa1\x16\x8d\x0bB)\xbb\x839\xcd\xb0\xbf\x02\xda \x0dB\xd9%`\xd6\xab\x90\xf5\xcb\x1b\xa7I\xe3\x0e\xf0\xd9\xd5\x06v\xd8\xcb\x1b\xa7\x17\x83\xc1\xcb^o\x0d\x85\xc0|cI m\xdc\xa1\x94\x9d\x80\x1e\xed\xef}\\I\x87\x06\xf2Iq(\xa8\xcc7U\xcf\xf7\xa1m/a\xb1W\xf1\xef \n\x05\xc2`\xbb\\\x1eLf\x10\xbd\xc5coSqV\x83 \x97\x1b\x84.H\xe32e\xf7\xb0x\xe0c\xc0\xbc\x8eY\x8c\x1b\xe4#Pl\x8f4\xdeR\xe4\xfb\xa4q\x0f\x01\x94\xdd\xe2\x15\x03\x16\x85\x0f\xa5\xec\n\x8f\xbd[\xaa\xd0\x1b*\x08\xa4\xdf\xac\x1c\xe5\x1fQ\xa3\x1c\x10\xae)i:\x18\xac\x93\xc6\x15M\xf4\xdb\xdc@b\xefF\xe3\x9a.\xfd>\x8f\xbd\x9b\x8dk\x94}\x94+0\xfb\x14WU\xba\x05\xf3\x10\xfb8t\xc15,\xe9m\xfc{\x1f\xff~\x14\xff~J\x0d\xfc[\x9a\x10 \x02D\xe8\x90\xb0\x91n*\xca^\xe7\x06\xc5\xc6j\x82^\xb3D\"U\xd7\x91&[\x8e-\xe1\x0d\x1e{S\xcd\xc3\xaf\xa9\xd6\xeb\x91\xc6\xc7Us\xe2\xe7K\xa4\xf1\xba\xae\xce\xc7\x8e\xcc\xf3\xbe\xc9\xf3\xe7y\xec}\xec9yY\xafu\xde\x1b\x98\xec\xe7\xa1\xb2\x87\x11\xa2%\xa0*\xd7\xc3\xbc<\xd2\x187\x08U\x1d\xefA\xcf\x13\xaa\x0b\xf1=\xd2\xb8\x07\x9f\x10E\x0d\xc2\xb5\xd5\xda#\x0eSEy\xa4\xf1q\xe7\xfb%\x8f4^7\xdf?\xcb\xa2\xef\xff\xffW\xf4\x0b\xd6\xda)\x8c\x95J`\xf3[\xb7\xef=\xb8{\xf9\xb5\xab7\xaf\xfa\xb0\x12\xd9\x14\xdbW\x1fM=`\xd27\x87\x84\xad\xce\x9f\x8cl\xc3`\xbc}\xef\xc1\xfd\xbbW7\xaf\xdf\xbav{%\xdd`\xf02\n\x10\x06\xa2 \xc7\x7f\xed\xf6\xdd{\xd5\xb8J\x8dXMq\xe7\xd2\xbd\xd7\xaaS\xac\x9b\xb1_\x91\xe2\xc1\xad\xdb\x87T\xc8$]M\xf7?\xee_\xdd|\xa3\n_aZa\xe3\x0c\xdc<\xf1\xb5\xcdK\x1f\xbby\xf5Ve\xe5\x0eI\xafS_\xbd{\xf9\xd2\x9d\xca\x86\xcf\xc9\xbb\x7fk\xf3\xea\xdd\xab\x9b\x1f\xbfz\xc5\xc5\x9b\xa9\xc8\xdb\xf7^\xbb\xba\xf9\xe0\xf2k\x976\xef\x1eZz\xa43\xbas\xf9\xde\x83\xab\xb7.\xdf\xbeR\xcc)P\xb1\xd7\xef|\xfc\xd4\xa5+W6\xaf\xde-\xe4D\xde\xf4Pz\xd3\x13\n\xe7L%\xce`\xd0\x07\x0e\xbc\xaa\x99\xf8\x88\x99\x07x\xf1\x8ea\xee\xc1`\xd8;A\xf4c~\x01\x0f\xbd\xb5\x0e\xe8\xa3\xa1\x07K\xc6\xa8d\x86\x08'^\xd9\xf1\x8e9o,`\xcdr\xf7`w+\x89Z\xa1\x14i \xd1\x91\xbfv\xd4\xe9 \x16s\x84Rc\xbc\x14\xc7\xd7\xda,\xe1k\x1d\x16r\xb5v@\x93\xb4Y\xe3\x04,\xe3\xa2_\xca\x7f\xe8\xd1\xee\x9a\x97r/\xe0Y+FS$m\x8d\x93\x18_\xc1\x8c\xd5r3P.;([\x93\x8bE\xac\xd7Ik\x9cK\xda\x85\"i7\xb7W\xe3I\xfd\x90\x8b\xe5$\x8c\x83(:\x98\x03\x01ki\xbd\x9e\xb5\x14\xedy\x08\x16\x10\x1a)\x9cx\x896\xa3\x86K\xb3n\x8a\xf5\xf1\x8c\xdc\xbcz\xef`*\xd0\x96\xe4\x91\xeb\xb1\xda\xfc\x0e\xa4\x14\xbbSY\x93Im,2\x99\xceFr\x86n\xec\xe3&\xd6p+\x12\xb50\xced\x10\x8f\x04\xa1K6\xe2\x1b\x9dSgO\x9d;y\xe6\xd4Y6\xe3'\xcf\xb0)_\x7f\xf3Q\xdcl\xae\xb31_\xef\xbf9h7\x07\x8f\xce^\x1d\xae\xb3 _\xef\x0f\x1em\\\x1d\xccN\xb6\xdb\x1b\xa0\x98\xb7\xaf\xc2\xdf3\x9d\xe1\xfa6\xdb\xe1\xf3dO\xa4\x93(\xd9\xf7\xc9m\x13\xaa\x85\xf1t&k\xb1\x10\xe3\xac\xb6\x1f\x8e\x05\xf4\x9f\x14\xdb\"\xcd\xf0\xb1\x8c4\x19\x89,#\x8c\xc4\x89l\xaa\xb7\x02}r=\x8a\xc4v\x10\xe9\xb4\x17y\xad\xfd\xe8\\\xbb\xe6\xa9=~DRV\xe4i\x12\xc6\x92\x12FBU\xf9&&@\x13\x9fj\x0c\xf5\xbdd\xbb\xfcf wZ\x93(IR\xb6\xcd\xf5bp\x92&\xbb\x97w\x82\xf4r2\x16\xf9j\x1b\xf8o\x9e7\xf1f\x10o\xeb6\xde\xe9\x0b\xd7q\xd7\x9e\xcbl\xc2\xac A\x16\xa7\x9c\x90\xdc\xe7k\xfe\xdc\xba\x97\xf2\x18\xdf\x8c\xfa\x08a\x82\xc7\xfd\xce\x90\xb2\xb4Q\xe4]\xc3\x9b\x9a\x7f\xcd+\xea\xdd\xb4\xd9\xec*\x8f\xb4R]Y\xe8\xe6\\\xe1 \xf4\x97\xa6l+\x13FZ\x8e\x93\xb8\x16\xa1L\x9a\x8b\x8a-\xe2\xd0\xbfe\xde\x8e\x84\xe2$\x9eF\xe0m\xb7\xc8\xf8B\xda5\xb6?\xd1\x1a\xe9\x96\xba$\xbd\xb8\xd1\xc0+\x03\xc9E~\xfa\xf4\xc6\xf93\xf5zr\x81\x9f>s\xb2s\xbe^\x8f/h{aX\x91\xe6\xf4\x99\x93\x1bm\xce\xbd3\xa7Nw6\xea!\x1e\x00\x81\xf1\xe4y\x9d\xf6\xc6\xc9zB/\\\xe8\xb4iC}\x85\xb4q\xe6\xf4\xe9\x93g\xd0H\x8eh\xb0\xcej6\xf5\xd9k\x0b\xcb]\xb5A\xb1\xfb\xd5FN\xd1\xd8\xd8h\x9c=\xfd\xaa'.l\x9c\xa1M\xcfk\xafqI/\\8M\x97\xec\x11/\xdb\x9b\xd4\xca\xbd\xad\x9e\xb3\xe5qo\xd7\x13\xebg\xdbm\xea\x8b\x8b\x17;L48\x00$\xed\x8a\x8b\xa7N\x9f\xee\xa6\x0d>\xa3\x02a'O\xdb~\xd9\xf5\xd2\xc6\xc93\xaf\x8auO4N\x9e\xa3t\xc9\x1er\xd7\xd6\x83\xad\xceJ\xdd\xcc\x12\x0e\xd2\xa2\xb3q\x8e\x05\xfc\xec\x06>\xd2Sx\xe2\xb8Ih7\xbb\xd0\xae\xd7\xbd\x8c\xb7skM\xc4\xdb\xdd\xe8B\xd6m4\"Zh\xf6\x88^\x84\xdc\xea\xf5\x03\xcf\x19b\x94\xc5\xc6\xeb}\x017\xcfp\xca\xb3\x8b\xed^\xd6\xe8\xf8\xed\xee\x14\xf9\xc0\xc4\x8cy\xc2&\xbc\xc3v\xf8\xac\xdb\xdd\x81\xaa\xcf\xa7\x17y\x8a%\x14\xc7!\xed\x02\xfe6\xf7d\x91\x15\xa6\x8d\x06\xa5\xcdS\xe7.t\xda=\xd9\xdc\xd8\xf0e\xf3\xcc\xe9\x0b\x1bgz\xf0\xeb\xcb\xe6\xf9\xb3\xea\xe3\xfcY\x7f\xd6\xf5\xb6/\xf2\xd9b\xb1}q\xd7\xf3F\xcd\x84\xaeO(\xc5\xb2\x8c\xb0!\x94%\x0d\xbe\xfd\xea\x04K\xdb\xe3;\x17x\xd0\xeb\xf8;\x17y\xd0\xd88\xd3\xdb8\xe3\xef4\x03\xe0\xd6\xed\x0b{t+\x15\xc1CD\xdc\xe2\xb3\xe6^wrq\xd7\x1b\xado\xad\xe48y\x95oiv2\x03\xb8\xd1\xe9\x06\xfc\x91\x974\xc7l\x9f\xb59\x1fS\xb6\xeb%\xeb\xfb\xf4\xe2\xa8\x19\x96\xd3\x87\xc0\"\x10\xc9\x92\x97\xf9>\x8bq4\x8e\x84\x974\x1a\xac\xcdB\xcb\xb3\xae$J\xc6\xe2\x0e\x08\xb4V0\x9dF\x07\x9e\x8ab1]\xb2\x07\xab\x8c\xa3\x86\xab'8\x8cb\xb3\xd7\xccR\xe4\x1c\xc5Cg7X\x00sO\x86\x0fvTM\x7fS6>l\xfa\x0b\xb87\xe5\xe3\xe2\xf4\xd7\x85\xecT\xf1\x13>U3`wr\x01\xb9K\x0f\xc6moB\xe92\x9f\xfc\xf0\xe2ZT\x9e\xfc\x82z}l'\xbfq\xe5\xe4g\xf6\x10#\xa5B\xecXc$\xdb\xe3;\xc8\xa4;\xb6P\x1c\x13{\x17b-\xab\x1e\xf2\x11{\x00\xe5\xde\x86\x8a\xdf\xad\xaa\xf8Uv\xe7\xb0\x8a?\xe0\xdeU~\xa7T\xf1\x07\xb6\xe2\x97\xf8U]\xf1K\xc8\xf3\x97.<\xac\xd7\xbd\x87\xfc\x92[\xeb\xdbP\xfa\xddr\xad\x1f\xd4\xebwl\xad\xefT\xd6\xfa\xb6\xae\xf5]U\xeb\x13|\xaf\xd1\xe9>l\xa6\x96\xf7OT\xb1\xbe\xf7\xb0\x99\xd2WO\xb0\x94+\xce\xde\x84\xe2/C\xe5\xdf\xaa\xaa\xfc=v\xfd\xb0\xcaor\xef\x1e\xbf^\xaa\xfc\xa6\xad\xfc-~OW>\x9cx\xb7.\xa4\xf5z\xa3\x91\\\x1c\x95I\xbae\x0f\xd8B\xa2+/\xdf\xe3SPz\xc38W\xb2\x089J\xc9\xc2\x0d\xc6\xeb\xca\xaf\xa6z\xba?nt\xd8\x06e\x9d3J\xdf\x82\x96\xa5\xb2Q\xa5\xc0\xa2r\xd4\xe0'\xad\xef\xa8\xe4\"\xef\x9c?\x05\xaa\x19\xb4\x01\xf0m\xda\x8c/\xf23F;\xab*\xec\x94)\xec\x902\xbc\x93\x1dT\xd2\xce,\xce\x80~\xa6\x15\xb1\x06\xcf\xb3`gh7n\xf03K\x87\x8cB\xf9\xe7U\xf9\xc1\x91\xe5\xb3\xac2\xfa\xec\xf3\xc8\xeb\x9cV:\xe4\xc6\x02\xba)0\x94f\x95\x94\x9eGJ\xcfWE\x9dTmY\xe1\x04X?4]\xdc\xbd\xdaC}\x1d\xba:\xd7\xfa\xd5U5\xd9\xcaW\xf9\xb4\x17\xfbbiw\x8e\xd41\xd5\xdc\x15\xab\xd0U\xb2\xdf\xf9v\xa9l9K|\x16\x97\x86\xb3\x83\x96\xdb|\xd4\xc50\xc7g\xc1,\x13i\x18O\x12,\xd0|\xe4E\x1a\xc8\x11\x85\x16\x8b1F\"v\xe7\xb0$%'\xb7;I\xa6^\xd7\x83@^0^\x01\xfdp5}\xed\xf6\xdd{\xc7.~\x1a\xc8\x1d,\x1e\x02y\xf1\xf0u\x8c:\x9b>\xe9\xa9\x92\xd1~\x95\x07\xada\xea\xd8\xd4\xe0+mH\x0e\x86rz\xf0\xf3\x18\x04\xa9\xc2\xd1\xbau\xecB'i\xb0\xbd\x8b\xef\"x\xf9G^\xb4\x81\x1c\xbbtc\x1e;\x9a\x00Qx\x89\xd9\xd9:\xcd\x0f\x03\xb4_\xf5Z\xaf\xd2uFNt\x08],H\x9b\x94\xde7\xceW\xd9fX9V-\x8a\xc7\xc8S\x1ey1\xdb\xa0\xfd\xce\xd0\x0c\xc2\xb4\x97:\xab\xe0\xd6n0\xf56\x9d\x95\xb0\xebA\xe7\xadCK9SQ\xcaI\xd0'\xd2~g\xc8B\x9e\xf67pg=\xc9\xc5|\xc0\x93\x12\xdfj*|\x1foo\xee\x89\x14=Ne<\xf2\x02\x10i#\x9e\xf5\xdbC6\xe3\x19\xe49\xe5\xb3\xde\xcc&\xb1\x84\xfb\xfd!\x1b\xf3\xd1j\x04\x9b\xf0B{(\x0d`\xdc\x1f\xdb\xfd\xfb!e;|\xd2;\xeb\x9fc\xbb\xdc\x82w\xd8\xb6>9\x80\xdb\x83\xed\xee\xc1\x85\x9dn\xa3q@\xb7\xfb\x07C>\xed\x1f\x0c\x17\x8bq\x7f\xb7q\x80n\xae\xbb\x93z\xdd\xdb\xeeCn\xfc\xb2\x0e0I\xa9^um\xb7R1\x9e\x8d\x84\xb7zvc\xe2\xadI\xecT\xce\xb94kk\xd1\x179y\xdd\xb4^\xd7\xc7\xe0\x1b\xa9\x06s\xce\xe3\x9e\xf9h4|\xa1\x14\xbc9b\xf91S\x11~gi\xd7RbIY\x7fH[Y\x92J\xcf\xab\xb4\x02\xd8#\x0d\xa6\xf0%\xa5\xd0\xf2[FQ\x0e'\xde^\xbd\xbe\xe7\x9c\x92P\x8b\xc0m{FbO\xd1I\xd9#\x0b\xd4\xa0\x86IF\xbb[|_\xf3\x19n \xfa>i<\xca\x01j\xc6\xd9\xe2\xdb9\xc8\xb0lX\xaf{[\x0d\x8e\x9b\xf8\x94m\xe5UC\xcd\x9d\xaf\xbf\xe9\xf5|\xaf\xff\xa6?X\xef\xbd4lP\x9f\xf6\xbc\x9e?X\x1f\xac{*\x02\xe0\x1f\x19\xbeJ?B{\xde\xa0\xaf\xbe\x07\xc3ac0\\\xa8\x0f\x7f\xf8*\x85$\xbe7\x18\xbfJi\x8f\xd2\x9e\xd7\x7f\xb3\xf7\x92\x06\xc3\x07\x841\xdf\x97 \xd3\xd6b\x10/\x06)\x05\xd8z\xc8\xaes{\x06\x83\x10s\x1f\xdb\xa3\xf3\xf6r\x1d\x87\x9e\x1dQ\xb7ru\xb2|b\xe5b\xa7^\xb7b)?\xa1\xd2\x19\xf6\xdc\x0f\x7f\xbed\xfa\x82\xffZG\xf9IM\xc3^\xe6\x07]\x92\xcd&\x93\xf0\x91\xf2ol_\xa8\xc6g\xa9=\x99\x0bj\x15(\xdd\xf7W\xfc\x9a\xd81~\x8f\xea\xc1{\xbd\xe7\xc5f\"N`\x18\xc6\xf9,\x99\xf4O\xc27N\\I\xff\x14\x84\xa7I*s\x1d%\xe9\x9f\x1e\xb2N\x1b\xcd*0\xbd$\xfd38hX\xac\xe5{\xd2?\x0b\xa9\xac\xd0M\xfa\xe7\x86,\xccn\x05\xb7<\x95\x976.C\xae\x90\x19\xa5~\x91\x1c\xf3V\x82KV\xb3\xa3\xbd\x11i\xdb\xd0G\x08\xed\x01\xa9\xbeEE\x8a\xcbh\xeb\xeb\x88w\xca\xc1{\xc1\xda\x94s\xeca\x86g\x9d\x0cmE\xcb\xa8/!\xea9\x8bzH\x1b\x08{\xd5\x1fx[q!}u\xe0#\xb7/\x06\xbd\xc5\xe0\xa5\xc5 \xba^\xa8\x07^\x84\xd7Z\x86\xae\xfa[\xdee\x1dd)e\xa9;\x1d\x9a\xd6u\x1e\xa1\xc8\x9b\xb6\x00\x84\xe4\x05\x00P\xb8X\xa8\xc6)D`\xeb\xf4\xec\x001E\xf4\xe2\x9cK9IE\x14\xc8pO\x10\xdfA4\xedUD\x0d\xb6\xb2$\x9aIA\xfc\x02x\x96\x86%H\x16\xec\x8a\xe68\x19\xe1\xe0!\xac0*\xcchY+\x8d\x16\xe7\x03\x89w\x07R\xdcRg\xe4\xf4\xefbA\xeeo^\xcf\xaf\xd9\xc1\xca\xce\xa27H\xfeJ|K\xdb\xfcB~\xb5o\x87\"4\x95 \x11RR\xe9\xf4\xa9\xb4Y\x1c\x8e\x92\xb1\xb8\xab\x9c\xca,\x16a\xbd\x1e\x96\x80\xf4\x04\x9eE\xb5\xcfB\xd8\xbe\x96\xadq\xb2\x1b\x84\xf1k\xd8O\x982\x07P\x8a>\xb0\x14;\xdc\xd6\x89\xac\xea\x91\x16\xb4\x95K\xe5urn+Xm\x10\xc8\xfc\x95\xac\xa6JR\xd73GA\\\xd3^\xba\x8c\x9b\x96qM&\xb5Kw/_\xbf^\xdb\x0b\x83\xdat\x16\x1f@\x95\xf0\xc9\x8d%T(\xa0K\xa4\x18\x07\x9f\x0dx1\x93z\x9a\xa8\xee\n\xa7(L0n\xe5\x1b\x0e%\xbf\x80F\xab)\nQ\x867\xe3\x8c1\xa1r\x99\x90\x1a\x13\xb1]\x1b\x98\x9bg i*t{\x1d\x0b\x83\xae\xa8\xde\xa3\xef\xea\\G\x8c]\xbdj\xf5\xb0\xa7\"\x8a\xf4IC6\xbc\xb8G\xf0\xe8K\xacd\xf8\x90,)\xa5\x8c\xc4\xb3\xdd-|\xe9\xdc:f\x02\x16\xc9=6\x95\"\xf0\x0dSE\xbaOl5\xf2E\x00\xb0\x17\x05\xb8\x9a\xa0zi\xfe\xae\x8e\xaa%\xce\xbf7\xf8\xfa\x9b\x83\xd6\xa0\xd5\x1b\xac\xaf\xb3\x9b\xf0\xb1>hy\x83u\x90D\xec\x9a\xfe\xce!o#\xa4g\xa5W\xcf\xebq\x15\x95\xcf\x92\xf7\xcb{0]k\x18Poz+1x\x83Rw\x8b\xe7\x06\xfa\xb4\xc9=\xd0(\xa4\x9bE\xa4\x9b\x8c\xacW`]+b]C,&\xd51H\x8bMZx]w\xb1 -\x15\xa2\x02\xef\x07\xc0\xd8+*\xc9o+\xe7Q\xb1s\xe9C\xefH\xde\x8f\xc5\xa3\xa9\x18\xc1 \x18'\xb2\x96 \x94p04\xc6\xe8[A\xcb\n\xb5'\xd6\x05\xa2\x94:ez\x01\xa9\x82~Ji\x85}\xcd6\xe1G\x7f6\x8aFqd\xb0\xa4(\xc1\xc4s$XR\xaf\xa3\x17\x940\x88\xc2\xb7E\xe1\xc3x\x15\xc3\x91\x80r\xcb\xe1~m\xadS\x91y\xf3\x17E\x1af\xee\x884\x90hz\x19\xad\xa8\xbekr\xf0o\xeb\x903\xd6\x8e#\xe1\xd0+\xa9\x923\xe2\xc3H8|\xad\x13(!\xf7\x95\xcc&>A\xa9\x07cvE\xf2\xc5\xcb\x13\x9e\x00\x99p\xd8\xd4\xe4\x18G\xac\x10\xd26\x11\xe6\x8cc3\xd7(1\xd7u}4\x82\x1e}X\xee&\x07\xd0\x83\xec]Z\xca\x8c\x89\x80\xac\x13k0@;(\xda@\x9ddd\xd5\xb0\xa0\x180\xd2_]\xd923\xb7\xf2I\x85\x1dX\x04y\x11\xbf\xefE6'\xaeH\x8e\xb8\xe3B\x16\xc4\xc9\xfa:#\xeb/o\\#\xd4\x92\x1a\xd9\xd1PaO0D\xf6\xf2\xaa\x19\x9b\xc2a\xa6\x00\x93\xe4%7\x89\xb5\x05\x00lu\xcc}\xca\x9dXVF\xddF\xe5\xa8\xdbpG\xdd\x06\x8e\xba\x94\xcf\x97f\x0e\xca\xe3N\xe2\xeb+\xfc\x96\xf7Q\xc5%\xf82\x03|I\xf5E\xd9\x9a\x17\xf3\x18\x9f\xb0m\xc9$\x12i\xa0\xdez\xd4\xda\x96\x97\x1a\xc5\xd9\x80X\x9a+\xcd\xd2\x06Yj\xc6\x90R\x10\x95\xe6)\xf1\x07\xbe@\xf5\xbd\xaf<\x13(\xbfb,\xd5\xfa\xaf\xd4M\xea\xe7\x0c'\xabtGY\xd6\x1dU\xe6@\xe1\x7f\x13=*\xb6\x07\\\x8a\xab\xa3\"\x13\xf7J\xb9\xd8\n\xf0\xe2\xd4\xef\x00\xd5\xcc\xee\x00\xd4t\xaa\x18\xbd\xa7\x7ft\xb6z\xcc\x98\x95\xb2\xfe,l_\xaf\x13\xda\xe8\xd0\x86*\xde\xd7\xe9\x8a_d\x9d\xe8\xf8\xbc\xd2*@\xabj\\(\x9b9-\xad\x94\xf1R\x02\xdf|\x9bQ\xe1\xb2\x86X\xe9\nQ\xe8\n\xad(0\xcb_\xaeT\xb2+\x1ei\x83,\xcdG\xcc\xc7\x8b\xa7\x11@\xc6\xe5\x1eps\xeb\x19\xb01\xceC\xae\xd8\xf6\x83\x92\x10Gm\xe4u\xedZH\xf8\xe8:\x90\xb0|\x86\xf0\xd7\xda\x0c\xd5B\xbf\xfa,\x84fK\xafB\xe6\xdf\xbbw\xa7v\x7f\xf3\xba~M\x0b\x1d\xe9\x065\x9cQ\x08eb\xc9\xec\xb4\xe6W\x1d\xb9RN\x0c\x81\xf5Vl\xd9\x85y\xa7k)\x81\x16]\xe3\xdc\x8b{\xa7N\x9d\xf4\xcf\x81\xa0%Z\xfe*\xbdM\x05\xb4\xd5\xc1Hi\x05\xd7\xdc\x02t-\xd9k\xc5\xe6\xc8\n\xed\xf1\xba3}\xea\x96y]i\xdaN\x85^\xcf\xe7lg[\xec\x0d\xe7z\xcaV\x92D\"\x88\x0b\xef\xaf\x89\xd1,\x15=\x13\xf0\xc9~v\x8c\xfac\x07~,\xa7x?;N\xf7i\xc5+\xdfcPe\xf27<\xf56\x8cP7Io\x05\xbb\x82{fy\x8aC\xce3kS<\xe6\xab\x87\x82\xf2\xb6\x87\xadh\xd7\xedjp\x98\xcf\xc3\xbb\x1b\x15J\xd3w\xd0D\xc7\xec\xbe\xc3\x9b\xd0\xdd\x08\xb1\xcd\x8a\xad\xa9\x9a\xc7\xc0\x1cNp+\x9c\xdbn]\xa81\x96\xe2t\xa8\x0d\xc4h\xbam+\xd3m\x07\xf4me\xe30\x13\x7f\xd2K\x8cm\xc2\x18\xe7\xc3RY\x9a\x84|+\xc7\x8e}\x93p\xb9d?\xef\xf6n\xb1{?\xb6\xca\x8d\x1f[\xe1\xc6\x8f9\xdc\xc8\xfe\x07\x9f/\xd9'\xecU\xa2v\xf3\xbc{\xd9\xe6gx\xcb\x86\xfd\x9c\xba\xa2d\xee\x17\xb1O\x16\xae%9Q/\x93\xc6\xcf5~\x0e\xb7D\x7f\xae\xf1sU\x97\x93V\x90\xdd+J\xf0I\x99\x10\xfa\xee\x91\xba\xa5\xf4r\xd5-%\xa8'V\xf8\xc2`p\xf1R\xf3\x93\x83\xc1\xa3\xd3W\x9b\x03<\x93H\xd8+\xfd\xc1\x80\x0c\x06\x83\xc1\xf0\x15\xca\xa4\xe0\xce\xe9\xd5O\xa8\xf3\xafq\x01\xf8I\x05L\x0b@s6\xb7\xd0\xbe.I\xaf\x9a\x83\xd2ob\x8b\xff\xc2`0\x1f\x0c\x16\x83\xc1R]u\x82\x1a\xb4\x0c1\xc3W\x98\x10\xfadnRY\xcc'\xfe?\xf6\xde\xfd\xbdm\x1bi\x18\xfdW$\xbe\xfd\xb4@\x04\xcbR\xba\xdbv\xa9 zsqZo\xd3$\xb5\x93fw\x19\xae\x1fZ\x84,6\x14\xa8\x90\x90/\xb5x\xfe\xf6\xf3`p!x\xb3\xdd\xdd\x9e\xf7;\xcf9\xdf\x0f\xb6H\x10\xd7\xc1`03\x18\xcc\x90j\xc8\x9d\xb7\xb2\xf4\xed\x07UG\xc2h\xe6\x98'F\xac\x92w\xdc\x13Ga\x0e-\x18^\x08_)\x8c\x0bV!\xe1&JR\x91yw\x11\x16\x92S>\x11\x19UDa\xa1}\xb9\xea%D<\xec+_:\x9d4\xa3\x92b\xb5\xb9\xedmI\"\xa3\x123u\x8cW\xfe\x9b\x9a9\xcc\x8dse\xe9\x1b\xfc\x02\xbd%\x02\x87U\xce\xb2\xcc\x94RR;pLpY\xa7\xb5\xd6\xeenE\xa7dM\x8d\x08<_\xc1\x91\xccJ\x81gC\xf3`\x15:\x86\xa6r66\xc1T6$\x7f\xa4\xc0\xdc\xd0\x99m\x82\x99\xfa\n\xddhl\xc2\xea\xe0;\xbf\xb9\x85\\oQO\xbe;\xd5`G\x12\xaf\x06Q\x1c\xe7\xac(\x1e(-\xf6\xe9\xc3\xe4\xe8\xe8F\x8b\x1b\xff]\xdd\x17\xbdc\x1f\x02\xcc%9e\xdae\xc9\x90\"\x0e^\xc6\xf0\x82[3g\xe3Vx\xc1\xfd\x96\xe2\xc8X\xf7\x81\x92R\x02\x16\x1e\x98\x00GP\x97Q*_\x97Q\x9a.\x02\x1e\xfa\xcaL\xbd\xbaV\n\x9c\xae\xbaS\xca\xcd\xeaH\xdcs\xc0))hb\xe62\x02\xfb\xcc\xc8\xc8\x8a\x9aCH\x82(\xc4dI\xd3:\xa3\xfc\xdf\x1e&;\x9aZfz\xe9\xa8\xcf\x18\x89X\xed\xd59\xb5\xcf\x19y'\x97\x81)\xb9\x1c\xcf0\x98\x7fm\xad\xae`\x8b}9\xd7\xdb\xbb&:\xd7\x13\x9d\xffG\x13\xfd\xfb\xd4\x02\xac\x94\xb0\xa0\xbb\xb1\xf7\xdf\xdex[j\xc6>\xd1\xf8@<\xc55\xc5\xd4\x06\x98\xac\x9e\xa4,8gf\x0d\x8fF(\xb6\xeb\xd9\xa6b\x1dA\x07\xbe\xc2Bf\xda'\x96ZwAh\x17\xe1z\x90\xf0A\x8c\xe3`\x1d\x0e)\xfd9X\x87\xa3\xd1J\x91\x90\xf5\xc3\xa6!\x93\xd30\xf6\xa87\x96\x95<\xacL\"\xcbXz\xbe\xd2h\x03\x12\xba\"\x15+\x0d\x8a\x11h\x03\xca\x92\xa4\x8c\x1e\xfe\x0b\x05\xff\xfa\xe4\x87c\xfc\xc9W\x87\xe8K\x87\xe8K\xa6\xf5.\x8a\x0f \x96\xb2\x08Pz\xb5\x81\xa4R\x9c\xa1`\xe3\xc7\x8daR\xa5\x08\xcb+E\x18T\x9e\x80\x19{\x1d\x8f$\xe1\x0f\x1e\x87\xa4\xa0\x19\x84\x16Db\xc2\x93x\xbfO0I\xe9QP\x84\xf3\\&\xd0\x84\xe4\x13^\x1442\x82\x9e\xdeRR\xb0\x94O\xb5*<'\x02k]x\x1b+?\x9c\xbc\xb9K\x17\x9e\xdf'\xb0tj\xf8``R*\xe2IL2\xcak\x83\x00\x0f\x7fG\xe0\xfe\x0dN\x1c\x93\x86\xa6O\xa1SD\x19\xd8n\xf3\xa2\xb0\n\x0e5F\x94\xef\xf7P\x15\x86j\x0b\x12\x95%\xd9\xc9\x89t\xf8\xa5\xdb\xefJ\xb4\xf0?\x1d\xb8I\x7f.\xf1\xed\xd7e=m\xf6\xb8\xfc\xea\x90l\xeb3\xee\xefvI|\xe7\xb4W\x12\x84\xccJ\xb9\xec&\x81\xfff\n\x84U\xacH\x02(s\x8dF\xeaWc\xc9\x0e\xa2cw\x1cN|8~i\x0e\x8a\xc0\x16\\\xca\x8d\xf7\x11p\xb7G\xb2\x13\x88AS\x1d\xcaV\xc2\xcbr~\x14|\xd4\x93\x15\xd2\x8f\xe4(\xf8\xc1\xbe\xfd@\x8e\x82\xef\xed\xdb\xf7\xe4(\xf8\xd1\xbe\xfdH\x8e\x82\x82\xd9\xd7\x82\x91\xa3`Y\xbd/\xe5\xfb\xb6z\xdf2\xc2&\xca\xaa\xe7\x94\x1eI\xb9s)\x8e\xf8\xf2\xc5:\xca\xe9;\xf5\xfa\x92\xc1kA\x9f\x81X\x9a\x17\x8c\xbe\x01Qa\x93]\xb2\x97\x998U\x1a\xef\x82~\x00\xe9E\x03\x80>'\xd6G\x88\x8d\xc9U\xd0/Uj\xcfu\x84n\xc0%+\xa4\\\xe8C&\xf0\xf5\xaa\xaf\x89\x04y\xe8\xdc\x11\xb1\x18\x02.\x12J\xc2-\xa5y\x8e\xbe\xa07\x88\x91\x1c\x937H\x1d\x94\x82k\x8f\x1c\x97\x84Mx\x96oT\xbf\xbbt \xed\x08\x19\x0bF\x9fCu\x02\x13\x81\xfd*\xac\x07\xcd\x11\\\xa12\x9a=\xf8\x0e:\x056a_vQ\xda\x1a\xf6\xbdM\x80:\xb0\xb3 \xa5:\xecp\xf9-\x16\x02\n\x8b\xae\xc2p\x02-\xbf\x0b(\x0c\x11]\xa1{\x10,\xcdNV\xcf\x0d\x93\xfbu:\xfaV`\xa4\x1f\xc8;\x80\xf0\x8e7\xeb\xff\x85h\x0f\x16\xca\xc3\xc5;\x1d\xc4\x081\xe2\x9d\x9d\xb1\xe2\xa7,\xde\xa5\xcc#:\x88\xe0pZ\xe2\x12 \\\x92\xaf\xff\xf2\xedw57/\x95\xbf \x9b\xea\xd8.2\x84o+!\xb6bkT\xc8\xb8\x13\x15l&\xee\xb2>6\x82\xf5!\xfa_.9z\\\xe2\xc3\x0be\x96\xd4a\x9b|\xe8\xe6=4v\xca\xa0\xeb\xb5A\xea\x90\xb3;\x1e\xfe\xaf\xbf\xf0\xfc\xaeA\xb4#\xe3\xb9\xad\x07\xc3?!\xfc(\xac\xc5o\xabTA\xff\xcb\x1b7\xac\xa4\xef2\x07\xc6\x9d\xdd\xfb\x05\xc2~wc\xfd@Pol\xce\xe0\xfe\x0b\x1e\x16b\x9d\x14\x8d\xc9A\x02\xfbNr5`$0\xe1\x8b\xeeO\\q&\xc2\x17\xf5^%\xc5K\xe5Q\xa5\x0bZ\x8a\xbbf\xcd\x12?\xb2\x9b\xb7[u\x87\xa0\xa3\x9477C\x18\x99\x87\x05<\xd4\xab\xb9`\x02`Q4\x80Q\xb9\x9eb\x01\x0f\xc1\xd9\x14\xd0;9*\xdbY\x94\x19\xa5S\x86\x9dXg\x95\x93\xff\xfd\xdep\xfd\xb5\xb4\x96&*\xc3\x19\x18\xee\x99\x15L\xf2\xd1\xc8{\xe4i\xdf\xcd\xf2\x9b\xb2\x0f\x96\x1f\xb5\x82\xee\x98\x0b\x94\x93\x99\xbao\xa0}\x14U \x871!A2\xa2{\xec\x00\x0b \xbc\xe0\xe0\xb8\xc69\xf6\xf3\x1e\x01\x1d\xc2\x8dH\x1ex\x91\x990\x87\xf5\xa1\xe3*\x0e\x83\x0b\xfb\xfe\x9e\xb0{zRb\xc8\x80}\xd7\xabe\xd6\xd3Ls\x1a\x02\x16b\xb0`\xe8\x03C\xc0B\xc2\xaaF\xaa\xd3\xe4HN\xec\x7f8\xe8\xa8\x7f\xd0\x7f\xc8\xb8P\xbb\x01gI\xb1\xca\x15U\xcf\xc8\x1d\xc4\xc2U\x87z\xe6\xa3\x0d\xc4\xf6\xf2\x8d*\xc1\x08\xfbp\xd4f%\x06]\xdc\xcd\x01\x0c\xb4Z\x8eb\xd1\xb1\x80\xeei\x11\xfbj\x85\xc1JV\xa1~\xbc\x05<, Nxfk\xf0<\xec?\xa0\xfb\x95\xc5c\x9d\x14(6\xca\x9d\x0e\xa5\xea\x92u\x11N\x03o\xec\x11\xef\xbf<\xe2M<\xe2\x1dz\xc4\x9b{\xc4[x\xc4\x1by\x86\xdb\xb9e\xd7\xdb\x88\xc7\xd5F\x98w\x19\x1d\x7f\xba\x95\x82\xd3\xed\xa7R\x8aN\xe5\xbez\xa9\x13|\x92\x91\x04\xab\xeb\xd8\x1aUU\x14SM\x8a\xc0\xbc\x8d[\xf3\xb6\xac:k\x03\x94\xa1N\x02\xa9(\x08\x9aa\x88\xf9\xa3\xf6P\"\xf7\xccNLT<\xde!\x18|>R\x16\x9a>\xfa\x14\x8f\xf1\x1e}\x02{\xcc \xbbfK\xc4\xf0\\\x85^\xd17\x07\x0b\"*\x92\x8ar\x12\x11\x0e\x06\x8d\xc1\xe3p\xbf\xe7\xc1\xd7*\xdc\x19\x89F#o,\xe7\xd0\xaa$$85\xe1\x062\x1d-R\xea\x8d<\xdf\xfb/\xc8\x06\x07\xd4\x11&Hb\x9b9\xed]D`\x99S(\\\xab\x0e\xa7\x0bGn\xb7*\xca\xc6\xe6\x95\xc0\xceX*\xd7\x83\xacD\xb8$\xdf\xfc\xf5\xbbi\xcb3\xa4\xe2\x7f9\xfa\xe6\xeb\xd9\x9f%\x1c\x03/\x8ac\x8fxq\xc6\x99G<\x91\xfd\xed\xd4#\xde*\xcf6G:\x8a\x1e$\xa4Y\x04\xb9\x92b\x9b\x81\xff\xc7\x82E\xf9r\xed\x11\xefc\x96\x7ff\xb9\x17\xce;\x19\xa4K\xf0\xb3\x06\x81\xec \x1f\xfap\xf2z\xb2\xccY$\x98\xa2\x1f\x1fN^;\xde\xfd\xfet\xf8h8x\x95\xe5\x834Y2.)y\xe5`r\xb0MYT\xb0A\xc1\xd8\xe0\xbb\xf8<~\xfc\xdd\x9f\xff\xf2\xedj\xf5\xd7\xef\xfez\xfe\xe7\xbf|\xf3]4\xb9\x82\x16&\xbf\x16\x93\xd7\xc7/\x8e\xde\x9c\x1eM\xc4\xb5\x18<:\xfc\xc4\x87\xad\x1e\xdd~\xfd\xf57u\xd8\xe4F\x03\x96\xcc\x9b\xd9\x0b\x92\x91\x88\xecHJ\x96dMb\xb2\"[rC6\xe4\x82\\\x93KrE~&\x9f\xc9)9\"\xaf\xc9;rN\xde\x93\xb7\xe4\x98\x9ct,<\xd0_O\x9e\xef\x924fy\xa5l\xde&[\x96&\x9cA\x08\xbd\x93\x89\xc8\x93\xcd\x86\xe5\xe4dR\x88l\xfb1\xcb\xe3W@\xbb!\x81\xc9O\xe0\xdb\x17\xe0\xff\xae^\xd4~\xd7\x9a4\xa1\x1c\"\x9f\xcb\x16\x11.\xe7'U0\xd3\xc7\x93\xaf'\x7f\xf5\xc8\xc9d'\x92\x14\x1cN\xeaG\xf0\x7fKQ\xa1\xc8\x84;\x88b\xa2]\xe4\xd6}\xe56<\xe72I\x90M]Q\xa1\x08u\x1f\x17\x04\x8e\xe6<\xdfe\xf6\xab\x8e\x80o\xc7ZI\x1b\x17\x94U^-*\x8b/\xbd!)\xec\x82\x8c\x98\xe4u\xa7\xd2\xc6\xad\x9fU\n\xf3\xf1X\xcdNBs\xc9\x17\x15\x94\x05 \x90\xa3F\x10e\x8cE\x90\x84\xb4\xd0\xba\xc0\xcav\xb2e&W\x8cF-\xd5\xa8L3LR\x95\x88;\xbdO\xc0\xb0\x8d\xdc\x1f3\xb6\x1dD<\x1e\xc4\x19S):X\xe0\x80\xb3B\xb0XG\xe7,<D\xf0c\xc8\x11\xb8\xcdI\xb3\x0b4\x1b\xc3ct^\xa0D\xf5\xe5}\xf6\x99\xf1Fo`H\x85\xc8A\xd2\xf7\x14\xad\xd80\x11\xc5\x91\x88\x94\x97i[\xf2at\xccT\xd8Ul\xb7\x8d#\xc1\xba\xa6\xa9\xea\x062\x8f\xf5\xbe(2\xd6Ui{\xff\xb6S\xcf\xf6\xfb\xee\xf5\xaa\xa6\x17jBw\xb7X\xbd\xca\xb6\x85,\x91\xfc\xc6\x9a\xaa\xdd\x8ac0\x91\xe3\xcdR\x0b:vy\xc7[V\x9f\xe6m\xe0\xf6\xb0\xc9\xe6\xa0\xa6qR\x9d\x97A\x02\xa4\x05\xc7/pM\xcb\xd9\xd0\xce\xdb\x93k\xe5\x19\xbc\xa0S\x92\xc1Z\xa5\xbcZ\xa5\x11-\x0e29\x90\xdcHG\x05\xd6\xc7\n\x0eP&\x05\xdbF \x11\xe3\xfd\xbe\xa0T]%\x8c\x9ejg\x14;\xda\xec&\x1c\x02\xee&\xdb\xac\x00\xf3r\x1ad$\n\xc9Nm\xe1\xf6\x18\xd6\xe8i\\\x90\xe4z#\xceH\x81\xc9\x0e\xe32\xa3\xc5xf\xb9\x92\xa46YU\xbf\xe8a\xf0\xe9S\xf1\xe9\xd3A8>$'\x13\xc3\xd7\xbahlv\xcbh\xf9\x99\x06@|-\xf7\x9b\xb3\x8b\xa4\x10,g\xf1+\x9d\xbf{\x9b\xec(b\n4W\x1fh\xffe\x8b\x1du\x8fF.\xaf\x8c\xc0C\xd7U\x9e\x88\x84_\x0c\xd8uR\xc0CU\xcezT\xf3\x07\xde\x18\xceN\xd3\xe8\x9c\xa5T\xdc3\x84@g\x0c)\xab\x8dV6z\xbc2\xd9\xded\xe2\xc4\x96\xad\xad6]|4\xd2\x0fw\x0di\xbf\xaf\x0f\xc9|0|\xa83\x9a\xabD\xac\x07Vf\x19\xbc_Cd\xf8\x9b\xc12\xda\x15l\xb0\xcd\xb3\xf3\x94m\x8a\xc1\xd5\x9a\xf1\x81>\xa9)$@\xc4Z\x8as1\xbb\x9e|\xfa\xc4=\xcd\x8a\xd9A\xd5\x1d\x9f7D&\x93\xab\xb2u\xec\x95\xf1sz\x1fPa\xdd\x0f\xf3\xf6%\x8b\x17\x11\x97C\x95=\x19\xecx\xcf\xfc1<\x17 m\xe5 \xf8\x8b\xda *\xda\x17\xc5q[\x0c\xbe\xc3\xe6\xc1\x9al\xe3y\xcf\xe0\x1e\x86\x00\x10V\xa6Z(\xda\x06\xdd\xea\xc8\xfaz\xbb\x12-\xca\xf9\xc0\xf6\x84\xb9y\xe2\xb6j8}f9\xfb~p\xaf\x12\x1e\xdbU\xf3\x8a{x\x9e\x8f\xe9\xac6\x08\xed\xf0)'\x92\xd9\xef\x19\xc29[ey\xf3`\xed\x7f\xdf\x18~o\xf7\xd5Ag\x8f\xb2\xae\xa3K\x07\xb3!\x15\xa3QG3\x82\xccz\x1b\xd9\xd59\xb1J:p\xeb\xd1\xb4]rB\xf9\x131\xcf\xe5VSy\xd2sr\x06yh\xb7\xa6ya\xb9\xd1\x1a\x0b\x89XP\x84\xa4 \n\x8a\xea\xe0#s\xcf\x18\x9a\xaaj\xecX\xfc\xcc\xa3'\x99\xb5\xf8\x19\x8f\xb1a=\x83(4\x8a~\xcb\x8c2\x9aT7\xbc{\x87\xdf\x92N+\xbe\xaf\xc6y\x10Q\x19\x03\x02\xc5\xdcq\x14\xe4a\xefy\xdc\xa0\xa6\xc1\xc0\xfd\xb3\\\xb8\xd2\xdd\x9d{\x9a\xcb\xd3\xfd\xed\xf4\xed\x9b>\x8eN\xcfZ_\xc7\x1e\xb8\x04\x98\xdd\x96t\xef\x7fa\xcb\xe69\x94jn\x13]\xf0D\xecbF\xa7\xa4\xc6vK\x16K\x8dA\x95u5\xd1\x9a\x8fx\x95\xe5`\x95\xd5\x14p\xa7Z\xbe6U\x19\x86Z\x8fa\xea\xca\xb1Z\xb4i\xe6=|,9\xa6\x03A\x12\xc7?%\xe2\x87\x8f1)\xea\x05\x82\xc7\x8f\x92p\xce\xc1\x89d\xf1\x04\xe4x\x9a`R<\x85;R\xf08\xa4\x0c\xcf\xb1\xa9O\x8c\x1fT\xa3\xeel\x01\xbcf\xf1\x94-\x1e?J\xfc\xe2\x89\xfcE\xc9xf\xaf?v\x01(\xe1\x05\xcb\x9b\x87\xe1\xd0\xc6n+\xbf\x80\xda\x06\xd5\x10'\xcf\xae\xbc\xd8\x869U\"Jm\xeej\xec}\xabz\xab\x04r't\xee\xac\xf1\xe6\x9cI\xaaS\x1f5\x0f\xab\x93T\x9b6\x9e\x854G\xedDbOW\xcd\xbciz\xc5\xc9T\x85\x84\xed\xeax\xd57g\xecF#R\xf5\x1c\xd7\x16\x84M\x9eW\x91>\xa6Dt\xa2\x0d\xc9\xe9L\x939\xfa\xd8Z2\xd5z\x9f\x87s6\xa6\xfc\x11/\xbb[Q\xf8V|\x91\xb3\xd4=\x8a8\x13=t\xb7\x85\xcd\xa0\xca\xb2/I%\x03\x14\xd6y\"\xf8_\x8b\xe8\x94\xec\xc0\xfcw:\xdf=IF\xa3\xf4I1\xc7(\xa3y\xb0\x0b\xf1\x13\x14Q\x1e\xa4!^\xec\xc6\xf4\xb1\x9f=\x8d\x16)<\xa8\x93\x071\x96\xd9\xc6\xb3\xf0\x11\x0fR972\x17\x919*\xaa\xd79\x90\"\xd9$i\x94'\xe2\xa6WT\x8c3 \x86Cx\xb6 Bx\xbf\xefF|\x91\x01\xe1w\xa7\xb7\x9a4I\x92\xd5\xbe\xd0\xbd\xe21\x11t\x06\x1b\x95\xd6m5r\xcc\x85\x1c\x97\xdc\xc0\x18X\xf1\xd4\xa6U\xd8\x15\xcbzzv\x17\xd55\xd5\x94\x95V\x9e\xa2\x8c\xde\xeaPX\xbe\x17 \xe6\x11\xf3\" \xc8\x15\xe3\xcb\xc4\xf7\x18_2\x8fD\xf0\x0c\x8e\x83\x89\x94\x84|/\xf9\x8dy\xe4e\xbbB\x16\x87Fu\x0d\xfa\x19\x9a\x97\x82\x95yL\x93b\xa3\xeaK.\x19gE\xe1{\xc9%\xf3\xc8j\x97\xaa7\x88\xcd\x95\xed\n\xf5\x065Gi\"\x12S\x08\x1e\xa1\xc8y\xa2\xd2\xa1\x9fiv\x91\xf8^\x9a]x%\x89\xe8-P#\xdfK\x96\xd0\x93K\xe6{P\xcdoLW\xb3T\xd5,\xe5\xa3\x84\x8c|Z\xedR\x99M5\xec\x95dG\xbd bI\xb6\xbb\x81\x88*^\xf0/x\x0b\xf5\xefM\xf8\xc8#KZ\xf7\xbf\xdd\xce\x83\x17\xa6\x12\xf5\x1b>\xea\xa8\x07\"\x82\xfc\x01\x15\xdd\x9fC\xc5S\xf9\x03\x9aB\xcd,x\xf1\x15\xc4byx\xe5`\xdc\x7f\xf8/4\x19/0*\x8a}\x82Y\xf1\xd5!\xb9\xb1i\xc1\xbf\x8a\x10\xcb\xa4\x8dIb,\xfe\xea\x90\\\xd8\x1c,\xde'\xfc\x02\x7fuH\xae\xe9\xe1\xe4\xabCrI\x0fQ$\xf6\xe7\xe9>\xf9M&_\xd5\xfac\xbas\x93\x16\xbf\x85\xf8\xd3\xa7O\x9ff\xb2\xd3?\xd7;\xed\x8d\xd3\xf1nl\xe6\xfb\xea\xfa&\x94\x99>\xebF\xcd\x88\xf0\xcdW\x87\xe4\xd4\xf6D\xaf\xb8\xbd\xfe\x91\x8bl/W\xd7^.\xab\xfdy\x9a\xec\xe5R\xda\xc3*\xda\xb34\xd9\xc3\xda\xd9\xebU\xb37\xff\xb3|\x0fkd\xaf\x97\xc7^/\x8c\xbd^\x12{X\x0c{X\x07{\xb5\x02\xf6\x12\xf7\xe5X\x8flg\x00\xfd\xf7\x80\xf9{@\xfb=`\xfc^\"\xbb\xacq/\xab\x92E^W\xfdOew\x99\xec8\xdb\xb3|\x9f,\xf7\xd1y\xca\xf6\x89\xfc\x17q\xb1\x07B\xb3\x87\x7f\xf2/\xdb\xede7e;\xb2\xe6lW\xc8.\xcb\xd1\xcaz\xdfU\xf3\xba\x17\x18%\x19\x97\xa9\xe7v\x1a\xbf:$\xef\xe9a\x9a~uH\xde>\x04\xf8\xc7}\x9alR\x90\x1dIAUm\xd4\xd1_\xd7\\\xcd{7\x1eU7\x08\xf4A\xfd\x94\xcc\xb0\xb2(\xe4\x0d_\x90\xcc=\xcb/\xe8\x0dA \xddb\xeb}\xd3\xf5\xb1\x90\x10\xef\xab\xd9W\x8f=\xec\x17\xe6;TY\xe5(L\x0eY\xd5\x85\xacjc\xabR#8\xa6\x89=\xecG ]\xea\xcf\xc7\xc1\x0c\x8cS\x12zM\x1aM\x1a\xa3\x8f\x81\xdb\xa8\xa0\xe8\x98\x16\xa6&\x1c\xccB\x82\n\xba\xd2\xb5\x81\xfd\xe3\x8e^\x91\x94\xfe,\xd3/M'\xa8\xc0\x0b6\xa6\x1e\xf3\xfc\x9d\x1dbO\xa3~\xea\x0e\x12\nak\xd6\x8e\x12\xfa\x19\xd7\x80\xa0\xba\x94\xb8]\xc2c/\xf1\xb0\x84\xc2)n\xf6\xbd\x96\x91\xe4\xf48x\x1c\x12\x07 B\xd5*\xc6\x99\x14}\xa0\x92\xa3\x7f\xbf\x92HUR\xd0w\xf2\xf3\xebjz\xbb\xeaA ]7*\xc0\xf5)oC\x7f\xac\x9a.:J\xca\xfa\xce\xef\xe9zAc\xb2\xa3o \xaa\xb5\xbd\xdf\x17Ue\xc3\x9dy\xaej.\xe8Z\xd6\xfe\xde\xa9\xdd\xedf\xf7\xbc\x12X\x1c\xdc.\x06G\xef[_\x0c\xac$\x9d\xc2\xa6\xd2\xd7\xa3cu\xd6\xde\xab\xd4\xacL\x02\x88\xa7\x1f\xa4w\x01\x15\xaf\xc1\x06g\x0d=[G\x92\x15\xf3\xd6\xea_\xae\xfe\xc3\x87d\x03\xff\xe19\xbbR\xffu\x0b\x89\xfc[A\x90\x07\xf8'd\xa7 g\"\xe0\x9f|\xfcu\x07\xa0JY\xa4\x7f\xe1\x7f\xf2\x99\xe9\x9fT\xf6q\x13\xc1\x7f\x99\xb6I.\xd62\x8b\x06\xf1F\x15\xdf\xc8\xef\xdc\x8e\x94g\xf0O=\xca\xef\xd9\n\xfe\xa9\xff\x02 \x9a\xa9\x7fP?\xe4\xcct\xe1l\x07\xff\xaf\xe4\xf7<\xd2\x89E\x04p-\xa0#Et#\xbb^\x008\x8a\xb5\x9e\x80\"\x01\xfe\xda\x839/2\xe8\xadX\xc3d\x895L\xadX\xab4\x96\xe4\xeaw\xa3~T\x16\x96\xeb\xaf\x85\xfe\xbd\x81\x1f\x00\x98P\xff3\xf8\x07\xff\xaf`^$\xdf\xec]E*\xf8\xadJ\xbab\xf0\x0f*\xbbR\xed^\xa9&\xae\xd6&5\x01[\xaa\xabu\x92\xaa\xf7L\xfd\xdf\xc0\x8fl\xf6*\x01L\xbeJ\x04d\xd4#\xbc\x81\xc9\xb9\xc9v\xea\x7f\xee\x85\xf7\xd3\x83\x9aM\x91W\x7f\x07\xea\xa0\x0d\x90:O\xee\x0c\xe5\xe9\xd6\x819\xfeV>}\x1c\x1fJZ\xe7X ~\xfa8\xfe\n\xd2\x9a\n\xb2\x8en\x1a#(O?@\xc7@9w\xda\xa1A\x03\x87\xe2t\xa8\xb5\xc6,\xbe``\xd1\x04oIL\xab\x92\x933\xce\xae\xc5qL\xdaIc:+;\x92\xe9\xccM\x94\x8b\xb2!\xb0\xd6\xe4yG\x89(\xb3kS/)\xa2\x82`\xaf\xc5\xd2\xfc \x07\xb5\xaa\xd0z\x9fz\x10\x12!\x87\x93\x14k\x84\x89\x98\xe4Y&\xcaf\x0f^\xa4\x92\x14u\xcc\x8f\xc7\xe2D\xbcLtD\x9a\x84\x0f\xd8\xa2Q\xf4\xd5\xee\xb7\xdfn\xacC\x05\xc1\xf2\x0da\x13\xb7\x14\xf6\x1b%j\x99q\xab/N\x85\x0d\xf5Uu\xcaY\x87\n\xe14\xb8\xe5Y\xcc\xfc\x9c\xc8\x96\x8b\x13\xb6\x89\x12\x9e\xf0\x0b_\x90B\xe4>+\xc3\xb9\xb5G0\xd6Y\\{\xd5JV(\x99\x14\xc2\xe8E\xcc\x11fA2\xaa\xd2\xad\x91\xa82]H&\xb2)\x85\x13\x8b\x82\xba\xafA\x16\xfa\xa8h\xf6\xae\x91\x83\x16\x98\xcc(u\xdb\x1c\x8d\x90E\xb9\xa9\x0d\xff\xa1\x86T4\x87\x94L\xea 0BU\x9b \xebZ\xe22Y\xa1\xe9\x906\xf3\xc2\xf6\xe9=\xf2\x1a\xc3\xc0J=^\xeb\xa8\xf7\xc8\x0b\x95J<\xbas@2\x1f\x85\x10\x1e\xd3\xd6\xa0\xa2\xbeAE\xf7\x0d\xea`V\x0d\xab\xc4\xa46A\xb3\xd1\xa8V\x99\xea\xce\xef\xa9\xd1\x01T\xc7T\xe8\xe1U]\xaf\xb5Ngw\x01q\xd7\x07\xc4\xdd\xfd@\xdc\xcd\xdb}\xd9\xf5Ap\xf7o\x8e\xb7l\xa2\xbb\xf6\xa2\x9b\x92e\x13\xdd\xc9\xba\x9e2\xc3\xf3uk\x01\xa4\xf5\x01\xafC\x1f\xa5w\x0eu\x1d\xd2\xb4\x0b\xeai\xdfH\xd3\x07\x8et9v\xc7\xfaX\x8e\xd5\x1a \xe4-*\xd3aU\xd8GtIN\x05\x04\x06H\xdc\xc0\x00Ie\xe9Y\xa8\x1b0\x19\xe5\x94&\x07\xb3\xb9\xb9,R`\xa1\x07]H\xa6V\xe8\x11f\xee\xdd\x8azSs\xb3b2\xe2\x14\x8d\x88\xa0Q\xcfX\x1e\xa8\xf8\x0cB\"hp\xbb\xcd\xd9*\xb9\x06\xdd\x98\x04\xad\xdc\xce\xcap.\xea\xa41\xa7\xda\xe1`\xc3\xd6+w\x91\x9d$V}<\xcf\x9d\x05\xa3|\x96A3\x0e&i\xff\xd0\xe6\x0bn\x1a\x8b%-+1\xed]\xd0\xf4\xb8\xaaS\x19beX\x8d \xaf\xd3V9\xe7\xae\x0e\xb6\x13Lm{&\xab\xff/D\x8e\x1bGa\xb9\xa3\xf3\xafX\x83\x857\xf3|o\xea\x11A\xdbVc\x00 \xe5\xe9\x1a\x93*T\xb7\xb1\x14vM\x84E\xc0\xc1\xbb\xe28\x19We\x83$\x9c$\xf1}\x03\xe96\x0d\xbc\x03\x89\x8dO\x10\x1a\xdc~y#\x81\xc7H\xb6\x13\xdb\x9d\xf0E\x0d\x1d\x9c\x9d2\xb7\xbb\xa4\xa97i\xa0\x04\xd4dp\xa2\xf2\xa7@\xb2;P'\xa2\xe6\x10\x96\xec\xe0\xb4\xa1\x98\xef\xc6c{N\x9b\xd2$\xd8\x85dI\xa7\xf3\xe5\x93h\xbe4\xd0Z\xd3,X\x82\xad\xc5\x9a\xd2t\xbf\x875\x96\xaao1\xcd\xebD\x86\xach\xadsA\x1a\x92-\x8d\x0d\x92\xae\xd4\x03\xb1.>\xd6\xca*Q\x01D\xd36tC\xeb)\xc1:\xc4z\x81\xde\xa8\xdf\xfd~\xeb#t\xd3\x00\xb6\xc9\xb4%\xad\xf2\xf4\xa6\"oj\x16Vf\x16n\xd4,\xc4.\xe1\xaa\xb3j\x9a\xfbkq\xab\xdb\x9c]&\xd9\xae\x90l75\xa6}\x92\xd1k\"\x81:\x00\xe4\xcb5[~f\xb1l\xbe\x00\xd2\x00g+ O6\xc9o&\xd9\xb1\x06t\x9a\xbe\xeb\x84\xd1j\xf3(\xb8jgOZ}k\x9b;\xbc\xdd\x89A\xb6\x1ady\xcc\xf2\xc1U\x96\xc7\x03U\xad\xf2@Z\x19 @\xe4|\xbbY\xf0v\xd5\xf6\x1b\x83S\xc4\xd6w\xb9\xce\xe4\xba\xcb\xc7c\xa8\xb66d\x94c\"\xa893\xae\xc3GW\xbc\xb00\xf5;2\x05\xfd\x05\x0ff\xe1d\xb9N\xd2\x98p\x9a;\xa3p\xa9@c\x96\xd4~2wv\x80\xa4k\xe6\x0c\x85\x8cr\xc6\xe5\x1a\x96\xe4\xd6/\x084\xe6'\xa5\x1cRR\n\xbb\xad\x926\xaa\xb0{\xa6X\x89\x0d-t\xb3`\x9b\xe2{*09\xef2\x12\xe9\x81\xda\\<\xa5l.\x0e\x0e\xec\xa6\xd4\x05\xf6\x10\xac\x1aa\xc8\x8e\xfeg\xce\xadeZ\x1d\xab\xc1\x19\xa2\x04\x97\x06\xad\xe2m\xf4A^=k\xc0C\x1f\x99\xaa\xe5>@y\xd7:\x91\xd8\xa6s\xe1\xeeI\x92\xe4\x13\xd6R\xdbPA\x89\x93\xda'\x8b\xfa\xcc\xea\xef\xceE\nu\x9eXPV{U\x19\x84\x91c\x99}tJ\xda2:\xb71\xb5\xa3\xcc>\xda\xfe\xb9g\xb3p!\xa8\xf7\\\x16\xdc\x9e8b\xbb\xc0\xb7\n\x8f\x7f\x96\x1f\xdeEy\xc1r\x90\xdb\xb4\xab\x10#\xa47\x9b\xd1\xeeS\xee\xd8\xc3\xa0B\xe4\x8c\xc7\xb9\x85S\xb3\xc6\xe4\x9d\xa9Igj\xb7=g\xd6\x99\xaa,\x87\x9c\x0e\x985\x1c\x8d\xc7\x98\x07\xce\x87 \nC\xddk5A*J\xa5syJ\xd75Y\x82\xc8]\xabI\x99\xce\x92\x94\xda\xafA$\xf7A\xc7d}\xbe\xa3\xe9dW0\xa3\xe9X\xd4&\xb42HB\xa9\x12\xc5oU\xb7\xfcT\xf7\xaf\xc4~\xa0>9\x0eu\xe8t\xbe~b\xddr\xadMOb\xba\x0b\xd6\xe1\\e\xa7\xb1\xf6\xc4\xd3\xa99@)&[ZC\xc5\x8a?A+l\x98S%nO)\xa5[K\xb0SI\x93\np\x95O\xa9\x9el\x9b499\xfa\xf9\xc3\xf1\xc9\xd1\xcb\n+T0\x94\xb41\x137\xe31.\x82W\xd4\xa4\x077aX\x03\x1c\xb8\x03+M%\x1b:\x9do\x9e\x98N\xcc7f\xcc\x17t\x1blBrM\xdbK3\xb8\x08\xc9%\xbd\x9e(\xe3}\x80^\x7fW\xa0\xb2+z\xdd\xe8\x11\xf9\xb9\xc6\x16]a\xf2\x99^\x8c\xbdCo\xfc\x8a\x9cj\xbc9e\x02\xfd\x0cpr!\xd3\x0b\x98\xd1\x08-\xe9R\xdd\x8a@\xa7\x8e\xcb\xe2\"x\x15\x8eFH\xfe4\xaf\x86`RU=lW\xfd\xee\xe4\xed\x0f\xc7\xcf\x8f\xdfK\xa8'+\xc4\x83W\xa1\xb1\x1a\xba$\xe9\xe4<\xcb\nAz\xf4\xf7cQbL\x86I\xf09\xac\xa6\xec\x88N\xe7GO~6\x00:2\x00zM\xde\xd1\x9f\x83\xa3\x90\x9c\xeb\xb1\xdb\xabU\xef\xc8+L\xde\xd3\xab\xe0]8\xb7#B\xafi\x1e\x9c\x87x!\xff\xeb\x12?Eb\xb9~\x19\x89\x08]\x90W\xe4=\xf6_\x83-\xadz)e7\xe8pZ\xaa\xb36[Q\xa6@\x93U\xa0Qwb\x08\xa4d0^\x0d\xcf\xb2,\x1b3q\x07\x8e\xde\x8d\x13-\xf4\x94S\xe3,\x93\xa5\xf2\xa1\xf5\xb61[\xe4\xb8\x86\xc7\xb2\x8d;\xe9\x11@\xf6\xd5\\\xb6\xd6 L\xa3\x11zK\xdf:-\xca\x0e`5\xea\xd1\x08\x1d\xd3c=\xec\x0c\xd2\xa17/\xea|<&o$\xc3\xf8k\x17\x99T\xc1\"\x92\xe2\x0d\xbb\x88\x04\x8b\x91\xb2\xbc|\xd1\x16\x90\xdc\xfd\xcb\x10\xc4\x17\xb5!\x9c\xd3\x17A\x14\x02\xc59\xa3\x9d\xf7\x01\xd19\x9ew\xa1AY\xc1\xe7E\x0b*/)\xea\xabN\xb6\x07Q5\x97'l%G\xf2\xd6^\xddB/\xf1h4\xfd\xc9\x1b\xdbF\xc6\xde\xa7?U\xd7\x92U\xbd\xd63\x97\xae\nJ0\xb7\x84#'*m\x82\xd5_\xec\xcc\xbaO)ZS\x1e\xecB\x88'\xb6\xa4k\x88C\x17\xa4uVM\x12`Y\x93\xd6I\xb4jY\x93X\xd6S\x98zV\xaa\x9e\xcc\x9c\xb9\xc4\x98$A\x1c\xd2\x95Yi\x99{\xee\xd2\xe2\xc4\xeb\\}NDC\x12H\xc0\xcf\x9b\xe6\xeb3\x10=Iu\xb5\x9fF\xfaf\x9b2\xa5U\xd6\xae}\xfa\x81\xb3\x9c\xad\xa8\x97\xc4Z3p\xa6\xfb\xd2\x85E*\x83\x89VtG\x9ezg{\xb3AS\xefY\xbey\x95\xb3/;\xc6\x97\x89s\x92\x06\x1f_\x03\x98\xab\xc4\xea\xe2\x9ds\xaf\xab!\xb8\xf0\xda%\x1e\xf5\xb1\xee\xbf\xa03\x8b\x19\xd6\x8bl\xc7\x85\xb16?;\xa7\x93o\xff\xa2\x9f?\xcf\xe8l\xf2Xw\x84\xe5\x1b5:\x9d\xd3\xdc\x0f\xfc\xb8N\x04K\x93Bh\x0b\xfb\xb6\xdc\x9b\xd7.\xc8\xbb\xb3\xc0\xba\x0b\x00$\x1a\xc7]\xc9\n\x1d~\xfath\x9dq9\xda\x93\x93\x88_\x98\xdb\xfd\xb0\x9b\xa9e\x01\x0b\xc8lS\x83$M\xd9E\x94\x0e\xa4\x88\x1b-\x05\x93\xab\xed\x10\xd6\x8b\x8b\x05\x01\x0b\xab\xcb\x9f\xed\x8e\x9dw\x8c\xe3\x9c\xb2'\xd3\xc5\xd4gOg\x8b\x99\xdf3\xa2\xcf\xb3\x8e\x92\x9fg}\x00\xa8]or.Q\xb0\xc0\xc2.l\xde=vFa\xc6d\x11\x17\xccs\xe5\xb0:f~Lg\x8e>s:O*\x92\x91T:}\x1e$!\xc9h\x0dVE8a\xd7BB3\x93T4[d\x10 :(B\xb2\xa3u\xecE\x91\x15\xbe\x82Bn0)\xado\x04\xf9\x8e\xa3\x1d6v\xa7\x15\xeb\x9b\x93\x02\x93u'\x83\xd5\xbb\xa2\x82eH\xd7\xed5%\x93\xa7\x9d\xc9c\x9a\x9a!\x1bH\xc4t:\x8f\x9f\xd8\xe4\xd8@bE\xd3 \x0e\xe7\xf6\xde\xeb:XInQ\xfe\xd0)&\xf2wLg\xc4qjP\xdf\xc0W\xa1\xaag\xdb9\xa4\xad\x96\xa7h}\xc95V\xa0;c\x8a\xc1\xe6.g\xbd\x0d80\xd4\xbd0k\xf6\x88n\xcb;\xfa\x1b\x14a\x90\x87\xc6\x1dC\xf7\xd7\xae\xb6\xaa\x8dH\x89\x97\xddD\xa3C\xe6\xec\xce\xa8\x04\xd1\x95\xfd\x10\\\x84\xf3{{\x1d\\\xdc\xd3\xf1\xe0\"\xa4A\xd8E\xc4\xdd,\x8am\xbc\x96lc\xf7z]F\xe9r\x97F\x82=\xbbdyt\xc1^\xb9\xa4\xbc\xf3\x08\xaa\x9bu\xd3E$og4\xa3\x86\xeb\xb9-\x89Z\x9d\xc2]\x96\xdd\xec;\x0b\x92\x10\x93\x8c:\xbe2\xe6<\xc8\xc2\xfd\x1e\xc9\x1f\x89\xa8\xf2W\"j\xae\x92s\x9d\x9cCr{\x8d\x14!\xc8?\xd1\x1d$G\x8eM\xf50j\xd1\x8f\x1d\x8d\x82D2\x19\xbb\x10nP\x1cJ\xf6\xa3\x84\xf2Q\x0bb\xca\x17J\x07\x90\x01\xb9^\xb9|B'h%\x95\xeb\x81o\x83P4\xce\xa3\xba\xd5erD\xb9\x1aJuL\xd7\x0dw\xd1\x86;\x89:\xa1Iv5f\xcb\x90\xc3NjVH&\xcd\x1dO*)\xe2\xd2\xf4;\xae\x13\xe5,T*\x89\xfd~FV\xb4\xb9\x0f\x18\xe7(N\xa6-\x9d\xce\xb7O\xd6\xf3\xad\x99,\xedz\x89.\x83mH.i\x1a\\\x87\xe4\xaak\x95]\x87F\xfdcu <\xb8\x0e\x17\xe8\x86\x82\xff\x87\xae\x85w\x1dvlA\x12\x1d\xafCz\x83\xfd\x1b\xa8\x81l\xe8\xcd#\xa4\xf1\xeb\xf3l<\xc3\x8f.\xf1\xa1}\x7f\x84f\x07\xea\xf9|\xac\x7f\x1f\xa1\xe8\xb0\x07\x9d\x82,\xc4x|\x89\xc9\xe6\x11\x8d\xe5\xbf\x15\xb9Pw\x8a\xf2l\xc7c4c_?\xda\xe0\xc3\x19\xfb\x1a.\xe0\x03\xf3zE.p)72\xba+\xab\x89\xb1:\xe7\xbb\xf0\xb3\xd7\x88\xcar\xaf]\xf6Nmo\x1b\x9d\xc2\"\xeeaKdJ\xdfU\x9a\xbbh\x13\xd2\x94\xaf\xbd\xb4\xea_L\x87\x11\xae\xf1\xd9\xb7u)\xaf\xdd\xef\x86T\xd8\x84$10\xf1k\x102\xe2e/\xadiH\x93u^\xb7\xec\x01R\xd3\xa4K\x89\x95\x0f\xb93Nfx.&;^\xac\x93\x95\x80\x9e`\xc2\xb4\x03;\xf9\xa6o\xd7Y\xadK\x8du#\xb9{\xbd\xf7N\x8d\xbcR*A\xb00}\xe7\xd7:\xe4w\x0c\x02\x92\xa0\x08\x81\x9aSI\xac\x8d\xbf,\x85\xa6\xd6\x81IW;UL5\xb3'\xda\xbd\x94u\xee\xe0\xa4\x99)\x10!\xe5\xf5\xb1\xba\xf8\xaf\x943=\x87\x17\xee\x18\x99\xe3kD\xdf\x836\x03\xcd\xcd@9x\x85n\x00\xa7*\x18\xf0\x10\xbb\xfb\xbf\x93\xde\x1a\x1d\xbf\x87?\xb9\x1b\xd6$\xea\xef\x82\xa4-=\xbd\x08\xb2\xae\x8e\xc8i\xbb\xb3/J\xdc\x8e:\x84\xf6(\xd8\x85\xfdm\x05i\xb8\xe8N\xa6\xcd\x1e\x07i\xe8\xf7d\xedN6f&\x1d\x15\x19\x96\xa8\x0b\x1f\x9aB\x8c\\ \xc9\n\x0d\x11\xab\xce#\x0d\x1a\xd4\xecL\xeeCK\x89\xc8-\x04\x96\xb8\xa9<\x9d\x89V\xf5\x01\x0bqk\x0d\x1a\x15\xee\xdd2\xcf\xbc\xe8\xaa-\x10MhC\x1aX6u&\x1b\x10\xe6A\x11b\xbf\xa7\xa8\xfc\xe8x\x07k\x0eN\xc2\xf9\xe7\xd6\xf1\xa0\xa2\xd2\xea\x80\xccZ/Di\n\xc4\\\xefUJC\x7f\x95\xa4\xf12\xca\xd559\xcd\xb1x\x8f\xc0\xf2\xb7\x9ea\xf2\xe6\xed\x9b#:m\xa7\xbf>z\xf6\xf2\xf8\xcd\xf7`\xb3\xdb\xf8\xf4\xfe\xe4\xd9\xf1k\xf9\xed1i\x9e\x08\xd0\xdb\xb7\xef\xde\x1f\xbf}\xf3\xec\xb5?#\xe6t\xc0\x7fL\xaa\x83\x15\xff\xeb\xd2)e\xe9I\xaf\x19\xae\xda\x06\xc0\x00\x17\xe2vi\x0dN}\xe8*\x82W!\xaal\xf0Jg\x98x\xce\x99a\xf5\xd9I\x04\xbb;\xcf\x0c\xae\xcabA\xd8 2\xb9+\x98\x84Q\x1f\xf0\xc0\xf5:\xcb7\x95=\xd8\xb0U\x1b\x04\x18\x83sF\xef\x917\xd6\xa6\xc1wVn\xc0okW\xdb\xc2\xc1\xec\xce\xda\xd5\xcf\x18\x90\xc03\xd3U\x8d\xd6N`\xeb\x8c\xc7L\xa8a\x12\xf4\xe9\xad\xf6\x86\x02\x89]3jOC\xba\x19\xf7\xe9\\[\xc94N\x83\xd9x\x8c\x8dQ\x9a9\nf\xe1\x03\xcf\xec\x14\xca\x0cgZ\x99=\x9cvu\x0c\xa0\xd1\xd27\xf5;\xaf\xeaw\xc6,kB\xac\xcb/\x95\xd1\xda\xaf\x93\xc2\xb8C\x017P\xc6\x90\xd1NI\xe5\xd5\xdb\x191\x18\xe5\xb8`\x05\x93\x02Pz\xb5\x88,\x14\xe3\xd1\x86Q\xaf\x91\xd5\xfa9+\x8a\xe8\x82\x19\xcf\x94\x85\x88ra\xbcR2\x1e;\xa4\xa6*ZA\x8bZ\x8b%\x93\xeb5\xbbf\x1d\xbe,Rv\xcd6\x0eU\x027gD\x7f\xe2\xae#E\xad\xd0\xcc\n\xa3\xa0Q]2\x1e0T\xcc\x81u\x94\xbf\xd3N\x13\n\xadk\xacZw\xd5\x8d\xae\x1b\x16\x17\xbfj\xf9Sv\xfd\x9e]\x8b9\x9bc\xa6\x9d\xaf\xe1\xde*a5\xb5-%Wu\x8b\xd2\xaa\xe7\xc6\xed\xc06+\xb4\x9dc\xdf@\x0c\x8e\x835\x16\xed\xcb\x15\xf0\xd0X\x8d\x1aH\x1a\x87\x9c$\xc7\x98\x08\x9a\x8fgN\xa4\xca\xce\x8c\xa6G\x18\xf7\x82\xd5\xcc\xcb\x940'ZA\x0fP\xd8&\x11\xbd\x93\xae\xcd\xb1dF\x9f\x81E\xb2\xeaO\x05H\x84 \xc0\xcaw\xc0\xc6x\xec\x9bn\xea\x15c\xb0\xd3\xa4\xf6\xf6\xc6\x8e\x06\xb4\xbb-\xf1\xabk\xb4\x15\x9c\xb6Yq0\xc3\x16D\xfa\xb2JgC\x9c]\xd7\x84;C\x99\xb6Y\xf1\x94:\xc8m\xa8E\xad\x9a\xa3\xb7\xa7\xf3\xcb\xcaz\xd6\xb1'\xb7\xb3Ss\x8c\xa3\xfaBXoo\xae\x92X\xac\xfbD?9\xaa\n\x86\xbdu$\x17\xbc\xe6\xdb\xc9:G\x94\x80\xb7\x907\xdc\xac\xea\xd2\xef\x9b\x9c\xf3h\xf9y\xb7m\xb5 \xfbw\x07\xa4\xa3\xe5\x92m\xc5\xcb\xe4\"\x11'\xf55\x0d $b\x1eg\xb7\x82\"\x0dL91\x08\xe3z\xa8\x8b\x12\xee|!\xf1\xf4\xcf\xdf\x8eF\xe2\xc9_\xbe\xc3\xf3j\xc3\xb0s\xa2==\xa9n\xa2~\x94\xdf4\xe0\xd4\x00\xb6\xeb\x01\xb6Q\xc7\xd1\xdbS\xea\x1d\xbd=\xf5\xea\xc9\xaf\x8e\x8f^\xbf\xa4\x1e\xfc4>\xbd?:\xf9\x89z\xf2\x7f\xe3\xc3\xd1\xcb\xe3\xf7g/\x8fO\xdf?{\xf3\xe2\x88z\xb5\xd7F\xd6\xe7o\xdf\x9e\xbe\xa7\x1e\xfc4>\xbd;9:=\x82\n\xccS#C\xca\xae\x81\x91\xea`\xc0\x06\xcc\x82\x8a(:\x80\xda\xa3\x92\x9f\x14f!\xdc\xaaY\x92\xde\xb2#\xb5\xb6\x0d\xeb\xd8\xad\x80\xe2\x08\x83C\xa1{\x1a\x96\xd0\xc2\xb5\x86\xd5\x9cU\x97`\x1f\xd6\x91#\xe7\xc6V\xf7\xf8\x9d\x06\xeah\xda\xd3\xb3\xda,=\x14\x1e\xcf\x81a\xfdC\xda\x07\x14xh\xbb\x12Y\xddV\xab9\x98J\x06\xb3\x07\xee\x8dz$;sj\xfdOvz\xa5\xec\xecNK\x7f0\x9f\x1be\x0d\xd3k\x1c\xa4<\xdaZ\xc5}s,\x89n\xb2B\x7f}<\xa4\xa2N\x1d\xd4\xe5%\xdf\xa3T\xf4\x15\x865\x00\x97X\xfe/7[\x0d\x11\x1f\x02\x9d;q\x0c\xea\xff\xd7\x1f[? \x0fT<\xf6 \n\xc6\x0c\x82\xa2\xeb\xba\xaav\xda\xf5\x19\x82\xd0\x8d.P\xe5\xc1\x1f^\xa5\xb0nU\xfbp\xe8\x8e5\x9co\x94\xdc\xdcb\x03\xb4e \xe4WF\xb8\x0d6\xdf\xf2,\xb9k^\x0bU[_\x8f:,\xbbf\xc7\x95\xed\x86\xbe#jNT\x15\xd7s\x1c_\xd3i\xa3=g\xf7h\x04\x0cq\x1b\x87\xf3O\xec\xd6UP\xe7\xabN\x9a\xb7xY\xd3\x86\xfcQ]\xaa1\xb4\xf3\x96\x89\xf2\x1d\xbdc\xec\xf3kh\xa7o\x87\xd3\xbd\x08\xea#\x0e\xfb\xab\\f\xbc\xd8mX\xbbV\x87\x05\xaa\x9aE\xf5\xee\xda\x06\xea\x0cP\xab\x11I\x12\x9a7vk-\xd4fl^\x81\xc2HVf\x9a\x9b3\xdbj\xb2\x02r\x87\"\x99\xd5Gb\xbd1\n\xac\x03\x03\x8b\x89\xec\xae\n\x0d<\xe8\\\x1c~\x1d\xbf\xddf\xdfi\xc9v\xde.\x0d\x9b\xed\x1dE\x15\x01k\x97\x93T\xe3\x8ebrQ\xd9x\xc1J^\xf5\xd8\xf5\x96-\x05\x8b\x07\xca\xef\xc0 \xd2\xe1\x032\xf9\x08\x16\xd6\x83U\xb6\xe3\xf1\xc0\x1b\xab\xd1\xce\x95\x91\x86\xa8_\x19Un\xbe=\xe5\xe9\x16\x02\xc3\x81\xc1\x06\xe4R6L\xa4i;\xaf\xac;r\"\xb4\xa0 \xa4\x9c\xdaZ\xdbuXuNR\x0d%\xeb\xf3tk'\xaa\x10\xb9\x0e\xe1|\xe0\xf9\xac\x8e\x18whE*\xad\x83\x1b\x90y\xfc{\xaa0\xea\xb1F\xbcf\x0d\xff\x1d\xcf\xd92\xbb\xe0`Kf\xca\x0c2\x1d\x8d\xa9\x0e\xc3\xb9c\x1fs? /M\x90\xd5\x0e\x1c\xa6\x94kc\x1b\x8b\x02\xe0o\x98\xe5\x1b9\xf3\x80\x02f\xe2y&\xd6 \xbf\xf0\x1e8\x81&h6\xef]\x1b\xff\x13\xd8\xfd\xd0\xc1I\x00\xab\x9e\x02\x84{\xc7\xc8\xf5\x18\xb9F\xd2N,m\xf3\xd6\x0fAQ\xed*W\xdf\x13\xa9\x94\x9d\xd6w\xadB^k/\xd4\xca\xd7c\x13\xeaY\x8b)\xaf\x8aTH\x06r%6\xd0N\xad\xf8\x1a\xae\x91\xc16+\x8a\xe4\x18\xc7\xdb\xfa\x9b?\x1c\xb9\xe1L\xf3\x0fFjuN\xfa\x7f\xb0\xf9\xff\xcf\xd8\\]3L\xa8g0\xd8\x06 F\xbcCGpR\xe2\x057w{s\"\x08\xc3>\x87\xa0\xd96re\x82K\xa8]\xd0\xdbrnj\x18\xe4H\x07\xce\xd4\x1e@\xdc\x1ba\x89Q\xfa$\xa6\x92\xb92\xce\x909\xe9\xadN\xf3oK{\x90\xca\x02\x1e\xa2\x82\x14&?\xc9q\xf5R\xe6\x13\xde\xb5 G#6\xa9\xe2\x95/\xda\x83c\x13=\x0deG\x9c4\xe6\x9c\xe2\xc6H\x90\xdb\xc8\x17%\x04/\xc9'MC~k\x87\xa2\xe2\xdf\xe7\x93\x0cB\xb8\x8fFC\xf9\xc8\xe0Q[\xa8\xb4B\xaasr\xcb`\x89G\xe7)\xf3\x87Sr\xc1\x84/\x01Qb\xd9T\xd6hJ\xf7I\xd7ViL\xd6Q\xf1\xf6\x8a\x9bz\xd5\x8c\x81\x8bx\xed\x9f\xfe\xb6\xac\x85\xe8\xf4v\x05\x83\xe8\x80K\xe1\xcd\xe5\x009\xb9\x8d\xe2\xb8\x03\x0eiI\xe2\x8c\xb3\x8e/\xcb\x92\x88\xeco\xa7\x1d_\xd6%\xa9GC\xed\xc8\x13\x97$\xcd\xa2\xae\x16W%\xd11S;>nK\xa2L\x03;\xbe\xdd\x94%\xd6'q9\xfa\xfa\xebo0\x11T\x9f\x9f\xd3\xa7r\xe5\xbc\xcb\xb3MR0\x84\xe4\x8a\xc1\xf4\xa9\xb6 b\xf4\xe9\xad\xc8on#\x94+e4\xc3\xb8\\\x82\xe6\x92\xe1\xdb\x041\x89\xdeY-\x1b\xac\xdb\xce|\x91\xcc\xc7&\x12f\x0b\x8e\xd8\x04t!\xd8\xd7MOrVd\xe9%\xb3\x1f&b\xcd8*H\x86\xe7\x11B9\xcd\xb5\x0d\xa2\x9c;l\x8e\xbfJ\x8c\xe7)\x13\x83\x84@XU\x1a\x84\xd5B\xdb!|\xab\xfck0{\xfb-Q\xa2\x16\xf2D\"R\xe6\xe1*!f\xc52O\xb6\xb0\xf0er\xceV\xc8\xcb\xd9\n^jAU\x99\xf5'\xc8\x9a\x0e\x10Y\x154U]\xc0\xb3p\x95 *(\\\xaa\xb4\x1dL\x8d \x83\xdc\x1f\xc5\x80S\x1d\xa8:\xc7\x073R\xd0[\xe8#\x843u\xc5\x12\xa7\xa3\xbeh|\xcb\xd9\xca\xe7\xe5<\x81~\x16NSKG\xb9\xa9\xac8\xe5\xb6V]\xe4~\x84\xf0m\x81\x12\x13\xdc\x15\xd7\xfa\xb9~@a\xf5\xfd\xb6\x10Y\xce\xfc\x88\x80\xc4\xe4\xa3\x1b\xa50\xc3\xce\xcdG\xb7\xe2\x181\x92\xdf_\xb7D-\xc9\x0dl$Q;\x85\xc1C\xf4\xd5a\xc1\xd2U\x90\x87m\xd72\xcf\xf3\xec3\xe3\xfa\xd6\xe0*\x91\xa2:\x04\xfe\xf5\xf0|\x85L\xa9\nAM\xc8Y\xa6oUEI\xca\xe2\x81\xc8T\xf4&\xb5\xaaTe\x10\xb4\xc9X\x944F\xb3B\x0f\x18KD\xa5\x08\x91\xe5\x8c\x14\x889w@\x91\x962\x1b\xa0\xdf>\x00\xf4\x12\xeb\xc9\x0e\xd5\x0b\xde\xa0\x9cp:\xbd\xbf\xb4\xf6\xc9\x90\x03R#\\?\xce\x0fBX]\x82V3\xa9]\x7f\x08\xfa\xf4\xd6\x96\xa9!\xa1\x89\x9e\xfd\xe9S1>t\xe2g\xe7\xf4\xa9ll\x06\x8d\xd5Z\x99\x1b\xfc\x97\xb5*\x1b0\xbd\x8c\x90Z\xbd`\x90-w\x9a\x12c\xb0\xdfB9\x9e\x0be}\xc4ej\xa9(\x81\x1e+\x7f:\x05\xaf\xcc\xc2Fu\xe5\x18\x13\xa1\xb4A\x8c>E\xb7\x1b&\"?\n\xe0\xb2^\xa8\xefQW\xd7\x9e\xa1:\xd6\x1dX\x0eF%\xa1M\xa28>\xbad\\\xbcN\n\xc18\xcb\x91\xa7\xd1\xc2#\xad8b\x82\xe4\x94M\xe2HD\x10\x85C\xeeK\xa4\xa0\xf9d\xc3\xc4:\x8bIF\xf3I\x12\x13\x89\x1b\xb2\xa1M1\xf7N\xde\xbd\xf0(\xa5\xc9hT\x8cF\x12\xdc<(B\xbch\x12KM%Q\x9b\xe4\x0bM.9\x89\xe4x\x1c2+\xf7G\xe4\xbd\xc9\x06\xc5n\xb9\x1e\xa8.x\xb8U\x13\xc3\xb7\xdb\xac\x10?\xa9Ai\xe3\x16\xe8\x17Ib?#9+$\x9f\xc6\x00\xfa\x13\xb5\x96\xda\x03\xa7\xb7\x1a*>+\xe7r^\xa3\xe5g99\x95U\x96yR|\xfa\xf23\xd5\xb9\x88PV]\x0c~0\xb9\xb33\xb0r%\x1b\xa20\xa17\xb3\x1a\xad\xef\xe5,\x8ao\xbc\x12\x184\x84\xe7\x9f\xf8\xe1\xe1\x7f\x0d\x8al\x97/\xd9O\xd1v\x9b\xf0\x8b\x0f'\xaf\xe9=\x81\xc17\xd1\xf6O!\xc6\xe4Vv\xd0\xf7\x82\xd5.M\xd7Q\xb1\x0e\xab<^\xe5\xc8:G\x8cd\x98\xb0\xb2$\xdf|=\xfbs-\xc4lG\xb4s{\x0f\x92C\\\x97[ \xbd\x07\xa1\x9c-&\x00\xe1\xe0\x00Sc\x93V\xfe\xeb\x9f\xb1d\xd0\xd1\xd7\x7f\xfd\xfa/\xb8\xda\x01\xa3\xfa\xe5>\xcb0T\x97\xa9y\x15\\\xee\xe9l!\x0ef\xfe\x14;\xd1\x00\xc7\x98\x07\xf9\xc1,\xac\x8a\x06y8o\x89\xad|\xb79gyE}\xd9\xc2\x0b~\xca\xce\xff\x1e\x0e6 OV \x8b\x07\xc0]\x0dx\x0e\x82\xe8\x18\x99\x8b\\\x0bo\xe0\x8d9H8\x8a\xe8\xd9Sm\x0f\xfb\x9e\x87\xc7\xded\xf0*\xe11\xc4M\x96|\xaa\xae(\x12\xfe`-\xc4\xb6\xf0\x0f\x0f/\x12\xb1\xde\x9dO\x96\xd9\xe6p\x93\x9d_\xffZ\xc0\xcf\xe1y\x9a\x9d\x1fn\xa2\x84\x1fn\xa3\xe5\xe7\xe8\x82\xe9\xf4\"_\x1eB%\xc5D\x14\x9eoz\xea\x8d\x992\xb0(jLDj\x81\xdeE\xe5\xab\xddkQ=\xfa]9\xd5\x16\xb4P?\xbe\xe5C\xf2\xc9\xc5\"\x9f\\t\x16\x91\xf2\xfeB\xfe\xf3\x0b\xe8\x98\xbd^\xae8Y\xb23\xef\x17L8;\xd5K\xadg\xc9rb\xddW\xd4w\x0b\x12\xd3\xe6nGV4\x08\xe7:u\x953\xf6\x1bC+\x85ak \x8f\xfa\x17\x1d\xe4\x7fC\xbb\xba\xfd.\xcf\xaeo\xc8\x85i\xc2\xf1pj\x81z\x83\xf0\xedf\xbf\x8f\x90\x07\x99\xc1uRt\x19%)\x04\xb2q\xb4\x01\x97\x15\x87d\xef\x06\xb9\x9bO\xb2BCk\x8c)$\xa3U\xbb\xf1[\xc5\x93.\x01\x82\xe7.\x7f\xe2L\xf2\x95{kM':\xd8\\\xf5\xe7Zf4\x06H\xfa\xab\xb6A*`\x94\x9e\xaf^`'\xd7/zu\xe83\x85\xe1T\xbbZ\x1a\xce\xaaz?;\xbb\xb2:\xb7\x91\x1ca\x8b\xabqzrf!#\xf9\xda\xe1\xe7\xea\xe2\xd3p\xa6 C\x85\x1d\xef\xcc4\xab\xb0\xc9NC\x94\xca\x0d_=Ia\x1d\x8e\xbcD\xbe[\x8a,\xc7\x0b\x85\xa6\xbe;\x89\x98RzQu\xe3m5A\xaa\x12f\n1\xb7*s\xadk(F#\xe4}\xafb\x19e6\xd4\x89\x94\xf1\x94\xd4\xbc\xdf\xf7}\x95\xf2R\x1a\xdd\xbc\x912u\xd5\xfe)\xa8\"9\xbe\xdd\xc2C\x8d;\x9d\x91\xab<\x11\x86S]f|\x95\\\xec,\xe7\xaa8$^:\x95\x1d=\xb0\xb2\xd9C*{\xe7J\xc2^RH*\xe3\x8dY\x15\xdf\xc4\xae\xbd\x80\x87\x12s-jV\xa8\xf0\x19\xc2g\x0d\xa7\x94\x82w\xe5\xb2\xaa\xfd\x99\xcb\xc6\x0d\x12\xaeN\xc2\xb2\xd5\xe0\xa7h[\xe5\xfa\xaa/\xd7)\x13\xb0 N\xa8\xa5D\x9d\xb4Dq\xa4\x05y\xd1\xb9\xd2O\xd8*eK1\x1a\xe9\x87Iv\xc5\x7fd7\xc5\xa2\xf1\xee\x9f,:\x06\xd7\xd9\xa0\x9c\xde\x021ln\xe2\xde\xd5+P\xd6\xfb\xfd\xd5T\xeb\xfb\xd7\xc6\xf2\x92\xf0\\\xc8\x07\xbf\xbd\xc4\x16\x9e7f\xbe\xb3\xd2\xde\xd7\xc4\x84\xb8_.\xb8\x84\xa8z\xf7\xd0\xe4b\xbfwaQ\xed\xfc\xaa\xfa\x17r\xecm\x1d\x00\xc7\xb7p\x92\xb6\x03\xf9L\x85\xdc\xaf\x86\xf7\xa6!\xd8\xa9\xabl\xee\x9d5}Z\x0d\xe7v\xf9\xa4\xc2k\xea\xbe\xec\xf7\xc3\x19\xc9'.nK\xbc\xf4\x00\xb9\xbd\x84\x0fr\x08\x94`\xd6\x01\xdc\xbe\xed\x93F\xf2\xc9gvCr\xec\xa0\xecK\xb3\xba\xcc\n\x18\x8d\xde '\xc27\x11\x98pH#\\\n\x1d\xb6\xe0k\xbb\x05\xa3\xd7\xf5-\xb0\x0e\xcb\x8a\xd1\x99\xcd\xc5\x93&\xb33\x17\x95\xcf\x82\x8a\x9b\x11\x95K\xe1\\\xca\xc3\x1c?H\x0e\xe4$\x07\x83\xaa \x0f)\x07\x9d\xbcYe%\xee\xd9\x80\xecp~R\xb3\xe5\x8c\xbcq}\xdei\x1c\xa2P\xd4\x0c\xb55A\xa5\x8c\xb0\xc9\xd9\x19|;;\xa3\xa2\xaa\xfe\x95\x16\x89\xed\xd10s}\xb0\xb1\x15\xcb\x19_\x1a?l\xb2\x93\x83uT\xf0?\x89\xc19\x83\x93\x87D\x187\x88\x07\x83b\xb7e9\xc2\xb5\x1cr\xfc,\xf6p\x157\xd86\xfd\x9b\x1a\x99\xdeN\xc4~/\x9e\x9a\xab\xa3*\xdc\xa0}s\xbd\xe4\x93\xdc\xe5B\xb1D]u\xcfR\"<8\x957\xbcr\xd5\xd2\x07\x87\xb8\x82\xa2\xb0\xa2N\xb4.\x81\xef\xf7z_\n\xb4t\x9d\x08\xb5\xbb\x84\x9d\x97\x87\xe5f\xd8\xd0\x0f$+\xa3d\xd0[|E+\x0c\xe7\xa1\x06^\xdfv\x9dk\xcbz\xf3\xd4\xa4\x02k\xed\xfew\xe4`f\xa0\xe8\xbd5d\x88\xf2\xd1\xa86\xd3\xa3\x11\x84\x0fuR\xb4^\xd9\xfb)\xdaB\x81\xfd\xde;e\xaa\xecB\x8dg\x95g\x1b\xc4\xb0\xef=3\xf8\xa73\x1e\xfe\x0b-\xfc\x0f\xc9\xfe\x18s\x81\x16\xfew\xfb\xd97\xfb\xaf\x1fc\xb4\xf0_\xa4\xd1f\xcbb\xacj\xf8J;\xf0\xe3x\xa1\xc6f\xc2\xb6\x97\x92\xe8\xee\xf7b4\x92\xfcI\x8b\xef7\xf3{\xab\xa3:\x1a\x9b\xc2i\x07\xefff\xf5\xa9E\x8b\xc5-\x9cK\x0f\xa7\xa5\xaf\x9ffzgeA>\x1e\x87eYV\xa8\xfc\xfefk\xb0\xf8\x98_Fi\x12\x0f\"!\xd8f+\x06\"\x1b\xa8Yf\x03\x9e\xf1\x03x>O\xab\x0dp\xf2\x89\x1fs\x1d\xbfAd\x83s60Y\x08\x14\x88$\x08\x06jg(\x94\xd5\xce:\xbad\x83h\xd0B\"\x84\xf5A\xc4\xc434@NWG>u\xf4;9Ox\x8c\xb8\xda,\x9eS\x95\x0dyR09\x80\xe3\xb5\xf8\x00\x02(B@\xde\xc2sx\xe6/\xed\xadSk\xb4\x1dU\xb1$\xaf\xbf\xc8\x1f\xc2p\x89\x89\xcb)\xfdb\xc8\xaf\xdc\xcf\x9e\xe3\xfd^\xb2N\xcf\xc9kt[\x12\x16<\x0f1\xee\x0e\xb2YuGB\xfc\x8cR\xfa\xb7\x12)\x83\x91\xe0\xb9\xf15#G\xf3\xb16\x9aA\x14K\xd9\xaf\x109\x94\xf50\xf9\xc1e\xbem\xb7\x18\xec\x82\x96V\x01\xdax\xcfD\xb6\xf1\xf4}\x0f\x89\xecg&\x0e\x0c\xa4$\xc5;\xc6\xe3\x84_|\xe0\xd9y\xc1\xf2Kh\xe1\xccF\xbeK\x8a\xe7,\xe1\x17o\xe1\x1b\x8b\xab\x0f*7\xcb\x8b3\xe5\\\xc3\x04\x1c\x88\x93\xd5\xea\x17\x89gg\xe6.{\x1a\x15\xe2\xd9r\xc9\x8a\x82\xc5\xcfo\xaa\xe4\xec\x8a\x15BW\x9c\x9f\x8aH\xb03\xfa\x0b\x9b\xbcy\xfb\xfe\xec\xfd\xc9\xb3\x17?\x1e\xbf\xf9\xfeL\xb7\xc5\x9f\xbf}]\xebv\xc6\x9f\x7fh$\xa9\xb1\xb1\xf2\xd2\xdcM14\xa3\xe2\x12e=\xad\xcbHP\xb9\xbe\x0d\x0b\xcf\xdd\xae\x0e\xcc\x1c\xea0\x06Bu\xa1\xab\xb6\x0fnu\x1f\x1e\\_\xce\xb6Yn\xe0\xd1\xe5\xda\xca8b\xaa2\xbfXG\xfc\xa2\x9ew+\x10&k\xe3\xb2)\x16\x08\xb2w\xc5<2P\xb1\xb0+ +\x11&\xff\xa0\xef\x90B\x1a\xf2\x83\xb3d\xbe7(o\xf1K\xc06t\xeex\x9c\xe7@_\xcf\x0d\xa1\x92x\xf1\x83##\x89!\xa5\xe7\xa3\xd1{\x81^(k)\xbb\xd1`\xc2\xd5\xb7_\x05\xca%\xc7\x92\xc34\xfeHo\x93\x98q\x91\x88\x1b\xbf\xbe\x8f\x18\xe8\xc9n\x94D\x11\xf3]\x1e\xa5\xdd\xd9\xfe\xc1\xb5\xb2\xb9\xa5\x04\xeaPZ'\x85\xce\\\xac\xa34\xcd\xae\xee\xaa\x92\xccp\xe9\xf0\x8e?7\xb8\xb2_T\xb0i\xbf\xb91.\x9e\xb1I\xa4\x9e\xf5\xb9!/\xb1\x7f\xa6\xbf(Z\x89\x98\x86\xab\x93\xe3\x99\xce\xb1\x89\xb6\xb5\x92_\xe9\xf4\x82\x89Zz%\x7f[1\x83\xed\xf7_ \xd8\x9b\xbf\xe8\xceI\xa9s\xf1A\xbe\xf8\xcf\x04\xe25:\xf7w\x17SaJ\xfeF\xbd\xec\x92\xe5y\x123\xaf\x1a\xf8?]\xd8\xdc6\xa8\x9c\xcfH\x06\x96*\xc5\x99/\xc8&\xfa,\x93\x18a\xd7\x82\xf1\xf8\xcc\x17\xcc\xe1k\x19S $\xb9>m\xaan< \xed\x8a\xd5\xd4e%\xealr\x9e\xedx\x8c\xeb2 \xe4\xd5m\xe8:\x873\xbc\x98\xfa\x10\x9e-\x87[\x9c\"\xca/\x988{h\xc9\xc7\xb2\xe4W\x02qm\x9cd\xca\xcd\xccq\x17t\x1e\xbc\xa3\xa92\x06\xf1\xb7Hb{\x82\xc9\xe3j\xa4\xa29\xd2z\xf1\x8a%l\xc8\x03gH\x90L\n\x03\xb6&nk\"\x996*$\x11)HJ\x96dW\xf9)\xccF#\x94\xd1TL\x8ah\xc5\x1c\x19\n\x93\x1d8\x9fn\xcc\x1a\xd9\xa9Q\xc2\xd8\xb6$\xa6\xb9~7\x1b\xb3\x9a\x94\x84\x8a\xf6\x8c$zFF#\x14\xd3Xo\xd3\xa0\x89A[E\x99\xafo\xce\xf0b\xebWS\x80\xcd1\xcbO\xccd\x8d\xb4\x16\x04\x15]m(\xa2\x85\x17\x91\xcf]\xff11\xd1\xa5SSz\xd9Uz9\x89v\"{\x06\x00\xc4\xa3Q\x8a\x1bZ\x88l\xbfgroL\xa3\x84+\xbapF\xfa4\x18\x99\x83\xbf9\xfb\xbd+!\xabVB\xe2\xae\x84\xack%\xfc\xfbh\xfb\xd0E4\x1a\x0d%a0m\x04\"\xc4\xa3\xd1\x9d-\x98n@\xcc\xaf/\xfd\xab#\xb2\xe8=\x85\x82\xf7-\x90\xa4 \x00\xd2\xac\xe3\x81C\xbak%%\xb5\x95\x149+\x89$\xaa\xd9\xa8ZA D_\xefZAQ\xe7\n\x8a\x9c\x15T\x90\xb4\xb1\x82\x06rA\xa64\xad-\x8f\xc2Y\x1eE\xd7\xf2\xf8 P\x0bY\x93\xdf\x81\xac\x89\x83b\xc5\xefF\xd6\xb4B\xd6\xa5\x8b\xac)k\xec|\xf7\xe1\xa4\xa3\xae]:\xf3l cBm5!\x9aM.\x98 f\"_d\x9b\xedN\xb0\xd8\x9dP`\xc1k\xf8@n/\x98\xf09\x94,\xe0\xa9`\xa2\xc4$WlJV\xf5d\xf7\xbb\xe1\xb1\xad\xe0\x11\xbb\xf0\xd8\xfe\x07\xf0\x88\xdbx_\xbb$\xde\x84\x89\x81\x86\xe2\x1c\xe5,\xbb\xf0\xd0\xab\xd1P\xc5\x8cVt\xbbs\xd1$\x13\xc6\xd7R\xae\xcb\xf1\"\xf3\x7f\x96\xcbCvb\xc5\xe8\x9a\xb9\xa7\x0ekV\xb1\x06-Hy\"\xdf1\xaf\x02\x17\xd3\xe0\xdaT\xe0\xbap\xc1\xb5i\x0fY\xee`\xb0\xf7\xcby3\xa4\xe4W\xc9\xfa|fg6\xb7\xcaQ0\xad\xbeH\xe9O\x0c\xb9\nv\xa2>Z\xa5\x87K>\x17Fy\xd9A\x16n\xeb\x0b\xac\xbd\xe4;V\x9c\xc4\xad\xb4\x04\x82\xeb#E\xd0n\x9b\xaam\x9d\x87<\x860\xbc\xf9\xd0\xe9\xceh\xd4qZbh\xa9\xe1P-q]X\x82^\xf4Ld\x01;\xdc\xf3\x84\xc7\x92\xbbS\xa4\xd0\xff p\x03\x82\xbe\xad(\xea\xa9(r*zf*z\xd6\xaa\x08\x16\xd3\x92\xec\xe8pF)\xbd\x7f\xbb\x89\x19\xdb\x02\xd3\x9a\xb3\x95\xff\xcc\x10\xc5~\x18H\xd1\xe2>\xd4\xb5\x1d\x95\x99U1\xaa\x7fkTv\xe9P\xd9e\x8d\xca\xee\x1a\xa3\xaap\xf4\xa2\x0bG\xed\xe9\x8f\xc4\xd2\xc5\xaf\xac\xb1\xb6s\xac\xa8\xcd\xe2\x8f\xc4\xb1n\x14/a.\x1f\x02\xbe\xfe)y(\xf8\"\x07|Q\x0d|\xa86\xf9\xfd\x13\xd5\x98|\xdc\x82\x9b\xa2:7\x8c\xde\xca\xacr\xe9\x80P\xa3%\"-\xc6\xbdd\xcb\x0c4B&\x1d:\xe5\x0f\xa7\x8eHv\xc9\\\x11f\xbf\xbfae\xfd\xf8\xf5\x86)\xd4=gt\xc7\x90\x97Y*\xeaar\xd5L\x93\xfd\xf5\xc8\xad!\x91\xfe\xdfKL\xae[\x99\xb4\xe0\xe8fte\xc8\xd6\xb6\xc0\xf6\xfb\xf7\x1cd\xb2\x0b\xf5s\xa6~\x8e\xf8\x83\xc5G\xa2\xc04\xbb_\x8ctrv\x8a\x93\xce\xf7N\xb1\xd2\xf9n\xd4\x98\x98|n\xc3\x00D\xf2>\x104%\xf3\x85\xf0\x99\xac\xe7\x8c\xd1/\xe8\x9c9\xfb\xcc[g\xfe\xd4\xd9\x1d \xcf\xe2g\x7f8\xab\xde\xfe\xee\x83B\xbc\x89\x17\x9au\x1dR\xc4\xcd\xbe\x97wI\x03\xb9\xb3\xe9q\xffgeB\"\xf1\xd09\x1b\xb5;z\xb2B\xc3k$,\x7fk\x84\xfc\x16\xdce\xee;\xe7N4\xa7@4a.p\xc7\xa1\x9a\x19\x14e\x127\xd8\xe4<\xbb\x86\xacs\xa5\x95\xed(\xac\xc0\xdf\xb7\x80\xeb\xc9\x95,\x7f\x8c\x04& =\xe1p\xb9%\xf8\x18\xce\xb7\x02a\xb0\xca|\x81\xb2\xaeSI\x86o\x13\x87\x0cf\x01\x0b\xc9\x90\xef\xf7\xdaw4\xc7\xfb=\x0fX\xa8.x$\xe2\xdc~9A\x1bt\xbd\xa3\x11\x92\xdc\xf1n\xbb\xcdYQ\x9c0U\x0d\x9cW\x16`8\xf1\x81)\xd7\xdd\x1d\xd0\xc3$\x17\xad\x8f\n\x82\xeax\x84\x80\xf7d;1\xa3\x910\xf9\x9d\xc9\xc1\xe4\x8e\x0e\xccJ\xb8qb\x91\xed7V\x19\xa3t\xa2\x88\x06i\xd77\xca\x88c~\xf0\x01j\xea\xceW\xbeg\xd4\xda\xb8\xbf\xcb\x93M\"\x92K\xa5kz\xce\xc8\x97FL\nS\xa3@-\xf5Vs\x19\x82a\n\xf5*u\x02\x9c\xe6y\xce1\x8f\xd2$K\xc07Tc?\x1a\x0e\x0c\x13\x10\x12\xd4\xc5x\xb9\xecs\xac\xd6?\xb6\x9c\x969\xbb\x8b\xea\x87\x92\x91\xe6)\xaa\xf7uT|\xe0\xea\xbc\x8b\xc5j\xf8p\n\x19\xa98\xb6K\x06\xc2\x92S\xc1\x12\xf2\x98\xebQ\xee\x97Ku.i\xdfc\xd6\xec\x8b\xed\x1d\xb7\x1d\xcb\xab>%U\x1d\x1c \xc3X\xe7\x98D\xe5OH\x10f\xf6\x07\xd1>|\xe4\xa61\x80f\xd7\x05\x02\x8b\xf6 4\x99\xae-jo\x10l\xaeT\"_\xad\x0e\xc8\xa5\xbaF\x8cs\xe0m\xce\xe4\xd2z\xc3\xae\xd4y\xac\xdc\xd2\x86\xc0 |x\xf3\xe2\x87go\xbe?z\xa9\xcf)\x0b&\xdc\\\xb2\x81f\xe1Zk\xc9\n\xfd\xa8\x8f\x18\x0d\xa2\xff]\xdf-\xbd\xd5\xfc\x92:\xc7\xb8\xd92?\xe7r\xeb\xfbE\x99\x1e\x94\xb0\xbbVf\xa6ng\xe6\x8c\x8a\x89\xc9j\xd9\x1a\xad3\xe3\x06\x00\xc4\x1d\xaa\xb0\x87\x97\xc6\xc17L\x14r\xf30\xbcp[\xb1\xf0\xeb\x1e\x9a\x1a\x8dS~\xee<\x1bW\xee\xb5\xd3W\x84\xc9\xdf40F#\xc65\x18\xcc\xd0]pT` Y\x1a\xabGQ\x02\xb8/\xea\xd1\x93\\}_\xfd\\\xd8x\xcct\xb1\xc9\x1d.\xd4f\x17\xc6Y\x17\xa2\xfd\xac\xa7JM\xb4>\xc7?\xeb\xbe\xc8#F#\x86n+\xb9\xee\xc7\x84\xc7\xbe6b#1;\xdf]\xa8\x9d\xf8\x8d\x94\x0d\xab\xd9 wb\x81;;\x16\x10Z\x98\xc4\xe4\x9f\xb5\xee\xe5\xd1U\x1f`T\x0d2S;\x1c\xb1\x9b\xef\x82\xc1)8\x7f\xd8)\xf8\xd8\x0b\xbc\xb1S\xff\xd8\x0b\xbd\xd2\xa8Q\xdf\xae:\xca\xfe\x8a\xaafd;\xc1{\x16\xde\xd9\xe7\xb7+8\x95/\xd1\x0fx\xfe\xbc\x97\x8a\xff\xc2\xc8GF~`\xfd\x96\x1e\x1a\x11\xb6\x8c\xc7*n\xda\xddF\x140\x89 \xbf8\xb3\xd1 8\xbbz[\xa5J\x96\xf2\x1e\xa3\x8f\xfb\xacE\x1en\x14\x92\xef\xe4^\xffo\x9a\x88|xw\xf6\xfe\xed\xd9\xcbg\xef\x8f\xf4\xd8v\x1c\xd4\x92/\xd9\xb6\x80\xe8j\xb6\x06C\xad\xd9\xd5\xe0\xfbZ\x88\xa7\xb6%\x8c\xc8\x93\x8b\x0b\x96\xab\x0e\xb8\x1f\x92B\x1d4\x00\x90*H\x9c\xec8O\xf8\xc5)\x13\x82\xe5\xd5\x87\xd8r\x0d\xb5J\n\x9d\xad^\xf1\xfbB_\xcfpk@\xf0\xd1\x85\x9f\x95o\xccQ\x8c\xe2\x15\x08\xe8/\x8c\xf7|3\xf4\x9f\x18\xaa\xe7;P_tv\x8c\xebCe\xfaI\xdd\xa1\xcb6r;:\xb5\x02\xdd~o\xc4\xa5\x85+\xe7\xf9\x0e\x0b\xe2\xc2\x12D \xc1\xaeE\x1f\xe8\x86C\xd6Jm\x01Rf\xb2\xaf\xf7\x18\x1a\xb1e\xb6a\xa7\"J]\xd2\xaa\xf6\x176\xd7[4\xee\xc6p\xda\xc0q\xf06\xd8\xb7\x16\xde\xbd===~\xfe\xfa\x1fg\xa7\xef\x9f\xbd>:#\xccY\x84\xddj\x06\xd6E3:\xdb\xec\xa6-\x1d-\xd6\x86\xab<\x87\x18\x1b\xa9\xff\xf7\x1a\\5\xf6\\\x13\xd4\xc2]\xee \xa7\x84S\x9f\xfd\x87\xe2m\x7f\x9f\x9d|\x80\xa2 \xd65\xa1\xc7J\xe5\x1f\xcc\xcc\x88!cWQ\xce\x9f\x9dg;\xf1\x81C\x11\x16K1\xf2\x0ca\x026w\x90Go7\xf0\xac\xf5R\x9a\xab\x1e\xce\x94\xb8\x89\x8dr\xb9\xc6cJ\x86\x9a!n#|O\x96\xe0\xb8\xdb\xc8\x0e\x12[\x9b\x1c\xbfAWM]\xf5jhnK\x80\xc0_;\x08\x8c\xfb\xb6\xaf)H\xfbn\x95\x95\xf8\xa6\xa9(\x98\x86i\xf1\xbe\xa7\x96\x99\x06^\x84\xbe\xfe\xb3\xdb*\x18!\xd6q\xb1E\x15]\x88\x98\xd0B}3^\xe7ox'\xc4\xe1\xf2\xa5\xd8\xef\x7fdp\x9a\x02\x00\xde\xef\x87\xc2\xd9d\xe0z\x84=\x1d63m\x98\x06Lr\xd9\xefZ\xb5m\xa9\xab\xce\x1eL\xed\xfc\xfe\xc6\xe4\xa4\xcf\xc1\xe2]\xd0\xbf+lj\xd2\x0fw\x93\xc2s\x00\x9d\x94\x8f\xa6J\x91\x1b'\x85d\xbaA\xd1\xf0\\28Q\x9e\xb0\x02[\xd8\x98ZZ3\xa5\xab\x82\x19\xbd?\xb3\xa3\xcf1\x9c\x12\xb3\xea\xb9\x0f\xa0\x0e\xef\x18\xe9\x8c\x08\xc0\xcb]!\xa7\xe8\xacE\x98+J\xb5\xdf\xa3\xbf\xe9\xc5T[&\x8a\xe5P\xb4\xbd[\n\xd1\xe24h\x10\xe8pJ2]\xa6e\x01_S[[\xad\x84\xb2P\xd5\x17,3\x92\xd0\x8e\xd3 \xe7\x10H\x19\x94q\xdf{\xb6\x13Y\xbe\xe3\x9e\n\xd2P,\xd7,\xde\xa5,\xdf\xef\xc5$fit\xa3U']\xc2\x15\xab\xb2/\x9cg ^itS\xdd\xdd\xaad\xac\x82\x81\xc6.\xdb \xa4l[d\x0b\xa5\x7f\"J$0)\xe8p6W~\xc46\x02%\xc4U\xf6J\xde\xa8\x90p\x89j:`Y\x04t\xa8/\x95\x9f\xb8\xf8l\xbf\xcf\xd4\xf2C\xa9\xda\x9b1\xec\xa7*\xa2\x99\xb0\x8cO\xa5\xf3\xd1>\x12{\xda\x15vk\x81\xfa\xee\xab\xab~\x01\x98\xa1\xcc\"Wf!$\xe9(X\xf7\xe8>\xe7g\x08\x97\xb5Q)\xad-Wr\x16h\x11\xe4\x84\x98\xa9\x80\xc4\x0eQ\xb5:8hJ\xab\xdc\xec\xe8uI\xdd\x91S\x93J:\xcd\xe4(\x05\x8ap\x99\x03pi\xa2\x99\x88\x9e]\xc1]\x0d\x0f6\xc0\xaeDOg\xb5V'\xfdJ\x12\x15\x0f\x97DE\xf0\xfcA\x92\xa82\xfbf\xf4\x1dj\xf2\xf1?0<\xaf)rY\xd0\xa0\xbd\xf4`\x16R\xaf\x96\xe4\x11\x99\xcb\xd9k\xe94\xa4\x9e\xf3\xae24v\x7f*\xebi\xa4\xa9\x8c\xfa\xfb\xe3\x90z:\xb9D\xbf\xb0\xfd\x1e\xfd\xc2\xe8m\xd9\xb8j\xa1:\xf8\xe6\x08\xda\x94\x0f\xaa\x8e\xd7o\xbf\x87\x06^\xbf\xfd^%\xca*?\xaa*\x81`|\xcf\xda\xc4\x1e\xf6\xe5\x9a\xf8\xa4R\x98s&\xf2c\xcd\xe4\xc0\xbd)\xfa\xbds\xbf\xebg\xc8\xa5\xaf?w\xb16\xda\xbbl\x9dm1\xf7\x9egs\xf3\xb1\x06z\xdf\xa4j\x96I\xe7\x9e\xda\xdc\x0d\x00\xfb\xd55?s\x9c\x00+ <\x95U\n\x03\xf0M\xa6\xdd\x1c\xa8\xd8\xb1Y\x1546\xa2y\x90\x80C\xa0\x7f0\x14\xa9\xf8B\xfd{W\xa4\xd7\xaf\xdd\x9ftB\xb5\x07\x19$\x15r\xdf\xc9\x85\xa4\x81\xc3i a\xb1\xfa\xb8\x015\x18\xdc]\xd2\xd2\x1a\x01aO\xdc\x8f3Gk\xffw{\xc0\x7f\xa9./\x00<\xe6\xaa\x14k\xaaJ\xec\x1d;\x17L\x1aD\xe3\xd9t*\x8bt)%\x98Q|\x8c\xc7\xa9P\xcfvs\xea|\xa8F!\xefT \x80\x13 \x81\xf2\xda1\xee\xdf\x9c\x935\x17\x93\xe6\xac\xae\xddtn\xc4V7\xb7%\x0c\x97\x02 \x08,\x8a\xe7}\xc2f\x8d\x9eVM\xff\xd3m\xda\x98r8*\x05+\x17I\xca\xe2^h\x11\xa8C\xa4w\xd6w\xb5\xc4:V\x15\xe0\x91\xb3i\x08\xa1\x0f\x04\xbb\xe8\x81s#D\xf4\x9c@\xc2\xc1g\xe7\xf9#|\xa9\x9f>\xe6\xa2u\xfa\xa8s9\xb7\x14\x0421\x0b\xdb\xe0l\xa1@\x8f2\xa0\x9ei\xdeK<\xeas)'\xf2!\x92\xbe\xf2V\x92\x88\x96\x80\xa2\x1d\x0d\xd1o\xd4FnO\x88l\x84\xb3\xbe \xa9}4j\x83\xea\x0bPu\xa3\x80\xded\xe7\xd7\xdf\xef\x12\xfb\xae\xe9\xa8y\xddv\xa8\xd3\xab\xe8\xc1\xfa\xab\xd1GV\x1f\xac\xe0]}2\xfa\xe7\xf6Qq\xfb\x8b\x9a\xc6\xa1\xd1-\xf3U\x96/\xd93S\x91\xd1Xoo\xec\x19\xaamX9\xe6\xa9\x9d\x80\xff\x10\xf18u\xf3\x18\x96\xfb\xa4\xa1N\xb5\x1d\xc9u\xc2IKTh\x1c$\xc8\xa4\xdeZ\xba7:\xfb\xb9\xf7\xb4^}\xael\xa4\xec\x80/Y\x9e\xacnl\xaa\xa9\xa7n\x94K\x87\xd3\x92D\xe0\x1d\xa7\x102S*\xda\x8a\x8c\x149\x97N\xce\xce$\x0e\x1ck.\x10\xf6\xaf\xa7\xd3\xd1hh\xbe(\x87]\xc5h\x84d\xb53LZ\x1f\x1a \x06q\x87\x94\x82k\xdcD`\x93TU\x12\x89E\xa3\xd8\x02u\xf6\x05B\xcd5\x1a\xb0K\x01t\xef=\xdf$\xa3\xdc,\x89\xfd\xeeF\xdamP\xdds\x1f9\xe2oM\x88U\xa7\x10\x7f\x91\xf2\xe5LYO%\x02\xfc\xb4Z\xe2\xa3\xac,%Qq\xf68\xe5\xbcT\xb2w\xcaZ\xb4\xa1\x86\x1d\x8dv\x92d9\x97>\x80\x82ic\xd2\x9e\xf3-\xd8\xbaz\xcf\xbe\xa6\x92%\xea\\\xc8&:\xbc\xeb\xcbY\xee\x07.\xe3\xe6\\\xfc\x10\xd6\x13\xf3\xc1A\x95\x05\xdf\xde\xc8\xfd\xa6\x8a\x83\xd8\xd7\x1a\x11t:\x17OX\x87\x8f\x0e\x16\x88p\xce\xef:\xbe\x03\x03\xac6\xb0\x10o\x1d\x06v&\xca*\xb8R\xbf#\x8c w\xa5\x9e\x1f\xd8h\xc4\xad\x9eHn\xee}#\xa0\x81\xeb\x96gU\xdf\xc5\xfa\xf7Nm\x0e+\x16H\xb3\xd4g`<\xd48TT\xa7(\x8d\x83FS\x80\x88:\x07\x17\x886\xd39\x1e\x87\x94\x91!\xeb\x80H[\x8d\xacQ\xa6 \xa5\xa9bv$\x90\xa4p\x82}\xd4\x83\xa5\xd5\xfcKb\x01HJ\x863\xd7\x1f\xbbP\xca\xf5\x07(\xf1\xfb\x0f\x8f\xfe\xe83\xa36'G\xeeV\xea\x832JN\xf1F\xf4\x9ds[\xeb<\xa3\xd5\xd3~\x0d\x0caw-\x93\x14\xcb>\x9c\xf5\x1e\xf2f\\\xfb\xb7\x80n\xd4NX\x9d\xbd\xac\xfb\x9c\xb5\xda\xa6\x1au\xba\xac\xa7n\xb8&\x0d\x98\xd4\x070\x9cfk\xbb\xfb\xb8\xbc\xf7\xb8\xdbQ\xf99'\xd5\xa7Z\xc7VK|/\xf1U\x93\x83\x8ec\xedf\xd6\xf6)\xb5>\x01\xee\x82\xab\xe8\x02)\xef\x87f\xfe\xef\x9d\xa5\xaa\xfd\xb9R \x82:\xda\xbc\xb62\xbap\xd8\xefQ\x07l\\Bn\x19\xab*b>&7Z\xaf\xe6\x96\xeb\xd3\xaf\xb9U\x83\xc7\x86\x1d\xafN\x9b\x9d2`\x0e\xd5\x98;\xed\xc6\xa1k\xfa\xe6-Y\xc2\x1c\x0f\xd6\x15\x05\xeeY\xa0s\xb8\xd8=\xf9\xce\xd9Om\"Q\xcd\xd4\xd3\xda\"\x1d]/\x19\\\xa18\xe6\x8e\x8d$\xc4\xf7\xe8:OS^(\xec P\xf3\x14\xeb\x9e\xd1W\xf8\xa8\x8fV\xba\xc6\xde3pm\x8eg\xce^\xccU\x18\xdc\x99\xff\x9e\x05\xd0\xb5Vl\x97G#{\xc0\x01\xc7L\xfa8\xfaNp\xe9C>\\\x81\xe7\xae\xec5\xa8]Z#\xb5\xb99\x06\xac\xad5\xdcN\xd2\x86sJ\xf9s\xb7\x8aN\x9dA2\x0d\x11P*\x7f\x89\xac\x8d\x90\x81\xf5\xddPnyN\x9d\x11\xf2\xa0\x08\xc2\x83\xa4\xa8{\x04\x953\xb7\xcd\xb3x\xa76X\x88\xf5\x02\xbe\x91,\x7f)\xf1\xfb\x1e\xf7\xb6\x98\x80\x1b\xaa\xca\xadm\xc3\xa9\xadw\x9ee)\x8b\xdck\x88\x81Q\x97\x1d\xccB\xe5\xcfj\xb2\xcd\xb6\xe6@<\xa3\x1f\x05\xe2\xeaX\xc7\xba\x93\x8f\x90\xf7'5\x0c\x08\x0d\xbc\xc0\x7f\x1a,#>\xc8xz38g\x83]\xc1b\xc9g&1\x1bD\x03}\xfa20\xd2\xa7\x8e\xb2\x0cq\x9a\x0dl'\x83\x17\x19\xe4\xcf\x07\xdb\xa8(\x12~\x01n\xdb\xd7\xac\xa3\x94\x11R\x07\xecz\x9b&\xcbD\xa47\x1e\x9eg\xeevH\xcd\x868\x1a\x19$O\xb3\x0b\xa4V\x8c\x9a\xb3P\xae\x92\xccL\xe6\x9f\xa0\x97\xb2Y\xc6\xe5\\\xc4\x9e\xba\xeb`kd\x8b\x8f\xfah\xc2\xff\x08\x87\x16ee\x0b \xa74\x17\xa2\xf3\xd0\x11a\xe7\xfc\xe1\xa6.b<\x9d\xee\xf7\xf2\xad\xa52\xd8\xef/\x04\xba\x14\xae\x87XS\xb2C\xbd0\xed\x94@l\x06\x10>\x8c\xe8\xf1t:\xc7\xb7\xb3\xe9\x94\xd2\xf1Xr\xc2\x8d\xd0:\x9a\xa2,o\x96\n\x1d\x0d\xa8\xc1\x9dq0\x0d%\xd3XlU\xd4\x16\xec\xba\xb7s\x92%\x02\x92\x8c\x1a\xa4\x9a\xe7O2\x8b\x8b\xb5\xbd\x16\x81\xb8\xd1\xa90Qnl\x05}\x87*f\x92l\x04&W\x82\xda[1\xd7\xf2\xd9\xfa\n\xf1\xc8gA\xff\x89\xae\x04&g\xf2AgS\xb7\xa2=r\xabnG\x0f\xa7%&o\xe5\xf7kAn\xab\xd2\xea\xc3\xa9*hSm\xe1ZFRUUM\xed\x91pf\xdd\"\x82{!\xed\n \xbc\x80+\xc2\xda2\xef\xc9\x8e\xcb\xa7x\xa0z\xfa\xd4SQ\xea\xae\x10W\xf9\xc0\xbd\x99\x7f-_\xb5\xb3\xb3\xc5[\xe1\x7f\x162M\xe0\xc5\x17\xf4O\xc4\x16\xd7\xc2\xbf\x12\xfa\x06\xa8 N?Y\x89\xab{\xa0\x12\x9c\xef\x04=\x12`\xf8P\xbf\xe4\xf4N\x90\xcf\xda\xab\xdf3\x95e\xea\x8c\xeb+w\\W\x8e\xa3\xd6\xdaE\xa0\xc6\xb5\xc6g\x82\xbc\x15\x98\xbc\xd3w\xd2\xe9\x17t&0yV\xbd\x9e\xea\x06O\xfa\x17\x8d\xfc\xfcBPO\xcad\x8e?\xa3_E\xe3\x9e\xdf{\x81<\x90n=\xa2>T\x8b\xe6\xbdh\xde \xea\xb8\x85\x9d/\xbe\xa8y\xf2\xe5/& \xbdB9\xdc\x98#\x11ec\xef\xb5g\xbd\x82\x04Q\xb8\x90\xff@[\x9f`_>\x1bkZ\x14$a\x8d\xd0\xab\xf5(\xb3\xcc\x99V\xb0\x83\xfa#1\xea\x0f%M\xea\x88.2\x9f\xf6\xde|,\xd1:\xbd\x8an\ng\xd8o\x94.\xc4@>K\x1d\x7f\xf2\x91`\xa3Q\x9doE]\xec\xb2Z\x8f\x8a\xe4\x18\x9b\xb8\xce\x05\x88\xc16\xe9\x1b\x0cz\xb4)\x89\x84\xab=\x03\x1dH\xa7* FYW%i\xae\x8e\xa4Bk\x95\xca\x12\xe1\xea\x12/e\x8e\xb6\x8fd\x9454\x9e\xb5X&\xb92\xa9s\xd4\x839\xa5\xf4X\xec\xf7\x1eg\x97,\xf7T\x9e^_\xdd\x98x\xc9\xaar\xbfMm\x8d\x0d\xed\xa2\xbd<\x03\xf1S\xb4qC\x06M-\x8e\x85\xaf\xafR\x83\x0bN\x9aI\xf6\xaa\xa1\xa5MH\xe7\xb5\xa0!\x04\x90\x1c\x8d\x92\xa1\xac\xa9\x0c\xbc>e\xacG\xbc~5\xacG\xbc~\x05\xacG\xbcn\xc6\xd1#^CY\xea\x85\xdd!x\x84\xa4\xfa\xcax1\x10!\x1d\x0eY \xe0f+\xe98m\x18\xa6\xe2\x0eu0aV\x9dl\xe4\xa4\\\xbbGm\xa5\x13N/D\xcf\x16*\xba\xc2g\xc9\x0c\x10K\xaaZ\xed/+\xa5\x14\xe1TQD\xa6\xfd\xe7U:\xdfJ%\x00:\x11\xfbf\xf7GP\xa2\xb9\xfa\x00\x8a\x1a\xc7\x1d\x8e\xf3Q\xb3\xf8\x05\xc6\x18n\x8a\xbf\x14\x18\x13\x0e\xeb\xf8\xb5\xdcwm\xef~\x12\x86\x036\x91\xb5\xbcW\xaf\xdf~<{\xf1\xec\xcd\x8b\xa3\xd7\xaf\x8f^z\xe5O\xa2\xd7W.\xcc\xa7\xe3/\x17\x96\xd0+As\x86\xbcU\x9a]y\x98\xfcV\xbdu\xedy\x1f\x04\xeds\xa7\xd9\x7f\xe5\xf6\x95\xf5\xf6\xcaHNyk\xe3\x92\x8d=\xf5H\xd6b\xbe\xb5\x91 q\xa27\x91\x84\x8e\xc7\xaf\x05\x89\xe8;\x81\xf2\xb178\x18\xe4;\x9e\xc4\x92\xb5H\xe05\xe1\x89\xf0\x08\xb7\x9e\x85I\x86\x89\xbdm\x96\xd2\xee\xb0O\xd6. s\xa1\x9dZT\x98\x9b\x1a\x94 \xdd\xdb\xb8\n\xa0\xe7\x8d\xb3\xf1\x98D\xe0\xc3\x14\xab\x03\xf8H\xb2xM\x13\x08@\xbf\x1d\x12\xb5\x10\x8e\xffY\x93 \xdb\xfd\xce6wFP\xbf\xd2\xf7\xc8\x1d\xb7\xf4b\xcd\xb8\x9dN\x1d\xd6STa=QA\xfb\"{\xeaPs)Y\xe2\xb9\xaa\x07\xed\xe4\xbe\xca(')2\xa6\x81U<\xbft\xb2\x94{@\xda;P\xf5\xd9\xab\x1b\xaa\xe57\xb7\xc5h\xf4\\\xa0\xc2\x04\x06\x89&\xaaB\xd3\x04\xe1\xad.j\x13+<\xe7\xaa_\xe7\xe4\x1c\x93\xe7`8\xc2`1\xfe$\x0c\xe0\x04\xbeep\xe0+i\x97%\x00\xfa\xfe\xf2\xdf_\xa5\xd9\x15\x98-\x96\x18\xb0\xdc\x82\xf49P\x91+\xc4\xf4\xa00\xf8)\x86G\xe4@\xfe\x8b\xc3\x16\xc1\xae\xdc\x9e\x80\xaa!\xd7=m'\x9b\xe8\xdc\xeb\x1a\x82\xe9\xb8\xdd\x80\xc4b8\x04\x0f$\xa3\x91\x14X\xd5\xf0\x8b\xb3\xc9:*\x90\xc0\xbevN\"\xc9\xf4\xc7p\xbf\xff\x07\xbc\x9d+/\x92\xff`p\xbeQ;R\xf9\x08\xcd[\xd3&\xe3\xc6\x18l\x90\xa6\xfe]\x07\xde\xcaNif\xf2|\xe1\x08\xe4\x01\x95\xfc\xb8\x91LX0\x0b\xdd\xb3\xf6\x1f\xf4yP\xc3\xfe\xd3L\xf4\xb6yloH@\xc3\xa1BU\xe1?\\8\xca\xc1\x97\x1f*\xee\xf27M\xb6\xbe\x17\xf4v\x1d\x15=\xfeMd\x0d\x12\x8eg\xb2\x19\x88\xf0uG\xbe\x0b&T\xbe\xa6\xc7\nk\x9647\xf3'\xc9h\xe5\xd3'\xa7\xaa\x82\x02* \x9c\x0c\xa7\x18\xef\xf79\xb8<\x95\xac\x9f\xb9\"\xdf\xe5\xe8\xa1\xa7N\xae\xebT\x15\xc8jU\xa5\\\xf9Qu\xee\xdd\xdf\xd9\xd5A\xa3\x8bmGH\x1c\xbaZ\x12\x13\xe0\xa0cwVEu\x06\xd0\xf4nsv\xc9\xb88\xba\x16\x8c\x17\x92#\xaa\x15\x8b\xd0\xec\xeb\x9ag\xd6\x1f\xdd\x99\xb4x\xcf\xeaW\x88\xe5\"\xac%\xd8\xed\xda1\xdb\x13\xaeer#?\x1c\x97\xd6o%\x07a\xe5aD\xab\x921\xb9l\x19\xb62\xcaU\xe8\xd7\xb7+$\xf0\xfc`\xa6\x82\x96p#\xf022\xab\x87v\xfd{\xbd\x1f\x06\xb5\xad\xff}\x1a\x84&\xecC\xab\x93A\x88\xb5i\x95\xb1\xea\x9bgO\x12u3$\x0f\xb2P\xee\xd0\xa3\xd1P@\xa0H\xc9\xa5\xcf\xfe\x8c\x89\xc0\xf3l<\xae|\xf9\xba\x16/\xdc]4\x7f\xeb\x01u\xf3Z6\x90\xbcFZ\x07\xc0\xff\xd9\x00x\xb3\x88\x0e\xb1\xd6\xb8\xf2\xfd\xff\x14\xd8\x19o\x82\x1d\xe4\x8bf\xfb\xe0\xab\xb32\x83S\xc0\x86\xf0\xd5\xca]=\xc6\x0e\xe0\x01\xae\x1a\xee\xf3&4E}Q)\xc7+\xbc\xeeQF\x9d\x7f\x8a\xfd\x1eu\xb2\xb6\xfd>\xca\xe5\x0f8\xa1'/\x90\xe8qJ\xa3+\xc9+\xc7hw{\xa1\x01\xc8p\xea)\x08z$\xe7\xd4\xdbm\xe3H0\x8fd\x9c\xde\xb6I\xa0\x86\xa5\x1c\x92A.J\xe9\xc7\x05\xf7=\x05$\x88Y\xb3\x00\xcbo\xe0\x8a_C\xea\x19\xc2\xbe\x89\"`e0\xb1\xdf'\xc5\x9b\xe8\x0d\x12x\xf1\x1e\xa5\x9c\x08\xbcHy B_\x8a\x18\xca\x0b\xe4\x19\xdaFy\xc1\x8e9p\xd4w\x10[\xb7OnWF\xa3\\R\xdaZ_8&&P\x11\xed\xea\x0cD\x1d\xe5~\xaeH\xb4\xd3\x01\xc2\xc1J\xf5.\x82\x06\xf4\xec/\x10=\x9d\xff\xdeS\xd2J\xa8\x83\xee\x1aG\xf0\xd9\x15gq\xfd\x183e\x17\xd1\xf2\xe6\xa7,n\x1coF\"\xdb\xd4S4{PY#u\xf9a\x80/}\xae\x18\xd4\xf9\x84\xbe\xd3_Om\xfad\x80D\xedU\xa8\xd6\xdd\xa8\x10?\xf2\xec\x8a\xeb\x190G\xa0zd\xbc=\xa8\xdc\x1d\x8f\xf1M\xde\xec\x8a\x83\x08Nt\x15\x88\xd6\xd9\x84e0\x99\x84\x9eV\xa7\xf4\x9c]\xba\xb7\xf4;\xef\xe2W,\xd8\xfa>\xa7\x0f\xf5\xda\x8a\xdfQ\x9d\xa4\xb4\x86\xb0.\x94\xaf\xb1\xdaw]\xfd\xc3\xbd\x06\xf4\xde\xd7\xa9u\xc32`p\x1e\xdf\xe9H\x00\xdc\x86y\xae\xb7\x00=\xd5\xdd\xbe\x05`\xea\xdck\x1b\x96\xca\xa8\xb8\xecS\x12\xc51\x8b}\x17K\x0d\xc5U\x9f@\x85T\xff\xae\xcf7r\xb6\xc9.Y\xec\x07\xa1yTy\x9b. D\x93\x0c\xf5\x1d\x00\xab\xcev{o\xa8\xb7\xad\xaf\xf7uW\xca\xf0\xad\x8d \xe8zqgO\xa6\xa0A\xf3\xde\xee\xc4 [\x0dr\xb9\xd2@\x83n$\x9d\x8e\x96\xe06\x9aD\x0f,\x1f\x9e\xd6\xe2\x1c96\xed\x07\xf6\x80\x87\x1d8G^\xf0\x83\xc7\xfe\x14\x93\x8c>\x9egO\xb8\xd1\xb9\x1c\x86:\x92\x08\xa7\xb7%\xb9\xe4\xd4\x8b\xe2\xd8#\xe7\x9cz\xea\\\xd3\x9b\xaf8m\x04\x98%k^9\xe5T0|\x1f]@\xff\xae8\xb9\xe6\xe4\xf3\x9dj\xf8\xd6\x01\xf4\xcf-m\x8d36 \xcf\x96\x16\xdaUt\xb7.1\x05\x1fCz\xa3\xf5\xdbq$\xa2z\xf6uT\xfc\x14m\x9b\xbe o\x8ag-5\xfe\xbf\xa9\xb6\xefT\xd0W]\xaf\xf9\x87\xe4\xe4\n\xfd\x14m\xf1~\x1f\xa1\xd9w\xb8\xd9\x9b\xefQ\x1d\x10\xf0 a\x03\x0f580\xb8\x88\xb6\xf5\xd1\xd5\x127,\xbf\x00w\x15\x97\xfd\x9a\xf8u\xd4\xad1\xaf\x1a\x02k\x07\xa5\x9f\\G\xc5\x1d\xf7-\x86\x9d\xbb`M\xfa\x84\x03\xff\xca\x1d\xb4\xd3s\xf0v\xa2b\x0c\x0c+_#T\xc7\xd8p\x0b\x93\xbf\x936t\x16\x1e\x88\x0d\xb5\x1aU\xa8\x90\x1c\x13\x08\x9e\xdaa\xc6&lVm\x1d\xaa\xac\xda\xcc\x06b\x1c\xe46}\xcc5\x84F3\xa6\x96<\x987\xe4A\xbe\xc8\xb9\x7f\xd9\xe3\xfaX\xa8@>\xc6\x11t\xee\x82m.h\xder\x00\xcd\x95\xf8\xa6\xd4}Zd\x97]\xd3j\x8a8v\xd24\xdf \xf48\xef\xbb3c\x11\xd1\xaaNG\xa3a},\xe7\x8da\xe8\xbe\xeb^\x0fg\xb6.\x0d\x1d\x031\xab\x8e\xc9)o\xebb\x80J\xde\xe1=\xb9\xab\xe9\xcact\x85\xb1\n\x97\xd4\xfevf:\xa74,\x1az?\xd4\xed\x1aE5\xe6\x96\xe2\xc5\xa8\xe5\x7f\x00\\9\xe2\"\x07Y\x01\x0eo\xea\xed\xd5\xdc\x85\x1b\xeb\x1a\x93\xc7E1\xc2+eN\x0e\xc7\x9c\x06negsw\"\x9f\xbbz8\x9c\xd1\xbb\xdd\x10\xce\xc1B\xeb\xb8\xadQ\x99;\x18\x88\x8d)h\xdb\xe19\x12-o\xe9\x06\xdd\xed\xe4f\xb4C\xd1\xf6\xa0\xc9\xcd{&\x97\xd7'\xd3\xd5\x9e\xa8ym\x0d\x9b\xe4\x15\x8c3u+\xca.\x8a^\x10\xcc\x1b\xf8\xdf@\x93K\x1b\xbe\xf9\x0b\xdc\x10\xa8\xc8{\x07IR\x14\x89k\xa8Zb$L\xb8\xcb3\xc2{0k\x8a \xefGH\xe3\x86\xeb\x0f\x81w\x93\x1c\xf5@\xb7\x0e\xcb\xa6\x8f\xd8\xc6\xae\xa1\xf6\x8b\xdaY\xad\xabR\xac-\x19\xe5\x92\xcd\xef\xc8k\x8e>\xc8\x1f}Z,\x01\xdbw6\xd9\x04zKC\n}W\xbb\xb1u9W\xb4\x0cp\x15k\xae5w*\xb7!\xa8\xed\xb88\xb2\xb1\x8a\x14 \xf4\x85Q\xec\x8bR.\xc5\xbbn\x97\x02\x0b$\x85\xd4\x80\x83\x8dS;|\x1b\xeb\xb6\x92\xba\xd46L\xd3\xf0\xff\xe6\xed]\xd8\xdb\xb6\x91\x85\xe1\xbf\"\xb3Y\x95\x0ca\x99\x94\xefT\x10\x9d$\x8e[\xef&q\xd6vo+\xab9\x10 I\x88)B\x01!_b\xea\xfb\xed\xdf\x83\x1b R\x92\x93\xee\xd9}\x9b\xa7\x16 \xe22\x18\x0c\x063\xc0`\x060\x88\xc5(4jd\xaa:Q\x85tg\x9e)\x9f\xe5\x94mA\xf8\x1e\xcd\xe5\xb9\xf61\x90\xae\xe6\xd64\x00\xd6\x80\xa8\xfa\xa4l\xbf\xa4\x95^7P\x89\xa5\x14$7u\xd7O\x8f^cL\xff\x85k\xaf\xa5\x0b&\x90\xc1_\\\xacg\x91 C\x0e\xb3\x06\x192\xa8\xf9C\xaf\xbc}\xc4\xa4A\xb4\xf6\x90\xa9\xb7u\xbeAy\x0dx\xec9`\x17$c\xf7U\x15\"\xb14<\x17\xd4\xd6\x1c\xaa2\xaa\xaa&5\xb0\xc6\x06\xac1\x98x`V\x14\xae\xe8\x84\xb7\\*+\x02\xd5A%&\x90\xafx\x0bB*\x1f\xbc'\xc4R\xe5\xac\xd0t\xf0\x01\xd6\xf1\x0bn!5\x8f#\xf8`x\xf8\x1d\xbc\xd5\x8f\xbd\xad\x91\xe99\x19\xbb#\xd5\xed-\x08\xef\xd4\xd3\x93\x12qO\xde:^\xae\xadw\xa9\xe1\x80\xd4\x9epO\\\xef\x1e(\xf1\xa3U\x13\x9f\xf4\xe5\xeeM\xd1K\x14E\xcb+@\x8a\x8d\x7f\xd3\xf0\xaan\xa8\xf4\xfd\x06]'.\x06\x83\xc7\x1b\xfc\x109b@\x9c\xba\xa1\xfa\xbf#;\x88j\x96K \xeb\x9cf\xeb\xebs\xde\xa3\xb9\xb3\\\x0e=u\xb7\xf9Sc\xd7G\xee4\xddd\x1e8\xcf\xe0\xe3\xb2w\xb7\xbaOs\xbfq\x9f\xe6\xf2?\xb8Cs\x89\xb9\xb3\xc9\xa1\xcc\xe0\xb7!<\xcf\x9a\xdb\x15e\xdc\x93U\xdb\xc9'\xb7V6\xef\xc8|c\xd3eu\xbf(\x03w\xee%\xe6r\xe7\xa5\xdb\xf5lp~r\xab|O\xd9?V\xbb\x9fR\xa4\x97gF\xb8\xf2l\xa1\xf7\xea\xff\xdf\x99?\xfe\xe7\x963E\xa2J\xa8\xfdw\x97\xb5\xff\x90\xecVIk\x14PKZCI\xf2\xad\xed\x0b\xf4\xf4\xd6\xc5\xa6\x1d\x98j\xfb\xa2e\xaaS\xf6$J\x9f\xf1\x1eW\xf6\x0c\x14\xbaP\x92\xb8|\x9d\xd5\x96X\x19\xd6\xdar,\xcb\x80\x99Oo\x87\xe4\x98\xffu\x0d\xae\xea\x8eV\x8c\xed\xad\x86\xa5\xd5\xc1\xef\xda\x0f\xfa\xde\x0d\xa0RQ\xdf\xb4 \xf4\xdd{@\xdf\xd5\xe9\xcd\xad?\xbd\xcb\xb3\xde\xb4\xe6\xafo\xd147B\xedu\xe0I\x0b\x9bRP\xe0\xab\x1a/\xf6\x9eV\xdf\x02\xc0ac\xe93\xe2\x14\xc8V\xbeT\xb3\xf8\x1b:\x1e\x83%g\xc2>\x0c\x01+-_\xfa:\x12\xea\x80\x0f\xd8\x10d\x036\x1c\x02\xa9\xecm\x85\xcbH\xa9}[\x81\xd1:\x9fR\xab\x0d,\xebU\xe6'\xb0f\x1d\x9a\x02\x0e\x835\xddl\xb2\xac':k Z\xe9\x1fn\x0cD6\xe0\xbe?\xf46\xf7\xf5\xfbD\xf7\xb75\xa5\xf1Rnx\xac(\x8dM\xe9\xbc(d\xa4kW\xb3uw\x83\xe2c\xa9=\x82\xff\xac*=\xce\x1b\x94e\x94\xcbk\xbd\x04\xa5\xe4+n\xe5\x98\xb7\x04\xe2\xa4-\xb4-\x9e\xfdwd\xa7\xbf(\xc0\xfd%\x19\xf1\x12s)#\x0e\xee6\xef(TD\xf7W\xa4\xb8o\xcf^[\x82\xbb\xdf$\xc1 \xd9\xa8\x92\xe0\xde6$8\xf1\x15\\f\x1e\xf8\x985\xae\x9a\xabHl\xaf2\xe8\xa8C~\x07<\xfb\xfe\xab-Jf\xd3\xaa\xd7\x8a\xc5\xd5\xd8\\\xea\xe0\x88I\xdbA[8\xd2G\xc1O\x1f\xb0\x99\x10b\xaf\x04ei\xf7[\xdf>N\xfb7%\xbb5W[H\xfe1E$S\x18k\\\xc6\x99\xcfS\x82\x93\n\xb2fm\xca\x1d\x87\xbc&Y\xfb`\x90\x81\xebxh\x9c\xd6m\xea=kv\\]\x9f\xb1\x86\xda\xda\xfdq\xbc\xb5\xdd\xd0\xdb\xa2\x1a\x90'\xe5\xc6 \xe6U\xcd\x1f\x19\x9do\x96 \xed\xde\xd46[\xf5y\xd67\xeaYo\x18i\x9d\x0d4<\x99\x96\x9b\nR\xcd\x95\x01\x06\xbe} \xb6\xd6@R\x1b\x99kt\xac\xd9\x91n\x1c\x90)\xbbY\xfb\x80\xec/\x9f\\\xd4\xad\x84\xfb\x16pu\xd1D\x01\xfb\xbd\xf1=\xd7\xf7\xe7\xffr\xa2Q7\x01\xd6\xf2H\xb0\\g\x0b\xac\x91\xb3\xc1.i\xeb\xaaFs\x00\x1b\xc7|\xe6\x88\xd5\xfe:\xc0\xc3\xe5:\xcbYk\xef\xad\xa1#n\x85\x1eXi\xa1_#$\xfb\x8c`\x035\xaa\xd3\xcc\xac\x7f\x81\xc7\xa9\x98B\x92\xb0ju\x8a\xefn\x03T(\xafc\xab\x01\xc0\xf7\\z\xd6\xc5@/\xf4\xbc\x16\xaf\xdd\x8e\xe4\x1e4\xa3\xbc/7\xcdy\xa9\xee\xad97\xff\xe6\x018V>\xd5*h{+\x9c\xc9\xf8\xe4\xabq+\xc3\xcf\xed\xdbKv\x063)\xcd\xc4\x97\xd7]\xf5\x19\xd5J\x9b\xf5\xc3\xf3\x8a9\xa9\xf3\xf3U^\xa9\xcf\xadd\x10\xca\x8a\x7f\xc8+\xaf\x0dna\xc2s\xa9Eh\x03\xf2<\xb0\x15\xcakV2\xfb*xFG\x90\x1c\xc6\\\xb7\xaf\x8d\xf0\xeba\x19\x98*\x1b\xe0\xa1\xb1\x99Fn(\xb4\xad\xb2\xa5\xab\x87y-\x0c\xb2\xeft\x1c\x1f[A\x83\xbceu%\xbc6(\xac\xddf[\x10&\xa5B\xbap\x19P<\xaf\xf4G\xa41\xa0e\x1di\xb8\xd5S\x0e\xaa\xa1\xb9\x13$\xdeC\xf9\xaev\xcb\x98\xb5\xc7\xff\xd1p\xf6\xf3\xb1\xd0\x9d\xcf\xf4\x9c\x96\xdb\xd4R\x03Pt\xdb\x98mb\xa9\xb7/TUv\xd4[\xd5\xd4{\x02\xef\"O\xcd\x18\xa3\xe9q@\xd9\xd1\x1a\x8b\xecr\xf6\xe8N\xcao\xba8m\xb7m\xa0\x01U\xbad\xad\xba\x15^\xb1\xca$\xe4%my[\xdb\x1a\x07\xe3V\x017\xf8<{\xd2\xe0\xfe\x9b|WsY\xa32W\xdcV\xb1\xa4\x86\x0d\xbeZU\xd4`W\xc6\xf8=^\xee\x93\x12I\xe5\xf2\xce87\xdcE\x86\xbe\x12\x84\xab\xa8\xdb\xf0\xad:^VYX\xa9.+\x0b\xfd\xf9j\x0e\xc5(\x94}\xbf\xa9\xe7U\x92\x10\xae\xdc\xcb\x1a\xa5j\xed\xcds\xb5>(\x18\xea\\v\xdd(\xd5\xc4\xc9\x92\xc0\xea\xe3D\xd7\x8eS\x899\xba:NO^\xb9\xfb\xdeqj\xde\xb9\xd3\xeb>\xa9\xd6\xfd[i\xe9\xffYpc\x90\xc3\xc7:COy3b\x81n\xb8.\x8d5\x16\x08!\xdc\xcb@L\xf22<\x12\xdcp\xd9S>\x0c\xbe\x7f\x88\xf3o\x0e\xb1v\xc2\x93Z\xa6\x05\xeb\xd9\xb4e\xe5dVR\xc5\xa0\xcb\xf0\xcd\x1b\x89$\xd5\xf2\xc67\xa9\xc4\x84:\xfb\x7f3\x93\xed\x8d\xa5\x7f\x9b8\x14@\xd5\xfe\x9d\xa2\x0d\xed0K\xbb|\x84\xeb\x11\xea\xc9@\x96\x95k\xe4\xb5\x0dk\xbaW\xa4E\xfe\x13\xa4\x15J\xd2\xa2%i\xd1\x92\xb4\xfe\x12\xf7 \xdf$-\xb2\x96\\\xa4\x9a\x82\xdd2\xb6\xf4f\xb2\xd1{\x99O\x11\x8d\x1c\xe5Ui\xa0\xa1\x96\xca\x85jE*4\xe0\x07\xff\x11\x9ax\x955i\x80=<\xeam\xe7^\xc5\xc0\x00\xa9\x04~\xb4N\xc1)\x1d\x9fI\xc2E\xed\xb6`\xf7\xb9 \x8e)D\x82f7\x8cL\xa2M\xbe=#\x11U\xc3h{\x1b\xda\x84\x05=\x88\xda+\xa5\x9dI_8C\xb5P\xac\xb9\xb5e \x90\xad\x90}\xc1\x12`d\xe6<\x98r\x17yM;\xd3\x95\x8d\xd0\xba\xc8e\xcb\x81^Q\x94\xfe\x8a2\x8d%\xaf(\x98\xa2\xa7\x151\x0e\x10s\xa2\xfb\xa8\x07f\xa32\xf5\xcd\x01~J\xdb2\xcaTi\x81\xd8#\x95\x8e\x94z\xcb\xcdd\xfb\xdf\xda\xf3\xda0\x93\xd6\xa9\xd6\x80Y\xf7Sk\xf2\xa5\xd1Ao\xff;:\xe8&\x8d\xb3\xae_\xfe\x9b\xc4\xb0\x15|\x8b\xcc$\xfa\xb5\xcb\xaaM\x9bwO\x1c\xa6\xbe\xa9\xcd\x9er\xef\xf9\xdf\xa9\xca6\xcdiTZ\xbf\xeaxa\x8f\x9b\x18\xaa+\x17\x83\xdf,;\x0b\xb5\xece\xf50\xba\xdcp\x05^\x85\xd0m.B\x8e6\x96x\x96i\xb6\xfc\x1e\xcd\x81VRX=\x84\xa7\xd4\xff\xca\xad\xfa\xben\x8cCl\x04\xfe\x13\x1cSy\x00\xec\xf5y4\x15\\\xc1\xac\x8c\x82\xd3\x9b\x92\x97\x02t@=\xa0$\xa67\x8d\xbdI\x05V\xf3R\xc13\xfbR\xc1g\x9b\xfc?\n5\xac(\\\xf9\xdbpcT\x1b\x88\xc1o\xc3M\x1bX\xd2\xbc\xbc\xe6n\x88\xaf\x14}j\x97`i{\"\xbd\xb2\xa0\xdb\xdaRw\x1e\xde\x98;\x0fe\xae\xb3\x86\xcf\x81\x92\xa0\xb1\xadj\x16\x85\xe6\xc5l\x90\x0d%\xba>d\xe0$\x03\xef2\x18\x80\xf7\xb5\x9d\xd9e\xefC\x06\xdf\x8b\xaf\xb0q\x19\xca\x90Y^\xd3\xfc\xfakS\xdd\x0f\x99U\xf0$3#\xb8\x05\xa1\xfd\xa5\xf3\xe9\x93|\xfe\xf4\xa9\xbf>\x19\x9ed\x91\xfd\x05\x9ed\xcakiVca%:\xa4!\x99`H\x9a\x05\xf5\x1aZ\xc0S\x17zi\xbb\xedR\xb9\xbe\x13\x88\xab(\xda\x9e\xe2:=%\x96\xeb\x1b\xbe\x0cd\x80\x82\xad@\xf2;d6yO]\xe2\x81\xb7\xae\xfc\xf9\x0d \xe9\x15\x87\xd7n\xf0\xe6\xe6\x06\xef\xca\xfdOy!\x90\xcb\x0b\xbc\xb9u\x81\xf7\xbd\xcbAu\xd1`u35\xd3\x06t\xcd\x83(Aj\x1b\xce\xa2\xaa[\x8e+w\x1b\xb9\xed%\xc6\x03\x19\x0cz\xd9\x0b\xdc\xcb|_\x86\xe3\xb3\xaeWe\xa5\x05\\\x83J4<\xc6\xf7\xe2\xb4\xba&(7\\\xd6{\x0b\x91\xd7{\xfa\xd8\xe4\x94\xa7\xaf\xde\x12d\x83\x86E\xc8p\xf54\x91\xeb3\xb5\xef:1\xc3\xcd\x133yB\xb6z@\xa6\x8d@5\xd7\x91\xa7e'.7\x87/\xaa\x8e\xa7\x8e_4\x8f\x90\xa8)\xbd\x995=\x91U\x03\xd5t6&\xf7Od[\xab\xe6/\x1b\x0ej\x145\xcb\xa3\x1a\xbet\xdf\xdbl\xee\xablk\xee\x9e\xdaS\xd2q|\x0cVG\xe2\xb1.\xdc76\x13\xbf\xdd\xe3\xf5,\xd0\xea\xa7at\xcb\xfam\xca_\xcc\xde#~\xf9.\xb3\xe3\xcb\xbe\xcbz\xfc\x05\xf6\xc3 \x90\xf1\xce\xbe\x8a\xfaz\xef2\x88\xad\xeb\x85\xaf\x9b\xfb\xb8\x82\x88OM\xa2\xe5n\xb5\x12\xea\x8d\xfcQ^\xfc\xc4\xed\xb6Z\x88\xa0\x82cb\xdb\x1fVf,\xd2\x0es\xd7\x03\xb8\x9c_\x82\x01\xbc\xad\x19+\x0e~\x932\xae\xb2`\xack\x10e\x9ej5\xd7S\x1b[fv\xdc+\n\\\xbb\x12\xc1+\xd3Yi\xf0\xb3\x0f8\xf8M\xd6\x0f\xb2\xa5X\xc6\xcb\xb6\xb6\xca6\x90\xdb=0zl\xcd\xebk\xbdB&+<\xac*d\xa2\xc2?*\xe7\xaf\xda\x15l \xba\x92\xed\xc9\xd8U~\xfc\xc5G\xb1$\xd5\xba\x8f\xdc\xee\x91\xed\xaf\xb6.\x95b\xd9\xe4\xb1\xe5!\x9d\xf7\x7f\xcd\\=<^\xb4\xda\xb8\xb6\x07-\x8a\xb7\x8aQD\xa2\x95\xbe\xf8\xa3\xe6(r\xbb{\xa0\xe6\xa2\xb6)\xe8TMy\x19\xd4-\x95\xb1r\x9e\xd5:(\x85\x9c^\x06\xb5[\xdcZ\xcb\xa2'\xd2\xc7?\xb6\xeeWIq\xd5\x04/0\xb6\x99i\xb6\xc1\xe1\xa2\xa2kiJ\x9c)Sbs\xa9T\x11\xd8e}\xa2J\x12\xf6<\xf0K\xe6\x86xW\x0d\xe8\xcf\x19LJ\x9ePM\xf4?\xbeq\x9e\xb1\x1dz\xe0\xa7\xd5i\xf1S\xb9i&\x96M1\x07mR\x95\xce=\x8b\"\xdc\xc1\x10\x86;\xbc\xda\xd1\xc6Fz\xe65C\x19\xbc\x05\xcbS4\xbe\x05\xb9\xf1\xb8\xa0\xa7YO9\x9a&^\xbbm\xe6\xa0\xda\x86\xac\xdetV\xabZ\xb5\xf4\xfe\x9ci{o\xb5\xe8n\xc12\xc5\xda|,]:(\x1f\x0e\xe5\x99\xfb\x05\x9e\xbc\xbd\x9f\x0f\x9d\xa8\x96\xaa08t\xb4\xd3\x06\xc1\x14!t\x1c\x9f\xf7j\xd9>H\xf7le6\x1foA\x1f\xf7}\xbe\x05}\x1e\x05P\xbc\x84;\xbeBP$~\x9b\x15\x9c \x8e\x9bm\xbfV!t\xacZW\xcb)\xf6_\xc1\xb7&*\x81\xca\xd2n\xeb\x95BN\xf2\xf3\xb1\xc1\x14\x84p\xdd\x07\xee\xd5\xdb\x91\xb6\xaa\x0d\xd4`>t\xa2\xec%\x0c\xda\xed\xcc\xf7\x97\x18\xfeCn\x1bq\xf1\xab]#\xe7\xb0\xcc.\xd7\x9f\xa1\x03!Dr\x88\xf3\x1a\x9b\xb5\x1d\xdb}k\xa0SX\xb3\x9f\x071\xe4\xf6\xbb\xa8]\xb0\xe9\xb8\xdd\xder\xef\xdc\xd4k\xb7S{\xcb m\xb7\xef\xdc\xd8k\xb7c;U$8V-\x8e\nP\xd0L\xaa@Y\xeas\x90\xac\x02.\x93\xbe\xde\xd44\xa2\x90\x16\x85\x15\x88z!\xbd\xbfJ\xd7\xbb\xc6%\xd6b{\xbb\xe7\x91\xb1\xcb\x06\x8b!\x84\xd5\xa4\xa0\xea]\xce$f\"\x88\x02Zz\xb1U\x98s\x17\xb0\xf4\xfd\"\xf8B\xdd\x07\xd2V([.\xdb\xd8\x12sx\xb0\x18\x02.\xfed\xdb\xa1\x9c\xcb\xf5\xed\x18\xc9x\xe6 Ys\x91c\x01\x13#\x01\xd6TI\xd3\x97-\x08\x17\x9bZ\xber9\x98\xc3d\xb0\x10Z\x86\x82c.\xe0\x98\xaf\x83\xc3\xac9*4\x94\xe8\xb4\xfc\xdd\xb2\xfc\x01\xff\xe3)\xb9\xf0\x95\xcd\x91\x9fY|\xd9\xb2\xc4\xc1\x96y|d\x85\xb2\xfe\xa7]1^\x95,\x7f\xcf\xecH\xdc\xbf7\xe4\x1b\xcb\xffq\xf5\xc5\xfd{V\x8f\x87P\x145\xad\xa4\x94b\xc2\x1e\x7f\xd1\x14\xb6\xed\xf8\xad\x95\\\xcd+\x9a\x92A\xd82O7P \xd8S\x94[\xb7k\x8c\xdf\x05&M\xb4\x06l\x08\xb3\x01\x1bZ\x0e{=K\x14\xb7\xdd\x19\x94\x1d\xfaWmuv\xffU\xf6\xa9\xae\xd2\xd9}\xb3\x17sKY\xe3\x00/=%\xe0\x95\xb5K\x03_S7f\xeb\xeb\xee\xaf=T\x8c\xd6h\nVsE\xb1\xfe(\x12{\x02\x08\x0b\x04\xceT<\x1b\x8b}\x96r\x9f\xde\xd8,\x8ar\x8b\xb3d \xb5em\xe5k'\x9f\xa2Y-\xcb\x1aw\"*d\x8c\xce\x14\xd8\xce\xe95\xf7\xb7\x86\xb5\xc6\xa0W\x9asu\x010\x18\xd6\xae\x80/U\xa0\xd9f\x9c\x87\xad\xd0\x92\x8f3V\x97\x0b\xdc\x8cA\x81\x93\xfeJ+\x1b\xfc$\x0f\xc4B?\xec)nU\xba\xc6\xe0\x96\xd7+\xf7T\x17\x941\xf2J\x170\xac\xda\xae\xc9\xda\xed\x7fe.\x05V\x97=@K\xea\x14-\xac\xa5N\xc6*\xa1i\x0d\x86\xdf\xa3y_o7iuM7\xe8\xb2\x95\x9bEJ\\\x11\x82\x8b\x9bA\x0c\xb6C\x08a \xb7\x11\xa7\xf4|\xaa\xdc\xcb8\x83\x0cqr\x8b[1M\xf0\xd0\xf1\x1a\xbbeY}\xe8\xab\x95N\xc7Y\x14\xc0]=\xccU0\x1d\xd7\xb9\\\xcc1k\xe1{\x19JQ\xf4o\xb6\xc8y\x0b\x13>\xc5\xac5\xc2r\xbb_\x05\xb5+\xab\xf4\x1a\xf2\xeb\xa3\xbcg\xa3m\x91\x0d\x8b2\xd6\x13\xbc\xbc\xa1k\xa1\xd0\x8ax\xc3l\xc7<\x003\xb5\xc5a/\xb0\x9e\xc5\xa57\x04\x92\xb1\x8c\xba\xc0\xa3U4\xd2j5k\x9c\x11=e\x9f\xb2\xf4\xc0\xbf2i\x9a\xa0f\xed\xc0Q\x9c\xd9\x01\xf2\xfa\x08\x90&\x88\xc0$\xae\x0b8dGKL]O\xfa\xecA\xae\xf3\x9e\x8e~o\x99h\xb4-\x15\x8f\xb2\xf5\xa3\xf4\xe0\xf7c\x8bS\x81\xec*h\"e\xad9M\x1f\xc6$\x95Q\xfb\x84\xc0\xbd\xa2\"~\xfa\xf4\xfe\xfc\xf5\xef\x9fN\xde\xfezu~\xfe\xee\xf2\xd3O\xef\xce_\xbfz\xf7\xe9\xe7\xf3\xf3\x7f|\xfa\xd4n?\xf9\xb9C2Q\xd9{:\xbaw\x1f\xf3\xf9\xc3:\xd6\xb6\xce/a>\x7f\x18\xb6\xce\xf2\x16jet\x9b\xce7\x04w\xb4#\x86-\x97\x00\xdfs\x86\xf2\xe8q\x82\xf9 \x1e-&rc\xfd\xb7l \x9e\x89:\xa3\xdf\x96z\xe2\xb2U\xc3_\x90\xf5,\xb2\xa9\xb8|c&\x95\xf8\xb6\xa9\xfc\x02\x8f1\xc3YlH]PVk\x8a\xf2\xecG\xde\x1aa\x9c\x956\xbc9NZ\xdb\xad\\\xcc\x04\xd7\xab\xe5\x10sO\xe0\xbf\xdc\x1d^\xba\xd6N\x1cp^e:<)\x8d\xe3\x05c8\xe9\xb4.1nM9\x9f\xe7\xd1\xce\xce\x84\xf0\xe9b\xd4\x89\xe9l'\xe7\x0f)N\xb6c:\x9b\xd3L\xd0\xfa\xce\x9c\xa6$\x9f\xe2dg\x94\xd2\xd1\xce\x0c\x91l'g\xf1\x8e<\x14\xc9P\xfa3N\xe7\x98\xe5;\xb2\xfe\xbc3K~p|\xee;\xad1e\xad\x19e\xb8E\xb21e3\xb9\x8f\xdcq\xf4\xa6`\xa5\x04B\x0c\\\x0e\x99\xb7q\xce\xd4\xf8\x1e\xaf\xef\x97\x99\xf9\x03\xb9\x98\x0b\x82\xf1\x02\xb6t\x19S\x11\x9b\x11\xe3j\x9el=0gO\x19\xe8 \xa6B\xce\x95\x8a!s3\x90\x81\xcc,\x02.\xfe\xdb\xeeA\xe0\xef\x1e\x04\x9ex\xd89\x90!\x11\xc2m $\x1a\xe5n\xf7y\xb6\x1dz\xdes\x0e\x10$\xcf\xed/\xf4o]\xf1\x05\xe40\x00)\x0c@\x0c\x83\x1e\x95\x8a\x07}\x11\xf6]\x19\x0c\x0d\"/\xa2/a(\xd2\xba\"\x0d\x81\x14\x12\x99\xd6\x15i\xbb}7\x85\x04\xc4:\xdf\xaeH\xdb\x13i\x08\xc4:\xdf\x9eH\xdbWeM\xda\xbeH;\x90\x87\x8c\xaapOI\xf3\xd96\xd9\xe9\x96[$n\xee/@\xea/@\xec/\x94ak\xca\xe0#\x12B\xe9H\xf0;g\x1c\x8c\x8f\xc6c\x07\xa0\x8c\x93/\x0b|7%\\\xa4\"\x90i4\x96\xa1\x04#'\xe9\x1e\x1c\x87\xd8\x011e(\x15\xc0\x1c\x8e\xf7\x03\xf9\x9a\x8dSz\x87\x99\xaa\xed`\xefx\x1f'*='\xe9\x8d\xc89>\x12]\x8d\x19\x99\xe54\x8b\x9c$\x0e\xf7vE\xc2\x03\xca*\xdc%\x88\xddT=;\x1a\xa9\x14\x93\xe7hdR&4Mp\xc6DgFGG\x07\x81If\xe8!r\xd0\xb1\xf8gR0\x96e\x0f\xf6DWtR#\xd3\xcd\x14\xdd\x90\xc8\x19%\xa3\xc3\x03]\xd3\x0cMp\xc6Q\xe4\x1c\x8d*8hJn\xb1\xaeq\x7f\xff`\xd4\xd5\x10S\xe5\xbb\xdd\x19\x8f\x8fb\xd3\ne\xf1\x94$\x91s|\xbc\xdb\x8dc\x95\xc6p\xa2*4\x99r9\xaa\x91\x83\x8f\x8f\x0f\x0e\x91N\xc3H7q4\x1e\xc5G\xba\x89\\\xe0_af\xefh71\x10\xc9d\xd5\xeb\xeexo\xbc7\xae%\xe3F2_\xb0/\x0bJr\x89\xde\x18'\xa1J6\x84s\xbc\x17\x04\xc9\xae\x03\x12\x8c\xe7s\x92\xc9Q\x0b\xf7\x8euJ~\xf3`Ff\xa4\xc6\x8a\xccT\xcb\x07\xc7\xe2\x9fN\xc0v\x02M&\x86$B|,)uL\x18\x1e1\"\xe8{\xd4\x15\xff9`\x9c\nj2sj\xa2\x8c\n\x82\x12\xff\x1c0\x99\xd2\x9c\x9b\xca\x8e\xd4\xb4\x15\xe4\"\n%\x87\x02\xf3\x16\xf1$\x08\xedwE\x92\xec\xc8Q \xfe\x897M4Gr\xa4\xe4\xeb\x03NSz\x179(\x19\x8f\xc5\xb8\xab\x9e\x9a\x12S\x9a\xe1\x87\x04\xdf\xe9).S\xb8\xc1\xe1\xc1\xf1hOF8 (\x93$\x10'\xfb\xf1~\xac\x92&4r\xf6\x04\x8du\x1d@n){\x90(\x90Uh\xb2\x1c\x07\xf8\xe0(v@\x8anq\x96`\x169\xf8\x00\x1f\x8cQ\x952J\x17\xf9T\x96\x0b\xc6\xfb\"\xf9.\xd3]8\x8c\xc7\x92\"S<\xa3Y<%\xe3\xb1 7\x81c\xc1CR2\x99\xea\xf9\x8f\x92\xe4\x08\x1f\xe8$3\xbbu\xe7T\x9a\x9c\x83X\xcfS\x99T\xe2\xd1\xe0f\x8c\xc6(\xe9\x9a\xaf\x12\xa5\xc9\xae\xf8W&I\xa0\x8e\x03\x8c\x8f\x83*\xad\x99\xcd\xe0mt\x10\x87:\xc9L\x94\xf1\x18\x05b\xa2\xa8\xc4r\xa6t\x83Q\x17\x95\xc9\x86P\x8f\x0ec<.S\xab\x99rxt\\O\xc4\xf5D\x8eq\xaaj\x18\x05\xf1^\x82uz\xd9\xcb\xf1x\x8c%\xf831\x1b\xc6\xfaQ\x83\xb2\xdb\x8d\x93]\x89\x83L\xbc\nb\x16x-\xf9\xc98\x18\x8b7FEw\x04}\x89\xe1\x99\xe1\x84,f\xf6\xc2qp\x10'\xa2G\xeaK\xc5\x12\xc5\xb0\xa94\xc3`Fh\x7f_\xa0N\xa5\xce\x17l\x9e\xe2\xc89\xde=\x0c\x92\x91I\xad0\xb5\x1b\x8fv\x0f\xc32\xbd\xe2*\x87\xa3\x83#\x8c\xcb\x0fs\xa1*\x95\xf3`\x8c\x8eKX,&\xb2w\x94\x84\x82\xb7\xa9\x0f\x8a\x8d(\x02?\x0c\xf7\x8f\xf6\x1d0#IV\xd1Xx\x1c\x1e\x1f\x8a\xde\x92\x8c\x0b\xa1i&W\xc0\xb1\x18\xa2\x19\xc9\xf9\x03\xa3\xb9^\x04\xb1\x80\x90\xc61\xcaI\xa6RF\xfb\x0e\xc8\xd0-\xfaLK>\x91`\x94\xc8\xc4\x07\xbdZ\x04\x0e\xa0i\"\xdd\x1b;\xe3d\xbc/\xf0.Y\xb6\x9a\xa7A\xa0_\x13\x86F\x91s0:\xc2\xdd]\x07T\xcc\x1b\xed\xcb,\xf2]vc<\xde\xd3I\n\xd5 :\x0c\x92\x03\x07\xccQ\x8a-&\x821>\x12c%\x935\x89\x1f\x8dG\xc7G*\xc9B\x18\x1ac,\x90,\x92-t%\xa3\xc3@\xb0\xd99\x9a\xa3\x07t7%s\xd9\xe9q\xb2\xef\x809F\xf1t\xbe\x18\x8fe\x97\xd1\xe8X$\xb1\x85`\"G\xfb\xbbc\x07\x98\xd9\x12\x07\xf1\xc8\x01\xf3t1\x8b\x9c$AA\x928`N\xef\x12\xc3\x80G\x01\x96\x94h(\xe4H\xa3\x8c\xe1\x11\x8ecd\x92\x0fv\x8fE\x9a\xe8\xbd\xe8:\xa3\xf9\x83\x16$\xc4b$\x96#F\x1f\x90\x9e\x1f{\xe1\xc1\xb1\x18\xab\x1c%I\x8au\xbe\xa3\xd1\xde~\xb8+\x12\xf5\x9cEG\xc1aW\xbcg\x89\xa9k\xbc\x87\xf6\x0e\x02\x07XS\x18\x1f\x8d\xf6\x0feJ>\xc5\xa9\x14.\xc6\xfb\x02Y9\xc1Y\x86\"\x07\x05\xfb\xddn\"\xde\xd3[\xc1\x05\xe3@\xfcs@m\xbe\xe3\x91\x03,\xaa>@\xfb\x92\xd3\xd9\xb3?8\n\x04\xf7\xb1\xe7\xbeI\xca\xf4\xfcF\x82&\x9bs`|8v\x80\xc5\x1c\xf6\x0e\x8e\xba\x82\xb1s\xc1\x18\x93\xeehO0i\x8e\x05\xe7\x0c4\xe7\x14*\x04\x17XM\x8eF\xe3\xe4\xc8\x01\x9c\xce\x10\xa7rQ\xd8\xdd;t\x80=\x99\x02\x1c$\x81\x03\xccj\x8c\xf1QWt\xffn\x8a\x11\x173%\xc1\xa3]\xf1j\x96I\xfd\x9c\xcf\xe8\x8d\x96%\x05\xf3\xaf\xb8T`^\x0cM\"\xc9\x99\x96 fp\xe7\xcf\x1f\x06h{\xfcj\xfb4\xd8>\x1e>\x1e,\x9f\xed\x80\xc5J\xf2\x91H\x9e\xaf$\xef\x8a\xe4d%yO$\x8fE2\x9b\x8c\xae\xdd\xeb\xfc\xb9{\x9d<\x86`w\xe9]\xe7\xcf\xc17\xde\xaf\xbdg;\x04Luq\xf4\x97\xcb\xcb\xf7\xc1\xb6?\xec\x0f\x044\xcf\x07\x1d\xfd\xe4W\xb5\xcfD\xed\xd3<-+\x0f\xc0\xee\xb2\x9e\xd1\xae\xb6\xfc\xd2\xf7\xfe\xf6\xf4'U\xfdDW\x8f\xfe\xe3\xf5\x7fG\xe7*\x15\xf2\x81i%~%\xb8\x9a\xad\xccS\xe6\xee\x9a\xab:\x0d\xe5\x7fM\xb9\xda\x8e\x18\x87\xb8\xc3\xe9;!\xee\xbfA\xb9\xe5\x1f:e\x03>\xec;?8\xbe|\x8a\x84v\xaf\x9d\xd0\xcc\xe4\xf6e\xcc\xcc\x86\xd6\xa3`1e\x145\xc7\xf1\xf9 \x1c\xfa|\xd0\x1d\x82\xf0\xc0\xd3\x12X\xfd\xfb\xae\xf8\xbe\xa7\xbe\xcb\x19X\xff\xbc/>\x1f\xc8\xcfK\xbb\xcd\x05+/\xf4\xcb\x02\xa7)E\xdcu\xeb\x85\x0fE\xe1#Yx\xa7\xbb\xbf\xefu8=%\xf78q\xbb\xe5\x06\xe7\x7f\x15b\x80\xd2\xf9\x14E\x99\xf4\xb4c \x9f\x7f\x13[\xe1\xe6\xb6\xbb\x16lk\xda\x96\xa0\xed\xaeb+a\xe5\x1d\xc8\xcd\xd8\xda\xab\xfa\xf5W\xb1\xf5\x1f\x81Xc\x8b\xa9\xd0m\x14\x8eY\x07\xdf\xe3\xd8\xe5\xda:u\x03\x08T\xb6\x1e\xack\x9d\xca\x86\x835\x0dS\xd9f\xe0-\xf59\xf7\xd4\xb4\xd5\xc9\x17#5Q\xdc\x00\xec\x07\x9el\x9blj\x9bln\x9bll\x9b\xe8\xb6u\x7f\xad\x01\x91\x1f\xf7\x86\x1a*\x04g5\x0c c\x8b\xe6\xb0\xc9\xc8u\xfc\x9c\xd5\x06\x10\x19X\xea\x89\n\x8a\x9d0\x08\x1a\x1fv\xcb\x0f\x9e\xefx\x0eHK\x84+s\xe0\xad\xb4\xceW\xf6\x00\x07\xf9FBH7c\"\xdd\x88\x89\xd4\x8c\x82\x1c\xf1\x18N\x9e\x1c\x85X\xf5\x7f\xb1\xa1\xff\xf1\xba\xfe\xc7\x9b\xfa\x1f\xaf\xf4\x7f^\xf6\x7f\xa1\xfa?_\xed\xffbc\xff\xe7\x9b\xfb?\xdf\xd8\xff\xf9S\x94\x10KJX\xd6`\xd8\xb7\xf6\xfdn\xed=\xc55;\xc22\xd4~\"f\xb2\x8c\x85*\xe1\x92o\x14\xe2\x8e\x00E\xbe\x90*\x06\x9a\xb2$\x01\x08\x96A\xcdtJ\x0e]\xe2#o\xa7+\xe7\x02\x84\x10\xadXX\xe1\x8e\xecB\xffq\xba\xc0Q\x00r\xc4\x17\xcav7\n\x94\x9a\x95\xe1<\x8fr\xddQ\x9d{\x19}#\xfbR[\x16\x90m\x04b\x98\xbf\xec\xec\xf7\xd3\x1d\xb7\xbbM\xb6\x91\x17\xa5;\x12*c9Bt\xf4\x8f,\xe2\xd0e\xdb\xd4\xdbI}\x97\xbd\xa0\xfd\x83(\xd0>\xc3T\xa8\x0f&2\xd0\xedLd\xe8\xea\x0f\xda\x82Y|\xc9\xb6\x99\xf8\xb2W\xfa\xaay\x0e\x0f\x02\xb0\xbe\xa3\xdc\x86<\xfefG7g_.]\xb9\xbe\xab]\xca\x11[g\xe8\x7f\x08ai[\xd0n\xe3A(\xcd\x13\x06\xdd\xa1x\xd9U/{\xf2e_\xbd\x1c\xa8E[\xe4\xf4E\x0e_|\x89\xb0\x15Q\xe1\xce:\xa4\xb3n\xa7\x86\x07\xe5\xda\x1f\xc2\xca\x88\xa1\xef\x04\x8e\xcf#^\x91\xe0\xbdM\x82w\xcc]\xd9\xd9\xb6\xc8\xf5\xa6\xb9\xb5=b\xae\x00O\xd6!\xfer\xf97\xb3\xcb|j\x96)\xf7\xbao\xec\x83\xb2\xf32\x9b\x10stPF\xdbDp%\x8d\xafI+o\xa7j\xc0$r\xc4_.\xfff\x8a \xad\xb3@\xb4\xaf\x1aU\xb6[k\xaa\x13\x13\xd2SOr:\xea\xe7\x91\x0c\xbc\xdf\xab\xcd\xf4\x03\xab\x7f\x97\xf5\x1d~#\xc8=\xddCsGU\xd2\x95\x1eN\xc18\x91\xeb\xf8T\x00\"\xcf\x12\xa8\x02D?\x0b@\xe4#\x17\x1cq\xf9\x7f\xc2\xe6\x9a\xb4\xea\n\xdeK\x18\xf6\xcbQ\x8b\x0cXe\xdb\xc0\xf1\x15HL\xc0\xf1\xd7\xd0n=\xb3\xca6PNC\xd3\xaa\xe8=\xd0C\x004\xfa+ J\xdc`\x0b7\xb8\xc2\x8d\xaeLBV\x1b\xb2Ck\xc8\xde\x96\xd2\xfa\x8a)U}U9\x92T\xb5:\xddW\x11/\xe0Z\x83T\x0d\xe5\xda/\x02\xe6\xb5\x1f\x14W\xb2\x0e\xa2/\x99\x96\xe9\xff\xab\x90\xac\x89\x98\xaa@)\x8a\xeahR\xa5x6t\xe7\x7f \xba\xe9\x86NW\xccw\xed\xe7\x92\x1d\x7f\x1f\xc6\xea&\x17fj\xfe\xf7\xa6\xcb\xa7\x95\xe9b\x98\xa1\xf7_\x9a*\xa2E\x81L`\xa3\x0eX\x88\xaa\x83\xf2t\xd6\xa7\xa7N\xd7[\xfe\xbf\x1d\xe1\x7f\x97\x12\xeb\xa3\xfe\x7f\x1csSi9\xb4\x7fm\xf8\xec\xe2O#\xbf\x8e\xecP!\xbb\xc1\x86*\xde\xf5\xb1\xb9\xeaZf\n\xb7:\x98\x8fv\xff\xdc\xbcD\"\x0d\xfe\xd4\xc9\x7fe\x14T\xd9\xackA\xe2%\xe4}l\x9b\xb71/\xd2\x8d2;\xfe\xd0+[\xbc\x90\x19\x8c\xfc\x03\x06\xf6e\xaagM\x80K\x91\x16\xdb\x01zk\xa2\xc5\x05\xab.\x15p\x86\xb2|\x8e\x18\xce\xb8c\x1f\x95\x1b\xf7\xd8\xb7\xcc2\xbc\x7f\xcb\xdc\xbfg\xee\xe3\x12d\xe0\xb1\x92\xe0\x9e17\x00!\xc8*\xa4o[\xd2\xc8\xb1\xec\xd2\xcf\x94\x91\xaf4\xe3(\x8d\xdc2\x0f^z\xf0\xe5\xd1s\xdc\x11yM\xce_1\xe3$\xde\x9co \xa4V:\xa7$\xe3y\xf4\x98\xcfP\x9aF\xce~\xc0\xf0\xcc\x9c\xcaE\xce\xe1\xbe|M\x11\x9b\xe0\xc8 \x03\xf9\xba\x041M)\xcb\xa3GN3\x94\x9e\x8f\xc79\xe6Q\xa7\x0b\xe6\x8c\xcc\x10{\x88\x1eg\x88d\x91\xf3\xc3nw\xb7{lN|#\xf7Q\x17\x93`\x9c\x88\xf5\xc4*\x0fpG\x17\xef\x88\xd2\x9e\xb4.h\x94y\xf3\xad21\xcd8C9\xbf\xc2\xf7\xcd\xf6\x04\x8d\xd7s/A\xbe\x88c1\x9f\x0c\xbcar\x14v\x0f7\xc2\xdb}\xdel]W\xf0\x97 \xae\x97\xf9\x16\xc4\xb5\xdcKp\x87X&\xa9BCl\x0e\x1e\xbf\x13\xc3\xba\xf8_\x82\xb7^\xa6\x06\xaf\xe4#\x82\x95,\x81\xb4\x8c+\xc1J\xf6\xc2q\x18\x7f7X\xb2\xf0_\x02\xca.\xf1-\x14Zy\x97\xcaX\xe3q?\x88\x9c\x1fN_\x89\x7f\x0e\x08\x03\xf9\xb6/\xfe9K\xc0E5\x8f\x86\x94\x9d\x1fv\xe5\x7f\x8e\x98V4KD\xda7\xfb#\xaa0\xb4\xe6-\xc1\x88\xb2\x04\xb3\xe8QvM \xb3\x01\x10\xffZA'\xf4\x0c\x96,d2\x9c\xcfi\x96c1-\x0d\x89\xca&\x1bM\xd7\xc9\x03\x8cP|3\x91\x1b#o\xd6d\xfe\x85\xb9\x9d\xe3\xdd\x15\x02\xe4h$\x10\xb7\xae\x84P\xc14 e!\xf9\xbd\x1c\xee\xf5@U\x08\xff^\x90\xec\xe1\xfcN\x80T\x11\x0d\x0e\xc3 a8\xe6\x9b \xb2i\xf8{`\x02vK\xa6r\xd5\xd8w\x03X/\xb6\x04$\x1bS\x03\x9f\xf3\x839o\xfe\xab\xc0\x88Z\xfe\" U\x91\xe5\x12L9\x9fK\xe3\xdf\xc8\xf9\xa1{z\x14\xeev\x1d0\xa7\xb9x\x0d\x8f\x0eN_\x9d:`\xbe\x10o\xc7\xfb\xfb\xc1a\xec\x00:\x17\x8bI.R\xf6\x0e\x83p\xcf\x01s\xc4\xe3i\xe4\xfc0\x1a\xef\x1f\x85\x89\x03\x94\xf7\x80\xc8\xf9!\x8e\xd5L\x19\xa1\x9c\xc4\x91\xf3\xc3a \xfeIs\x96\x9b\xc8\xf9!8<\n\x8fN\x1d0\xc5(\x89\x9c\x1f^uwO^\x9d8\xcb%\xc8\xe3)\x9e\xa1\xe81%\x19\xceUo\xb0\x9eW\xaaO\xb5\xe9u\xb5!\xbdL\xac1y\x0f\x94~#8\"i\xfe\x1bI\xf8T\xack\x7fs\xa4;\x9d\x0fh\x86\xcb&\xabz\xc5\x04.'\xbc\xccxExj\xe7T@wju\x00mQ\xfe\x0e\x8dp\xbaZ\xab5/R\x91#\x17\xa3wI\xbe\xe2\xc8 :\xc7b\x9d\xcdp\xceI6\xb9\xd4\xeb\xb5\x13\x9aD\x9c\xbc. Ep\n\xa4\xcc\x0c\x10c\xf4.z\xcce\x1daGf\x8f\xbf\xd1\x9b\xe5R\xf4\x87N\x18\x9aO\x1f\xa2\xc71\xcd4\x0c\xe1\xde\xfc^\xd9\x1e\xfd\x8c\x15G\n;\xfb\xa2F\x91\xe57\x99t\x81'\x8b\x14\xb1\xc8\x91\x06\x91U\xfaki#wPO|\xa7*\xd95\xa9\xa7hF\xd2\x87\xc8\xb9\xa0#\xca)h\xe5(\xcb\xb7s\xcc\xc8\xd8\x01\xf9\x8cR>\x95}F\x99\xb4\x03G9N\x14\xf5\xcd\xc8W|9\xc78\x89\xb6\x02I<$\x9b\xe4\npS\xe5{\x9a\xf1\x1c3\x86x\xbd\xda\n\x18\x0dr\xbdw\x07Z\x98Ip\x0d\x0f\xbb\x02\x0fv\xf5o\xe8\x82\x11\xcc@kF3*\x84)\\\xab\xc9}\xb4\x10\xaa\xa7_\xf5\xd9\x06b]\xce\x15\xec\x02\xc3#\xf0\xfe\xee\xf1\xee\xfe*\x8fPK\xc8\xee\x11h\xed\x07\xa0\xb5\x7f \xd6\x91`\xdfs\xc0\x1dC\xf3h+\\\xca\x19\xb7q\xcd\xb0\xe7\x07\xb8%9\xe18\xd9\xd4\x87\x1b\xcd\xf1\xc1\x94\xdeb\xb6&\xd7 s;]P\xcb\xeb\xc9%T\xfbi\x11\xaa\xa2\x83\x16\x9c:\xaa\x8a\xabu\x9f\x04\x0f \x1e!\x16=\xde\xa9 \xda=\x08\xc4(\xact\xbd$}^r\xbej\x89F1'\xb7\xb8\xe2\x89j\xa2\xaa\x9a;e\x81-\x08_\xb3\xd5\xe4\xfe\x9a\xac\xd1Z\xa6\x02\x04D\xf33\x8egy\xf4\xa8\xda|\xdd\x80\x13K\xa9\xa5\x13\x82\xaa\xd2FW\xbc\xa7\xa1m|\x94\xdd\xbd\x12\x1a\xcc\x98\xb2Y\xe4,\xe6s\xcc\xe4\x95\xdc%H\xf1-N\xc3\xef\x01'\xd8\xffo\xc1\x93\xd1L\x80\xd2\xe0G\xfb\x0d~\xb4\x82\xdf\xe5\x12\xa4tB\x85\xdcx_N&C\nf\xed\x16\x04\x01f\xe8^\xb1\xee\x0d\xdf'\x0b\xce1\x8b\x9c\xee\xfc^\x08P\xa2\xaa\x8f(\xc3i\xf4\xb8JB\xdd\x83\xdd\xee\xee\x91\x034\xa9\xed\x05\x7f\xab\x93S)\x87 \xce\xf0:\xa5\xf1\xcdj-\xee\xa3\xd5\x86\x91R\xe5x7\xf1\xba\x04c4Z\x07\xc6\xb8+\xfe9\xe5t\x0f\x82\x83\xfd\xd3\xd7\xceR\x9dG~a\xf05\xd3\xfa\xe0\xaf\x0c\xae\xbb\xdd}G\xb2\x84\xde\xb5\xdb\xce\xcfW\xef\xdf\xbdM\xf1L\xa8\xb6$\xd3\xe9\x95z\xff\x9b\xb5\xc3\xb5\xae\x9e\x84\xc6r\x13\xado\x1e:_\x16\x98=\\\xe2\x14\xc7\x9c\xca\x18,\xd9\"M+\xb5\xfag\xa9V\x0b\xad_]\xf0\x92.*\x94j\xfd\x81&\xea\x1a\xbf\xd98\xd4]`PA\xd5\x99`n\x9c/^\xf2\x87\x14\xbb\x99q\xbf\x07(,\x8f\xad\x99\xbe\xb7)o\xb1J'H\xae\xa3\xc4\xe8mN\xe7\xdbr\xe4\x1cO\x9ej\x93\xef*\x95\xe21\xaf\x15C\x10w\xa8\x94\x1c\xae\xe8|;\xab\x9e_d\x9d@'W/\xdb4K\x1f\x1c\x80;\x1f\x11\x9f\xaa/s\xc4\xa7e\xf2Y\xa2\x12Ib\x92<\xcf\x9d\xd0\xa2x\\Z,\xf3\x81\xd6\x9c\x7fTG\xdc}^\x14[a\xb4jR\xd4w\xc6(\xcd\xb1#X\xb3\xbdJ\xdd\xda\xfcm\xb5T)\xf0a!\xcaE\xabg\xe3\xfd\xd2=_\x9c\xa2\xa1qKm\nG\x06\x9c\x11\xd6\x04 \x0cH\x94Y.J\x80\xe8|\xe0\xad\x12\xd4\x94\xde\xbd\xbd\xe78\xcb \xcd\xf2U\xef\x11\x9a\x14\x95\xff\x1c{V*O\xeaO]5\xd1\xe6\xbaX;z\xe3l\x81\x8d\x9f\xb4\xad@\xb97S\x9c'*\x1b1\x92\xc7\xba\xa9,\xcd\x0d\xe4\x16\x86\x9a\xc3\x9e\xb7:\x91.I\x82?\xa0[\xa5\xd4Z\xdc\xa1\xcec\x9f\x06\x9c7\x00oU\xe0(\xa0+\xael\xbc\xbeU)*\x87a\xd1\xe6\xbbyo\xf6\x8f\xaf\xf6\xe0#z\x90\xc2\x8a\x94\x02\xce\x92\xfb\xa7\xac\xa3\xfa\xa5\xf5K\x00\x04\xcd\xaf\xe1\x03\x96\x1e\xd1\xe4\xd8\xc1J\xdb\x7f\xcfi\xa6\x1aV\x8c\xf9\x1d\xbe\xc5\xa9\x05\x80\xe1\xcb\xfdp'\x88\x94\xde\xa2\x1c\xef V\xd3\xd7v\x1d1&\xa9\x95\xbc\xd2\xc8O8\xc3LH\x8f\xb5\x9e\xe6\xef\xd1\xfd \x9es\xcbCRk\xa5\x850\x88\xac\x1e[mX\x1e:\xe4\xa6\xc8\xe3\xd2\xf2|\x0e\x08@\x9a#\xe5b\xfd\x9dQwFe<\x15\x0fH{\x80)\x9ea\xa1\xea\xca\x07\x15\x8dFN\x86\x9f)\xbdQf\xe9 \xeeUQ\x82t\xc6*:Pg\x86\xb3\x85\xd0^\\\xdb\xb7s-O\xb9\xd5)\x94\xcc\xdaT\xff\xf1Jdl\xe5\x98K\xf6\xea\x88\xba\x1c\xc1\x83+\x91\xbb\xd3\xba\xc0be\x10\xbc\xd8\xd1\xf58?z\xc0@\xac\x93L\xa3\n\x1c\xe0\x96A\x04\x9a\xc0\xd0NL\x13-y\xda`\x93\x95\x9c\xa4S\xee\xbe}\x13\xf0\xaa\xce\xa7\xc0/\xeb\xb3;P&B;E\x03\xa8C\x84\x89\xe4\x9a\xad\xbc\xb5\xf0\xa7X,6A\xb9\xcb\xe5R@\x04\xab\xb75[j\xc9\x02\xa8\\\x06r\xe8\x92>\xf1\x9d\x8e\x139\x8e\xe7#\x90B:@\xc3\xde\x9a\xe5#\xed\xaf\x15\xa8]\n\x10x\x94\x01\xab\x94R>\xc8\x87\xca\x97\x95\xef\x83\xece\x88w-+`\xe5w\xe7\x7f\x15\xe6\xe6\x8c\x8e\xd0(}h\xc54\xe3\x88dy+&,^\xa4\x88 \xe4\xe1,\xc1Y\xfc\xd0B\xbc\xf5\xec1_F\xadg\x8f\xa9\xa5\xf7.\xff\xd7\xeb\x89\xa6`j9:\x15 \xcbz`\x99\xa5\x17\xad(\xdbi\xbb\xcd\xdc\x14\xe4\xd2\xf4\xa5r\xa1\x82\x85z\x0b\xfe~y\xfe\xa1#9\x85+\x1f\x15O!c\x19\xd0\x7f\xe9\xfe\x8b\x89\x99\xf3\x85\x017\x86j\x16\x19\x9a\x01)uc\x10S\xf7\xb1>\x83\xaa\x98)\x9eg\x0ffc\xa2\xc1\\\xee\xd0\xa939P\xf3\xd9\xe7\x12Z\x86\x9d\xa9-\x84pD;\x9b$\xa3zN]zj\xc9Y\xb5\xc2u\x01\xac\x96\xcf\x04\xe8\xae\x8b\x81\xb5\xd2+bl3\xb7\xaeC\x9fL\xca\x807\xf9)a9\x87B\\_\x93nzK\x99\xdcJ\xcd_\xa5\xf3)\x1aaiK\x94>\xa8R\x1b>ZE\x85.%U\xe7\x8d\xe57\xe5\xb0*9\x9fcuN\xb4\xb1\x92M9\xacJ\xae\xd0dc\xf1\xd5oe\xac\x98W\x0b.\xfe\x9f\xaa\xcc\xd5{\x19\x0c\x9e\x93[=\xf0#\xc4r\x9d\xad\x91j\x82\xcd!>=\xcb\xde\x93$I\xb1<1P\xb9W\x92u\xf6E\xc6\xd9\"\xe7Xn\x1b\xa8\xac\xb5$\x8b\xa2\xccN\xc2\xeb\x05\xe74SyW\xd3MhW\x9dxJRyf\x0d\xf1JR=\xe3\x89`72\xb6\xc7/,\xb5r\xd7\xd2u\x11\x92#\x19\xf4\x15\xb1X\xe3\xac\x96\xa4A\x10\xa2\xc8\x85&\xb93\xbd\xe0k\xdc\xad\xfdd\xc6\xb1&)\xd6\xe7^C\x88l\xe45\x15X\xc2Y\xbdxMj\xab\xe5\xb3\xd0\xac\xf6\xae.\xec\x9d\x95+4\xaa\xd0\xbd\xfe\xbb\xae@\xac\x89Wt2I\xb1*P\xbd\x832\x8e\xc8\xe7u\xe2O\x0d\xd0\x0d\x02\xd2\xfa\x92\x86qd\x8b\xd9\xe5\x0d\x99\xffsA\xb9As=\xcd\xee\xa34h\x90f\x0e\xb9\xd53+\xb5\xc4\xa5h\xed<\xc3\xe7\xe3\xab\x87\xb92v\xd0Sj\xcd\x97r\n\xd4e\xcbZ\xdfV\x05\xcf\x95\xfc5V\xa8\xd0\xad@;%8Mt\xd7\xd6\x7f,\xd9\xb7H\x91H\x12\x94\xa10l[\xda\xc3`\xbd\xb4)7#\x8a\x82/]\xbc\xb6\x12\x8bF\xd5\xdaq\xa93\xd9\xd4\xbd\xe9k9\xe5s\xb9m\xf4\x89L2\xca\xf0{2\xc3\x1f\x11C3\xcc\xb1\xe1-Of\xd1\xd5\xa04\xa5w8y\x9f\xbc)]\xdb\xc9\x0b\x06+\xa9E\xf1\xb8\xb41\xaaw[/1\xbb\xc5\xecW\xc4\x88h)\xb7\xd1\xba>\x87!qt\x7fB\xf2y\x8a\x1epR\xf1ux+\xc9}\xed7\xa3\xa8/ \x15\x99T\x9f\x04\x07J\x14~r\xaf\xbf.5\xd2\xf2\"\x82\xeb\xcbh\xe1\x11=\xad\xbc\xa9ha\xab\xe5\xcb\x18\xe6\x8b\x95y\xf1\x11q\x8eY\xd6\x9c\x18:Yg\x9f<\xad_\xd4h\xfe\x9b\xba\xc8\xb7j+W\xaa,\x16\x9c\\\xfeVP\x9f\xda\xec\xe9\xb4\xe2E${3E\x0c\xc5\x1c3\x15P\xe2\x8a\x9ee\x84k\xbe\xad\x06\xec\xc9<^Q\xecV\x04\xff\x9b\xda4\xff\x15\xb3QE\xe7V\xa2\xbet}G\xc1=\x85\xcc=>:\xd8\xf3\xc0\x8dx<8<\xdc\xf3\xc0'*O\xf0n\xa8\x07\xce\xe9\xa6\xa8-\x180\x90\x82\x18$\x95\xd7\xe41\x98\x82\x19\x98\x80;p\x03\x03\xf0 \x06\xe0\x1c\x06\xe0\x12\x06\xe0-\x0c\xc0g\x18\x8038\x83c\x18\x80\x13\x18\x80w0\x00\xefa\x00Na\x00\xbe\xc2\xd4\\\xef\xf8\x05~\xdd\x0e\xc1k\xe88\xe0\x8b\xf8\xf3\xab\xf8\xf3\x1bt\x9c\xde\xc9\x8b\xaf=)IOa\xda\x89\xa7\x88\xbd\xa1 ~\xc5\xdd\x13\x0f\x9c@\x08\x7fi\xb7\x83-\x08?\xf9\x97\xfe\xb9\x7f\xd3n\xbb\xf2\xad\xddv\xa7p\xef\x10B\xf8I\xa8\x8b{\x87\x1e\xb8\x84\xe7P\x00\xf8\xd5\xf7\xc1/\xbe\xaf\x9c$\xeab\xb2~]\x9b\x1b\xbcx\xd7n\xbb\xaf\xe1\xeb\xf2\x00f.Db\x0f\x04/^k\xb25'n\xde\xa3\xde#\x98\xea=\x82\xdd\xaet\xce\xde:V?\xfb\xfa7\xdc\xd5\xbfAT\xbf~\xfc\xda\xd7\x9d\x92\x1dZN\xe1\xfe\xf1\xb2Qe\xd8\xdd\x8d\x04\xaa\xc7P\xc2\xa4\xe7\x8d\x8d\x89\xc0\x033\x18\x82S\xe8\xfb'\x1a]\xa6\x8e&\xca\xac:g\xbeo_\x92\x0e\xbb\xfb\xd1l{\xdbN\xda;\x8c6\xd4\xe3\x87\xa6\xa6=\xdd\xe1\xbd\xc3H\x1an1\xf7\x0c\x9e\xf8a\xef\xec\xc5/=\xdf?\xf3t\x05\xb5\xe2ge\xe1\xc3\x88\x8c\xdd\xbd.\x84p\xdan\xcb\xdfz\xc6\xed\xd0k\xb7O\xfc\xee\x16\x84g\xde\xe3 <\xf3C\x05`\x0b/m\xd8\x03Y\x8f\x18\xeei3\xdb\xf2\x04\x9e-\xed\xcc\xc7a4\xf5}\xdd\xc3\xa0z\xde\xddS=\xd9=\x96\xe8\xee\x9d\xf8\xfe\x8b_\xda\xed\x06\x02\xb7 \x9c\xf6\xbc\x9e\xf1:?S\xd1vEf3n3\x98Z\x87\xbf\xa7\xe0DQ\xda\xb8\xdd6Ch\xc8j!\x8f\x16\xd7\x0e\xa8\x07\xc6\x1aG\x07{f\x106\xd2\xe5\x14\xbe\xb6K\x97c\x13\x06\x81!;C\x87\xe1\xbe\x1e\xae\xfd\xe8\x1dd\x8d\xbb\xf0\xef\xe0\x1b\xd1\xafS\xe8\xce w\x19x\x07f`\n\x121\xd8f\x9a\x06/\xae\xdam\xf7\x0e\xe6\xee.\x98\x81w0s\xdf\x80\xd7\xe0\xbd\x07\x18x\x05>\x82S\x91\x1f\xc4\x1ex\x0d\xdfu>S\x92\xb9\x8ecE\x0f\xb9k\xb7\x05*T\x0bwe\xcf\xf5d\x92s6\x003\xa8'\xdb\xa9\xd7\x9c \xe1~dw\xff\x1e \xaf\xb7\xa1\xa7{\xfb\xd1\x0c\xbe\xf6\x9dG\xc7\x9f\xf9\xce\xd2\xa9\x91zp\x18\xcd\xeaC\xf1\x00\x9cga\xebY\xd7\xf1\xbc\xaa\x8c\x98U\x10\xc2\x8b\xa2\x10\x94y\xd1n\x13\xd7\xf9\x1f\xc7\x9f\x81]\xaf\xef\xfc\xcf\xf6\x1d\x1e\xdd\x10\xbe-3\x8b\xe4H\xfem\xe0T\x001\x03a(j\x88\xdbm\xf7\x8b\x0fg\xaa\x8b*<\x8bx\\)\"\x90\x9f\xb9Lav&\xb8\xad\x1fz\xcb_U\xd1\xf7\xf0\x1d<\x93\xecTr\xcb\xc6\xd4\xf4\xfd\x13\xaf9\xad\x0d+\"c7|!\x90\xff\x1a\nb\xea7\x08)z\xed5\x87\xc4\x8c\x80\x18\xb53I\xc0\xaf\x1b\x8cgo_\xd0vQ\x1c\x1f\xbc\x18\xb7\xdbaw\xf7\xe5X\x0c\xe4i\x1d\xbdN\xcb\x01N\xe4T\x15+B* CRT\x08^\x03\x06\xb0$\xa4/\x86\xe0bIO^E8\xaf\xd7\x12\xcek\xe8\\\x07\xd7\x81\xe3\x81U\x10W\xa6G9\xb7\x0c76\x13M (\x10\x1d\x9a\x16\xc5\xf1\xb1\xe2&\xbf\xf9\xf0\xb5o\xf1h\x85\xdc\xa5\x19\xac\xfd\xa3-X\xaf\xffT2-1\xd0\xd4}\x0d\xc4\xe2X\xfb\xdc\xf58T\xb16\xc4\"e\xecd\xdcw0\x04\xaf}\x81\x1bG\xa2\xfc\xf9\x87v;w\x83\xcd\x88\x06\x1fa\x08^\xd5W\x86r\x11\xeb\xeeG\x9a\xed\x95\xcb\xe6G\x93\xb5D\x88\x06\xfb\xa3\xef\x83\x89\xbd\xb6\x01\xd3\x11]\xdbn\xd7Tv\xe9\xdf\xf8\x9f\x0c\xa5\xbd5K\x83\xe6\xc6\xfbGQ\xa3\xd4du\xc6\xec\x8a\x05B\xf4w\x02\x9d\x96\xe3\xd9\xdc>\x10\xf9\xaf\xaf\x83:\x03\xe8\xaa\xd4q=5T\xa9\xb7\xb5\xd4\xdd\xa3H\x01\xf9IJ\x17\xef\xe0{\x18\x02\x91o\xec\xf8\x93\xfaT\x0b\x8e\xaa.}\xf2o\xfcgb4\xca%\xf0d\xfbL\xf7\xad\x1b)~\xf0\xb6\xdd\xde?j\xaey'\xdb\xbb\x82|\x9e\xc1\xb7\x9a\xb7\x1dEa(\xd8\xd0g\x99\xfa\xb9\xd6\xbb\xfd:pg\xb0>\xf9\xf7\xf6\"5Z\xe7\xfe\xa5\x86>\x04\x13A\x0f\xcc\xa9e\xb4\xd6>Y\xa0\xddv/\xe1\xa5\x98\x00}Ec\x97\xfditY+r\x1c\x96M\x9f\xb7\xdb7u\x929\xde\xad}l\x88\x15\xa1\x0d\xf4y\xe3cP\xc3\xa1\x14\xcc\xe4\xf2i\xd0\xd8}\xfe\xd6\xdf}\xfeY\xa3r\x7fw\xb7!Q\x8da\xb8<\xf7\xfde}f[h\xf0\xcf\xfcY\xbb\xed\xce`X\xc7U%\xc8\x90\xb1\xbb\xe5\x06/D\xde\xf3\x92\x05~*yF \xc8\xd4\xdf}\xbeI.\xea\xee\xeeG\x9f\xe0\xde\xa1\xddD\xb7\x1bD\xa7\xf0\x04|\x82{\xdde\xbdi%\xbbh\x19\xe8m\xbb}*e\x9e\x93v\xdb\xdd\xddmR\xc8\xa9\xdf\xd5\x0c\xa6!h\x88\xd6\x05i:B\x08\xf7\x96K3\x94\xaf}8\xf1\x96\x9f\xe1[\xf0\x16N\x81\x10U\x04R\xc5J\xf0\xa5\x12d\xc9\xd8}\x07\xd9:\xbe\xdc\x05_\xc0;\xcd.N\x1b\x0c\xf9\x0b\xbc\xf3\x1a\xe6g\xbf\xf9_\xfc_{d\xec~)e\x00\xe0\xa8U\xf5\x8b\\U\x83-x\xf1\xfcY)\xa3\x8a\x8e^\x14\x05q\xbf\x80\xaeW\x14\xee3\x18x\xe0Y\xb9\xe4\x87\xd1\x17\xf8\xa5\\HF\xc0\x89\xb6g\xf4\xeb\xf6\xb3\xd0\xf1\xfc/\xf5\xe9\xdb\xade\xbd\x05N\x14\x99E\x9ad\xf3\x05\xd7\x85\x1a9\xaa\xdaj\x1f\xb6gy\xad\xd4\xf2\x19\x0c\x96K\xbb\x8f\x96 \x98\x1d\x85\x83Bn\xb4\x04\xa5\xf8\xce\xbc\x1e\x87T\xbb\x1d\xa3\x86\xdf\xa2\xd2\x9e\xb1\x11 \xabeD\x99H\xf9\xfe\n\xa4\xd1\"\x86\x02\xdf\xa8\xef8\x11\x1e\x04C\xdfi9\xbd\xfc\x05\xe9\xf9~\xee\xc9\x03\x00y\xe25\xc8\x87 3\xabx\x83I*\xc7J\xa6>\x0e\x07\xc3\xb2\x02\xa3\xc9\xc50\xe8\xc5/P\xcf\xf7c\x8f\x0fR\xdf\x97\xd5\x0eb\xd9\x1c\xa0\xb5\xda\xcb\xc3\x06;|E-\x18 \xaf\xaf\xc3\xa6\x9b\xbb\xbb/\xd5Ee\x97\x97\x98Z\x91~\x99\xd1\xa7\x8e\xca3\xd2rt&BVs\xfcr\x0b\xa1d\x85\xe5i\xb1\xfa\xe0?Q\xc4 EN\x84\xf0y&85\xaf\"\x89\\\x8f\x1d+bGU\x8b+\xf95\xaeC+\xc6\xc4\x91DR\xd6_\x06\xf5\xf1-\xf4P\xebb\xb7t\xf6\x86}\xa7\xe7\x80\x1cv\x9fs\x7f\xf7y\xe6\xef=\x97A\xb3\x8e\xf7\xf6 \x84\xb9\xf7\x88!\xaa@\x8a\x1cp\xec\xf9&\xf2\x16\xb2f>\x06\xa8\xb2/5c\xaf\x01\xa8\xe7\x0c\x006\x19\xfcT6\xde\x94oS\x10z}\xa7\x12mS?\x8dR\xa3\xecT\x19\xb7\x88\x8b@X\xa2\x08\x99\xb1\xcdK\xcd#\xdc7\xc3q,X\x1b\xaaI`A\xad\x0d\xe4\xa3\x08\xe9uc?4\xc5\xc2\xf0\xa0Ynwc\xb1\x83\xdd\xaaX\xd0,\xb6\xbf\xa9X\x18\x04J(\x0e\x04\xaf\xab\x95\xd9\xf3<{9;\xd0\xe2\xc7\xf1^\xd7\x9c\xe5\xd7j\xd4\xd9\x0e\x8f\xd6}u$\x8b\xb1\xf2\x85Ah\xea;\xda}\xba\x84#\xd8\x90U\xf4\xe8hW\xaa\xba\xfb\xcdN\x1e\x99\xc1h\x00& \xdc\"#2C\x13\xbc\x9dc\xee: \xb4F\xb0$\xf2\xb7b\xaa\x98:\x84B\xe4\xa3\xfa\xca\xde]\x0f\xc0^\xb9R6\x90_\x92\xc4JWG\xf4^@Yi \xdb\x13F\xef\x1c\xa1\x8b\xf8M|\xe4\xf5\x9c:\xe3\x9c\xe6\x84\x93[,\xa1\xd4\xab\xc0\xfe\x06\x8c6j\xc8\xa7\x8cd7\x0ep2n\x12\xea\x91!\xd45\xb8\x9d\xa3\xf8\xc6\xf1\xdd:\x0f\xa8\xb3\x94p\xdf\xab\x8c\x9b\x1d\xd5l\xcd\xe0\xd9\x91W\xec\xb6G\x98\xdfa\x9c9\xc0\xf9\xbc\xc89\x19?HEy=\xdc\xaa\xd9\xb4\x82=(y\xc1\xb8\xc3q\xce]\xe4\xf5+4&b\xb15\x15y~\xe3\x83\x9c\x08\x9e5g\xf1\xae\x11\xc08lt-\xdc\xad\x14\xd8\xb2\x93\xa2t\x08\xd2:\xcb\xf6k\xef\xbc\x14\xda\xba\x07\x91\xa8\xd2@p\x07\x1c>\xaaK\xca\xdd\xdd\xeej\x96m\x966ru\x83f\xae\xb4\x12\xb9\x1b\xd6?OQ\x8b\x85\xc5P\n\xa62\x16\x965\x869'\xf1\xcd\x83X\x1bj\x0c\xebp\xdf\xc2\x12\x82\xd8+W\x88\x00\xe4\x02oJ\xaeDu4\xf4\xeb\x8b\x05\xf7\"\xe4\xd9\x0bM\x8dt\x0e=?\xdc\xb0{\xe5\xbbAQ\xc3\xf0\xa1W\xa28\x90\x84\x1c\x86\xe1\xcbt-\x1d\x97\xb3\x18Y\xf8K\x81\xbd&yb\xe9\xaa\xb3\xa5nph\xd4\xe3\xee\xe6\x92n\x18t_\xe4}\x87d)\xc9\xf0\xb62\xf6pF\xf4\xde\xd1U>\xdd`\xed\xab\x1e\x1e\xbb\xb4Y\xf5\x91x5\xec\xf2h=\xbb\xdc_\xcf.\x0f*vYN\x1a\x9b\x90\x9cm\xa2l\xf3\x1d\xc7\x03\x0d\x82\xa9q\xd5\xb4\xc6H\xd2\xefa\x8f2\xaf\xa8\xbe\xc6\xe5>Iv\x8c\x1aD\xbb\xa1\xb4D\xab\x9a\xff\x16\xcc(%\x93l;\xa6\x19\x97\xc6\xfc6{\xd1\xb5\xd7\xf6g\x0fw\xcd\xe2x\xacp\xd7\xe4y\xbb^Q\x84\xdd\xee\x9a\x15\xa8\xb6P\x85\xba\x9a}Iq[R\xa7T\xfc\xa7\xf2\xee\x15\x86bd\xdc\x14\xe2Mt\xee\xc9\xed\xcf\xba\xc0\xa7\x8c5\x0c\x83\xe4\x0c\xf3x\xea\x00gL\xd2t\xbb\x0cU\xe6xZ\xda\xab\xb2F\x8d\x1c\xc0\x89Li/\xdaL|\x0d\xc2\x93\xa2AjqmQ\xa9Dks\xad>\x90k5\x82\xb5\xd1\x12\x93`\xad\x88\xa4\x96'm\x00\xd5\x95{\x0e\x99\xcf\xdam\xb5%V\x97\xe0v\x85\x02h\xcb\x15\xdc\xdc?u@\x18Xb\x85\xcdO\xac\xec=\x07t\x15\x031\xdd\x98\xae\xca\x1d\xe5|\xaadh\xe2V\xd1\xa2a5N\xd2ii\xdf\x89\x9c\xc8yt<\xe9\xfd\xd6nxW]\x8b\x88\xc2\xa0\xba\xc8U\xcb\x92\xf9\xa1}I\x0b\x9cI\xad\x94\xf7Y\xc4J\x00\xcf\xa5\x0e\xe1\x81\xac\x165\x13\xd9\x00Q\x97\x83\x86\xd6S\x7f\x0f\x1b\xef]\xebf\x99hP0\x8e~V6y\x03\x9c\x16e-\xf7Y\xe896#\xde\xf3\"\xc75>;KPr\xb7\x8c\x0e\xad\\?\x81\x14,\xaac\xba9H`\x00\xc6\x90\xf7\x92\x17W=\xdfO\x0c\x03\x9a\xc3\xcf\x83d\xa8\xee-\xc4\x00\x83\xf1J\x1d\x9a'\xe9\x03]\xf1\xbc\xa5&\xd7\x96\xd6U\xb3E\x9a\xae\xec\xc3\xcc\x85\xde0\xde\xb2\xdc;\x8d+`-{\xd2\xca\xe8\xde\xc5\x10w\x844E\xee=\xb9\x9d%\x83M\xe2\xfe\xba\xa8\x8d\xfd\x0b\x18F\xee\x05\xec\x823\x88\xbd\xe8\x02\x06\x1e\xb0\xae\xc5\xc6.\xae4Qy\x0bV\xe8\x9d\xf5\xb1\x91Z(3K\x18`p\xc0\x86 xqe\xf4\xf8\xdc\xdd\x0e%.\xd4\xe1\x86\xf2\x13\x13x\xbd\x12^\xdan\xaf\x18\xdbR\xe9\x97\x8b\xaa\xfb\x91\x04r\xf7\x0d` S\x05u\x7f\x1b{,\xb2\xa1. eC\xa4v\x97;\xe0\x1e\xee\xa8\xb0\n\x9d\xe7*\xe6\xc1\xce\x04\xdc\xc8\x86\xf3\xeb\xcb\xe1\xf3\xbe\xd7\xdb\x99\x80Opg;\xc7\xe9\xb8\x90\xab\xca\xce\x04\x9c\xc3\x9d\xc1\x9f\xc3\xe7}7\x1a\xb0\xf9p\x80\xd3!\x1a\\\xdfm\x0f}O$\xef\x80K\xb8\xa39i\x11\x89Z\xef\xfc\xebm\xb7\x1f\xc95\xa7\x90\x0c\xd7\xdb\x01oE3\x7fn\x0f=\xb7\xd4\x82\xae]oG\xedy\xc3P\xe2\xf7\x02\x86\xe0\x0d\x1c\x0c\xc1g\xf1\xe7J\x1e^K*\xfc\x00\xcd\x05\x85V\xdcY\xe4\x95\x11j\x0b\xbb\xbc\xdc\xcc\xe2\xabSEM\x8e+\xf8Y\x8f*\x0c\x1ab\xe0\xfa\x88\xb4\xdc\xfb<\xb8\xf2\xfd!\xe4=\x13\xc7\x7f\xc5\x82\x93WW\x90`\x00X\xe9\xb7\xb9\x97\xbd`=\xdf\xcf<\xec\xaa\xbbG\xb2\x86\x0f0(\xb6\xb6x\x15p\x18\xc4\x9d\x1cs\x98\x02\xfb\x02\x82\x98\x98 ^\x82K\n\x1fQFT\x1c\xc53\xaeM\xfb\xde\xd0E\xc6\xa3P\xbbQ:\x13h<_\xf0\x1c7\xd2.S\x12\xe3z\x92\xf2\x18 \x92\xeeOS|_=\xfd\xc4\xe8b\xae^\xcfYB2\x94\x9a\x94\x98\xa6\x8bY\xd9\xa4z\xcb\xa3\x10\x8cU\xf9\xb1*|\xa7\x1f?j]P\xbf^J\xfdN\xbf|\xd0:\x9e~=\x97>\xa0B0a$\xb9\x90\x15\xe8\xa7\xb7YR\xbd\\\xceQf\xbdq\xc4\xb8~}#A\xa9\xbdT%\xd5\xbbUX'\xe8\xf2\xb3\xfc\xa7\xb2\xd5\xf2Y\xe7V\xefe\xed\xf6\xab\xcea\xf9/ m\xb7'!\xa0s\x14\x13\xfe \x9et\xef(\x9bO\x91D\x18G#\xe9N%\x04w$\xa1w\"\xe9\xeb\x99X:\xc5\x03\xa5\xb3(\x04\xbf\xc9\x85\xf7\x1d\xc9\xf0\x9b\x14\xcd\x04\xf6\x85Xq^V:N)M\xaa\xd7\x9c\xd3\xb9\xfd\xc6\xe8\x0d>A\xf9T^\xe6\xac\xa5\xa8\x9bAe\xd2{\xc21K\xc9\x8cTI\xcdz4\xa5,\xc1[\nw\xfet\xddxJ\xd2\x84\xe1\xacHd@'\xba\xc8\xd3\x87K\xcc\xcf\xb2\x0c\xb3\x9f\xaf\xde\xbf+n\xf0C\xc1\xf0\xb8@\x0bNOi\xbc\xc8\x0b=\xb5\xa4y\x93yy3\xc5\xf1\x0dN\nR\x96\xcb\x17s\x19\xdd\xf7\x8d\x92L\xdf&\xea\xba\xe0o\xcaAU\xf9\xf9\xe7\x87D\x11\xbf\xf9 \xef\xe3\xbc#\xd9M\x81\xe2\x18\xcf\xb9\xfey3E,\xc7\xea-\xcf\xff\x81\x1f\n$\xe7t!m\xbe\xd4\xdf_r\xcc\xde\xe3\x84 \xf5\xfa\x11=\xcc\xe4M(i\xac\xa8\xd2N\x17iz\x193\x8cu\xc1\xab\xd2Wb\xfcP\xa0\x94\x17(\x7f\xc8b\xd9\xd97t6O\xb1\xe0p\x0bN?\xa6\xe8\xa1\x88\xd1\x9c/\x18.b\x9c\xa6\x1fQ\x92\x08p\xc5\xb3\xf6bT\xc4S\x94\n\x1e\x81\xc5\x13\xbb\xc4\xbc\x885Zb\xc2q!o\xe8\x9d\x9d\xa8\xdf\x0fh\x86\x8b\x98\xa6\xb9\xf8#\xe8\xaf\xd0\"\xbc\xf95\x08S\xef\xf7\xfc=\xce\x16\xf2\x99\xa9B\xea\xe1\x1d\xc9E \xca\x92\xbc\x88\x19\xcd\xf3sF&D\x8c&G\xe2\x0f\xbe\"31H1\x95\xd0\xea\xd1\x12\xbf\x98\x15 \x11\xffK\xdb\xd5\xc4<|$\xb1\xe8\xe3Y\xa6\x1f\nc\n[$\x0cM&\x12\"\x9c\xc5W\x0fs\\\x88UN\xfey\xa5\x86B<\xbe\xb5\xbe\xbd\xc7|J\x13\xf9\xf8\x81\xfe\x8aR\"\x00\x92\xafW\x88M0/\xc6\x0c\xcd\xf0k9\xa5\x8a)F fy1\x95s\xae\x98\x92$\xc1Y1%\x93i1\x15\xf4'\xfe\xbcC\xd9\xa4\x98\xf2YzJY1\xe5|\xfe\xf6\xcb\x82\xdc\x16D\xd0\xdd|\xc1\xdf\xd3\x04\x17$\xe3x\xc2\x08\x7f(H.\x88W\x9a\x0e\xca' \xd7\x0d\xc9\x92B\x1a\xc0\x17\xa9\xa8-\x15\x08\x14\xfd\x13\xe8I)\x9d\x17\x82\x9cf\x88MH\xa6\xa6\xbf~\x91\x13\xa7\x98\xa1{\xf1\xbf\xb2\x16+f\x92\xd8\xe4_\xc9V\x8b\x99\xea\xf1\x8cd\xe2\x7f\x93k\x91r2Oq1[p\x9c\x14\x99\x18yi\xc4Vd\x15V\xe8\x1cg\x85t\x02\xb5\x98\x15selWH\x01`JS\x81\x9fy\x8a\x1e\xf23\xa9[\x17s\x9as\x91\xc4\xb0\x1c\x999\xa3c\x92\xe2\x82\xa1\x84P\x05\x88\x10\x16\xce\xb3TN]\xcc\x18f\x1fiJb\xf1\x9a\x16\xc6\x12\xbe`\xf8\x16\xb3\\\\J\x9c\x89'Iq\xe2\xe1\xecD\xfe\\\xe0qA\xb3B\xdf\xa7/r\x1c/$\xa5.2\x85G9\xbb\x04\x873nH\xc4\xcbb\xb6H\x05\x85\x08\x86#\x96\xd9Bj\xfc\x82\xb3\xbdF9\x96\xf4 Y\xd9\x05V\x13 \x95f\xfe\x05\x9a\xcdS\xc2\x17 .\x10C#\x12\x9f\x8a \x8brQ\x7f\x818gd\xb4\xe0\xd2.\xb4z\x93 \x8b>^(\xe2(\xd0W2[\xf0i1B9>\x95W\xee\x05\xab\x1c\xe9\xa6/\xa7d\xcc\xe5\xdbGM\x84#A6#,\x98\xd0\x88\xa0\xbc\x18 \xbe\x99\xc6rn\xc6h\xae\xfb\x15\xa7d.\xff|D|\xfaKFx^\xbe\xc9\x87\x8bE\xaa1|\x96q\xcc\xe64\x95\x8b\xc4\x9a\xa4S\x92r\xc17\xe4\x17\x03\x84|\xb9\x90a?%cV,\xf5R\xde\xb0\x97=4)\x82\xd4T\xc2\x82\xe5\x94\x15\xf1}\x11?\x14\x89\xe0\x988\x95F\xa9E\x82\x15\xc2\x122\x1e/r\xfc\x86f9G\xf2\x9d)\xff\xb3\x82u\x8a\xd9Y$\xe4\x96\x88J\x12:#\x19\xb2\xc6'Y\xb0\"\xb9/\x92\x87\x02'\x13,Q\x81S|\xab\xba\x8431\xec\x95#\xab\x02\x8b\xff\xef\x95\xfdr\x81\xefU`\xee\x0bM\xa7\xb9\xb99P\x08\x11\xa2\xb0\xe4\x08\xf9,\xf16\x96(\xd1?\x178\xd7O\n\xcdR\xd6\x90\x9e\x99\n[\xec(\xc6bm\x97\x04X9\x84+\x8c\xaf\xb8\xf2\xe1U\xf2y\x91s\xf5\xaaU\x02\xf5\xfc\xa0\x0bJ\x83\xe9L\xe5P\xb2T\xa1\x02\x86\x17cFg\xc5\x98\x15\xe3\xfbb\xfcPL\xc2b\xd2-&\xe9\xc3|* P>\x9d3\x823.\xd1R\xb9\xff]\xf9d\xfc\xfd\xaa\x0fbNM\x04\xe7\xc3Y\xe5\xa7\xabLQ}\x9e\xa2l\"\xe8`**}\x95\xdc\xfe\xae\x9e\xd4Z\xf9{A\x12\xac\\\xbd\x91\xb8\x90\xcaKE9$+H\xd6\x95\x8b\n\x93\xd2\xc8Mq\x13\x167\xdd\xe2f\xb7\xb8\xd9+n0\xcbp\xfa\x1eqF\xee\xf5\x8bhQ3~\x91 *\x11\xab\x90t>,\x9e.\xe7\xd2\xfb\xa3\\\x90\xc8\x0c\xe7\x85\xd2*4bS,8\xbf\x11(\xa4\xbfT\x92M\xd4pI\xc1N\xbee\xf8U6Iq\x91R\x81\x86\x19b7\x98\xbd\xcd\x12\xfd\xf4\x9e\x98')\x16\xeb\xe7j1\xbb1\xa4\xa0\x9e\xcd\xc2\x96\xdf\xc8?Z^39\xf2\x1b\xf3\xc4\xa7X\xe8+\xb2EA\xc1\xd9bv\x1est\x8b\xf3B\x89\xa1\x85\x96\x92\xc5Z\xc6\x10\xa7\xacP\x0c\x89\xca\xa1\xd3?\x8a\xe6\xa9\x92R\xe8-fc\xb1\xde\x8a\x07\x81\x16\xa5f\xd0\xacL\xb8\x9a\x92\xf8&\x13+\xcd\x1ce4\xc7a1G$\xe3R\xc7\x10\xcb\xe4T\xa3Z\xaf\x985\xe0uZE\x14:A\x7f\xa5rP\xa5\x0f\x14\xfdf~^\xf1\xdf\xcb\xa7?\xca\xa7\x7f\x89\xb5#\xc7\xec\x16\xcb\x8bT\xd5[>\xc71\xbf\x10\x1d+\xe6L\x8e\xd1-Vm0\xb9$/r\xb1\n\xff.\xfe\xfcQ0CZgJ\xdacx\x8e\x11\x97j\x98~>Y\xb0r\x89\xae\xae\xf7\x94I\xa7\x18 \xb9L$\xa85S\xad&\x05\xa3\\p+v_\xb0\x87\"\x8f\x91XB\xb1Y\x98+\x82\xceS\xb9\xa0k\x02\x13\xa0/R\xc4J\xa6f\x12\xde\x1a\xfe\x93\xcfe%s!PhyN6\xab\xae\xfc\x159ON\xf0-Q\xa3\x9as<\x9b\xca\xbf\xb7E\xce\x85\xca~ER!\np:W$li6E\xce\x19\xb9\xc1|\xca\xe8b2-\x07\xbe\x96Z\x8d\xbe\xda\x08*\x94\x0eS4T\xa2\xa2\xa9\x10\xe9\x04\xa1p\xc5hn\xbd}\xa6$+\x9a\xbaRQ\xd3\x94\nKO*\xf2\x05\x1b\xa3\x18_*t>\x88\xae \xa1e\x81&\xb8\x90\xab\xb5\xba\xe3\xa1e\x93\xdf\xf5\xef\x1f\x85\x10\xd8_e\xf1\x94\xb2\xa2\xee\"R\xbeV\xa3!\xde4\x05sZ\x94[G\xc5\",\x16\xddb!\xb2\xd5\xa6E\x99Raf\x91\x91XLG\xfd\xfb\x9a$\xc4<_\x08\x95N\xbc\xf0\xfc#fog\xc5mu\x05\xb0\xb8\xfdY3\xc5\xdb3\x8b\xfd\xdd\xbe\xb7\xe7\xf9\xad\xea\xdd\xad\xf4R\xf1v<\x16\xf2\x8f\x90\n\x04(\xb7\x98\xf1W\xc9\xed\x1f\xf2\xc1p\xd2\xea\xf9\x8f\xe2\x96\xe0\xbb\xd7\xf4^\xfejy\xff\x96\xe4dDR\x81e)\xae\xe5\xc5\x1de\x89\xe1vwL\xb27\xb9<\xde\x17\xdaMbq\x1f\x16\xf7\xdd\xe2\xfe\xcd\x14e\x19N\x8d\xab\xbe\xe2>%\xd9\xcd\xab\x98/\x04\xd1\xab\x17\x16K9V\xbe\xfc,T\x06\xf9tQ\xa6]N\xe9\x9dz\x92\xb7\xbc\xf4\xa3X\xfc\xefg\xa9X\xab\xc5o\x96\xab\xbf\xbf\x8b\x8f\xe2Q\n\xa9\xf73\xa9\xe4\xe1\xe2\xa1x\x08\x8b\x87n\xf1\xd0\x84\xe7k!t\xfdWY\xf2\x11IEHiyR\x92\x92+\xabW\xb8\xee\xe0$\x19\x0e^\xa1\xe1\xe0\x8a\xcb\xdfB\xbe\\\xb0\xe1\xe0\x8c\xa8\x84{o\xbb\xf3\xdc\xf3\x9e\xed\x80\x8f\x14\xbaw\x14>.\x81}W\xa4\xb6\xa7\x0b!\xbc\xa3\x03\xdf\x0e\xa3\xc0\x03\x0c\x86=\xf6\x82+\xa7\x9a\x03\xb6\x1d\x0e-&\xc5\x86\xbd\xa6+\n\xe7U\xd6\x92\x1e\xd1[4\x8e\x17\x8c\xe1\xa4\xd3\xba\xc4\xb85\xe5|\x9eG;;\x13\xc2;\x84\xee\xfc\xfd\x973\xf4\xf6\x07\x19\xb6O\xba#\x9aQ\x86[$S\xda\x13\xa1Y\xc7\xf1\xdd\xcc\x84|\n\xfaN\xeb\x15\x9b\xe4Q\xcb\xf13c\x08\xdcr\xbc\xc8qt\xa8\x95_->c]2\x94\x1e{\xd4\x1dNF\x17s\xa1\xd3\xa9\xdb\xa0\xbf\x90\x8c\xefvUg\xf7\xc3\xae\xbeF\xa9OU\xf6\xc3\xaez\xe7h\x02\xf1\xf2V\x87\xb8,y\x8c\xe1o\xa5\x95\xa7\xdc\x85\x82\xeb9~\x002\x18\xf4\xb2\x17\xb8\x97\xf9\xbe\xc7}\xd8\x00g\x90\x95~\xf7\xf8\x12\x88*s\xcc\xb8\xd0l\xf3\x06K&c\x17\xbfl\x167\x16\xd3\x16\xc3n\xe4\x00\x0c\x1aD\x02\nY\x0f\xbf\x84\xb4\xe7\xb9\xf4\xc5\x0b\x18z/\x82v\xfb\x0bu\xc3\x03\xe08>\xd67h\x9f\xc0\x155Wb+\x00r\xcc\xdd\xac\x8e@Z.]\x04\xb2\x1eyA{D\xf4\xbd\xd1q2\x84\xc1\xd2dD\nl\x1b\xa1.\xf6C\x0f\xe40\x00i\xb5\xee\xe4/\xd2^n*\xe3hb\xe1\xcbE\xd2jY,\x7f\xcd\xa6\xf0\xd0\xf7\x01\xf2}O`8N1b\xabC&\xd0\xfb\xc2\xea\x85\x89m\xbaZ\x17\xc8\xd6\x01+\x83L\xf9\xbc\x89B!\xaa\x04%>(\xccz\xf4\x05\xebQ\xbb\x0b*\xd2\x82\xecB\xe6-\x05\x88\x13\xccW\x01T\xe08\xd2\xd7\x94!\x04\x05jQH\x11g\xa5\xe1\xca\xff\xd4F\xea\x10\xdda\xeb\xbbC!\xf33P\x1bAM\xbd\x02\xe8 VH'\x9e\xef\xec<\xdf\xca\xe3\xe7;\xd7\x99c\x912^\xba\x1e\xf8\x8dJ\x12z\x8f\xe6\xe0\xe7\xea\xf1\x0f\nC\xf0\x13m\xa2\xff7*D\x1a\xcb\xa4\xe67*\x9a\x91\xfe[)s{?\xab\xef\x7fP\xaf\xe7\xfdA}_\xc7\x12\x93\x8fU \xe9\xab\x05p\x0f\xfc\xac\x9e9\xc0\x1e\xe0K\xf0\x8f\xb5\xa2\xc8\xcf\xa6\x89%\xf8gS\x06\xdaP\xd9\x12\xfcN\xa1#\x17\xca\x81\xe3\xbf\xa7\xfe\x8f\xc3\x81\xb5vnk\x9d\xc1\xac\x9f\xc3\x1f\xc1\xdfU\xd7/\xf0\xe4\xed\xfd\xdcu\xfeT\xa5\xae\xaf;\x13\xf7\xfa:\xf1\xbd\xeb\xeb\x01I\xa0\xe3\x0e\xae\xaf\xef\xae\xaf\x93\xed\xa1\xef9\xd7\xd7\xc3\xce\xf3\xbe\xe3\x0e\xfet\x86\xcf\xbd\x1f=\xf0\xaf:x \xab\xe6<\x03\x14f\xd6\xddx@`\x00PyA\xa0G^ 9~.\x83t@\xc4\x0c\xc1\x1d\x86'$\xe7\x98 \xb1\xc4\x95\xb1\xf3\x00&\x1b\x85@\xc1\x97\xf4Y\x97i\xa7\x1ati\xef0\x04\x14\x06\x80\x94\xbc\xa6G_\x10I\xe6\xdaB=\x1b\xd0\xa1\xb1(\xb7\xe3\x91#\x1de\xfe\xefT\xa6\xe7*=\x85AQ:\x17\xcbMx\xec\x18\xe6\x83\xee\xb0'\x16\xd1\xb4\xddv\xffI\xdd\x18\xa4\x023.\x061\xc8\x07\xbbC\x0f`1\x9eWh\xe2z6+uS\xc0<\x0f\xb0\xf2\xe0\\]\x99dJxE\xdeRL;b\xaf!Z\xd0{B\xf0\xa9\xee\xa2*\x17\xe8\x9f>\xdd\xe1\xd1\x1c\xc57\x9f\xe4y\xc7\xa7O\xfdM\x1f\x94\xdfu\x90\x915\xf3\xbbt\xd6>\xc5(\x01\x19\xc4E\xc1\x01\xab\x92c\x86\x11\xc7Z\xder\x15\x19:b\xb2\xae_~pG\x9ey~\xa0 \xce\x05\xdf*\x8f\xf5_\x8aUi{\xbb\xbca!\xd6!2vY\xbb-\xb4(\xd6\xc9h\"\xf7\x8a\xdbm&f\xdd+\xb3e\xee\xbe\xa7\xe5\xfcd\xcb\xa5`\xfd\x04Vf,}\xda\xc9d\xf8\x93QJ\xb2\x89\xech\x8f\x89\xa9cW\x00\x1c\x15w@PN\xfd\x9b\xb3f\"9@\xcf$OG\xb6\xe7\xa4\xba\x95\x80\x04|\xf5*$\x92\x1d\x80<\x90i\x12x\x8d\xc7\x94a\x97\x01\xe2\x01\xb6\x04\x8cl\x16\x16,\x9e\xaf\xfdR\xc2\x8cHG\x97B{\xc2Y\xf2F\xa0\xd3m\x0c\xc7\x15\xbe\x97.\xf2]y\xdfX\xbbQ\xc0\x98\xaf,0*\xb9\x8a\x97*_{\xd5p\x95\xf5J\x14\\\x8a\xafb\xd8V,223\xb1h9r\xb4C\xef2\xcc\x04\x18v\xc4E\xba\x14\xeb\xfb\xa1\xb7ty}\x91\x0e\x9e\x16l\xcc\xd4i\xb0\x04\xce\x1e\x0c\xeb\xac\xbai/\xc2\x8a\xddV\xed\xf8>\xd8\n\x961\xd2\xee\x0fU\xd9\xadP.s\xd5\xc2WC\x94U\xb1\xb54\xd6\xab\xdd\xde\xd6\xeb\xe4Jik\x04U\x1dq\x9eK\x1e\xb0\xd6\xc3\xf1\x1a%K\x96\x10#\xda/\x9f\"\xc7\xd1\x0b\x1a\xfd\xb7hg*=z$8\x97\xfb\x10\xe5|\xfc\xbf\x0f\x87\x14ZlQ\xa0\xdd\xc6/a`\xb6\x136\x91)\xf7\xcc\xa2/\xa1\xb20cC_\x9f=\x19`E!\xe6\xf3\x9a\xe1-G\xf5\x1b\x83j*fxFo\xb1\x9aJ50\xbes\x8c\xcd\xfc\xb1\xe5\xb5~\xad\"\x1d\x8cDn;W\xa3G\x9e\x18=Y\x9cI\xb9{0\xfc\x0f\x0cM c}x\xdc\xaa\x1d\xb9\x92\xc6\xd8\xc5 \x00|\x15\xab\xde\xb7\xb0\xd9\xa8$\xfc?#\x8f\xe9iR!\x0c\x11\xf8\x95\x82\x9c\xc0G\x92+\x1fA\xd1\xd6W\n\x169~syy\xfe\xfe,\xfb\xacN\x05\xa3\xad_\xe8\x12\xa4\x1b\xd1\xab/\xf3\x95N`\xdbm\x17\xc33jE\x1cUqI\x1f\x97\xc6\xa3\x98\x8aO\x06/\xa4G\xc0\x9c\x80\xc7e\xc9X&9\xe4\xdaK\x0e\x9ai%\xe5=\x9a\x8b\xa5h\xcb.\xdc10\xb7\xdb_i\xbb\x8dH\xbb\xed\"\x02\xb7B\xb0~\xad\\\x1f'\xe5U\x9a\xba\xbfS\xef{\xb80m\xb7\xcd\xca&\xd6B\x81\xfd\xda\xba)zM\\\x0c\xa8\x07\xa8\x15X\xa5\xdd\xb6\xdfj\x93\x83z\xder)I\xc6\xf3\x96\x95\xd0v\x96\xac\x1b\xd1\x9f\x84\x8a\xbf\xec=A\xac\x0c\x97~M\x7f#|z\xae\x91\\\xd6e\xc7A\xae\x02\x17E\xe0\xf9\xa1&\xea+4Y\x15\xd6TA\x8e&E\xe1\x9aG\xe8f\xf2v\xa8\x05\xadW\xd2\x85\x1c\xcf\x15Z\x96\xdb\x9c\xeal\x03`\x98\xc9\x88\x0b\x84\xb8\xd4\x8b\x98\x8a\xbe \x9fe\xeck\xf1$\xb1\xf2\xab@\xbd\xa7\x04\x94\xd2tZ\xc0:E\xd2\xf8\xe9\x94\xd6\xc7\xccb\x10\x15\xaa\xb4\xf6ccO+'\xf2\x0b\x97(\xb4\xe5\xf6\xd5\xc5@\x92\x00X\xa9\xd2[\xad\x11%\x89\xcb\x959\xa7^,\xb4\x97\xac^\xa6\xbf\xd9\xd5(=Hk\xa7\x9b\xb6(\x04\xf1(>b\xeb\x16\xb8\"\x8du\x82\xb9\x828\xab4\xf3\x0frN\xaf0\xbboaH\x96u\xabj\x9a\xe0\x99} \x03C\xb5\x0b\xa0@\xd00V H\x9dPW\xd6 \xb7\x92\xb8\xb4#R\xc0\xcbm\xe75T\xb9I07\xa0Xb9`\xd0q\x84\"\xd5\xa3/\xb2J{\"\xf0\x1f\xd4U\xfaQ)\xb9\x90\xf2\xea\xaf\x85\x07\xe2\x01!b\x98\xed\x83f\x19\xa4\x1c\\\xd5w8R\xf8\x9e\xfaNg\xe2\xf8\xd4\xffQ\xea\xa1?\xfa\xc4\xffQ\xe8\xad1t\x9c\x9e]\x1aU\x1eo\xed^\xe1r\xa3\xae\xddvc\x1fb_h\xa12\xee\xb6\x0f\x1d\xc7\xcf\xfd\xd4\xff\xf116\xab\xf1\x8f~\xec\xff\xe8,K\x05\xf2\xc7ey\x1b\x9eif\xa7\x97\x9f\x98\xc0\x1d\x17yn\xe2\xedL\x08X\x90u\xdcBo\xf7\x8f\x19\x9d\xbd\xd1':.\xf6]\xfc\xb2\xbb\xdf\xdf=\x8e\x8e\x0f=\xcf\xda\x06\x9d\x93RR\x03\x99\xe8\x9e\xba\xc1.\x9d@\xa3Q.\xa5\xb5\x97\xfb\xdd\x1e\x87|g\xbf[\x04^\x06\x17\xc4\xe5\x7f\xdb\xefz\xbe\x89v\xedV)\xd5\xa5\x93\x98\xc8['\xcf\xba\x8e\xda\x91L\x9eR\xa6\xcd\x1a\xd2\xf30\xdc\xdd}\x8e\xff\xac\x9dFmogv\x8c\x87\xf1\xdan'\xc4\xdd\xdf=\n\x01\xb6{7%\x8d\xcd\xc7\x1e/\x03#\xf5\xb8\x0f\xc3\xf2\xbe\xcb\x80K\xa5\xe1\x83\n\xd8\xb3\xf5N\xfc\x96\x9e\xd9\x8d<\xa7\x04\x9f\x19\x81c\xe2\x1a\x1d\x0cL\xbe\xb1\xc8W\x92\x04\xd4\x8e\xeb\x94\xbfn9!\xcf\x12A\xe02\x95\xe4\x972\x1dV\xbe\xe1\xb3\xa2\xc8\xcat\xaf\xdd\x96\xdd\xd1\xf3\xb2:\xf10\x8b\xff\x08\xe5\xf8g\x94OaB\xdc\x19)\xb9\x8cHV\x0eA3\x90\x12k\xc9\x14\x0c\xb4T\xbc\xaa\x03#\xe3\x8f\xefU\x96\xa8%@\x16^\xe5lZOn\x00\x03(\x1cHL\xd6\xdb\x96K\xba<\x17\xab%ojL\xb7\xe1\xd51\xd3noe\x82\xe3M=S\x7f\x0d\x93\xedv}yq\xd9\x1at{\x9e\x0dH\xfdS\xc5\xfc \xfc@,\xc1\x14(p*\xb7[\x08\xce\x89\x9b\x10\xb7\x86\xf7\xf2r\x89\xf7\xf2\xe5\xcb@r\x9a\xad\x15\x88\x90g6z2\x97\x00\xa7\xe3\xf8H\xcb|\x80 \xa5\xda^\n\x18@ \xf7\x96\xd4l\xca\xac\xa3\x1e$7nJ\x12Oa\x05\xb5\xe1\xa11\\\x81T\xa3\x11,\x04\xf5\xcda\xd0\x9b\xbfH{s\xc3^\x13\xab\x92\xc1|\xb86.H\xe2-|\x98\x94\xf7'\x12Ur,\xf0\x96ht\x81)\xac\xc7M\x1a{\xfdq\x89\xc3h\xdc\x93\x80\xc5`\xea\xcf=\xb0\xf0\xe1t\xb9$cw\xa1j\x9a \x0c\xc7O r\xa6\x119\x81\x99\xbb\x90\x88\x9c=\x81\xc8\x19\x98\x94\x88\x9cy%{\xa5\x1a\x9c\x96c8\xec\x03\x81;\x7f^\xe7\xcf\xafw\xaew:\xcf\x9f\xedLf\xe0\x96\xc0\x81\x139\xc0\x198\xa2\x1d\xe0\xfc\xe0\x0c+\x163\xb2\x19\xa8\xba\xdc\x05+\xb9\xbe\x7fF#\x0c\x10$\xa5h\x98W_\x91\xf8\x8a@\nIg\x9e.&$\xcbA\\}M\xfbW4J\xc1B\xca!\xe7\xd4\xcd=0\x17\x9aX]\xd4-\xe1\xe0\xae\x92x\xb8\xc7\xd9\xc3#v\xb9\xef,\x1d\xaf\xdah(\xfb\\\x96\xae_E\x8b\xc1\x02\xcc\xcb\xcb6\x99\xb9+k\\\x06-\xda\xed\x83=\xb9\x11Vw'b\x18\x88\xcb|\xa7\xe7x\xc0\xa9yx*\x1dQ\xc5\xe5\x16\x99\xef\xec\xee0\x9c,bl\x0f\xb0\xadfh\xc3\x83/\xd4\x0d\xf7=\x90\xc8\xeb\xaf2\xcd[z@\x88\x12\x9emW\xe18`\xaa|\xbc\x12\x98\xe9\xed\xa37\xean\x86\xeb\x81{\x02\xefH\xe7\x0d\xcd\xf2\xc5\x0c3p\xb3.\xcf'\x02\xdd\x1b+\x93@\x7fJQ\xd7s\x19h\x0eaQ\xd0\x95aU\x8d\xd5\xd2\x86\x1e\xc8\x1a\xa7(w\xa4\xf3\x91\xd1[\x92`\x06\x1eUx7\xb4\\\xc9u\xb3\x9a+_\x02}\xc0\xc2p\xa6M\x11^=!\x1f\x1b\xf1[\xc8\x1b\xda[\xb5\x1c\x86\x86\xaa\xd0\xd8\x14;'\x8aC2\x98\xc9 \xebK\xe1`\xda\xc3u\x19!\xeb\x90\x040\x19\xcd\xd2\x16\x06T2\xe0n\xa6\x85;\x06\x9c\xff\xb9\xc1\x0f\xf2:R\xee\x08\xf6\xa3\xf4\xd9\xcd\x1a\xac\xe0\x19]\xa0y\x83\x82\xa1,&\x03_hA_(\x8fy\xbc]V\xbe\xed\xf8\xfa\x8b\xd2\x07\xf8z\xf9\x9b7\xf62V\xb7\xa0\xd4~\xe19\xb1\xf6$|\xd9\xfb\xa9\x16c\x9e Eq\xf0j\xfb_Co\x07\\X/\x13\xf0FH8\xb3|{\x07|^\xa7H9\xdb\xd2\x99\x97\x1d\xf3\xd3Z\xb7\xae\x88\x05\xce3b|>\xf4\xab\xa5\xea\x82\x80\xcf\xa4R\x03\xdf\x10\xed\xd0\xc3\x8b\x94\xe5\xc8\xd9Z\xedM\xf9;\xc7E\xb1\x15B\xf9\xab\x02aY-\x7f \x95\x8f/2v\x9b\x119+-O\x08`\x83!@0\x90a\x8d\xb5\xb2\x87^\xe4=$\x14>iW\xe4R!\xa8\xe2\x01\x1a\xea*\xbdv\xbbQ%\xf5\xfaD\n\x03\xdaJ\x90\x00\xeaE*\xc5\xa5\x95o\x01b\x86\xf0L`F,\x96\xd2h\xad/\x16\xfc5\xd6i\xd1\x07\xf5\xd5t\xab\x8eD/\xe4\xd6\x94\xecE\x84[D\xef#\xd2q\xeb\x15\xe9g}\xe9qCL)i J\xf2r\x99\xe7E8\xfa,\xc1\xb1&e\xa5\xda\x01\x85\xc8\xf20\x0e\xc9\x10\x8e\x1eoF\xf5EB_>#.\x1f ik\xf2\x99\xaa\xc7&\xfa\xb0L\x16\n\x90@\x82\x9d\xc5\xbd\".\xf2|!c\xcb,B\x90\x8c\x1a\x9fZ\x8e\xef2\x88\xac\x98K\xb2\x86\xa2X5\xa6\xa3\x9az\xa8\xf4\x1e\xd7\x8c\xf9\x19-\xa3Pm\x89\xe6\xeb\xb1\xc0\x8a\x82\x17\x85N\\\x82\xf7\x04\xee\x0c\xb6\x9c\x1f\x9e\xfd\xad\xfd\xa3\xeb=\xf7Ag'\xea\xbd\x80/\xfb\xff3\xb8\xbe\xbe\x1e\xfe\xf9\xbf\x8f\xc5\xf2\xff\xdb\x1e\xfa;\x13p*x\xda\x9f\xdb\xc5\xf63ogRq\x89\xaf6\x7f\xaa\x98\xd2{R\x8f>|*\xe5i\xc9\x8f~Y\xcb\x8f\xe6\xc4\x1d\x8b\xaa\xa4\x02jq\xa1\xd7V\xfdk\x83B\xaa-\xa2/k9k9\xe9\xed\x98\x8b\xeb,~+{\xe0\xad\x95\xc8\xc3\xe0\xd7\xb5u\x7f\xfa$y\xc5\xa7O\x8e6$\xb6\x02\xb6\x99\xa4\x92\x9b\xc8\x04\xabW\xbf\x91\xfa\xa6\x0e\x1ed\xc3\xde\x17\xe2r\xaf\xdd\xfeB\\\xe6\xf5\x7f&.\x03\xdc\x8b\xc4\x17h9^\xfc\xf9\xbfD\xd7\x95}\x98\xb4\xa1\xe9\xd1\x17fs\xc5\xb6\xa1!\x03*w'\xbe\x08&Q:l\xc8\xc5\xbcF\xde\xaf\xc4\xcd\xbdv[\xf6\x0d\x0d\xf2!\xc8-\xdbo\x91\xef\x8fuR\xfaO\x04\xfeQ \xe9V\xbc\xf55\xa2s)h\xffAD\x8f\xbe)\"\xae\xd5Cp_- \x82\x8dG\xcd\xd1\xae\xc8\xc3\xf2\xce\xf2\x85\xbaG^\xc4\xfb\xfa\xdcI\x9d\x04F8\x12R\xc9\x9e\xb7t\xf5\xd4\x02\\K{\xfa\xcd\x8a\x93[\x8ah\xfd\xa6L\xf7\xc7\xaaL\xc7j2\x9d2\xd5\x11x\xf8'\xa9\xd9\xd3\xfe\xaeh\x88\x99\x03@\xb9\x0c\x02\x02\xb7\xe4\x94\x01\x08\xf2\x0e\xe2\x9c56@\xae\xd4\x06\x08\xafm!\xd66A\x1a\x92\xa0\x14\x17W#K\xf6\x9d\x91\\\x82\xe4\x0b\x04\x8b\xe0#\xd0x\xce\\\xd4\x033y\xf0;$v\x935\x995a\xc3\x15\x8d\xba\xf6\xf1/I\xb3\x89\x18\x9a\xde\xc8\xe37\xde\xcarJ\xe6A&h/\xcc\xc4Xb[\xcdc\xa8\xbd\x82\xea\x89\xc2\x9e\xbc:\xea*\xc3u\xec\x17\xe4\x1a\"\xdfg\xebt\xf6E\x96\xdf\xc69DT;\x01\xa0[\xc9\x10u`G\xf6z`@\x05e\xd1\xeb\xad\xac*\x87\xe8\xfbC\xdf*\x7fG9\xb9\x01/\xc9\x02\xc8\xcfBP\xaf\x19\xc9\xc6\xb4\x1e\x0f\x18v\x159\x0f\x93\xfb`a\xa9\x99A\x1b\xa3)\xd8\xcd\xeec\xca\xc6\xee\x07\xbd\xb8\x01\xc5\xb1\x1e\xbd8hW\x06\xec\xa8R\\AT9\x08\xc77\xcf\xd2Y\x83E,\xc84\xd8\xd1#\xb2\x0ev\xf0\x93d\x15h1\x95\xcc\xb6U\xf4[\xf6\x05j%\x18\xd2\x01\xb4\xc1\xa7\x15&\x99\x15\xdf\x99\xed>\xd6\xd2J\xceDtN\x1e\x14 R\xfbm\x06<\xa0\x1b\x07\xb1\xe0*I\x8c\xf3 \x8f\x82L\xfc \xe3\xee\x02\x81\x1f1\x97A:I\x82X\xfca\xddn2fR\x9d\xe5\xb3\xb2L\xb0/\xd2\x85\x88>\xc9I\x16U\xee\xd7\x89\xcb\xc9N\x82+\x04\xdc\xaf2\xc2I\x82\xc9<\x98M\x86\x11\xb9\x0ef\x93QD\x96\xad\x81\xa8\x89\x12(1\x92\xe0s\xcb`\x8e\x8f\x1f>\x85\xf8*\x13L\xb0\xe0\xec\x1e\xca\xc1 C\xe5\xc6$#sL\x16AN\xee\x83ko/.\xca\x92\xcb?\xd7\x9e|\x11\xbf+r\x13|\x92\xb8\xf7\x98\\\x05\xd7\xe0\x06\xcd\"\xe2\xd7\xd8\xe7\xe4\x16\x88\xaa\xda\xc9\xee\xc4\xf0^a\xb4'6\xec\xbb\xc90\xeavQ\\\xc0K\xb7\xeb\xa2\xb9\xc4\x0e:\xfb\xb8\x10\xa3{7\xbe\xf5\xe2\"\xb8\x9a\xdcE\xbe;\x1dO\xdd;\xf2}F\xee\xb1\xdf\xb9)\xcb\xef3\xf7\x0e\xa4\x9c\xdb\xc9]\x04yj\xceVY\xd7u\xbb\xd7\xf2A4L'\xb9\xb7\xf2I\xa3\x8c|\x83\xe6\xcaG\x8c\xc9\xadgf9x\x80\xa6\xa4dM\x96\x1dA\x14\x97\xb0\x83\xc0A\xb2*C\xae\xeb\xe7-\x92S+\xe8\xc9\xad\x97\xd3y\xb0\x90\xd8\xd0\xd8\xb6\xb0{Onq\xe5.\xe1\xe4\xe1\xbe\x0e\xb9yc\x13\xc8`E\xdce\x00\xb8-\x86\xed-\x9d\xbb7\x18\xcb\xe5\x1a\xcc\xc9\xb2\xb5\\\x83\x05Y\xb6\x8a/\xb7\x97epM\x96;\xd6p\x90=L]w\xac\xf8\x1d+\x1b\xfb\xef3Qa;=\x98\x91\xa5Z\xf1\x81 hZ]F\x96\xdem\xc2\xafM\xce\xa0\xbdrYk\x97m[w's%[iS\xc9\x8d4\x9d\x01*\x1bl*\x92\x04v\xb4We\x84\x9e\x07\xc3\x93\xbcf\xce\x80\x9f\x0b\x92I\x1e\x91\xda\xe77\xc3g\xc1\xb0,\xddL\xec\xcb\xd4\xdep\xb3\xca\xe5d\x82\xacf\xa1H,P\xd6\xed\xca\xcd\xda\x95\x1b&\x15[\xfbg\xca\xa6D\x95\x05\x86CbeF60\x8b\xfe\x9c\xd8\xbb_Ra\xb0\xe3\xde\x1dUvI\x90M\x8c\x11\x84\x98\xf5\xb7\xb96\xd0\xb0\\\xc8I\xfb\xcc*P\x91\xc2\xce\xcf\xd5I\xef\x8e\x9cA&\xf8g\x08\xe4\xda \xff\x1c\xfb\xbc\xaa\xb0\x98\xcf\x07uMp\xb0\xb5\xe3\x96\x1bI\xba\xdd\xbd\xcc\xc5\x80\xf3\xaa\xf7\x9d!imo\x9d!\xb10X\xbcn#\x9fH\xddBkH\xdcR^t\x86D\xa1[gH\x1a\xd8\x06qp\xc9\x12\x18\xc3?\xef\x94\xa8\x9a:\x06\xa5\xc51\x1b\x94t[/dEu91)\xc09\x8eZ\xe0\xef\xefW\x14\xd7'\xf2\xa0\x803\xfa7ef\x94\xed2\x80\x02\x1e\xe1\xb3D)!\xd4\xf9`}\xd7\xb3\xa6\x14\x99Z=l\x9eX\xb3`\xf1&\xd0j\x89n\xb9 \x7f\x19\xc6\x15\xc94\xf5x\xb2\x80\x9c\xa1\x07hB\xaex\x86l\x8b\xfcUPK\xe5\xfe=\x01\xc3\x86 \x8a\x11A\xf1\xd5U.\xfe\xccf9-\n\xf1\x94SH\xcfy2\x05\xdf\xa7q\x91\xcc\xe0\xefz\x96d\x88\xa0+\xf1/.D\xd2\xd5,\x81_HN\x16\xe27\xcd\xa6\x1f~^g\x1c>g\xb3{\xf1GTp\x05QU\x11A\xd3\x98\xdd\xc4\x05<\x80\x86[<%\x90}\x9a\xcd\xe4\x9fT\xfe\xc2E\x1aD\xc0l]\xfdI\x93\x82\x8b\xc7\x99\xf8\xa1)\xfc\xf28I\x05\xbc\xd9\\\xc0\x9a%q\x9a-\xe0\xe1F\xfcB\x1eQ\x86.\xe1\xe7\x8a\xce\xc0\x05,Mg\x05\xe5\xf0\xb8\xa8[2O\x16\xeb\\4b\x9ee\x9c\xe6\xf0\x90\x8b\x82\xd7#\xf1s(~\x8e\xc4\xcf\x0b\xf1\xf3R\xfc\x1c\x8b\x1f\x1a\xcf\xd4\x1f(t\xad\x9b~\x0do|)Z!\x86*\x01\xdd\xadxX\x8a6\x82\xaf)\xf8+:\xf0\xe1J\x00\xf9@\xef\x17\xe0\xc1\x1b\\K\x89\xbftA\x99\xf8\x92&\xf0\x03\xde\xd0\x97q\xc2\xe0\xcf\n~s\x99\x96\xff\xbc\xa6\x02:D%\x97\x7f\x12\x0e\x1d_R\x18C\x88|\x89\x08b\xb1\x18\x1c\x96\x15\xe0\xc7\x06\x11-\x19\x12\x04\x83\x9f\xad\xb8\xeeA\xa6\x87&[s\xd9X\x91\xba\x8a\xf3X\x80]I\xd7^\xd2\xb9:\xfcf\x0b\x85G?#\x82r\x917\x17\x85\xf2\xf5\x95@\x05\xf1\xa1\x88\x97\"\xd9T]\xc8\xa3\x12xJe#\x8ae\x9c\x8avHG5\xe2a\x15C\x06\x9egl\x01\x0f\xf7\x80\x9b\xc5\xfa\n~\xc1\xc1\x13< \xd0\\y\xed\xe5\n\x01\xb9\x18=\xc1\xec)\xdc\xe6bv\xc5\xdfk\xf8\x91\x93\xc7\x13\x98\x18p\n%\xfe\xe6\xf0\x13O\xc5\xc8\x8a\xc1\\\x8b\x06\xdd\xc4\"Y\x88\xb4\x02\xe5o\x01\xb3\xa7I.\x17\x8av;\x04X9\x17]\xa5i\x9a\xac\n\x89O9M\x16\xec;=\xcc0\xfb\xcbxA\xe5\x94\xea?q\xfe'\xe5nFM+\xcc\xd62.>\xc0\xa0\x03l\xe5{\x04\xdc\xea\xa7\xf7\x8bL?)0\xa2|\x9cZ`r5\xa6<\x83a\xbfY\xa8\xc1P\x7fT\x8b9\x0cq\xb4\x9bY\xffs2\xa1Q\xf0\xe7D\x9ee\x03\x85\xfc\xe7\xa3'1\xdbvJ;l\x8c\x8c\x91\x924Ej\xd9\x13\xb5\n\xf5F\xf81Kq\xc9\xc2\xed\xb4.\xaa9\xf6\xdcmZ\xe2(\xbf\xcf\xc6\x12\x07\xc1\xed\xae\xad\x9a\xe9 k\x1c\xfa$$\x11\xa2\"\xd1\xa6\xf6;j\xc5\x1b\xdbRr\xbb3T\x15g3\x9a?\xd8hzv\xd8\xed>1*\xda\x84\xcbn hX\xd5\xa8[\xc3b\x00\xcbc\x9dZ\xdbB\xe3'\xf4n\xf9n\xbd[\x16\x8cN\xb2S\x0eJ\xb4|\x925\xf5nY\xa4\"\xe9\xb47LK\x91\x0c\x02\x1e\x9cj-\xd2\xec*N\xa5B\xa5\x15\xc7>\xc1\x98H3\xf4\x7f&nBb\xab\xe1i\xadF\x03a,\x07a\x8cd\xbb\x95j\x89I~K\xe7\xd8\xdde0\xed\xc6\x18{p\xb1\x9a\xf1\xd6Y\xe9\xd7\xf1}\xb6\xe6\xbbNL\x15\x0eN\xdd\x04$\x86\x8c\xe4\x98l\x7fnMQB8\x16\xec\xda\xc4\x14\x8a0\x01u\x98\xe9\xdd\xd45\xc6\xce\xc0\xdf\xd4\x0b\x06\x17\x0d\xd4q)\xf9$#\x8cd\x0d\xa3\xb3\x96X\x0e\xb2oN\xd2\x06\xd7\x88+|\xb2\x05+\x01P\xc6\xc4\x87yK\xba\xcc\xdc\xd4r\xa6\xcd\x9fB\x98\x7fQQ+W\xe9#\x08\xc3\xb0\xb5Z\x93\xe0\x87\xc4\xcd\xea#\x15Qc\x02Gk@(X\xfc\x00\x81\x92(C\xads\xe2\x0b\xbaL8\xdc\x07\xfb\xf4\xdd;\xbb\x94&8\xfa \xcc:\x94!\xcc\xbe*\x87NaGrPo\xc2\xba\xdd}\x19`\x18\xed\xf7Xo\x1f\xed\x93o\xb2\xde~\x80x\xbe\xa6h\x9f\xec?r\x9du?zXd\xed\xa13p%~:\x80\xb2g\xa82\x86\xdf\xd2\xf7\\\xbc(vp\xad\xd4+h\x9c\xd2\xd9\xf8\xe7\xcc=\xc4>mv\xd6\xc5-(\x8aG\xde\x1a\x84\x13y\xc1\x0e@Y\x8c\xf3\xa1V\x02\xb9\xf2~\xc9\xe4\x9b,\x02#\xd4\xc9\xce\xcb\x86\x91\xf1{\xc1\xbd\x07\xbc\xc4\x06\x9b\x8b\x0b\xc10\xf9;G\x1d\xaeBd\x8dK\x8a\x99\xe0\xf6UH\xe7\x0c\x93I[\x0b\xady\x05\xc3=\x7f\xa0\xf7\xbe\xa09\xc3\xfe\x10U\x18Gj\x04D\xdf\xecn\xeb\xde\x06\x9d\xa1\xca\xa1\xdb\x13Hk\x1b\xd7\xba\xb63\xd4Wkt\x99\xd1\xa3\x9bU\x96\xa6\xbbla\x9bbbc\xde\xda\xbd\xfa>!\x1bi \xd3hZE\xe4\xce\x02\x0e\xc9R\x1a\xdf\xd0\xbf%\xfc\xfa\xdblF\xdf\xf1\x9c\xc6\xcb]\x95\xfd\x9c\xb9G\xdab1\x8f\xb7D}\xde\xd4r\xd4\x94\xcf\xd2\xcf?@o[\"j\x1c\x00\x11\xcaHR/\xdaV\xb7\xb4\x10n\xc8VLr:\xf7s!\xba\xd4\xd2:\xc8\xaa\xf2.dC\xa9\x82Dg\xdf\x8br\xb6\x06\x9c\xf0\x8ad\xf1\xf6\xd2\xd8\xd5\xe8\x8a$q\xb0\x81\x89\x81%\xe2\xa7 Y\xc6b\xf3\x95\xaf\x17IE\xe28\xf8s\"C\xb1oL4\xcd\x98L\x8b\xc2Oc\"\xfb\xf3'\xd8\xcf\xa4\xdc<\x8d\x891\xda\xf0\xd71\x81\x06\xea\x83\x11\x7f\x15W\x01%\xb38Pz\xd6\xe0\xcc\xf5F\xab\xf5^\x0d\x05\xd7\xee\xa0m\x10B2\x93\xf7i\x9f\x80\xfei\xb6\\&\x1c\xc0\x0e\x8f\x8e\xe7o^\xcd\x10\x16\xe4\xf6SuH\xe9eL\xb9\xf5\x12\x94|U\xd4\xa7\x97\x1as\xef\xe3`\x0dKu\xf8\x07\xb5\xa4\x8c\xf7=\xdf\x91\xbe\x14\xdd\xe1\x8c.\xf0 ,\xaa\xd1\xf0\x91|G\xc72\xe7\x7f\x88\x05xIn\xc4\xa2p]\x1a\x9cm\xf7B\xc8q\x1b\xa3\xeb\xf6\xa9\xa5\x03W\xdb\xad\x8fF\xde\x08\x11I\x14\xd0\xcb\xd1!\"\xd2%\xb6zQn\xf5|4t\x86\xce\xcb\xd1\xa1\xf8\x87\xb6M\xf3\x94\xdc\xb9\x99\xf9\xe8\x9b\xc3W/\xbd\xe3\xd7\x87\xce\xe8\xc5+\xef\xcd\x9b7\xd3\xa13\x1az\xaf\x8f_\xf4_{\xaf\x8f^9\xa37\xde\xf1\xf1\xa8/\xfe\x88L\xf0v3\x9c\xf6E\xa6W/\x9d\xa1\xfc2\xea\xbf\xf6^\xbd9\xd6/*[\xff\xcd\xb1w|\xf4r:\x84\xdc\xaf_:\xaf\xbd\xd7\xc3c\xf5\xd5i\xe6\x1dNE\x9e\x17/\x9c\xa1\xa3\xeaz\xed\xbdzu\xec4+\x96\x00\x7fA\xd5.\xbc\xdc\xee\xd3\x8b\xe3\xa1w\xa9\xf9i\xf4\xe9\xf8ec\xb8t\x9f\x0ew\xf6\xe9\xf5\xe8U\xa3O\x87v\x9f^\xbeV}z\xad\xe6\xf4\xd5\xe1a\xdd'\xf1\xb2\xabO\xaf\x8f^Y}R\xb9T\x9f^\xbe~\xbaO\xa37G\xde\xcb\x17\xc7\xce\xe8\xf8\xa5\xf7jx4}\xe5\x1d\xbfq^y\xc7\xc7\xe2\xe7\xb5s8\xf4F/\x0e\x9d\xa1s\xf8\xca{}\x08h\xf7\xca{5\x1c9\xf0\xdb\x17\x9f\x8f\x0f\xf5\xcb+\xef\xf5\xcb#g\xe8\x0d\x0f\x87i\xff\xf8\xb5w4\x1a\xc1\x9f\xc3CQ\xea\xf8\xb5,*\x1f5`(u|t3\x9c\xaa\x1c\xaa\xd2\xc3\x91z\x86z\x9da*\x00\xbd8t\xe4\x9f'\xbb\xf5b\xf4\xc2{\xf9\xe6\x95s\xf4\xfa\xd8{\xf5\xea\xe5\xf4\x95\xf7JvH<@\xabeCG\x8e\xa9\xbf\xaf\xf2\xbc|\xa3\x1b\xa7^^y\xaf_\x1c\xf5\x87\xde\xf0\xf8\xd0\xee\xd6\xe1q\xdd+\xd3\xa7\xc3\xe1\x8b\x1d}\xd2U\xcaG\x01O\xf5\xe8\xf0\xcd\xc8\x91#\xf4d\x8f\xc4\x04\x1d\xbfy\xe1\x1c\x8d^{/\x8e_\xc0D\x19\xd0/k\xd0b\x06T\xcd\xb2\x03\x0eL\xa9\xee\xb3\xea\xaf\xec\x88\x1aO5?\x0f\xf6\xfe\xf0P\xf6^\x0e\x92\x9a\xa5z\x1a\x0f\xf54\x0eGic\xd6\x9f\xec\x93\x9a\x1d\xe7\xcd+\xef\xe8\xf8p\xaa\x07Ra]\x13\x01\xa0O\xadI|\xdd\x9c\xc4T\xd5\xeb\xc8V\xc8\xc6:\xa6\x9d\xc7G\xea\xd9L\xe8\xe1\xf0\x81.\x1d\xeb.\x1d\x1e\xa6\x12&\x80>\x82.a\x8c\xc5fkb\xde\xf8\xcea\xe1\xecm\xee\xe3\xca\x91\x1aT'a\xf3\x84%\x9c\x8a]Tq\xc4/\x15\x1f\xa9\xf6?\xf3\xae\xaf\xcd:\xfb\xfb\xe2U \x13\xbe\xa3\"\x0f\xc2i\x86\xf8 \x037\xf4S:\xe7\xbe\xd3?|)J\x03\x9f\xca\xaf\xd5^>O\xd2Tp\xde48\xa3\x1e\xb0\xab\x95\xde\xc5\xafl\xd6v\x9e1\xde\x9f\x83Ot\xdf\xb9\xa6\xe9\x0d\xe5\xc94&N\x11\xb3\xc2j\xb0\xe0\x12\xc4\xab\x90L\xfa\xe0\xa6\xdfw\xa6THu'\x1aH\x91\xfcB}G\xb6E\xb7\xd0w\x8e\x86\xab;\x81g\xf0\xc7b\x9d[-\xd3L\xf4\xad\xcdD\x7f\xbf\xcei\xcdH\xb7\xd9\xdbmF1\xb9Ad\x03\xe2\xb5\xbf\x01?\xc5\xd0N$\xdb\x89\xaamV\xe2*&\x1b\xd9\x1e\x9b\xa1\x82&\x11\xf4\xb5\x0c\x9d\xe1\xecfwo\x1e.\x8aq\x05\xd2\xf6]\x1c\xe4\xee\xcb\xe37\xaf\xb0\x94\xce\x9c\x0f\xf1\x96Q\x9e\x10\xdd\xaf\x84\x88\x891\xb9\x88\x83\x0fqm\xa2\xf6\x1d\xbc\x1ak=\x01\xf1\x9d\x80xt\xfc\xea%&\x9f\xc3\xe3\xabW\xaf0\xf9^<\xbe~s\xf8R*?>\x16\xaf\xa3\xd7/G\x98\xec\x89\xc7\xe3W\x87o0y\x0b\xf9_\xbe:\xc2\xe4\xd3\x18\xfc\xdb\xbe\x8du\xbb~\x8a\x83\xb7\xb1\x07.\xb8\xd44\xbc\x8f7\xf2*\xa6s\x15\x17T_\xed\x0fFX\x8a3\x0e\x0b\xde\xab\x02.\xad\x85gsE\xac\xcf\xa3J\x95\x9f%\xf93\x8b\xbf\x8dA\x93\x9c\xa4\xd4e^\x01~N\x84D\xac!b\xacA\xe64\x85\xa8LR\xb1\xfd\x08D\x93\xc4\xb1\x02\xa8\xc1\x19X\xba\xc8&\xa5\xdc\xe1\x81V\x8a\xa0\x8f\x90\xf1#\xacc\xbe\xf1\x80\xdbAc1&?\xc5.7\x90@1\xf6P\x8b\xb4\xc2\x90\xef\xec\xad\x81\xb1P\x1e\xe86u&\x9d\xa4\xb3\xe8B\xd4\xceT'\xeal\xb4\x98\xc6\xabV.\x93VUz\xbaM\x1bI\xc3\xa3\xb1\xfb>&\x02=\x04:}\x058\xf4\xe2\xd5\x10\x93o\x15\x0e\xbd\xc6\xe4\xb38\xd8iy@\xbe\xde\xfd!\xa1\x05\xf9\xc6|ZPnY\xd9\x7fF\xe5\xd9[\x96\x17\xe4\x8b\x07\xf2\xbc\xbb_^eiA~1\xdf\x1fr\x8dL~\xd8\x91E\x07E\xf9\xaa\xf8\x9c\x89\xd5\x14_\xa5\x94|b)9\xc0\xd8\x8b\x8e?\x83\xb8\x8cdCM.ix\xc0\xe0 V\xbf\xdf\xe62\x80\x91x\x96v\xa4\xac\xc2>\x9d\xf0(`\xe4g \x15\x07g\xb5\x17\x00\xb8]P\x96R'\x89\x7f\x89\xa5\xbfbQs\xb7\xfb\x89\xa8\x92\x11\x19p-\x99\xbb_\xc4ut6'\x9b;_\x08$\xc3?<\\F+V+\xf2\xa3\xa9\xfak\x91\xe1\x1b(iYB\xc7\x8f\xdbw\x0f\xc2\xd9\xdd\xdd\xc0\xdc{\xb1\x0c\xa1aT\x82\xce\x08\xf4\xfe\xda\xb2\x04\xd9\x9e\xc7\xf8\x18\x81\x14\x8d|T\xac!\x90\x15:\x11K\xaa\xb6g\xadk\x1a\x1bg\x7f\x94\x8c\x86\xd8\x870\x8b\xd0\xb8n\xd7e\x07\xc1h8\xc4\x84\x9d\x8e\x86\xc3\xb2dg/\xdf\xbc\xc1[~g\x13v\x13\xa7\xc9\xcc\xf9\xf2\xfd\xfb\xef\x1d8\xa7\xc7P]\x1e\xd4\xd5k\xaat\x16\x1c\x0d\x87\xdd.;}1\x1c\x8e\xf3\x00\xe5T\xc67A>;\x0bT\x9aj;;=\x14Y\xdd<@ \x9bg\x08\x93\\ \xd5\xff\x88\x83\x8d\xb2\x0dYe\x85\xfc\xbb\x86?\xd74\x06\xe3\x91U\xcc\xa7\xd7`\x94\x02^\x9c\xc4\x93\xbe2\xd7\x19\x92\xbd\x9c\xce\xfd\xce\xd0\xb2)\xfe\x93\xad\xb5\xa2\x02C\xfe\x11\xab\xca\xfe\x12\x07\x1b\x1dZ\xe9\xbb\xb9\xb9\xe6A\x96\xf1]\xb2\\/\xeb\x04z7M\xd7ErC\xbfi\x7fY&\xec\xa1\xac\xed/&\xe8\x93\xaf\xa7\x8a\x98\x08Ou\x92:\xe5\xad\x13t0/&\x03pm}\x80pe\xef\xefW\xb4\xfe\x021\x88}\x04\x91\x0d\xa0\xde\xaf\x9a k&\xacY\xf2\xf3\x9a~\xd5.U\x93\x14\xdf\xd8 ,\x13\xb6+Y\x87\x96\xa8Sd\xac\xa1\x8c\xc5\xe9\xae\xfckF\xc5\x82\x8e9\x9d\xed\xfa\xbc\xda\x95&\x07fGvk\xb2\xff*W\x10\x05\xbf\xe4\x96uP'\x08\xa8\x971\xfa\xdd\\\xbbN\x82\x94\x98\xdd\x7f77\x1e:\xe4YG2W\x17K\x18\\\xfa\x837\x9a\x16\xb4\xce&\xd7[g\xa8v\xf5<\xc8\xb2z\xc3\xb1\xa2@\x06\xbc,s\xb1\xd4\xc0\"\x8e\x8fe\xc5>\xf7\x126M\xd73Z\x98\xbc\x18\xac*Y`5\xad\x1e\x82\xf10\x08\x9aVs\xd6G\x1d8\xdc\xaf\xcdt\xbd]C\xaf=kB\x86\x9d\xa3\x8f\xad0\x93\x1e`P\xb7\xeb*lxV_dV\xdd\x151\x13\x12\x0cQ\x7f\xe5\x9c`\xc2j\x82\xf7wkm\xc2Ex8|\xc9\xa7\xd7\xee\xe0\xa7\"c\x83\xc4\"\x8e\x7f\x8e[w\x842y\xe5\xc1[\xc6+P\x95\xd9\xe7E\xfa\xbc\x90a\x7f\xfbn\xcc\xb8i\x82(\x01\xf0\xe0\xecro\xc3\xab\xbd\x0d\xab\xf66b\x8f\xa9.-(\xbc\x87\x02y\xa7\xd1\x1cI\x99\x96\xfd3n0\x13\xb2]\xae@\x8e,\xa5\xdem,\x90bF\xe9JV\xeb\xc8\x13\xc3i\xccX\xc6\x9d+\xea\xac\x0b:sn\x13~\xed\xc0\x08:r\xa7kV\x066\n\xcf\xed\nS]\x99\x88\xbeD\x81\xe8\x0d\xb3z\x83\xba\x08\xfb\xffJ\xf3X\xc6\xfa*\x8a\xc0\x83m\xacG\xc58`\xd9\xe8e\x82..r:\xcb\xa6\x17`Et\xc1\xe2%\xbd\xb8@$\x0b\xf8\x18\x1d \x1f\x99\xad\xe4[\xcd\xd0]n\xc6{\x9b\xbc\xda\xdbdUu\x89=z\xb7\x8a\xd9\xcc\xddL\xf2Hp\x02\x0d.\xd1\\\xcb\x1a\xec\xaae\xb0 \xf6F\xcb\x8b\xc6\x8c\xfd]l\xe0\xe3\x96\xfd\x01m\x0f\xd2%\xc4\x01\xa4\x9c\xe6NA\xf3$N\x93_@\x10ub!\x87\xf2\xcaI\nG\x8cY\xb1^\xad\xb2\x9c\xd3\xd9ekDX\xb3V\xea%l\x0cq\x15\xe9\x0fo\xbf2\xf2W\xcb\xd3\x80\x19K\xef\x9dx\xb5J\x93\xa9\xe0\xfb\x1d\x9eI\x9aXH#-\xd9\xa0U\xb2\xfa\x97\xdaS>\xde\x9a\x06\xd8g7\xa6&\x9c\xba%\x1dV\x96\xd0\x98\x1d\xf7\xee\xf2\xf6\xb6PWoQ\xe0\x1du\x0b\xec\x96\xc0\nI\x8b\x15\x05\x08\xc0\xb8D\xee\x0e\xff\x8c\xdd\x9cP\xfc\xec\xe5(\xeb\x15\x90\x01[\xc4Z\xe4\xb0\x10\xdb\xc8\xd4\xa2\x13Ml2\xb8D\x15.\x15\xc9r\x95\n\xca\xa1\xa8\xbe&\xee${h\x03H\x82\xc6Z\xc8*A\xf3\xabK#q\xed\xa0\x91I\xbdF2\xd8\x0b\xfe\x95n\xcb~\x01\x0dR\xfd\xb6{\xad)\xe0\xef\\C\xbf\xbdY\xb2\xe2\x9d\xd3\xf1\\`OP\xda\n\xb6\x16\xecs%\x07\xe5E08\xff(\x1c\x98\x03\xf1\"\x1c\xb8\xc5\xf4\x9a.c\x88\x81w\x0d\xa2\x01\x0e\x07\xee\xe4|\x10\xf5\xf0\xde\xa0\xe6\xb8\xb3\xc2\x12\xaf\xf2B \xb5e\xd9\xd8\xf9\x92\xc2X\x95H\xea\x08\x97+\xd5-|\x1e\xa8+#\x9a\xa9\xa4\xca\xe9Q^`\\3\x9a*\xd4\xac\x8bqYN\xcc\xa5u\x8b\x99\x8c\x0d\xc3\x01\x12\xaa\xb9\xbe\xa3\xb9Zny\x97g\xe3<\xe0\x81\xf8\x0b\x9c\x92#H\xc5\xa5\x7f9\x91\x1b\xb9\xe7\xc1\x06\xe2D*\xbdQ\xec\xf24\x90_[\xdf8\xc8\xb3\x10-k\x8c\x04\xabD\x97+~\x8f\xfc\xcb\xb3\xc0\xa9\xeb\x10\x92\xaeiq\x01\xc3\"\xe7\x80\x07\x93\x88\xb0 .\\4\xbd\x8e\xf3x\xcai^ B=##\x8ag-B\xe2\xda\x83$\xebv\xb9ts\xc0\xb0\x91H\x04\x18`\xba\x15\x84\xaf\x14#\xaeeA\xab|n\xca\xe7\xba\xfcV\x10\x89ZvP\xfb\xf3\x89n\xb4\xc5\x00\x8e\x86z\xc5\x0e\xce\x87\xa17<\x18\xed\x0dt \xb1\xf1\xe5\x8cN\x93e\x9c:\xb0\x93\x15\x0e\x0c\"\xd7^\xb5<\x84'\xa3H\x892b\"\xb4T\xeeds\x18\xbc\xcb\xca\xa5^-\xaa[\xcd\xcfL\xf33\xdd\xfc\x1d\x11\x00\x083C\xa3\xe5q+\xfeS[f\x1f\x83\xe7\xcae\xc2\xdc\xedoD\xde\xabwE\xd7\x95\xf0\x8f\xc7\xdc\x1f\x0d\x86\xd87)\x82\xd6=V\x8d\xd4\"\xa8j\xe2;w\xfb\x9b\xae\x86\x050i\xb2\x1a\xe6\xf7u=*W\xf2\x9c\xee\x089v\xab\x1b\xf1sZ\xd8,)\xd3\xb6\xd6Un\xad\xabL\xac\xa7d\x8c\\\x07\xf9h\xe2 \xe5r= \xb2\x1e\x8f\x91\x83\x91\x8f\x9c\x08\xd9K\x07J\xc5ct*J\x9d\x06P,\xb33\xe4\n\xec\x99\xc8p\x16(\xb8:Ce\xa9\xa2M\x91\xc4\xe0E\x82\x89\x10y\x8d\x8a\xc3|@2\x11ab9#H\x81\x8a\x04\x93\xa8\xd6/O\"\x1d\x8b\xa3\xa6;\xb46\x98\xa7\xc1\xd9\x86zZ\x032\xb6Db\xe9E\x16\x8fs\xed\x10\xce\xcf\xcc\x13\xb3\x9d\xc4\xe5^\x91\xe5\xdcu\xc1\x82;8\xabo\xbd)\x08}\xeb\x1e\x9c\xf2\x14\x84\xc9\xc4\xf3\xbc\x9cx\x9e\x97\x89\x1f\x16Y\x16\xc4\x0dAC\xe4\xa3Q\xb3\x06!\xdfz\x10\xfb\x15\x0e~\xe2\x9c\xbal\xc2#\x8c-\xa2\xbd.\x9aj\xf6\x9a\x084.\xa5\xf3\xfc\xde\x900\x96YS\xc1\x95,\x0fv\xa1\xb6\xe0,\xdd Z\x82PU\xb9\xae\x8b\xa5AY\xe7G-\x03 \xa4\xd6,\xd5\xc1@\xf4f\xe6]\xe7t^\xcf\x04e\xb3\xe2o \xbfv\x91\x07Wn\xf0\xd8\x1d\x92\xafbo\x96\xe40V\xe0W\xa5\xc2.\xc6\xfe\xd6\x07\x0dE\x863\xac\xfd\xc9\x07\x93\xcd:O}4@U\x84 7J\x06\xdd\xe6\x1fc\xf7\xe7\xd8\x95\xfe\xd3!'\x10\x84u\x9e\x92\xa6\xf8\x06\xba\"pe\xeaA\xd0S\xd5\xd0\xc1\x00a\xf0\xb1\xc8\x02!O\xd1[\xe7\x87\xb7_\x0b\x01\x1eT\xe9\xd3,-K$\x83{ T\x17\xf4\xcf\xf8`d\xc1\xa5\xfc\"\xd3\xb5\xf3\xccm\x03\xcf\x81;\xf6\xcf'q\xff\x97H\xfc\x0c\xfboz^?:\xf0\xcbp\x10\x0e\xb0\xa5~v9\xc6,\xe0\xc6\x0dg\xab\xa5\xaa\xa1\x9a|\xd6m=\xc9=\xc1\x1b\x80\xaf*NX\x90\xc3\xb4\xd8\x0d\xe5\xb2u,\xf8{\x0e6\x99\x03\xd4\xe3\xe6\xe6e\xee2\x10[8\xc6d\xa6N&\x04\xa3B=\xeb\x0d\x0c\x16\xb1\x0e\x1e\x89\x15\xbf\xb2*\x02\xa4#\x9f\xf7\xe1\xf8\x03\xf4]\x05\"\xb3\"@\xef\xd4\x97\xcf\xac\x0f \xc4\xcde1\x912\xf8x\xcd\xaf)\xe3\x89D\xa8\x81F\xb5\xeb\"\xa0\xc1\x99\xbbQ\xbaey\xd7L\xab\x97Q\xb6\xe2\x05\xaa\xc0m:\xb5\xf4\xfd\xcb\xa6\\\xdfR\xc9(\xc3n\x81<\x1d\xc0\xb21m\x0c\xf0]\x1f\xe1n\xb7\xb3=\x7f\xa0\xac\xde\xa0\xbb\xfe4\xc9!\xa2n?\xa7s\xe4w\x86D\xa4e3\xda/b\xc1j\x17v\xda\xbbf\x92e%\xab\x93\xe8]3K\xb2`YNg_\x023lT\x1c\xe6s\x9a-2\xfd,\xf6$\xb8b\xa5\xde!xq\x9d\x95\xc7\x0b\xf0\x90]'\xe4q\xc2\xdf\xc7\x0b\xfd\xbeK1\xd9l\x9a\x10x\x12\xfeM\xbcZ%l\xf1\x1dK\xef\xc5\xa7JyF\xda\x1e5\x8bP\xe2\xb3\xfe\x08c\xe3\xae\xd1U6\xb5\\_\x17\x06<\xdbT\xf2\x8e\xc0\xa2\x80\x13\xe3c\xc1\xb1\xb8\xaf^\xbfz\x81I\xee\xbe8|\xf5F\xfc}\xf9\xe2\xe8H\xfc=>\x1c\xc1\xdf\xc3WG#\xf1\xf7\xe8\xcd\xf1+\xf1\xf7\xd5\xf0\xc51\xe4\x83\xb7\xc3\x97C\x99\xfb\xf5\x8b\x91\xfc\xfbRB;:z)\xfe\x8e^\x1cB\xee\xd7\x87\xb2\xd4\x9b7/ \xfd\xe8\x18^\x0f\xdf\x1cA\xa5o\x8e^C\xf2\xe1\xeb\xd7\x12\xf8\xa1\xfc\xae\xdavt\xf4\xf2\xb5\x85q\xf7r\x93B\xd34\xf9@\x11\xde\xf0\x807\xbd\xad)\x1d\xf5\xa2\xf0R\x15l\x18\x82\x9fj\xa6\xb9,\xdd\xd6\xc7m\xf4\xdb\xfcTd\xccG?\xc1\x95\xcd^\x0f\xf9h\xbaZ\x89\xe7\x8f\xc4cq\x1d\xc3%?)\x94&7\xb4?E~\xfd6E\xa4\xb8\xa6i\xea\xa3\xab\xb8\xb8F\xe4&Y\xa6>\xbaI\x96j\xf9\xa8\x96\x0b\xda\x13a\xb2(\xbc\xebdq\x0d\xb1\xca\xdd\xe6e\x0b\xc2qe7\xb4\x19>\x05\xfd\x14\xdf\xc4\xf5\x85Bu\xfc\xb1A\xfa\x18\xd2QI\xfeF\x1f\xab\x0c\xdc\xc9\x86Daq\x80\x91;\xf6\xc3\xd0+'\xe7a\x88\xc2@\xee8\x08\x8b\x03\x1f\x0f\x12\x92f\xd9\x87+z\x9d\xb0\x19\xa0 \xd1^>\x9e\xdb\x9a\x95\x18\xd15\x90\x17D6\xbaE\xbbZ\x024:\xbc=x\xbar \x847\xc5\x03G\xc2W\xbb?$\xb4 \xb7\xc5\xd3G\xc2w\x0f\xe4\xd1G\xc2\x1f\x8a'\x8f\x84/vd\xd9y$\xfc]\xb1u$|S\xfc\xee#\xe1w\xc5SG\xc2\x1f\n\xfbx\xf7\xbb\xa2y$|W4\x8f\x84\xef\n\xb17^<\\\xc600\xe4sS\xf5\x95\xc8p\x0b%\xd5\xa6\xf2}\xd1pr\xf4\xb1\x91S\x93\xb9\xbb\xc3\x9f\x17\xf3\xa0c\xf8\x01u\x8b\xe0\x91T\x96\xb2T\x0f&T\xc0\xf6 \xee\x1f\x97t\x99%\xbfP\xd0\xa2@L}g\x1a3\xa9`\xba\xa2R\xc7Dg\x0e\xcf\x9c%\xc4f/D\xc7\x7f\xa1y\xe6\x98+Z\xa8\x96+//\x14\xb8\xd9\x05\xb0\x1f\x10#\x0f\x9a`\xc6b\x92G\xc1\xf7\x05\xf9\xbcp\xdf\x15\x82AbX9\x81j\x1a\xcc\x8blA\xf0}\xa1\x82\xf7\x88\xd7L\x8d3\x04f!*\xb5\xaap\xa5\xba~\xf2\xd0x-\xea\xe8_\xed\xd1z\xb4\xe1\x0b\xca\x1fm\xf6\x82\xf2\xdf\xdf\xe8\xe7\xce\xc8\x03\x93\x91;\x0b*\x08FA\x9cE\xc6\x1d\xd43\x1eC%\x96\xf4\x10\xb8k\xa4\xf1\xccV\xb8\xec\x15\xb5\xad\xcdH\xdb\xda\xf4\xc1\x92\x00<\xc0\xb8<\xe8\x8f\x08\x0d\xa8:C\x013\x1b\xf0\xee\x18\x9c\xf5G\x82I\xc9't[B\xa0\x11\xf6\xd9\xf6\x07\x91Wn\xaco\x1f\xa2M\x9f>I\x80\xb4\x8dT\x11\xa0\xeb\xb8\xb8\x9e^\xc7lA\x91\xb6\x93*\x1a\xf7;t\xe4\xabe\xc2\x03\x10\x1c\xea\xeb|4\x87d\xf7'\x15 L\xdd\xea\xfcj\xa6o\xbc\xa9\\\xc0\xc8\xee\xc5\xde\xe77\x94\xf1\xcf\x97\x89\x18c\x15\xeb a3\x17W\x0b\xca\x1dS\xb8F\x83\x1f\xf3]g6[\x02J\\\\7\x8d\x98|\x84\xaa4a\x1f\xa4[Y\x8b\xc9\x1b\xa3\x8f\xc0\x85\x17\xaaD\xfei\x9e\\Q[+\xd4\xe8Y<\x9b}\x9d\x14\x9c2\x9a\x8b\x0e\x1a\xf1\xc5\x05\xa1Q^4mf\xa8do6?\xe6\xdd\xaejd<\x9bA\xa7MF{\xbc\x89\x19X\xd2\x19\xe1J\xf0\x8f\x99`(l\x00\xb2\x9e\xe7\xc0\xc0\x95>\xba\xd0v-\x02\x8cTm\xd0n\x17\x9c\x045&I`\xa6\x8e\xf0x\x9d\x14<\xcb\xef\xf5\xe9\x87\xbc\x89#oo \xb2K\"\xd4\xda\xa4\x8f\x10\x9e\x0c\xa3\x1e@\xb6\x87\x1c\xfbn\x0b\xb4\x10\xc1\xff\x0dp\xeb\x0e\xbb\x18bK\x19%\xb1\xb5\x13e$ >-`\x17\x01\xbf^\xca\xdent\x12\x9f\x05\xc3\x93\xb8\xdf\xc7n\x16P\xe5\xff4 2p\xfd\x91\xe0\xb2L\xf0I\xd2\xed\xbe-TB\x85\xdd\xc9\xc71`)\xf98\xf6f\xf4*[\xb3)\x8d\xc8\xfb\xa2\xdeu R\xa3fh\xf7W\xf2.\xf5\xfb\x02x\x88o\x05\x03\xfczt\x84\xd5\xfa\xfal\xe7\xfaZ\xc6+\x13^VY_\xd2\x9b\xf74_\x06\x08U\xf1\x0c\xd0Xg\xd4\xd1\x8c\xe8\xad\xf3-DG\xaa\xa4\x0c\xd5\xc8c\x92Di\xc1\xde7\xbe\x1a\x8d\x8ab\xde7}\xe9^\xb4v\x01$\xd0\xc3[\xb3e\x9c\x7fp\xd5\xa8[`\x99\xbc,(\x06\\\xad\x1e\xb1\x97Ql\xf2\xc9\x80Oe\xd9h3\xd7m\xe6B\xbeLi\x0c\xc1\xc9T\xb3\xb6\xeb\xd2!\x91 \x9d\xe2\x8dK\x15<=6&Tr\xa3K\\\x10)\x0b\x9c'\xcb\xb7\xcbV\x1a\x99\xccHog\xd1@v\x0c\x1cXA\xe8\xef[\xa0\x10\xaa*\xb1%|]\x04\x9b\xab\xb8\xa0?\xe4\xa9\xf4\xa3\x05W\x05\x0b\xbf3\"\xf5E=\xf9e1_j\xdb+\x9a+??\xf2E\xba\x17\x07\x97\xf6\x9au\x97E\x04s\xac?jF\xb9\x8f\xc82f\x0b\xc9\xb6\xad\xe8,\x16\x92\xb7\xa8O\xda\x1a\xd3\\\x16-b!\xaf\xffB\xc5\x17\xfd\xac?%)x\x08\x1a\x91b\x19\xe7@w\n\xf3v\xbf\x8a\x99|\xe5\xd9\x07\xca\xeaR\xb7q\xfa\xe1\xbdHR\xdd\xb9\x83\x1b\xc6\x9dQ\xa5\x16\xc57E0\x98tO\xcf\xd0~4 _X/\x0b\xf2\x8bx\x83\x97\xb2\xeb\x8e;\x1f\x8d\xc3\xdb\xde \x1e\x90\x1fv\xa7/\xc8'E\xb0A]\xe4\xa3n\xbc\\\x9d \x82N\xc5s\xca\xc5\xe3\x99x\\\x88\xc7}\xb4\xef\xa3\xee\xcf\xeb\x0c\xd2\xf7E\xfaGGoNPE~\x06\xd5\xc3'\x107\xd2\xec\xe3?*\xd5\x02\xc4\xe4\x10\xbf\xdf\xe8\x13\x96:jF\xed\x90\xb6 ?\x17\xd8h\x84~y$\xeb\x0f\x90\xb5\xe6_\xe5p\xfc\xad\x08\x06]\xf7#!\x18\xcdz\xb8t\xc7\xfeGw\x93a\xff\xcd\xc7\xfd/\xe2\xfe<\x92I\xe1m\x0f\xe3\x93\xf1`\x91\xd4\xcd\xfc\xd2>\x04\xaak\xf9[A\\\xc5\x15\xa3i\x96\x02\xd3\x06\x81\xe3\x9a\xc2*\x1e#\x1f\xf9[\xa6\xc0ct\xd7H\x19\xe1\xf1\xae\xb0T\xc6\xc8\xd1\xb6\x1a>\xc4dt\x8c\xb1\xbf\xab@\x8fo\xed\xccF\xb3\xf4\x8f\"\x18\xb8\xe7B&\x9cD8<\xb7\xbd\x02\xffIM\x05\xddeiI}\xeaI\xa75\x84\x07\xbc,\x8d\xee\x92\x05\x1b5\x1a>\\\x9c\x0e\xce\xdc\xc2\xd2\xbf\xb6\xf5\xf5\xe6\xea\xe1o\xb3\x98\xc7>2X\x0e\xf0y\xb7\xdb\xf9\xabZ\x00LZ\xa45\x15\xb3\x7f.&\xc8A=\x1a\x95\xa5\xfbO\xb3R\xc6&9\xa0=4@~\xfd\x9e\xa4.%h\x80Hgh$;\x16\xc0\x16\xe5\xd2\xc0\xe4\xc3u\xbb|d\xdcD\x0c\x06\x12\x95k\xc4\x1b\x92C?m{\x19\x017\"\xe2\x9b\x94\xed\x1b\xaeD\x08\xc7O\xe8(lY\xde\x95\x9e\xa8\x9b\xa2|}\xb2\x9d6\xcf?\xea\xd1\x1f\x84\xe5`A\\\xa3\xc1\x90\x07\xceAgD\xb2@\x06\x9e>\xe9\xf7\xb3\xb3`\xd8\xed\xa20\x143\xc9&Yt\x82\xf3\xa0c\x8e\xa5\xf31*\x91\x8f\x9c\x12U\x18+\x0es\xe0\x84\xe5@\x1bX\x0f\x85\xb8\xcb&C\x1d\xe0]\x08\xfb\xc5u2\xe7.6\xb75\xce\x86\xddn\xc7\xba\x0e2\xd2\x99\xbb]\xe6\xad\xb2\x95\x9d\x95c\xa6\xc3\xda\xaa\x10\x95\x0e\xb4Tg8\xe5'X\x1dJ!\x84\xf5\xe0\xb3\x86SF!\xf0\x8a\x1fU\x8b5 !\x0c *\x11\xdeq2\x0fK\xa7!\x8e\x9b\x90\n\x8a\x0eXg>\xa2\xf7Y0\x94\x0d\xc8N\xf3\x13]*\x81\xb8\xeb\xb0\x1e\xf2~\xd6\x1f\x81> \xe9\x80i\xaa\xa4W\x89\xb4S\xed0,\xe3Be\xbd\x9e\xdc\x0d\xc5\x83\xd9\x9d\xf4\x95\x97\xbc\x9fY\x12s\x0c\xe8\x07N\xe55\xeb\xd1\xedv\xa8'\x19\x8fnw\xda\xb0\xb5\x00\x17]3\x17\xfb\x8e\xce\x0c\xce\x18\x0c\xd3R[`\x14N\x9c\x0bQ\x7f\x95\xd3i\x0c\x86\x1e \x9bRG]\xd5v\x86\xde+oH\x1c\xe9;\xd1\xb1M.\x05\xbc\xdb$ME\x82\x94\xb8f\x80\xef\xd7\xd4\x99\xaf\xf9:\xa7\x9e\xf3\x96\xc63g\x99\xe5\xd4\xb9\xa69\xf5\x1dy.4\x18\xc8\xd6y?\x15^\x96/\x06\x1f\x0d~x\xf7\xd5\xb7\x7f\xba\xf8\xf8\xb3\x1f?\xfe\xf6\xd3\xcf?\xf3\x96\xb3\x8f\xd4\x91\x86\xad2(\xd2\x9a\xd58\x1d5\xe7\xc3\x04u<\xe1g\xa3\x13<\xearAQ{\x01\xc5\x84\x9f\x9d\x05#B{\xe6J\x8f\xc3z\xd6\"JSw\xcb\xb2\x8e\x83TE\x12\xc1\x07$<\xa5\xe3\x1f\x0bW=J\xd7\xe0B>\x9a\x8c\"\x1b\xbd\xdcI8 #\x88=\x02\x84\x0ftA\x1d\xf0A/\x96\x88\xa1\x93x\x93+g\x03 \xfb:a\x1fj3m\x1al8X\xc9KOzy|\xeb3\"\x1a\xe2g\x04\xea\xf6\x13\xc2\xe9\x1d\xf7c\xc9E\x16~\xee\xc9\xeb\x80\x92\x83tc2\x89\xea\x9d\xb6]\xcd\x88P\x85b\xaa\x1a\xe5\xe5\xed\xe1z~,\xdc\x18W\x95\x14\xc0\xa6i\xdb\x81\x05\xf0\xee:b3-\xcb\xaf\x8b\n\x0c\xe6\xb6\x94\x032N\x1f\\Y\xf4\x18\xbd\x15-\xf6\x04\xa1u)\x8c\x12\xefv9\x84\xce\xd2*\xc2F+\x01\xa4l\xa5\xc8UUS\x08\xf5\xf9H\x15\"C\x03\xbe\xceK!\xd8S=i\xe7\xcefD^T\x83\xc5\x12\xcc\xe5\x1a\xd5J\x97\x8f\xbaV\"^?\x11\xd0\xa5\xe7\x14$\xb6P\xc6\xe9\x0c\xc9\x91\xb2\x87\xc2\xd3\xe2\xc3\x98\xfarK\x0e\x19\xc2UU\xcd)\x9b\xd2\xe2\xd1\xa6\xcb,\x8f4\x9e\xb4\xb9\x84\x9a\xf6K\x93\xa4\xc1\xb9\x1b\x16=\xec\x8e\xfd\xcb\xcbK<\x00\x18\xd2z)`\xe6\x8a\x8e\xd1\x96\xb2\xc9(\xb2N\xc3\xa5\x16A4\xb7>N\xd6m\xad+\x08\x8b^\x03\xaeQm\xd2\xdat\xca\xa8-\x0du\x0fr\x1d\xb2L\x138\x9d\x00g\xdf\xda\xf4\x1b\xc6Jtmr\x14\x81\x8d\xd6C\xd3BA\x8e\xf3\xf9\xe40\x1a\x8b\x1f\x1d\xd6D<\xcbIaUU QP03\x8f\x0d\xba\xca\xd3\x1au\xe0+\x03\x0b\xb2H\x1f|\xa4-\x86(\xae!\xcaY\xfe\x08\xa9\x90\xff\xdbx \xe8\x88j]\xb7\xdb\x198\xb5\xd9QY\xba\xf5W\xcd\xe33M\x08T\xcb,<\x9c\xd1\x15\xbf\xf6ym\x8b$\xbbJ5E\x98Df\xfdK-\x10\xbd\xa3\x9aJ\xb8\x0c\xc2\xe3\x13\xe6\xc9\xcc\x98\xb0\xaa\xba\xce\x1f\x1f\x9b\xbc9,\x8d\xc9\xb8\xce\xeduY;X}\x14b\x9d\xed\x99k\xf4\xe0l\xe2\x84<\x1a\xef\\\xa6\xb6WW3Hj,\xac\x01\x80l\x8aJRA%\xd5\xb0UU\x95&0\x9bJ\x15\xbd\xd5\\\xf1y\x07f\xec\x88*IfdN\xae!\x90\x9c\xc6\x18\xd9\xa5ep\xad\x17\xc1\x88,j\"_p\xd9f\x84H\x96\xcfhNg\xfe\x92\xc0\x11\xb2\xbf\x1c\xf7\xae\x0d\x1b\xd0\x1fA`\xbe4\xcb\nP<\xc8\xcbSb\xa6\xaf\x83\xe5\xf82\x0cg\x9b\x11yS\x85\xe1\xdeF\x17\xea\x8fpu\xe9_BRuIv\xa2%\xc4-X\x8e\xaf}49\xe8\xf5#\xa3\x87\xbb\xb7C&^\x9e\xbb\xcefH\x8e*\x01\x08\xbb\xee\xd8\x9f\x84\xdc\x89&\xe7a\xc8\xa2\x03<\x86#JV\xeea|\xa982\xda\xed\xbas\xb1\xdb\xf0\xe0^\x0f\x1c\xeev;\xbbPK\xad\xa4\x13\xe9\x96[\x12\xb8Z\xe5/\x0f\x11\x14\x8d S\xb9\x16k\x1aEFX\xe4\x87\x80\x01\xed\xc4\xdd\xeb\xd0M\x82C2\x0b\xa60=_S\xc1\xa8b\xdfM\x14`u\xadgr\xeeD\x03L\x92 9{1\x1e\xf9 \x14\x90\xa3\x9a`\x92\xf4\x02k\xf1aR\x88\x9ev\xa6\xdd\xae@T\xbd\xac\xd7X2\x1f\xeb\x1e4\xa9\xd9\xa3\xb5*\xdb\x1ba2\x87\xf8\xfa\x9dy\xbd\\\x1aC/F~ocL\xfd\x8eH\"\xe6\xb5\x12\x93 f\xac\xd43?\xf1p\x04s\xe3\xec\x9c\x97f\x8c\xcc\x87\xc1\xbac\xbf\xef\x1c\xe0\xcd\x11\xa9Jw\xec_X\xcfax\xa0\xde\xb0\x84\xdc+\xf7\x1a3\xbe\xda5\x0b\xd3`\xf5 \xeaM\x83\xe9\xd6F\xec\x8e\x03\xd7\xd9\xbc\xa8\xf0\x81\x98\x04\xe0\xa4\x1c\x07aL:\\\x0e\xec\x140\xa9\x857\xd3\xd6\xd4\x9d\x05IYv\xa6\x9a\xa6\xcez\x81hR\xaf\x9eD\xe9\x8b2\x99\xbb\x85\xe2\xc2M\x96\xaa(\xcb\xa9\x91f\xdc\x02\xa6\x87\xf5\x82\xd5\xae\x89\\\xd5\x13YU\x0b\x0f\x96gY\xba\xe9X=\x07\x9d\xa1?\x08\x99s \xfei\xd4\x00\xa1.\x15pqsh\x16\xf3%\x98\xe7\x0e\xce\xc3\xc9\xc4\xb9\xfb{\x14F\xce@\xae\x9f\x19&y\xb7\xebf\x01\x9a8\x91#8\xca\x1c\xb6\x82`f\x8d`]\xaa7\x10d\x12c\xb2P\xb7\xda@b\xb2\xa8\xce\x85\xf4\xbc,\xf9>\x1e\x17\x1f\xfcN''\xd3k:\xfd@g~V\x13\x1a\xa0\x91\xb3J@\xca\xe3\xdb^\xc0*\x05r\xa2A\xd7R]\x1e\xdf\x06\x0c\x86\xee-\x18I\x98\xeaw\xe4\x15p\x83Y+\xb3\x00\x00\xbfv\xba\"I7A\x13\x08\xe0]\x1c\x0cO\xe2\xd3\x9b\x93\xb8\xd7S\xbc\xa8\xa4\xf5\x92\xeb\xe5\xd9J,M\xdd\x888R\x9b^\xf0\xc0\xae`g\x14\x9b\xe4$\xc2\x86-\xdf\x02b\x9bL)\x06\x15\x14>\xea\xfe\xa0`\x96\xe8\x0d\xcd\xef\xdb\x1c\x94\xe8\x9dZ%H[\xc0\x0c\xad\xe3\x00\xb0&\xe6XH\x0e!\xa8\"\xa9$$#L\xd8\x99\x96x:C\xb5\x05B\x90\xcf\x93\x8eB7!\x17j\xeb@!\xfc\xd4Xh\x0f\x82N3A\xa2\x16Uu\xcd\x97\xe9\xe3L\x00_\xa6\x0fl\xd6\x9a\x13\x00G\xe2f\x03^\xe5\xd4\xef4\xd0\xdb\xc8\x9d\xdd\xaet\xbd&\xf8\xc6\xc9H\xb0x\xca\x1e\xc5J\x00\xb7\x98\xea]\xed\xd4\xc0b48\x9b6\xe4n\xd7\x95\x13\x10\x80\x0f\xf0E\x1e\xaf\xae\x11\xa1\x12\xd9v\xb7e\xbc;\xd9\x15\x95a!\xfd\xc0\x83\x80!Qg\xa26\x96\x06S%k0\x990&\xb4\xaaft\xfe\xe8\x88\xce\xe8|\x17_\xe5\x08\xae\xb7\xdbu\xc5\x9f@\xfc\xd8z``\x89\xcd*\xc2\x98\xa8\xb1\x9f\xd19\"<^H\xae\xb0\xa1\xd9\xb4\xe4\xd3\xa2\x07\xe4\x14\xe1z\x96@\xe4\x93\xec2H}\x02~U\x81\xf1\xca\xa3\x8d\x87\x1c\x8f\xe3\x83\xf2s\xae\xee\xafd\xa9\x0bSi\x84\nw\xa3\xd8/A\xa6\xa4\x0f\x19\xd8\x83m\xae\xaf\x0cKA6\x17\xa0\xaf\xd5\xda\xa7\x03\x918\xc0$\xcfn\x0b_\x0e\x16\x8c\x8a$\xd9cx\xae\xfb\xcc\x80q<\xd8\x1bX0@\xc0\x00\xe6 \xeeR\xcb\x16\xaaQ\x95w\x93Es\xf4\xfe\xbe\x815\x0b\x8c\xc9I\x83\xedke\x845,\xd62;\x8dOX\xaf\x87E\x0f\xfa=\xbf&\xfc*\xff\x84Ex\\?\x07(\x17\x84\x0e\xf9\"\xbf\xff\xac\x02\xca\x87\x8d.\xf1t\x81\x94\xce9\xf2\xad\x14!\xb6)\nJ=1\x92Z\x94\xb0; \xbf\x88\xecY\xea\x9a\x17\xd2\x1a\xb1\xddSj\x807\xf2\x12\x19D%\x06E\x9d\xfe\x06\xaa\xba\x87W\x97f\xd9\xed\xdcr\xb5\xb5\x8b\xe3\x9d=\xb2\xab\x14\xdf\x13\xf5}\x92G$\x0b\x86\xed\x80{\xc9${Nsd6\xd1\x0e\xab\x80\xa5\xa0\xad\xaa\xf49rg\xba[\xf0l\x93\xd6\x07d@\x14H\x12yh\xe9\x96\xc6#\xffP\xd3\xcbQ\xf4,\x99\xb0M\xbe\x04\xf52\xf4\xf3\xd1\xe6\x9b\\\x8f\xb7\xdf\"\xc6\xb5\x80&\x9a\xa8\xb68\xa0Z\xaa\x07\x16k\xdd\x1f\x89\xe5<\x8a\x1aR\xd0\xef\xea\x15xYz\x94\xae\xd1\xbb\xb6\xa8\xd7&k\x10\x9c\xa0\xd9\x0d[\xe2\xfc\xcdm\xaa\x9d\xf3\xech\x95,\xa7\x9c\xf5<\"\x86\xcb\x0c\xedv\xc1\xf65\x8a\xb0\xa0\xe8\x0f\xe1\xa1\xaa\x81\xc7\x8b]\xe0;[L\x95T%\na\xe74v\xb4\x81>l\x92\xe3\x07\xf2\n&\xf810\xe1 >k\x00\xd2\xb6 \xbb@\x8d\x84$\xb0\xfd\xf1m|\x0b\xaa9\x00\xe8\xaerZN\xb3\x19-?\\\xcdJ\xc9[`7,\xca3\xfcd\x835\xa0\x07\x1a\xdd\xa8'\x1c<\xb7\xa6\xdd=\xaa\xeb\x1a\xe9\x9d|'72\x96H\xb7\xc5b\xc91yhlI]\xc1c=\xd9\xa1\xbc4\xf5\xfe\x1e\x96Ii\x84\xd2\x84}x\x1c\xf3D\x8e\x07\xd5@\x0d\xcd[\x93\x9d\xac\x05\xc9\xc1\xf9\xa9\xa5\x91\x13\x19\x07g\x96\x8eNb\xf2\x89\xad\xa9\xb3)\nAa(U\xf5\xae\xb1w\xd2\x97l\xf0\x1f\x0e\x83@+\xa3\xe1\x94\xc6\xb4\xad\xa9\x82M\xe6n\xcb\x0e\x08\x16\x9e*\xd9\x1f\x99\xa3Xs\xa6\xa4\xce\xcf\x88u\x8a\xc4\xe4\x06$8\xffPZAf\x11\xcez=s\xe9E$\x00\xb9\x1cF8\xdf\x95>\x12\x9cc\xde\xef\x93\xfcth\x8e\x9a\xb3\x13\xdd\x8a\xca\x05V\x0f\xb9Xv\x98\x9e\xf5-/lp\xc6\x05\x9a7s8\xdcAx\xfc\xd2\x7f\x81{\x16U\xee\xd1\x13\x01EiL\xac\xa3b\x8a\x89(-A\xd8\x1f\x98\x8e7\x0d\xec\xab\xb1\xf0a\x00\x82\xe4\x01B0\xef\xbb&\xb7\xc6\x058\xb5\xddG\xd1\xc1\xe4<,\"\x1c\x16=w\xb2\x8f\"\xecz\x078\xa4lS\xb0f4}\x04\x18\xdc\xf7lK \x87\xbb\xce\xbc\x9a\xb3%\xf2\xc0\x84\xc5k\x9e\xd5\xbb\x81\x1e\xe5\xedf\xe8|v[\x94\xe7\nJ\xb4\x91\x10\xfa\xa3\xb4\x1d:\x8c\xc6.\x8chc\xaf\x94\x16\xb5c\xee\xc2\x86\xe0\xc3\xaf\xd8\xf2\x97q\x92\xf2\xccG=\x8a}YL\x7f\xa2f6,\x1b\x88z&\xa4\xca*7\xe2\xd6\xc3\x9bATU\xd5:O[[\xde\xae~\xaes3\xdcu\xef\x04\x1ff\xba\x86\x1f\xed\xd9\x10z6l\xf7L\x1e2\xc0\xa1\xe2\xc9,\xdbp\xd8\xcd`S\xda\xd1\x86\x8b\xabx\xfaAp\x16\xaa)\x00O`\xcb\xedu\x92R\x97w\x02(\x8eO\xd4`\xa9\xdanoo=\xd9\xc8Q4\x86\xdb\xd8\xfe`\x80z\xd4o\x19z\xfc\x1b\xc6R!\x13\x88\xd0\x8f\xe3M[\x8a\xd68c\xd4#\xc1#\x02\xc9n\xf1\xe27\xca\"L\xcb\"\xf5\xe4\xf8\xed \xb4\xac\xb2[\xb3\xb85\x0e\xacA \x14\xc1]\xa7\xc1F\x99\xb2\xf8\x83sw\xec;\x07\xee\xd8\x97'n\xbd\x01\x98\x8b\x88tg\xf3\xa2\x9a\x9c\x87,\xea\xc1\xd7f\xbe\x03<\x16y\xa5\xcd\x87?8\x97\x07\xad\xee\xe5\xe6\x88T\xee8\x98\x9c_\x86,:\x08\x19.\x7f\x95'o\x00\xe9\x00\x03\x9c\xd2U\x86\x8bc\x1c2,\x00C\xe9p4\xf9\xf52:p\xe0\xaa\xa6\xa8\xa5\xdc\xc3\x03r\x9d\xd7\xe0\xdd\xb1\xdf\x873\\\xeb\xa4O\xeaI\xeb\xd3\xbe\x03+\x01\x0e\xfc\xe0\xbco@\x94.\xaa\x06\xf6\xd1fD\x8eE\x96 ,\xca=\xe0\xc7\xad\xec\xf5\xe1\xbc\x1c\x0bQ\xe4\xcc\x19\xbbF%T\xaa\x1e\xd9C\x97&\x05\xaf\xb3_\xad\xd3\x14\xbb\xd0\x1c9\x8ecy\xb6\xc9d{\xf82\xf5\x91n\xcc\xd8?u\xa5\x18^\n\xd1\x1c\x8e\x11J\xae\x82k\xe2I\x18\x16g\x91\xf8\x0da\xd8D\xf6A\x18\x8e\xce\xd4\x99\xa9:\xd4,\xa7\xd9rI\x19W\xa9\xaeN>\x0d\xc3q\xa3p\x18\x8e\xcf\xc2\x90\x1d\xc0\xc7\xce\xe4\xe3\xfe?\x9b\xc0\xad\x8fa8\xf9\xf4\xb3\x8f\xdf\x7f\x1c\x86\x93\x16\x88(\x0c\xa3:\xe3`\xec\xf2x\x01\x93\xd9+\xc3\x90\x95\x83\xf1\x19n\x94\x90\x87\xaf\xce\x01\xee\xc9\xd3\xdd\xf2\xd4\x1dw\x1e\xee\xb3+\x0d\xaa\xc3\xf0\xb6/G\xd98\xa6\xc3\x07c\xe7`0>\x13x\xe6\x84b\xb2\xeb\x13\xe3'j\x1c+!hr\xc9\xafK\x08\x98\\\x02\x1e\x965Q\xff{\xce\x85>8\xd8^\xc1 \xc5\xfc\xa9pa\x0d\x8f}\xb5\xa78z\x15 .\x1a8}\x01Ts\xce\xbd\xb1\x14^t\xae\xcd!\xa9LN\x1e/D*\x9a\x9c\x87(:\x08%\x13(6\x910,\xc4\x86\x82\x06gaXD\x07\xf8`<\x18\xef\x02\x81\x9f\xbf\xe1\x0dx\xbc\x18,\x08r\xc7\x1d!_\x94tYJ%c \xd1,\xcb\xa2\x9c&\x9c\x96?\x97\xb39+\xe3\xab\xab\xbc\x9c\xc5<.y\xb2T\xe4\xe3&\xce\xcb\"^\xae\xe4)\xea\xfa\xaa,\xd6\xab2)\xaf\xcau\xb9\x8c\xf3\x0fe\xbe\xbe\xba/s^\xe6\xab\xf2j\x96\x94W\xb3\xac,V1+\xaf\xf2\xf2\xf6*/\x13V\x943\x9a\x96\xc9r\x81\xc3\xf0\n\x87\xe1m\xcf\x1dw|\xf0\x9at\x1b\x86\xc5\x1f\xa3\x83?\x8a/M\xceKI\x18\x07\xe1DP\xcdH0\xfeB\xbchK\x15N\xcf\x9d W\x89\x9e\x13\x84\xa3\xb6(a \x10Z\x16n\xca\xc0J\xbag)\xa9\x85\x07\xb9\x10\xe5\xf4\xffK\xeb\xf1@\xad\xc5\x03hX\x03\xf1M.\xc1\x05\xab\x97\xdf\xb0\xf6J\xb3\xf8\x9a\xeb\\\xae\xa7F\x9aZ:\x8dq\xad\xb4\xdev\x95\x06\x1by2\xe5\x0f\xce\xc3\xd0\x9dt\xd0G{\x7f\xe8\xee\xbb\xf8\xa0G\xc2\xbe7\xf0ON\x83\xb3\xf1\x1f\xa5\x1cs~q\xb9)\xab_\x85D\xa0\xd5\x8e\xfe\xe0\xfcTz\xf8\xa5\xbe\x98\x92\xf0n8\xec\x87w\xa3\xf9\xe9YtP\xd2e\x9c\xa4\xf8l@\xd6y*\xc6\x96\xc7\x0b\x1f\x9d+\xe4,\xcfO\x07\x8a\xc3\x02I\xd4\xd7\xa2hy~j\xa7K\xb6\xcb\x16\x89E\xae\xc1X\xe4kH\xfbB\xd4/\xcfO;\xbapO\xac#\xf3\x15>\xed\x14\xf1\x95|\x8f\x88\xeaPgl \xb3\xa1\x1b\x16\x07.\x9cx t)zFV\x15\xa2\x1e\x1e\x10u\x14\xb7Un\xe2\x8a2a4 ,\xb33\xc8T\x01k\x12Fxl\x00\xbc\x03\xebh\x1f\xa9\xd7R\x96\x12\"e\xe8bD\xf4\xb9\x8e\xbf\x91g]R\x9d\x15\x1e\x08\xc9\xd6\x9d\xc0\xf1\xd3E\x84\xc5r*\x0e\"\x8c\xcb\xf3\x0b\xeb\xcbA\x84KX1\x17\x11\x16M6\xe7GB\x86\xbd8\x10cp\x11^\xe8\xc7\x03\xf5 D\xad\x8b\xf0B\x00=\x10\x12t \xfe\xe2RW\xe6\x86\x07=,R\xc3\"*\xf7D.Y\xd7EX\xd4\xdfd^\x9d\xc3\xbc\x99\xefV\x19\\N\xb6K\xee\xaa\xcf\xea\xec\x8e\x1am\x88\xba\xab?\xb0\x99\xd5\xd5\x03\xd3C\xd3g\xd1\xd5\x83\xf0@\x80\xbcP]\xad\xab>\x88\xdc\xf0\xe2\x91\xae^X\xcd:ht\xf5\xc0\xfe\xbe\xa3\xab\x8d\x92\xbb\xea\xd3_\x06\x95\xd1U^\xf6\xb0;9\xbf\x8cJ\xf1\xa3%#\xf1\x8c\xc3\x91;\xee\\\xe2\x01\xb9\xca\xa5fN\xee\x14\xa0\x88\xec\xc0\x861 3*\x17\xa2T`\xb8\x97=\x00\x83\x81\x87\x0c\xa0\x84\xd8\xb3-\x81\x0bz\x1d\x9ev\xc2\xc9\xe5\xc1ET\x86W\x17r\x00\x9c\xc8* \x90\xca:\x01\x05\xb5KXX)\xa2\x07\xf5\x0d\xedY\xba\xd3\xcb\xc3\xa0\xdf\xef\x8b=\xea\x7f\xfe\x8f\xff\xbfE\xc1\x06:\xf1\xffg'\xba\xe7\xe5\xa4\x1f\xae\x0f\x87\xa3\x17\x037\x9cl\x90\x18\xd5}y\xa9\xf3\x7f\xfe\x8f\xff\xc3\xce\xba/\x8b\xff\x9f\x8f\x15\x87\xc7\xd7\x02\x06\xd20\xfe/;?\x920\xfeo;-\xf46G\x95L\xff\x7f\xec\xfb\xaf\xf3\xd6\xfds\xe3\xc2!\xab-K\xe6Y\xee\xf2`x\xc2O\xb3\x13\xde\xeba\xa6\xae$\x7f\x9a\xcd\xe8\xc7\xdc\xe5\xea\xec2\x8f\xd9,[\xba\xf8\xcc{ &\x0e\xe8\x0e\xf5\x98\xe5(\xfb\x18c\x92\xf7\x02\xd4\xfd\x08\xf5X\x0f\x9d\x18;\x89\xbcZ\x89-\xab\x9e\x80\x00uBM\xda{a\xd8\xf7\x88!\xed\xe1$\x0c\xa3\xcbsA\xd9\x11Y\xa5\xf6Q\xb6\xe0E\x9b)V\xff\xad\xd4\xc1\x82\xb4\xeak\xec\xe2+%c\xbd\xfb\x90\xac\x82A8\x81\xad\xfc`,\x88\xeb\xe4<\xc4\xe2\x11\x97\x97\x02\x11\x0f\xc6\x97\xe5\xe9\xe4\xfcL\xd0k T\xeeN\xb3\xcf\x97\xefx0\x08\xc3\xf0\xa0\x0c\xc3\x0bU\x9f\xd6\x15(\x8ey[\xca\x07\x85AxwD\x85dC\x90|F\xed\xb6\xb5\xac\x08T\xa7[\xa9\xed\x8e?\xdd\xe5\xed\xe3\xfa6d\xf3\x81\xa0\x05\xfa\xdd\x15\xfc\xc0f\xbb+\xf8\x81\xcd\xfe\xb5\n\xb4\xd1J0\xf8\x0d\xac\x81\x84*Y\x82\xa0\xde\xe0\xe5_\xe50d3\"G\xa3j \xeb\x10<\x82\xc98\xec\xbf\xf1:P\xcfAo\x10\x8c\x15\xd8~\xd4s\xff\x88\xeb,b\xfb\xac\xdf\xfa\xd1fH\x8eG\x95\xf5]\n\xc7\xdeo*\x81\x05C:\xe9_\x88mc\x95\x9a\x83U5\xa6\xfa\xd5\xc2.\xd9Gd\xf5\xd7\xfa\x08\xddBu\x0f\xb7\xc6\xd604\xc1 ,v\xab\x9a\xc2\xe2 \x08\x0bP6E\x07\xa8T\xafFJ\x90\xaf-e\x93\x80\xcd\xe3\x85juS\xbbeD\x84\xd5\xce\xd5b)\xbf\x1a\x0d\xdcj:\xf08\xa0,\x0e'[\xaa\xee\x830*E\x8a\\\xcf\x97\xe6\xcbe$\xe4\x18(/\xb8\xa9`pZ\x17e\xa7g\xa0%?+\x1b
\xa5\xbc\x8b^\x9b\xe2\xf7/\xe4\x19\x9e\xd7H:\xb0 \xb8E\xbe\x85\xb898\x17\x84`\xceW%x3\x19c?\x1c\x84\x83\xf2\xf6\xf66\xf4pc7\x08\xfbQ/\xf4\xc6\xb8'\x88\xcfitP\x9eC\x8b\x06\xa4\xb6\xf7\x80c\xbb\xc9\xf9\xb8\xe3\x11\xff\xe4\xe0\xe2W\x17w\xa3\x1e\x9c\xcc\xc1\xc1\x1cxp\xb3\xda\xd2;\x11<\xb2\xc9\x8dE\xdb;\xf2\xdc\\0\xe0\x83s\xf7\xd7_\xc7R(\x08\x8b_\xa3\x1a]\xd4\xbb\xe0\xe4\x83\xc9\xf9\xaf\x91<\x07U\xcc\xfa\xe4\xf2\xd7\x08\xf8\xf5_\xb7\x18v\x91}{\x03\x0d\x07\xc1\xf8\xe2r\x13\xca\x1d\xf4\x8f\x0f\xf2\xf5\xbf*\xc6^\x0e\x94\x1c\xa79_Y\x03\xb6\x83\xe7/'\xe7O\xd4\xf8\xbcFa<0\xa8\xe5\xad\xf3TQ%\xf5\xd6:\xd5\xa9wU\xf1\xbd\x85B[<'x#\xac\xd1u1_\x92\xcdU\xae\xf0\xf4\xcaV\xda\x88>!\x82\x0e\x9a(\n\x03_7G\xbcZe\xc2\xf0\xea\x02\xce\x10\xaf.J9(\x0d\xe5\xe6 \xdc\x1c\x92\x10\x04\x84\x83-\xe5\x0b\xb8j\xb9\xde\xed\xaa\xa5u\xb1I]e\x15\x8b\xd9\xb8\xbe\x95!\xc9\xc1\xb1G\xf3~\xb2\xf4\xef\xd2\xbc\xb2l\\\x19\x06\xbb\x93\xcb\x92\xd1[g\x9aZ\xd5=\x92\xbb\x95\xcbTl\xe7n\xe7\x01#\"\xc8!\xbfH\x13\xa4\xbf\xae\xe9\x9a\x9an\x82\x89Q\xb0Q\xf7%:#\xfbj\x04\xf8c\\A4^m\x8f\xb7\x01\x81\xc2\xaf\xd5\xb3\x12\xa6o\xa8R\xf5\x80\x93\x0f\x97KY$\xb0t\xbd\x84\xab&\x05\xd6\xfe\x84\x9b\x17.\xe4\xc5o\xab\xb0\xc0\xa6F\x0e\x89nc\x1b\x96\xf2\x87i'-\xe6K\xdc\x1e\x1f0\xcc\n\xb8\x15T\xdc\x81$\xe3,\xd8\xf4\xb6\xeef\xa5s\xa7\xf4\xae\x115BL\xe6u\xear\xec\xc1\x17l\xe5\xfbJ\xddp\xda\x99\xbba\x87Hq%K+\xd38!\xaf\xd2\x86\xe3\xb2\xf4)Pw\x97\xa4OVU*v~?\xaf*\xe1\xfc\xb7`V\xb7\x06\xcb\xba\xda\x98\x91\xd9\x133\x82.\x840%\xd3\x8c\xab\xd5n\xd7-\xdai@\xac\x87\xbf\x85\xa7{\xee\xaa\xfb_\xc5{A\xfd\xcf\xc3V\xcd\xa6i\xdf\xe1\xcb\xe7\xf8\x0e\x97\xaa\x98\xa6\x17~\x17\"\x95`\xed_!|w0\xc0\x93a\xb4\xd5\x1d\x13\xe1\xa7u\xb1z\xeb\xbbKI\xae\xbd\x11\xf0n\x97w\x94\x8fE1W4\xe0\xc6-bS'\xc9\xa4\x0b9\xe9\x054\x1f\xef\x9f\xaerzv*\x1a\xec@\x07\x03\xb4\xdfk\xd4W\x87\x18\xea\xfdX\xb8\xb9\xd8 {\xfb\xe8l\xbf\xe7\xb21\xf5\xf5\xcds\xdcC\xa7\x03\x01\xe5\xect \x86\x0c\xf9\xa8\x86}\x86\x9e\xcc\xder\xba,\x1b\x7fyZ\xa7\x9e\x85loC\xab\xd3A#\xe9\xd2\xf8|\xd4\xdd\xad\x1dek_\xf86\xabm\x86QGY\x1a_\x9e^\xefmx\xe5$\xb3\x00\xedmvdR\xbd\xcf\xbd\"]/\\\x86+t&\x1b\x02\xe5D\x1b|\x05\xa3\x9d^]\xe7\xee\xee\xea!8\xd2\x18\x9d^\xe7\x035V\xd79\x8c\x82T\xe04Q\x87\x8fQ\x96\"\x1f\xadSm\xbc\x84NQ/\xef\xb9\xbc\xdb\x1d\x895<\xdew\x806\x89\xc9c=\x08{$\xa6X\x00\xecQ1\xd4\"72\xf0\x13N\x97\xf6\x18\xa7\x89jx\x9a@\xab\xc1\x7f\xeaUvW\xe7A\xa7 [\xad\xb9\x83z.\x1d\xef+\xff\xaa\x01B\x8e\xaci\x7f\x96\x14\xf1U*\x93\xa4\xe3J\x0d\x03\xed\xf7\xdc]=w\x06H5\xd2AM/m\xbaU+\xd5\xa8\x15\xb4IiI,\xb5<\x07\xe2yy\n\x97\xa7\xce\xc4\x90\x9f\x0e\xe4\xf3%&\xe8\x14\n\x9c\x85\xec\x14\xaeR\xd5CQ\xbfrxU\xd9\x90\xac!\xcfn\xed6\xf0\xdc`\x1d<\xaavLi\xda\x8aW\xc2\x15\xae\x8c\x11\xbfF>\xe23=S.\x97\xde\n\xc7\x97\xa7{\x1bV9\xf0\x02\x88&\xd3+t&\xd0G|;\xbb\xc4=\xda\xbb<\x1d\xc0\x8b\xa8\xacP,H\xdd \x99\xa2FF\xbd\\V\xcd\xe9\xa4K\xf5\x9d.\xcf.\x1b>-t\x0eXy2\x0f<^VWO!\xeaU>8\x13hz\x95\x9f!\xed\xf8A\x83\x9b\xd1TA\x13O\x97\x95f\xf3Td#\xe5[\xdf\xa5\xc1\xdf\xdbW\xd7\xd5E\xf7\xd6!\x91\x0c\x97F(\xae\xc3\x0c)?S\xfb\xa7\xb1\x03\x961h_P#*H\xd1\xfe\x89\x85\x10y/\xd8w\xa4-\x8c d\xe2\xb34\xff;\x03\xeb\xbf\xd3A|\x86H^A\xbc\x88\xff\x9c&^\x9e&\xcb\x85S\xe4S1\xc9\xb4BN\x9cr\xf1\xc8*t\xd9j\xe9\xa5n\xa9@^t \x0d\xdd5\xf80\xf2\xd0n\xa5{\xb1\x82\xf9\xcb]i\x91n\xda\xb8\xe2\xd0\x06Z@\xdc\xb16&8\xb49\x95\x82x\xb6\xa9\xe9V\x95\xf6\xec*\xea\x80z\xac9\xa4V\xba\x85Y\x08\xe9\xf6\xde7wQ\xb5\x89\x16\x94\xb2`SU\x05\xcd\x938M~\xa1\x0d\x13\xd8\xa6;\xd8vP\x9c\xd3I'\x1c\xc4\xfd_\"\x0f\xcc\"\x93\x86\x85\xff`\x12\xae\x0f\x87\xc3!\x98\xb3\x1e\x7f\x11\xae\x0f?\x97/\x9f\xbf\xfa\"\x0c\xf7\xa5\xd5\x1e\x18\xed\x19\x93\xbdI\x18\x9dKs=\xe5\xb7\xb5\xdeB\x0b\x91\xd2G\x10\xb5\xf4[z\xc7\xdf\xc5s\xfaNl\x0d\xb5\x87\x8e\x80\x12\x15T\xc8t\xac\x15\x1a\xc9eX\xf0\x8b\xe6\xf3\x84F'\xb3l\x93\xf7z\x84\x05\xb4\x87\xfa\xa8\x97k\x9f\x19\x8f\x800j$\xad\xf5V\xb0\x02u\x08\x0d\xaf,\n\x86\x98\xb0\xaaP\x8d\x0c6U\xcb\xed\x85=\xe2\x8d\x93\xc4v\x17\x19\xe1\xde,\xbf\xcf\xd7\xccDS\xb9y\x06G\xd4\\=:\x10a\xb03U\x9e\xb5/\xd5Y\xfb\xe3y\x9byL\x9dv^%m\xd2;\xfeV\x83\x12\xf0\x17\n\xbe\x18\x93\x85J\xbbO\xf5A0\xc4\xb9\xdb:\x04\xbe\x81C`\xf5\x0d7\xf2>pll\x95\xd09pe\x80\x07\x9d\xe1\x13!\x18\xc8\x92,\xc8=\xb9!W\xe4\x96\xdc\xd5f\xd2\x1f\x9af\xd2\xd2\xdb\xed\x07\xf0v\x9b\xcc\xdd\x95\n\xc2\x7f\xfd\x1b\xe5$=\x8e\xcf\xc92Y\x01\xcb\x1fu\xbb\xeem\xf0\xec\xdcJ:\x82\x11\xd0\xe2\xd1\n\x93\x8e\xe0bn\xcb\xb23\xd11r\xe4e\xf6\xfa\x9e\x90\xba\xf1\xa8o\xe86\xee\xfe\xa8\x1b=\xea\x12\x8fu)U\x8a'Q\xadc\\)\xb7\xe6\xf8\xae'\xaaCHJ\"\xc5m\"xr\xf5u3\x8d\x0b\xaa\xda\xe1\x1b\xf7Y\x90x\x9d#\xffN\xd1h\x83t\x82\xc7;i\xe5S\xed\xde\x91Y\xf1\xa6\x90j\xe3\xc5J)D0Yy\xe0\x15\x97|Y<\x9ck\x1b\xa9\xb5\x13~\x85\xcf\xed\x16\xc1\xf8m7\x07\x04\x95\x95\xd4\xb4\xaf\x80\xd5'+\xad\xc6k\x83\x90c\xef\x83\x8b\xf7\x00!\x92\x8a\x9f$X\xedt\x8d\x9c\x80\x9f\xe2\xb4]_\xcd=\xed\xe8\xdau\xdb\x0f2\xd9\xc8$\xbf3T\xae\xb5W\xca\xf5s\x1eU*\xf6\xec\xce\x1a\x04\x17\x97b\xb2\xd6-\xdc\xf6\xa3,\xdb\x07\xf1\x82\x0b\x95a\x92G\xb2Oq`2K\xc7\xca18\xb4\xfc-\x9d),g\xcau/F\xad^d\xa2\x17\xebGzPmM\x98d\x83\xa7d\xdd\x9e\x1dkE\xf8\xeb\xa0n\x90\x85X[\xc0,\x89k\x0b\x1e,*\x98\xecY\xb0\xf2TP\x172\x0fVR\x0bB\xae\x83\x95\xf4\xc0\x0f\x03lG4\x90\xc3n\x0f\xf3B\xe7\x10C|\x1f,<%@\x90\x9b`\xe1\xf1\xb8\xf8@\x96\xa2\x88|\xeev\xdd\xab6\x96jy\xe4\x1e\x93\xeb\xf1\xc2\xa8\x0e\xd59D\xfb\xc8Mg\x80p~\xa0\x96h\xa4\xd0;\x1e\\\xf5\x90\x83z\xedd\xd2H\x80\xa7nw;\xcd\xaeX+@\xb6s\xe9\xda!~\xc1\xce\x8f\x0f4\xa4\x91\x01c\xdf\xf4w\xcd\xa49P\xc3\xad\x93\xf8\xf5\xaf*\xec/{\xc1\x15&\xcb\x9e=\xf7\xba(\xb9\xc6d\x0b\xcf\x8c$\xb8$7\xe4\x1e\x9fl\xa1\x07\x88\xa2k\xb1\x11m\xd17Ajw\x107\xc1;\xae\xd4yw\xb3D=A\xdb\xc5j\xe9\xefa\xaa\xb8E\x8c\xc0\x93\xb0@\xcfu\xa03\x8d\x1f.\xee\xcbV\x9d\xb0\xde\xe8\xf4\x835mt\xc2z#9O'Xl\x9b\xbd\x1e\x8b\xc4P\xc1\x11\xa4\xfb|\xc8r\xf8\xc6\x0ful\x8d\xfdu\xdd\x83\x19\x9d\xc7\xeb\x94\xfb\xe6\xd4m\x1f\xce\xed\x9c\xdb\x84_;h\xbf'7\xa2\xde\xbe\x94\xa5\x9d\xdb\xb8\x80`\x85\xf3l\xcdf\xde\xfeC\n0\xc5v\xdcd\xc9\xcci\xea\xc2(>ik\xc1h}\x02yWmq0\x10V\xb7\xd1\x17;d@\xcd\x86\xc4\xbb\xd8\x90X\xb3!\xf9\x7f\x05\x1b\x92\x1b6${\x06\x1b\x92?\xcc\x86\xe4\x8a\x0d\xc9\x80\x0d\xd1\x8e\xc85W!\x8d\xf8u\x9cA\xe3|\x12<`Z\xee\x16\xc1A\xa2tl\xb8\xc5|\xe4\x9a\xf9Hz\xa2\x92\x16\xf3\x91\xdb\xcc\x87\xaa\xddOz\x01\x97\xe7\xed\xda\x8aDF\xf9\xb1\x16!d\x81\x85\xb7#\x0b\xb4Zf\x01\xa9-\x97\x86/\xb94y![X\x9d\x1b\xf6\x027\xe0\xc8nK@R\xcekA\xdaQ\xb7\x1a\"YH \xa7\xcf\xae\x90.UA\xba|~!3\x0d\xb2\xa8\x11ww4\xee*W\x99\x84tj\x7f\x10S'\xbf\x08\xc1\xf8\xd9UKr\xf4\xd0t=\xb5\xde\xf3\xff\xd2\xf5\x9eT\xf5=\xcc\xabtK Bq\xbb\xac\x15\x80Uj\x01M\xbcU')\x9c5\x9b\xd1y\xc2\xe8\xcc\xc9r\x88n\xac\xe2\x85J\xbd:\xea\x98\xb8\xdd\xbf\x11n6\x97\xa3\x81z[A\x86\xf5\xe5N\xb9\x8c)\xee!\xe2\xc8\xea\x1cz\xb7\xa2SNg\xaa\x11\xba\xa3\xf5\xc1\x0b\x976=\x84\x07\xd22\xd3\xf2\x91x^\xc7\x0b\xdaGD\xba\xc2\x15\xe5\xb5\x19\xbc\xa8Os\x0f\xb2\xa8\xd6\x07\x8b/\xc6O\xab\xfa\x04\xe3\x0f\x1f\x96q\xce\xbfN\n^\x987\xe9\xa0U^\xd3P\xc7\xb5\xb2T\x8d&\xf2\x1dt\xbe~gT5\x08R\xf0u!^\xd7\x85\x15\xb1\xc1\xf3<\xeb\x00U\xd20H#\xcc\x1eq\x8b\x13*\xcb\x8d\xe1\x85\xfcME\xa6\xd7I:S\x95o\xaaJ\x1d\x7f[\x87\xdb48\x93Hj\xf3mn\x0eG\x8c6\x87\xd5.\xd0\xa1\x1e\x8b\x97;H\xbe)\xe3\x88\xefNN\x7f^'\xb9&\xd7\xd4pju\xb7X\xcd\xbd\x8d\xad\xe7\x89\xac \x821;\xd9\xf1!\xe0c{\xa0\x98v\x90_\xd7\xe1\xc5\xabUz\x0f[+1\x07\xbd\x9dQ\x10\x049\xf4\x9173`\x92W~]\xba\x82\xf6\x9a\xb9\xc4\xaa\xd7)\xbd\xa1iYJq\x1c)[\xcb\x1b\x9av\xbbH\x1e\xce[i\x8f\x8d\x0edp\x96\xeb\x02b\x94\xef\x03\xb8}\xb1\xc3\xeeK0\xfb\x08\x9f\xb0\x89\x02\x14\x8d\xebG#%\xda\x8d\xf3\xeb\xef\xc1\xc4\xfa\x10\x11*\xc5\xf9nW\xf9\xd3\x91\xe4\x19\xb2\x8e\x99e\x9c\xdbx\x91\x87\xe3\xaa(\x04\x890\x9f\x04xx\x8b|\xdd\xe1\xc0\x1a\x04\x97\xd9F\x14\xe3\xc6\xdbn\xa8\xf2[\x0d\x16\xe3\x8az\x16\xde\x02L\xeb\xdd\xcc\x7f#\x17\x86\xf0l\xdb\xf8\xd5\\(\xfa\xab\xd6@[\xe1\x0c\xb9\x93H7\x1c\xcd\xf2y\xc0&<:\x11?\x81@\xb3Ll`\xb0\xb7[\x886\xe1\x91B%F\xb2\x06\xa2%\xdd\xae\x9b\x04\xb9\xf5\x15\x93\xa4\xaa\xb8)\x1a\xb0-<\xdb\xd5p\xf3Y\xdfS\xdbn\xf9\x16\x84G\x9bnr\xff\x0bm7eu\xe3\xad\x8dpg\xeb\xeb\xef'\xf6\xaeY\x13:\xc1\xdaX\x1f$\xdb\x07\xcb\x92c\"6\xfeFJU\xe5p\x0b\xad&O\x01\xc3\xa4\xb1{\xb9\x1c\xb6~\xd2\xd8\xb4[\xa1p\xea\x11d\x0e\xb0\xafJP\xe3\xb2\xb2\xab\x940L\x98-\xb5\xd9\nR\xc9\xe8\x8b\x82L\xe95q\x93C\xa0\xb5$\xd1\x8e\x9a\xc9@\x1d\x89\xb7\x1a\xd0b1,\x00\x0d\x91\xaf\xe0\xc8og\x05\xed\x1b\xd9\x12Hv\xef\x12\xc0\xcc\xecHo.\xbb\xa7\xf3L\xe4\xe8D\xe3\xe7g\xddmV\xd5\xea\xcd\x84F\x04&\xd0gFK\xf7\xe0\xd8\xc8m\xd4\x92\xe1\xb6#\x1e=!\xf74\x04\xc0\xff$\x19\xe8\x19u\xfcny\xe8qI\xe7d\x9b\xdb\xb54B\xbf\x87\xe7U`\xfe\xbf\xc6\xf9\x8aA\xfa\x1e\x14D\xc1Mjp(7\xb2\x97H2'\x8aK\xc8\xf1\xde>d\\@\xd2\xd7p\xad\xf7\x1a\x9eS\xf5,\x1e \xbb!\x94S\xf8\xfeN\x1dE\xde\xd7\xd5\x05W\xf0\xac\x8f2\x1bDL\xf1\x83M\"\xd6Bv3 DV{\"X\xf5\xdbT\x9b\xf9K\xac\xd5\xe7\xc9\xe4n\xf7\x87\x84\x16\xe4\x83\xf9\xb4\xa0\xdc:\x83\xfe\x8cJ\x97\x92Y^\x90\x8b\x07\xf2\xbc\xbb_^eiA\xbe3\xdfk\xd4m\x9eh\x93w;\xb2\xac\xd4\xc7\xaf\x8a\xcf\xd9zIsAe\xc9\xe7iP_-\x85\x1dn|+u\x19\x1bjr N~\x9a1\xf0\x06\xad\xdfo\xf3\x84\xeb\xe7\x9b8]S\x9fU\xd8\xa7b\x17d\xe4{ U\xec\x84\x82\xfa\x8a\xc1b\x028\x9c\xae\x07b\x99|\x97\xaa\xbd\x860\xdc\xed~.\xaad\x84OX\x04\x0b\xfe\"\xc5u\xb9l\xee\\\xa4.\xc7\xf8\xdd\xc3e\x8cQ\x05\xf9\xd8T}'2|\x80\x92J\xcd\xba\x97\xc2\xf1\xb4\x85p'\xcd\xed\xccp\xf5\xfe^j\xc9:\n\xe0}!\x95\x13\x1a\xdc\xdb4@\xee\xd8\xd7N\xe9\xef\x8e\xa6\x9d~\xdfyK?\xcb\xa6\xfd\xaf\x98\x18}?\x0c\x8b\xde\xf8\xd4\xddL\xb3\xe5*c\x94\xf1\n{\xe0a\x13>H\x1fQ\xe0_\xb3\xac\x015\xb3\xbb\xb5\xef@|f\xbf\x9c\x0e\xc2\xf0\xf0\xac|\xb2\x90;\xf6\x07g\xa5r\xe6\x891F\xca#\xc0\xa7O\x98\x1bH\xad\xa6:g\xad]\x04\xa8\x84\xb7\xeb\x94\x06\xc6208s\x05+\xa3\xf4\xf6@)\x18\x7f\x9f\xad\xbe\x94\x99\x95mD|C\xbf\xacM\n\xb1\x7f(\x8a(\xddt\xeb#\xd9\x0dHe\xdeJ\xd7\xfb\xf2o,4\xd3\x0e\x0d\xf2d\x91\xb08\xfd\xb2\xee\x9b\xe9\x1a\xb6\xb4\xbb\xb9F\x1fI\xcf\x1a\x03\xf29\xbb\x8e\xd9\x946l#,D{\xb0\xa2\xe0\x11 :\xd9\xbbJ\xd8\xcc}$#~\xac):9h\xcf\x9f6\xbc\x98f\x8c\xc7 +>\xd5\x08\xb4e~\xf1\x96.>\xbf[\xb9o\xd3\xdaz\xc7B\xb7\xc1B\xf0\x8fh\xb1L\x10\xd6q\x97,\xff\x02\x82\x9a\x7fB\xe7YN\xbf\xac'\xdfl\x91T\x87\xea\xb7\xea\xb9<\xff\xe8\xa3\xb1X!{\x1b^]\x12\xb4D\xb8\x0e\xe4t\xd6\x1f\x8di+\x9e\xa0O\xab6\x02\xb1Fw\x0b\x92\xe3M\xc3\x80\xb7\xfb\x91\x1b\xcez\xf8d\xb0\x90\x97\xebqp\xa66\xffy\x9e-?U\x96\xd2\xae\xda\x03\xb8\xcb\xc9\x08\xae\xaeX\x10\xe2\xe5J\x14G]\xdb\xaa\xa9\xfb\xf3:\xe3\"y\x1f\xedc\xe3\x8co\x93\xcc\xfc||\xb9\xb7\xc9\xab\xc1\xde\x86gb\x84.\xfdK\xe5\xcc\xbeN\"B\xe6\xf2)\x011\xcf\xe7\x04\xf0\xda\x8e!\xcb\xa4t\x97a\x92U\xf34\xe6\x9c2\xd5\xebB\xb1\x03\xa0\xc7\x1e\naQ\xed\xe3\x93\xc8x\xb2\x98D'[\xdcp}7G=y\x9e\x07C\xd7\x06\xaf\xb8_l\xd9r\xc7\x9c\xc7\xd3k\x9dC\xefa@J-\x8d\n\x0d\xce\xec\xc95s+%L\xcb\xb8\xac\x1f\x0e\xc2\xf0|\xef\xa07\xf6\\\\N\xc2hS\x81\xd5X\x18\xeeu\x11\xae\x8a\x03\x17\x1cA\x84\x0c_b=\xc1\xedV6f]F\x1b\xd2\xbaY\x1d-_\x19\x18B\x10\x9f,\xe0n\x8eIR\xe3a&\xe5\x08\xa9\x90\x1d\x9d\xc4\xa7&\xa0w\xdc\xeb\xe9N\x15\x01\x9b\xc4\x11I\x03\xee\x16\x98L\x8d\x05\xbc\x9b\xf4FXCJq/\xe9\x8dNroV\x0fL\xc3V>!\xd3\x1as2\xb0\x8eS\x01'\xf3\xa0 Y\x90\x92$\x98V\x8f\x94\xdf]\xba\x92\xbb\xd873i\x1be\x85\xf4\xe4\xe3z\x87{\x84bT\xbeD\xa2Z\x1b\xed\xd6\xcc\xb1\x8b \xc3\x15\xbd\xe3y<\xe56\xee\x01@\xab\xea\xceP\x91\xa5G\xb1\xc4\xe0fc\xe2\x1a\xb6s\x8d=\xc8t\xeeo \xbf6\x14\xab\x81o\xf6>\xd6:\xfa\x8c\xd34\xbb\xa5\xb3ofuIP\xe1\xf3\xb2\x14K\xa6qk\x137\xd5\xf4\x93V\xffpd.\xbe\xb4\x8a\xfd\x94%\xccE%\x12\xd3\xf8,\xea\xc90A\xcbd\x810\xc9D\x1f\x13\xb1N%\xfe\x99\x18r\x10\xbc\x11.\x00\xc6'x\x93\x19\x1d\x8f\xc1\x85\x82\xc4\xea\x9e\xa1\xc8\x9b\xd7\xf7\x06M+\xf9$\x86\xb0\x8a1\x84U\x8c'/#\x81\xc01DK\x8c'\xc7\x11\x99\x06\xf1\xe4Et\xc2\xba\xddD\xdd\x8e5\xad\xf4\x99g\x9e\x89`$\x8bw4\xa5\x82q\xf0\x99\xd7x\x97_\xfd\x8fS\xf7{\xf8\x7fS\x91\x9fR7\xc5B\xc6\x87O\x98l@`\xcd)\xf3\xa7\x15\xae0\xb1\xbaY\xed\xea\x99\xe1\xdfRM\xc0d\x98\xc0\xe1 =\xd5g)'\xb4^\x9c<\xc8&4:\xe1\xddn*\xa15g\x8ecL\x92 \x8d\xccg\xf1b\x0c@S\xebT\xef\xa7T\xd1\xd4\x8e\xa6\xa5\x9b\xda+\xd0\xc0\x9d\x84\xb7\xfd\xa8\x87\x95oDw\xeco\xdc\xc9y\x15\xf5\xc6\xb8*\x91;9G\xe2\x11\xe1\xc1\"Y\x12\x16l\xb4Z\xd8\xba[\x1a\x80zT\x87\x9a\x83\x9b\x9d\xf9\xe4(\xc2l\x92OFQ\x14\x88\x17s\xc9'\x9f\x1cF:p\x9a\x102i\xf0\xe7w\xdf}\xab\xceC\xe0c-\x16V\x1a\x82\x0e\xfb\xe60ee\xfa\xbe\xc5\xf6\x11.Y\x95\xcc\x15l\xf9\xc6fv\x9a\xb6\xda\x01'\n\xcf\xe3\xa2H\x16L\xaa\x89\xa8W\xac\xe8\xd4K\xd8\x11\x9c\x81\x0e\xacm7b\xbbl\x83w\xd0\xcd\xcenY\x9a\xc53\x08+\x0e)\x0b\xca?\xb3\x12\xddV\xc6/\x92\x94~\x1b/\xe9Vf\xfd\xc1\x05\xc3\xe6&\x88M\xfb\x0cZC\xfb\x8c\xc2\xad\xad$c?\xe4)\xb6\xa9\xdf\xa39\xcd\x99\xb6\x9c2\x18\xc56\x80\xe6'Q\xe2\xc7\xbc\xdb\xbdM\xd8,\xbb\xf5>I\xb3+\xf3\xf2\xc3\xdb\xaf\xedg\xe5\xfaK\xce\xfa\x0fo\xbf\xb6\xc2\xf0\xd2[G\x94t'\x80\x82r4\x93\xf9\xfdV[\x08\x1c\xc5\x1c\xe2H\xc7\xd0\x8bW\xab4\x99JG\xbe?\x15\x19C\x95a'\x1e\xae\x18N\xddw\x8e\xf0\xe6\xe1\x8e*\xc3\x9bG\x87o\xbc3\x8b\x06\xef?\xfa\xb5,Q\xb6\xa2,^%\x9e\xecH%\xc4\xd5\xaf\x1e\xd2 |\xfb\xb0N\xe0\xb3g\xe8\x04\xbe~B'\xf0\xcd\xd3:\x81/\x9e\xab\x13\xf8e['\xf0\xd5\xef\xd6 (\xa9\xf3\x87-\xf2c\xdf\xfd\x01\"`6\x1a\xb1y\xb7\x93\xbc\x82N\xd7y\xc2\xef\xdf\x81\x13\xdc\xa2,7\xca\xfb\x9a\xf4\x8a[46c\n:9o\x19\xaf\xe0\x0e\xfbF\xb3\xe3b\x12r:w\xd9$\x8f\x80\xf9\x9b\xe4QYN\"\x19\x7fy\xa7E\xc8m\x9c3\xf7\xf2\xdb\x8c9\xf4.)x\xc2\x16\x8en\x8a#\xabvr:\xa79eS:\xf3\x1d\xc1\xe9{\xce\xbb\x0f\xc9j\x95\xb0\xc5%6\x86^\xd9\x04\xdd\xf5gI\xb1J\xe3{\x81F(*K\x1d:U\x0b\"\xdf\x8a\xd1\xfe\x0c4\x17\xd8u\x9f\xd0\xa4|\xd3\xd0\x8a\xfc\xd2\xd2\xa4|\xdd\xd2\xa4|\x0dP\xbfx\xb8\x8c\xd1\xa4`\xb1ug\x98\x80\xe8B\x94\xa4\xf2\xd5\xcc\x9f\x17\xbd\x9cX\x1d\xf0cRL\xb3\x15-\xfcD\xec\xe6\xd8\x9b')\xa79\x1caJ6\xb2#d\x11,\xd7\xc7'\x0f\xad\x8f\x9f\x1f^\x1f?>\xb9>\xc8\xdf\x9e\xccR\x90/\x9fXB\xffxz \xfd\xe9\xb9K\xe8/\xdbK\xe8\x93\xdf\xbd\x84\xc8_\x9fT\xab\xfd\xa31\xb1\x7fi!\xc3\x97-d\xf8\x12\x90\xe1O\x0f\x97\xa9\xd5j\x7f7U\xff,2\xfc\x0dJ\x92?\xa7\xb6\x0e\xc84*#I\x90\x9f\x8d\xc6r\xfa\xfd|\xfc\xa3\x84\xeesR[:\xf6G'\xf1Y0<\x89\xfb}\xecf\x01\x9d\xc4\x11\x86\xa307\x1fg\";I\xb0\x9f\xb9 \xc6ei\xe2e;y\xb7\x9bt\xbb\x9f\xa4*\x03I*EX\xfe\xb9EX\x08\x98Y*\x96\x86\xde\xadb6\xa3\xb3\xa03\xd2\\\x0d\xcdc\xc9\xd8\x08\xb1B\xb23j\x8bg\xb0\xad\xab%+DCE-\xf0 \xf5\xe8]\xc2\xdf\xca\x97\x96(m\x13\x9e\xc4\x04d\x8f\x83d\xc2\"\xd2\xa4K\xb1Y%\x7f\x8am8\x89\x80S\xd4Bf\"#\x0c\nx:}\x80\x98\xf0\xdd\x1f\x041a\xd3\xa7(\x05\xc9\x9f\xccR\x90\xec\x81<\x9a\x98$\xd3'\x89I\xbc#\xcbNbRL\xb7\x88\x89\x10\x18~'1I\xa7O\x11\x93dj\x13\x86b\xda$&\xd9\xb4IL2\x88\xe0\x1f?\\\xa6&&SS5\x17\x19r(I\xd6\xd3\xe7\x11\x136\xfd\xf7\x12\x13:\xb5\x89 \xac\xbc\xd54\x00\xaa\xb2\x9b\xa4\x80J\xa5!\x1aiO\xb5\xf7+*\xcd\xa1\x02-\xe0$\xc5\xa7I>]\xa7qn(O<\xe5\xc9\x0d\xfd\x8e\xd1\xef\xe6\xc1\xb0Ey\xd4B\x0e\xb8\xb7\x97\xd3yYZ\xa2R\x1e\xdf\x02\xcf\x13\x1bz\xc4IgTkY\n\xfdqI\xf3\x05\xfd8M\xbfS\xa2\x81)\xd8\xa8\x82d\xc6\xf9W\xc2]*^k\xe2\xc6\xf5\xcb\xf7q\x0e\xda\x15\xab\x06Lr\xaf\xb8\xcen?\xb7-\x99\xd4\x027\x86\x02\xcbF\x91\xad\x12\x18W0\n\x82\xc9\x17\xe3`\xd4G\xf6\xd8\xd0\xea:.\xde\xdf\xaf\xec\xdb\xabf\x98\x83 \xa0e\x99e\xaeI\xc1J\xd5\x03\xeb\xc8\x18\x8bS\\\xa9\x0e\xb6#\x94\xcb\xa6\x19\x01\xca\x9a(&X\xb4\xa9z\xeb\xe7t\x8e\xb4{d\xb8e\xac\x1c\x1d\x96e\xa6/\x96\xc9\x11\xc5\xdd\xee\xfb\x18n4\x83l\xd2\xf8TO\xa3-\x99\xb2\xddB1\xf4O\x1e\xe4\x97\xa5}~o\xb4\xbb\x9d\xda\xf6\xb3\x93e.U\x16\xf1z\x85\xc9{\x18ZQao<\x7f\x89\xb7\xb6-\xcb?\xc6_\xe2 \x03\x1e\xb8\xaeE\xac\\\xa3\xeeU\xe7\xc21\xbbG\x15(\x8cEk\xe7Y\xbe\x8cy\xc0\xd4\x83L\x14t)`\xf0\x07\xf6\x15\x85\x1f\xf1r\x05\x03\xa8\x9e\x1a\xc9E\x9d^\xe8\xa1Z\xe5t\x1as\xb1\x83t\x98\xf5\xaa\x8fd8\xa7\xb9\x18E\xf5D\x0c\x16\xe6,N?\xcb\xa6\x12d\xfd\xaa\x0e\x88`M\xc7 \xe3EP\x14\xa6\x1f\x8a\xa5\xfdBv\xc7\xea\x9a^\xc8\xdf\xe7\xc92\x11\xe8\x19\xfc5vY=UF\xef\x01\x86\x000\xa9\xf0\xa4\x96-\x8dg\xdf\xb1\xf4\x1e\xba\xa0_\xe4'A\x9e\xa9\xf9f\xde\xacV\x06L\xfe\xadqc\x9a1N\x19\xff\x9cM38\xd3a\xed\x94F\xb6o\xe8,\x89\xdfKtj'\xc9\x8c\xcb\x84}\xc5\xe9R\x8c\x94~T\x1f\xe2;\xf3A=\x12\x97yB\x9e\x17[JY\xc2*\xd1\xaf\x08\xc8mk9v\xea\xf5(\xdd\x88\xd1\xe0L9\x08\x10\xd23\xd8w\xc09\x05\x1e\xd7x?\xd1\xc7\x0fr\xc7\x87L\x91\xdf\x80\\\x96\n\x8aI\xeav\x0d4\x93f\xdc\x97\x02\xd4-\x90\xb89\xed0H\x8dZ\xea6I\xf9\xd1j\xfcX\xc2\xf0)\xd6\xca^'\xcb\x1d\xa4\xbcxC-\x1d\x854\x9a\xa8\x80\xc73/\x99w\xbb\xcc\xe3\xd7\x94\x95\xa5~\xa3iA\xb5[\xea\x84\x7f\x9a\xb1\x19h'\xe2\xf4;\xe0\xb0\xb2\xbcp\x19\xa1\x96\xbb\xa7\xb24G<\xf3)\\\x7f\x17\xa9\xddn\x96\xb9\xcc\xcb\x04\xe9\xc4\x02.f\xf7\xa2C\xb5\xc7$\xbd/\xa1\x0cH+\xc2r\xfed\x04\xed\x86]\x94\xf4\x9bS\xab\x1dV\x86\x11-\xcbME\x12\x91$\x89\xd7\xf7\xcd/q\xc0\xbdx\xa6Q\xc1\xfe\xc8\xbd5\xa3\x82\x9b\x13\x94\xd0bl\x0b\xd0j\x00\xe5\x01Es\xda \xfc\x99 \xc3J\x13\x92(\x03\xc58\xc8&It\x12\x97\xa5\xdb\x9c\x94/DG\x1c\xb4\xb7I*\xe4$\x85\x93\xb0\x9b8Mf\xc4)\xd4\xc0{!sd&mY\x1b3G\x0e\x86s\xb5\xe6\xce\"\x83)\x91\xc6Zq%fHy\xee\xc0$\x16\xbc\xa5Q\xe8\x9b)\xe2\x9e\xb6a\xeev\xebgy\xa4\xf1\xdd\xdcM\xf0Y\x7ftb\x1dI\xdf\n\xceq\x03\xc7\xa5 \xd1\xd9\xfd\x94\xc8m\xdd\x9fN\xddt*$\xa5\x18\x93\x8d6\xd33\xeb&\xfe\x7f\xd9{\xdb\xe5\xb8\x8deA\xf0\xbf\x9f\xa2\x89\xa3\xd3\x07%VC\xdd$%\xcbh\x81\xbc2%\xdb<&%Y\xa2,\xd1\xed\xbe\"\x08\x14\xbb!\xa1Q0P\xe0\x87\xba\x111;\xfbg\x1fgbc7bc&f\xf6\x15|\xdeh\xa3\xb2>P\xf8h\x92\xf2\xf1l\x9c\xb81\xe7^\x8b\x8d\xfa\xae\xac\xac\xac\xcc\xac\xcc,\x05\xa9~?\xdf\xcb'\xd1\xd4\xd5)%*q\xb2i=\xa8V\xea\x81\xb5\x19\xe1\x0c\x95\xd5\xc5g\xe6\xe44c\x1c\xf6\xf9\xd38\x9d\xfbg\x84E\x9c\xeb\xbd\x86\xa0\x9aAn\xc7\xd8\xe2#\xb3\x10g\x96\xd4\xe0\xa0\xfcwQ\x963\x11{\x93\x17[\xdb\x92bw+P \x84c}A[\x975\xc5\xb22\xb9\xac\xd4\x8b&l\xaa\xc6J\xd7\xaf.\xfb3V\x97\xd6W\x97\xf2\xd5\xc5\x8d\x05b\xd5\x02m\x8c\xd4\nQ\xfc)JB\xd7j\xe1\xbfU\xe2S\xde\xdc\x83V\xce\x03a\x0f\x90 +d\xbd\xfd\xb4O\x92\xbfZm\xc0\xf2\"}\xb7\xd3\x18IG\x9d~\xdf\xe7'Y\xd7fS\xfa9K\x89e=\xb1\xaa\xfc,\x0d|f[\xf7-\xd4551\x88\xbde\xe9\xfar\x92]\xad[\x02\xd1:\xb3\xc0\xf0$.\x85\xf4dP6Il\x85\xd8\xd1\x08\x01\xa8\xa9\x92\x9fe\xfe\xb5\x05\x87\x00\xdc\xd8+\xfe<\x12\xe79\xb9\xec\xa5 \x97\x99V3\xb2\xfdM\xeb\x01$Z\xf5\x8e\xdaGe\xd5\xa0\x99\xec\xe4i\x1c1u\x1c\xeas\xb3\xf6\xac\x81\xb8,X\x89uX\x89x~+\xde\xf9\x8cd+\x18\xfa\xea\x8c\xd2\x98\xf8 \xca\xf7\xec\xde\x9es\x1f=\xc0\xd6\xbdQ~o\xcbB\x8d\x03w-\xe7&Ff\xf2o\x86lf\x94\xa8R7}*!\xf7\xf2\\5,\xf8\xfd\xea\xa7\xbcR\x90U+\xd7O\x9374J\x18\xc9X\x93\x1e\xc8\x97|n\xbf_\x91\xbf\xaa\x9a\xce\xb4\xcd\xb2\x92\x85\xa9\x15\x99*\x11\xae\xd9\x9d\xae\xcb\xd9p\xb3^R,\x10\xae\xb19\xa8\xba\xd5\xd1\x89\xa6\nWb\x93\xd0\xe1\x8e\x95\xbc\xad\xef\xd9\xaa\xb5\xdf\xf4N\xf9\xa2\xdc[\x92\xda\x12\x95\xa7\xa8\xd4c\xd1\xb5M\xec\x02\x12\xf8<)\x16?\xfbqAZ\x14\xb5\xaa\xcc\xcb\xd9H\x04\x1d\x14\x93J\"\xf6,\xe2\x12\xd4\"J8\xab\x04\x9cRY\x9d\xec\xca2Yt'\xa4J\x81\x95\x1c\xff\x91\xbe\x11\xc8\xf4\x8d\x00Q25?\xad\x0dI:kn\x13h\xed\x81\xb5)b\x82\xe7\xb6\xe0\xaf8\xd7K\x05j\xec\x99\xc2\xa0\xccuO\xef-\xa9\xc2%\xcb*\xf9\x17\x8c\xa0\xdfo\\\xa4\xc9t\x10\x1c\xcbS\xec\xabm\xcb\xb0>\xd9(\xc2K\x11z?\xc2>\x1f\xa4;\xd1y0X%\xaf/a\xac\xf2\xf4\xc3\xc0\xeb\xc8\x8f\x12MK\xb4vf\x0db\xa3\x98'\xad%\xe0\xbc_MK@\x11\xf6KT\x7f%\xc8\xc9#\x8e\xaa/\x15;u\x08o}i\x9c3\xc5[%\x86\xf2\xa9\xbe!\xda\x11N_\xc7\x13;1\xdd 2a\xe3\x0f\xc3\x05\xee&\x13\xbf\xf7\x88\x9d!W\xbdv\x00l\x94\xf2\n/\xf9\x98\x9fr\x84\x06+/\x9b9\xa0\x16\xcbm\x84J\xa1\x86\x19\xb7(]\x03\x9d+\xeck\x91C\xc1q+\xa2'\x03\xa4\x12\x93\xc6pI\x1dp\xe3\x94o\x13\xf1^B\xcf\xe6\xbf\x8d\xc6Jt\xea\xd6\x12\x0c\xd0+vH\x8eF\xdex{\xa76?\x19\xd1)\xc2\xacl\x90\xc8\xb2\xbdIj\xba\x90\xf3@\xb89\x8b U\xa5\xf8a\xe4%Z!\xc9\xb1x\\m\x16.V<#YtAB\x9bKl\xc4I\x01\x07^\x93\xf3\xbc\x12\xf8%NM\xa5S\x9a\x90'L\x8f\x1az\xdeS\xc95\xd35\xa1\xfeBU\xa8\n\x89-5\xfd\x8a(3\xce&\xe2\xd7\xd4#\xa5b\xb4\xb9\xcc\n\xac\x0c\\\x0f\ng\x1c\x90W\xc9U\x1aGA\xc4\x8eD6\x17\xb7\xf9\x01\xbf1\x1a7\xcd\x7f(\xaaH]\xe4m\x8c\xaa\x1b\xbceYs4\x89\x92\x1emX\x9ePj\xfb\x136E{\xfc_i\xd0\x82\\\xfe\xe1M\xc8\xb4T\xda\xfd8\xb0#\xce$\x88-\x9b!\xec#\xc9\xb9\xd7\xec\xf4H\xf3r!GU\x7f9\xef/:\x07\xd1\x1b5]]\x18\x92\\\xd0\x92\x03\xc8%\xc2\xba0)%\xe3\xd0\x95\xc9\xf9_\xd1B\xd0\x00\xc7\x98\x1fSA\x05\x14\x08q\xce)\xb2\xbe\xa0T(\x15h4\x95\xde\x8b83\xd2\x98H\xd3\xbc\xfc\x93a\xbf\x9f=\x19\xeeIk\xc0\x98\x06~L\xf6\xe9\x82#\x94*\xec&O\x86{#\x97\x17\x1b\x8c\xdcd\x90\x01\x03hP\xf5XR\xf5\xe6D\x0d\n\xaf (s\xce\xae%\xf9\xaa[\xb8\xc0\xe5\x86f\xf1\xa5\xb2\x0f\xf3\xbe\xca\xb5\xa2y\xdd\x96\x15/\xa3s7\xc3\x1c\xba.\xe7\x841\x17\xf5\xdd\xc8[\x96\xa5\x97`\xdf\xd3\xa0\x02\xad\xb9\xc2$\xfe\x91\x81^_\xab\xdc \xce\x10\xa7]\nh\x19\xe2`\x82\xfbj\xb8\xac\x16\x86\x8d`CD\xfa}C\x15\x9fIU\x8ep6\x95\xaf\xbed\xfd~\xd6q\xa3-}\x812\xad\xb5\x17\xe0\xe4\xc7Y\xe0\xe7\xa47\xb2J\\\xb5GUk\xb4\xdf\xef\xba\x1f\x97\xadQ\xd5\x1am\xb4\xb6e\x95\xd3\xb1\x81\x0dy\xed\x8c\xd7\x0b/\xf6\x19\xb9\xeb\x81\x87\xd6\xaa6\xa4\x87o\x18xiP\xbd4\x0e\x94\xb4\n\xb3X\xa3\xa6\xab\x15\x91\xf3\xaa\xd2\xaciY\x04\xe2\",\x0c\xcc[.C \x0ewa\xbc\xd4+\xd6YJ)\xd0\xe1JL\xa0\xe1<\xe0x%\x83,\x07]7\x18R\xd7\xbe\x88\x16\xc4K\xb4\x89\xb2\xbeU\x90\xa7\x01\x9c\x8c\x1e\x15\x7f%C!\xad\xb5\xb4\x8d\x96\xd2|V*\xed\x9a\x9d\x17\xa6Z\xfd\n\xbc\x9dyQ\xa0\x13\xdff\xe2\x82\xf3\xed\xebC\xbbQ^Z\x97\xbd\xcdb\x04aR\x1aW\x145c\xa2\xab\xc1\xe5\xe5\xe5\x80s\xfc\x83\"\x8bI\x12\xd0\x90\x84\x10\xd9^\xb2\x90\x17b\x04-\x01\xd0\xcc\xb4\x8d\x99\x9bj\x1c\x08\xf4(\xa8,\xdfXM\xdf\xb3W\xfeuL}).\xcf\xfd\x0b\xd2\x13\xaa \x11u\xbb2\x9c\xd5;\xadf\xa3\"\xe5\xa4\xc4\xa0U\x10\xefg\x99\xb3k\xbe'<\x8b\xcf\xca\xc2\xfc\xec\xa2!q#ocXzl\x92L\xe1t\x93\xee\x94T:OBYWaan'|\xb7\xa2q\x15\x8b\x0f\x9e\xe9\x8e\x18 u\xa9\xbf\xfbv\x86\x13l\xfdukh\xc9\x92i\x94\xdePp\xa5\x8a\x85\x84\xa4b.\xba\xcc/P\x06i\xd7H\x99\\SAX\x07I@\xb3\x8c\x04\x8c\xf3(ER)\xfb\x88\xd4b\xf7\xc4\xdc{\xd6&E\xd8\xb2\xca\x8a\xab\xe9[\x92U\x93\x88\x99!0\xb3{n\xe2M\xf3\xc2\xa8\x89o{\xf6<\x98t\xe6pb\xb36\xcf;'\xe0\xb8\xda\x95\x89@\xab\x0bJ\x18\x19\xbaF\xa5$\xd2\x93\x9f9\xf4\x93R@\xbe\xca\xe8\"\xca\xb9X\xccagW\xa8\x94\x08\xc5\xe5\xc6{\xdf&FD\\\x96]\xab \x196\x9fIG\x9c\x14\x0e)N\xb9\xd6N\x02\xb9U\xe79\x8d/\x88\xe4\xba\xa4}\xcel\xdd\x95\xfa\xf5\xad\x97\xe2\xf8\xe2\x8e\x17\xb8\xd7\x7f\xf2\x05\xee\xac}\x81{\x16x`\x1f\xe1\xcaMd )\xa4\xdaD\x1b\xa3\x12\xffV\x90\xecZ\x97\xa8o\xb2\x8da)\x83_\xdc\xd8D@\xe9\xa7\x88\xacoC\x11\xe2\xcb5\x84X\xc2G\x04,\x1d\xcb\x15\x93V\x13R^S\x17\xc4c\xc5\x965 \xf5\xa7( =\x06\x7fV+\x0b(\x8fT\xdf\x08;\x16\xf8\xb3Z\x05\xf0W*\x0c\x04\x93&>\x94\x02\xcb\xdb\xd8\x08\xf4\x07\x1cp\x85\x17\xa8\x1b\xdc\xd4\xb3,\xc0\xcc\xa2\xdf\xe7U\xf9\xbf\xf2F\xa9\xdf\xb7\xd3\x1a\xaf\xa8s\xd0d8\xc5\xbc\x11\xf9=I\xa7F\xbdI:\xd5\"\xaa8^\xc4\x0d6\xdf\x0da`\x13\\\x80&\x9c\xc3\xa9}\xcehQ!0\x93\xf7\x8cv\x9aw\xabn\xad$\x96\xb0\x16\xba\x95@\xfd\x92\x1a\x1e\xd9\x82\xba\xa6\xd4Z\x1a].W\x970JuS\xaf\x91W\x0c\xbaY\xa5\xab\xe4\xd8\x1cH\x0eWPh\x8f\xb9?e6\xc3\xb6\xcd4\x07\xb3\x08$\xd6\x04\x8e\"\x92\x08\xa12\x95S\x96q\x87\xe1,<\xe2\x07{\xea\x06\x0e`\xa5,\xc0\x7fz2\xc9\x95H\xa0\x0e<\x91\x99\xa8\xe7\x8e\x04\xb7eS\xef,P\xcf\x81MQ\xc5{Ai\xb4\x17ItG\xd8X\x0b\x89\xfa\xf2\xc8\x8d\xe4\x82\xc8T\xd5p\xae~\xf8\x9d=\xf8\xaa0M~\xb9\xa4\x83#\x8fK=cfS.]\xd9\x11\xda\xe3\xc9\xde\x87\xc0\xa6\xfc|\x81\x8f\xa8D\x08\x13\xa4\xf4DQ\x0e\x7fm21\x9e\xc2C{\x93\xa9\xbb,Q5\x93\x97\x06\x0c\x97\xc2\xd6\xaa\x9a\x85G\xb8\x98/5\xa9\xf09\x99*\x0d\\\xd5\xc4\x1b c\xd6\xef\xcb\xd7\xf9\xca\x0b)\x1f\\\x06k\x0d\xe5.\xa4pP/R\x19\xca\xad)\xa0p\xe6\x86\"\xa2\x1bC\xb2x\x1ex\xcbE\x11\xb3(\x8d\xc9\xcbsW\xbd\xc5\x83\x17\xfeU\xb4(\x16U\x02\xb9\n\xe2\"\x8f.\xc8Q3g\x11%\xeb\x8a6s\x16\xfe\xd5!\xc0\xdbU\xe1\x1fx\xedf\x92\xbc#\xaa\x12\x84\xc7\xa4\x845V\xa6\x0bU\x824r\xd0 E\x12\xfdV\x90zZu%s\xd0l\xad\xba\xa3\xd1\xeb\xcb\xdb\xecJ\xd6\x17C:\xa5\xeb\xaa\xa7\xcaM\xbb\xd2\x9aW`UVHR\x92\x84$ \xcc\xd4\xb2\x12G_\x05\xdd&C\x8a\xabl\xa0\xb74z\x18\xea\xb0rj\x83s\xfa\xe4\x8a\xa4\xc9p\xea\xde`\\\xf4<@Z\x9f!B\x98\xaag\x8e \x92\xa9\x0c\x1c\xc5\x05\x17L\xbd\xe7\x01\xdf\x89u[\xa3L\xdb\x1aQ\xed\xb6T\xc4q\xc9+>\xe5b-\xbe\x17\x80nL\xcd\xf1u`\xebg\xc3e\x05c\xb60\xc6=\xa6~\xb9F\x96:o\xf9VS\xbf\xd5\x84\x99\x91\xcfglVK\x8a\x05T\xa9\xee2D\xf1\xa4X4\x8a\xea\x0bf\x9bU_\x08\xb3j\xbf\xef\x07\xa6\xd2\x1b\xa6R\x83\x87\x8a\xc3!\xc9 \xc3\xcaz\x08\xa2gIC\"m5\xe4\x12\xd3\x82\xe8:%\x10\xd1\xcbtf\x0b*\xb63:\xb7\xc5\xbf\xf7\x02\xd3TNA\xffe`\xbf\x12\x1ei\xf7\x02\xa5\xbe,y\x9d~?\x13A\xd5w\x99\xb3\xf0\xaf\xde\x00\x90\x9e\xf1\x04U\xf5M`\xdf\x0b8\xc7V\xb5\x01\xba_\xd0\xd5\x82\x1c\x94\xb4\xe5\xe7\x13Zd\xc2\x89\xc2\xd7\xce\xe8=^\xc3\xe9\x9d\xd0B\x88\xd5iF/\xa2\x90\xf4\xce\x8b8\xee\xe5) \xa2s)\xfa\x83\xd1\xea\x1c\x94\xf2YX\xc5zq,\xa1M\xa5^H\x02\x1a\x92\xb7\xaf\x0f\x0c\x07w\xa9<\xa6\"\x1aV\xfe.bs\xdb\xfa\x8b\x05VL\xa0\xdfPG\xd6H{\x1fF\xde\xbeo#.\xfe\x88\x18N`B\xa1\"9\xf1\x05{\x1aL\xe8t\xcf\x86?\xde\xc6\x10\xfb\xde\xc7\xc0\x8e$\xcc\xb1L\x1e!\xd7\xf7\x04p\"\x84\xb0\x86\x97_\xd6\xb7\xaa\xc4\xc0\x16\\%6\xe8\x02_\x8a\x15b\xff\x96\xf5\x9d\xe7\x80*\xae\xd5\x17`\xa8i\x82X\x19\xd5\x0b\x9d\xfaGa\xdf\x9bU\xcaq\xd3A\xd3\xb4.\x14\xee_\x06\x0e\xe7\xc6 ci\x9d\x1c\x94\xbcEQ4\x12vT\x9c=(e\xa7\xe3H\xdd\xe9\x88W\xba\xd4g\xdd\xbe\xc1\x12jE\x89O\xb9\x08\x0e\x1bF\xe7\xe0\x9b\xc3 \xf6O\xde\x0b\xfc\xe4o`\xd9\x00W|\xa1\x85\xb0h\xccc\xfaW$\xad\xc8\x18\x8e*#\xbe\xea\xe7j\x95\xe3\xc80\xe13~\xafV1\x16\xcct\xd0\xef\xfbb\x03\x05\xb0\x81\x0c\x96 \xaa\x11\xe3H*\x9d>\x04\xb6\xfc \xb2\x8f\xe38~\xed2\xb6\xc5\x18qY?\x1a/+\xdeB\x03%q~+\"\xc2V\xab\x1at\xfe\xf62%\xc9\xd3W\x07=\xb1w3WD\xc7\xed\x01\xd0d ]\xd1\x16@\xca\xe9\xbd&y\x11\xb3\xde\xc2\xbf\xe6\xe0\x8a\x94\xe2\xe6oz[\x10\xcf\x9f\xf8\x15k4n\xccH*\xa9\xf7\xf8\x8a\n\x8dMT\x96\xf6\x92\xaf\xab\xbc\xb5\x94\x8c\x10\x96X(\xf7\x8bqe\xc4)\xae\xb8[\xab\xc7M%\xca\xa4\xccf\x9ds\xb5\xfe\x04\xe32\xab\xb6Gm\xd2\xf0\x81]\xdey\xf7\xf1\xf9\xc1x&\xc3\xa9\"\x8ar\xf8\xf2Gcv\x7fZ\xaf\xd0\xb8\xd1k\x04]\xb29I\xd6m\xf8\x8f\x81\xfd!\x80\x92X\x16T\x8b\"\x08*\x9cUX\x08\x8ac\xf3\xde\x8e\xa2%\x85T\x08\xa8\x00\x1b\xb8\xcefD\x08\xfa\xae\xd8\x8b\xdd!hy4\x7f\x81p\xb4Z\xd9\x91'\xcf\x0ea\xa6v\x18\x80\x9d\x1a\xd0f_\x9fb\xdae\xbbI\x1b\xe9\x97\xd2\xc4\xc8`\x9b|\xb0\x85_j\x92\xdf:\x96#\xbdg5\xd1\xe3D\x0b\x10z\xfdE\xbb:\x05r^\x98\x1a8\xde6HZ\xab\xa9\x96*\xcf\xea\xf2\xfcC`\xcb\xd2X\xe5\xc9\xed\xc7\x87\x93K\xaaJt\xc4\xea\xdc`\x07\x8e+\xd6I<\xb0dI\xab\x1b\x83\xb88M\xee|\xb5\xba\xb9\x94`\xf7UT2\xf1\xc5\x17\\\xb2\xfd\xda\xfe\xd2k7\xbd\x07\xf2\xe3yLifW\x156G\xae\xfe\xc0v\xbb+x\xdbSw\xb5Zmt\x17\xd1%\x10\xf0c\xd5\xe06\xab\xae\x1el!\xcc\xc4\x0ei\x0c\xf7\x8f\x0cvl\x82\xa0\xab!\x91\xb3\xa7\xcb\xec\x0e\xf7\x86n\xbdYYy\x00\xcd\x1a\xa5\xf4\x17\x18#,\xbb\x87\xac\xc6\xd11x\xf5T\xaa\xea\xa8Y\x00m\x8e0\xf3<\xaf\x0b\x96\x1czlsMu=`\x0eL\xe4vLwm\xcf\x1ds\x95\xac\xb3\x02\x83\x8e\xc8]\xe1\xf0A`/\x17Q\xe2\x12.\x99\xb9\x0c\xd3E\x041\xb0\xdd\x04~>\xf3\x19q\xb3\x12I\xab\xc8\xb6].h_\xbdd\xcf\xb2\\\xc2\xf9\xba\xb7\xc7\xfb\xdf\x15q|B\xfc\xccF\xf0t\xd8\x15'\x83\"\xe7\x88&ln\xa3\xcdQ+\x87\xf7c\\\xee\xb0\xd5\xca\xa6\x9b\x9eu\\+\xf4\x03-\xb2\xdcFh\xd3r\xeb\xcdFI\xc1HW\xce\x1b\x12\xd0$\x149\xbfX\x08\xd3\x12.\n\xa07kk8\xfaf0|<\xd8\xda9\x1e\xed\xb8\xa3\x87\xee\xd6\x963\xda\xda\xe6\xe5\x80\xb2(9J\xc5\xbe!M\xc3\xeb\xb79?\xe3\xb4D\xdd\xf3z\xf7\x96\xa4\x14\xf6\xa0\xear\x06\xd8\x01aD\xd7\xb3B\x9f\x91\x01\x8b\x16\xc4:E\x98\xf5\xfb\xaa\xe9]\xb6\xa6i%\xbfC\xd3\xec\xceM\xd3j}_H\x8dH\x0cO\xc1}\nt Hl\xd8\xc4\xf4\xfb\x891\x12;\xf1\x92\x86\xc2 \xe1D\x9a4<\x0b\xbc%Y\xf8Q\xec\xb6\x82d[EN\xb2\x7f\x93<\xb5\x13\xd0\x85Ub+\n\x93\x01\x94\xb7:*\xfc\xfe\xff\xfe\xfe?\xfe\xf1\x7f\xfc\xe3?\xff\xfe_\xfe\xed\x1f\xff\xfb\xef\xff\xf5\x1f\xff\xc9\xf9\xfd\xbf\xff\xfe\x7f\xff\xe3?[%N\xfd<\xbf\xa4Y\xe8\xd6Cd\x8aiX\xa9\x7f\xef\x1e\xcf\xb5\xb4Rk7\xa9\xcc*\x92M\xcf\xfa`\xe1d\x13\xe6\xfb\xdb%\xc9\xd8\xf5\xc6\xbf\xfd\xe5\xde_\xff}\xb4\xb5\xbd\xf3\xf0\x91\x85\xc9@\x15\xaf\xab\xd6\x8ct>el\x80\xb51\x10\xd9\xef\xda\xed\xb31\xaa\xf6\xcf\xc6\xa8D%\xe6M}i#\xc3f#|(_\xda\x889\x92a\x89\xf4\x0b\xd3%\x8e\xd2\x8b\x9d\x8ee\x19}\xb3\xe5\x8c\x1e=v\x86\xce\xc8\x82B\x8f:\nm\x0d\x87#w\x18\x9e=v\x1f?\xf4\xb7\xdd\xe1p8\x14\xff<\xf6\xb7\x88;\xdc\xfez\xe8~\xbd\xbd\xbdc\x95xNs\x06\xc6$\xedF:\x90E\x95\xee\xc6\x97\x7f\xfc\xa7\xdf\xff\x9f\xdf\xff\xeb\xef\xff\xed\xf7\xff\xf2\xfb\xff\xe5\x08\x9c\xe1C\xcc\xa2\x8e\xd2s\xc6R\xf7\xc1\x83f\x1fY4\xd0Q\x06\xba:q\x9c\x07\xff\xf8\xdf~\xffo\xbf\xff\x8f\xdf\xff\xcf\xdf\xff;\xef\xcd*q\xf1\x05\x1d\x14w\xe8 \x8c \xcd\xcf\xaeU\x0dF\x16i\xec\xb3\xce\n\xed~\x1e,I\x12\x82\xf5E\xc9GWD\xf5}R={\xd9\xcb\xda\xd1\xf1\x05\xaf2\xf4\xf4\xc5\xa1\xe6)\x1a\xaa'b\xaa\x9e\xf8\xa1\xf5\xe4\xc9C4`\xf5W\xb09c\xdb\xf7X\x15\xd0\xccNV++\n!\x12S\xfb\xbc\x90\xc5\x8cI\x8a\x13\xc4&+o\x88\x06\xb6\xcd\xf8\xdf'O\xb6\xbe^\xb1\xdd\xdd\xdd\x87h\xa5Ch\x11\x8f\xfd\xbbm'\"\x7f\xf4\xf5*\xd9\xdd\xdd\x1d=D\x98y\xc9\xa6\x9d\xf1\xe4\xd5\x10'^\xb6IWCl\xdb\x99G\xf8/\xb4\xbb\xbb;D\x0fv\xb6\xbe\xd9\xf9\xe6\xd1\xd7[\xdf<*K;\xc3\xf0\x7f\x08[W\xf2\x7f\x03\xf8g\x87\xffs\xad>\xd5\xff,#\xbc\xda\xd5\xf5\xf4\xc1\x0c\x83m\xa2\x80\xe5\xe8\xd1}j\xa3\xbf\x8e\x1e\xe9q\xda\xd6\x95\xe5yd\x8f\xb9\xdb}\xb6z\x8c*\xe3\x85\xd1#\xf0\x80\x00\x1b#LK\xac\xee\xf7_\x04\xd8\xfa\x98\xd3d \xedi\xbap\x00\"\xbd\xcb\x13\xed0\x98\x90\xa9\xc7\xca\xcf\x812\xd77\x9f\xf8\x00\x83\x93\xba\xebP\xa5z[\xadF\xd2\xa2Q\xbfw/el\xed\xa8\xb7W\xfdtG\x0f\x86\x98h\xdf\xbe\xd5\xca0d$\xc2*|\xb5\x02\x05)h\xdd\xc6uq\xcd\x17w\xf0\xa2#\xff\xca\x8e\xb0\xaf\x8f\x18\x18D\xee\xc9\xa0)\xbe\xda\x87\xb9\xd6\xff\xd4\x1e\x08\x14#\xb6c/k\xde\xab\xc8\xa8\x82{\xfe$\x06\x83\x16\xd7\x87[\x1c%\xcc \x9d\x90\xd0\xa2-\x01\x00.\xdd\x1c\x95h\x9ck\xc5\n_\xe7X-C^\"\x849X\x95\xa0R\x7f;E\x94\xe2G\x89(%\x1d\x0f,|\x1c\x88\x04u\xfd\xa0\xbe\x95\xba\xbd{y\x04g\xa91,j\xac\x13g\xcd\xbb\xae\xb3\x0c?0\x85\\v\x13,\xda\xefg\xaf\xfa\xedN\xa6\xc8\xbc\x01c\xc8\xdb\xb5\xc1\x9f\x7fc\x08wV\xcb\x12\x8dk\xc6EfO\xd5\xc5\x98/lR\x98\xc3\xb7\xc3\x0b\x9a\xbc\xd6\xaeW\x1bY\xf3q\\_\xa9\x85\xe5\x1cA\x825\xdb\x9d\xf8S\xb1:\xa6\xad\xb0\xebc\xb1X\x11,\x96\xe8Im\xbc~?7\xf4h\"\xef\x9d\x12\xc9y\xa6\xa1J\xb3\xe9\xc4\x9fzJ\xbc\x05[\xccu@\xed\xba^\xa9\xa2\xf4w\xe7\xdf\xd9\xf5\xc7\x1a\xd3\xc9\xe9\xbd\xa5\xa4\x86\x19*G\xa7S\x01\x89\xae\xea&\xba\x02\x04\xa4\x98\xdehc\xeb\x0f\xb4\xa1\xe4 \xaaPX\xf1\xc4v\xfb\xc0\x12\xe8I\xa4#\xccjeI\xaam\xe1\xc8{\x16L\xe8t\xb5z\x11`_`m\xcd\xd4[v\x12\xd9\xc3\x15P\x0f\xc1\xcac ,\xf2\xb7\x0f\x07\x82\x0c\xeb\xd4i\xdf\xa2\xa3\xaf\x08C\x14\xe5,\xc3\xb1\x8d\xe4L\xf8%\xd7L?2\xf9\xa3\xdf\xd7F * [\x96\x0eY@\x93\xf8Z\xa1\xecA\xf2F\x99Nt\xa7\x8b*3\x92\x90\x0c<&\x85\xad\x9e\xcc<\xf2\xaf\x80\xf0{\xf4\xb6\x12\x95\x11H\xa6o\x87\xf6\xea\xb6\x1b?ev\x95\x87\xed\xc40\xdcH0\xc3\x99i\xb8\xe1\xb6\x9bk\xb4\xa6\xbd\x16u#Z\xf5\x9f\xcf!\x8e\xe530\x03\xd2\xf59\x87mvR\xba\xef}\x9b\xa9\xb0\x08jz\xcfEa\xb0\x02.\xdb\x89\x865s\xfd\xacl\xaf\x1d\xaem[wcM \x83\xbct4\xa2\\\x81:W\xaeq8\xdfe!K\xed\xa4\xab0\xc9\xb4\xff\x90\xae\x06\x0d@\x9b\xf6\xfc`?\xddQE\x9d\xc3\xdf\x05vfD\xd4H\xa4\x89*\x1a\xd7\xccL\x9a\x8e\x14\x1d\xe4\x8a\xf6\xfb\xb4\xdf\xb7\xe9\xe4\xc6\x8aSOYN\xd7\x0c\x96\xe0\x01F\x9e<\xf5\x9a\xd8A\xcb\xca\xf6\x0b3\x03\x1b\x0c\xcf\x15\x05\x1a\xfb\x8e\x18\xf7]\xc0\x8f\x8a\xc6\x8c\xd7\xf5\xa3\x02}\xad3$\xfc\xedvC\xc2\x9f\xefhH\xf8\xdb\x9flH\xf8m\xd0\n+\xf5\xee&\x0b\xeaNR&\xac\xb7\x8f\xa2\x059\x08\xaf\xcc\x00/\x99S$9\xc4\xe3\xf9\x10\xcd\x12\x9aA\x99*\x18\x13\xa8\xbbLVE\xdd\x0c/\xcb5f\xc3\xfa8o\x99\x0eS/Q\xae\x98c\x0b\xc1\x1b\xb8\x10\x19x\xcc&t\xba\xc7\xff\xf1~\xf3\xed\xdf|p\x15\x9b\xd0)\xc2\x19r!9\x03\xff\xad\x12\x02\xf2\xc0t\x16*^D=\x82\x15\x93V\xcbTw\x1dy\xbc\x01\xd3P''\xec\xe7(\x8f\x18 m\xe1\x12\xfc\x96\xe3\x14\xc5\xc2$\xb94\x82\xc04\xe2\xbf(\xe0\x91rFXO\xa45b=V\xc3\x9a\xb4+N\xa1\xde\xdc\xcf\x05qX[\xd5\xbcZ\xdb\xd8\xa8n\xfd\x11\xd2\xb7\x13e\xf9\xb3\xb4\xc1y\xd7a\xa3/\xfb\x03C\x9c\x9f\xa5\x11MG9.\x1a\xe3\x91(\xf2qMS\xc2\xce\x06p\xee\x87:\xce\xa9\xe7U \x8e\x92s\xfa2{M\xce]\x86\xa5\x97\x82\x9b\xe0(\x7f~A\x12\x06\x9aNE\xa662\x1c\xb5\x0cEM\xfb\xc9\xa8;\xf4\x8ca\x0b\x1a\xe9\x8f\x9ay\x9c\x96\x1eLTU\xaen\xd2\xb2S\x87m%\xc2\xe7J@\xd5\x9a\xe2\xac\x96b\x81\xe8\x90\xa0%\xf3$*\xb6\x9e\xf0\xa9Yw\xa1\x8a\x99K \xc0/\x97\xa1~\xae\xf0\x98L\x11^\xaa\xde88$\xcd\x13\xd6\x0ew\xeb$C\xd5\x01\x98\xdd\xd6\x89\x9b\x94\xd5s\xa0\xac\xb4#4\xd6\xc7\xba&\xaf\x12&@\xa8\xdf\xf1\x0d\xe0\xf3-\xa0\xe2!\x9e\xac#\x93\xdf\xaf\x0fa\xf6\xe3\xed\x14\xf4\xa7[\x8b\xe4\xf8\xfd-!\xcc\xfe~{\x08\xb3_\xee\x1a\xc2\x8c\x14\xad\x10f'\xff|\x083V\xdc\xed\x9c\xf8\xf1O>'N\xda\xe7DR\xac\xd9\xb3\x01\x0d\x89\xcb\x94\xba\xe4i\x0e&/|\xd7\xea\xbd\x9c\xe9\xbdL\xf5^\x8e\xcauq\x0b\x85QzG\xd0B]\xd2\xf2E$\x1c*\x93^\x93<\xa5IN\xf2\xd5\xaa\x954aSC\x1d \xc8Ef\x869\xcc\xb4Qk\xc89\xf8\n\xbd\x0d\xeb\xef5h\xae\x92p\x04o\x9aUU9 \x90\x0eD\xd6tOrk\xd2\xb5\xa8\x9e\xd9\xb6\xfbn\x99u#\xb7\xd1@7a3\xdb\xb0\xb4\x7f??\xb6\x7f\xf0\x019\xb4t\xeb+\x10W{Y\x9b\x00+\xe0\xd7\xbd1\xab\xf0\x1b\x8ar\xe4F\x00\x0e\x1d\x81B \xec\xdf\xf3\x8f\x9f\x82\xbbEw\xfd{-\x9e\x1e)\xea1\xf8\xde7b\xf0\xbd\x87V\x7fY_G\x9d\xce\"\xbak\x82T\x80\x8e\x12 \xf9\n\xfc*\xe9\x9d\x0c\xa0\xfdV9\x84\xeeh\xb0\\\xb2B\x9c\xa9I\xb1\xd6\xae\x95\x17\xe1\xc7i\xbdH#\x00dV\xac\xa1\x9e\xb4\xb8\x8d\xfe\xe1\xe8\x8e\xc4\x83\x16\x7f.\xf1\xc8\n\x83xh\xc5\xa0_T\xda)+\x15\xa2\x8d|\xf1\xd1Of\xfd\xbe\xd0\x01\x91\x9c}K\xc3\xeb}\xb1\xb1\xc0.2/\xbc\x8d\x91$Bq\xd1-\x85C\xc0B>\xb9H0\x02\xcd\xf8\xee2\x92\xe7\x9b\x94\x04JJ\xef\x88l\xe8Y\xba\xa4\nn\x08\x01E\x94\xb7wF\xfc\xf0\xda\xdb\x18\x9al\xb0&[5:\xb6&\xe4a-\xc6I-\x82{\xdbsC\xb8\x9b{]1\xdfXG\xcc\xb7Z(9\xd6\n%\xa7\"\xa4\xc2\x13\xf0\xe2\xe7\x9d\xeai\x80\x1c\x84\x1e3\xbf\xd4 \xd9\\Dx\x82@\xadJ\xff\xb1\xef\xc7\xf1\x99\x1f|\xf2\xa8JyG\xce\xe6\x94~\xf2X\xf5[e\xc1y\xe05j\xaa@$\xf5\xc2\xa0e\xb1#\x8f\xa1*\x86~d\x8e\x8a\x7f\x1a\x90\xec\xf7\xa3\xb5q\xf1\x1f\x0e9\xea\xea\xa1\xafV\xd6\x93\x84\xf6d\xb3\xbb*z\x7f\x14\x923?\x83\x90\x0e^\x06\x9f/\xfc\x8b7\xe0M\xe2y3\xea\x1c\x80\xee`\xaf +9|p\xd0\xea\xaa\xf6\xcag\xf3\xaa\"\x14\xd3\x13l\x02Q\x9d\x1f2\x16\xb7\xc7%U\xf9\xdb\x08y\xc5\x84.\xe6-'\x8aD{\xf6\xca\xf8\xb6^\x91\xdb\x16<\x7f'\xbeW+\xb1fo\xd4\xe7d\x8a\xd41\xa3g\xf1\x83\x9f\xcf\xebk\xce\x85|\xf5\xf5\xc0\xda\xec\xc0\x87(4\xe3]\x19\xd9{v\xb2\x978Q\xb8i=\xb0\\\xcbB\x9b\xed\xbe*\x85\x91,jn\x1e\xd7\xfc\xc07\x00D\xbe\xb3\xf0G \xa4}qo\x00\x94n\xde\x00\xdc\x1d\xfdi\xd8MAB\xed\x9ax\xe8m\x0c\xcb\x90\xac\xcb\x1b\xdd\xf1\x10\xaa{\xc6\x08z\"\xb5E\xe2\xc3Q%L\x07\x1b\x90,\x0dR\xdc\x90-k\xb4\xd4$\xd9B\xa3\xf9C\xa09C\xd5QN2S\xae\xbb\xb1\x11\xcd(\xcab\xf0\xa1yF\x93`\x94\xe0\x14\xdb\xe3\\\x9bT\x90\xd9\xf2\xe9\x10\xaf\xdd\x05\x84;\xadJZS\xfdtBG\xa1A^\x95\x9aL\xc7w)\xd8\xefo\xe4E\xbfo\xf3\xa3\n8|\xc3\x1c\xb5Y\xb8\x17\xe5\xbd\x8a\xca:\xbd\xb79\xe95\x86\xd7\x8b\x92\x9c\x11?\xacLP%}\xac\x81\xbb\x99\xa2eS\x11,\x919Z=P |\xfaBM\x9d\xf3\xb5\xb3\xd0IM\x8d\xe3Ax\x85\xc6\"\\%\x91V C`\xa8\xf8y\xed\xea#\x1c\xc7\x9c8\xba\xcaE\xdc\xc29-\xb2\x80\xb8\x96\xf0\x0f\xa9\x1f\xe8.\x13\x0f\x8f\xcb\xf6\x124-5\xc3\xc6\x97\xb3\n\xd6mwE\xd0\xc1\x8c\x9f\xc5\x897\x99V\x82\xf2\xd2x9L\xeb\x8b8\xab\xca\xc5\xf5\x9a\x1e\x99!\x9cM\x84\xb3\xe8\xa6\xf5\x81\xd3\xaf(\x99z\xe2\xa6\xccf\x10\xf3E(K\x98\xb7kw\xd5\xdehW\x87\x07\xd3d\xb0\xb4D\xf9m\xa7\xc6\xe3yuT\xafG'\xef.\xa1r\xab\xe8b\x92\xc16\xdb&\xb8M\x10\xab\xb0\x0e\xe3\xfa\x8ee:\x08UW\x1c\xbe \xb7\x89\x8a\xe6W\x7f\x10\xa4\x1d\xd7o/\xcem\x82\\\"\x89\x84\x94\xb1\xf4\xce\xdb\x18u)\xf2:\xb7\xbc\x96\xd88}6\x00\xaf8Du\x8f\xe3y\x1e\x97\x15\xac\xbc\x08\x02\x92\xe7\xfc\xfb\x07\xa1\xf4\xb79\x99D\xd8,i'\x1eC\xab\xd5\xdf3;A\xab\xd5;\x1f\xbc\xcdAv(Q\xfd\x14H\x8aN:\xd5-\xcb\x92\xdb\xe8W%k~ \x01C\x92\x84\xc9s>\xaf(\xed-\xd0\xd35\x8c\xd3M\xa2\xc9/q\x17\x9a\xac\xa9\x0e\xcf#\xdf\x80Fe\x19I1&\xae\xc9(\xc0\x07\x83\x0c\xd3\x9d\xaf\xf4}k\x0b\xd4\xe4\xa0H\xcaA\x1dm(\xb5bw\x91\xea\x84\xbc\xa1\x90\xe1'\x08c\xc9\xdb\x93\xd1D\xea\x86R&y^_\xaa\xda\xbc7v(\xd1\xe5\xa6\xee\xd4\x12\x19\xce\x89A\xe1\x9d\xfbN\x18]\x9c~\xd5\xeb]F!\x9b\xbb\x1cw\x02{4\x1c\xfe\xb57\xe8\xdd[B B6'\x0b\xe2d\xd1l\xce^\xf9 \x89\x1d(Z\xa2\xf1W\xbd^\xea\x87a\x94\xcc\xdc\xde\xb0^:O\xfd Jf\x8e|\x03\xe5\x07\x9aE\x9fi\xc2\xfc\xb8L\xaf\xc6_}\xd5\xeb\xdd[\x8a\xa7\xd2\xfc\x80\xb9\x1c\xa7\x88\x10\xa9\xbd\xdd\xd0\xb7\xad\x05 \xa3b\x01\xaf#\xf3\xa1\xe9\xc1\xf1q\x8d!A\xf7{oyzoI\xf6\x86.k\xf6\xf93\xc9\x80 \x95\xe9U\xef\xde\xb2\x95]\x1b\xd2i\xc9\x9b\xe5\xff\x9e\xe2BA\xc5\xf1\x19\xcbr\xd8\x08\xf6rr~>u\x89\x13\x85|\x97\x9d~U\x1b\xc1\xfay\x9bc\x18\xc2\xbc\xfbn\xec\xe7l\x00\xcf\xb9\xf5\x960\x97E\x94\x0c\xe6\x04^\xcd\xd5\xe0\xbf\x98\xf76{\xa3\xf4\n\x80\\B\xc5\xde\xeem\x95\xe1\x91&?\xd6U\xee-;\x81Y\xad\x99\x984\x94\x849\x14IH\xb28JH\xb8g\xfd\x9a@Y\x9a\xc3%\xbb\xdbSFE\xe3_\x13\x91\xd5w\x13\xcal1\"z>\xe0h\x86\\\xff\x9c\x91\xac\xb7\x14%\xcc\xea\xfeYN\xe3\x82\xf1\xea\"\xeb\x8c2F\x17|\x10*\xc5\\d\x95&\xa3\x1a\xb9\xbd\xb3\x98\x06\x9ft\xb2dL\xdc\xde\xdf\xfef4\x98\x85$\x1b\xa8vG\xe9U/\xa7q\x14\xf6\xb2\xd9\x99o\x0fqO\xfe\xbf\xb3\x85d\x9d\x92\xff\xe1\xc2C\xf9\xd5)N\xf9\xb2\xdb\xad\xfdp\xf3\x1e\xe0\x00\x0chL3\x17\x10Z\xa01\xe1h\\+\xcc\xc8\x15\xdb\xe7\xc5\xa0\x02\xdf\x86\xb3\x8c\x16I8\xd0u\xbb;\xa9JV\xb5\xff\x89\x1d\xf7\xc5[\x8bx\xbb\"\xea\xdem\xb8\xbd\xb6\xd0\xba]\x06\x9d\xff3\x808\xc5\xa1I\xbd4\x9e\x9c\xc7\xe4j\xfcUkZ&\xce\xaf\x87\x05\xaf<\x08\xa3L\x8c\xdd\xe5K[,\x92\x8a4\x9c\x17\xder\xe4Z#\xe7\xf1\xc3\xafG;da\xe1-\xfe\xc5?\xb6\xf9\xd76\xff\xda\xfa\x9a,\xac\x12\xcf\x0b\x8fx\xbb\xb1\xcf[>\xa7 \x1b\x9c\xfb\x8b(\xbe\xee@\x14v\x9d\xd2Y\xe6\xa7\xf3k\xfdl\xa7\xc3k|\x07\x15\x00f\xd0\xc0\xa5\xdc\xe6wn\xe0\x1dT\xa8\x1a\xc8\xa3\xcf\x84W?/&d\n\xc9|\xafk\xf2q\xa7vy\x8d\x1fT\xbb\xa7x\x01\x8b0\x1f\x9d\x02P\xe7\x85=B7n\nH\xcfaC8i\x16-\xfc\x8cOPT\xf6m\xeb\x87\x91\x85\xa0\xdd\x99hwK\xb7\xbb\xf5G\xda\xed\xf5\x16~6\x8b\x12\xbeY\x86\xbd\xad\xa1\xde \xd0\xd7\x96\xec\xeb\xba\xf0\xeczg\xdb\x7f\xa4\xb3\xaa\xe1m\xd90ot\xfb\xf4\xcbI\x84n\xe9\xb5\xce\xff\x01\xb4\xe8\xa2]\x84/\x04t\x1e\xc2&\xba\x91\xecm?\xc6\xbd\x87C\xdc{\xf8\x88S\xbemd\xc2dD\x16\xbd\xa1\xf8\xd7\x98mG\xb5\x87\xa8\x85\x83 \xcd\x16\xe2\xa4\xe1\x03\x1f\xb0\xccO\xf2s\x9a-\xdc^\x91\xa6$\x0b\xfc\x9c4\xd0n\xe8|\xb3\xf5\x0dY\xb4\xb0\xae\xb1*o\xf5\x11dN\x19\x9f\x15\x1e\x97\x15\xe5+\x87 \xfb]1\xa4\xe20\xe1\xe5+\xe1\xea\x9c\xb9\x97\x05\xde\xa7I^,H\xe6^\x15\xa5wVT\n\xe3O\x85\xb6\x11X\xe6) \\\x86\xa5~\xc6\xa5\x9a\xcd\x8e0M\x0e\xa9\x1f\x92\xd0\xf5\xb1~u5/=\x82'1\x0e\xa6^\xe2\x149y\xc3|F\xc0\x88\x14\xe1I\x81\xd3v2\x17\x9a\x0b\xe9\xb7]\x8c!\xf7\xf9\xf99 \x98m\xdb\xc8\xdb]n\xb4\xecp\xa5\xa2A\xbc\xff\x98h!\xf5\xbe|\x02s\xb5\xa2h\x19\xc8\xc6Yv\xad\xa5\xd9k\x88;\xde\xb6\xd8\x942~\xa3)%\xfe\x83/\xb9\xef\xec\xc3\xe5\xa1\x0d\x11\xc8\xbd\xa5\xb8Jt\x19>\xf3s\xe2\xfe\x9c\xed\xc9\x07&c*\xfc\xc6!\xa4\x9c\x9bf\x94KNNp\x19\xda\xa8\x1c\xff\x9c\x81;\xa9\x8c\x8d\x05\xda`'(rF\x17\xdf\x11\x16\xcc\xbd\xcc\x999\x10\x06\x0c\xe1\xb6\x05b\xbf/,q=\xb2\x978!\x0d\xbc\xa5\x94\xf6\x97\x8ac\xe02\x92\x05\x1e\"YNB\x97\x94n\xe2d\xe4\xdc\x93\x01\x15\x96gE\x12\xc6\xc4]\xca|Z\x96\x02\"\xf6\x10\xbf\xf1\x1d\x91\x8b\xec\x04\xb5\xa2\x1dP'\xbf\xf4g3\x92\xed\xd9\x91G\xebJ\x16k\xf2\x9a<\xa3A\x0f\x82j\xb2\xe8,\x8a#v\xdd[\xd0\x90L\xdd\xde>M.\xf8\xe1\x97\xccz\xca5x\xcb\x19\xf6\x18\xd5\x9f\xdb\xce\xd0\x12\xf6\x1b2rXez:\xc4\xaf\xe0\x9a\x8f\xb7\xf0\xf2\xec#\xb2#x\x96,\x98\xc3\xd5\xad\x9f%\xc22l\x889\x86\xbb\xd6\xb2\xb4\xb0\x9f\x04s\x9a\xe5\x10`\xcb\xb6\xe5\xe5\x0b\x98\x01\xa8\x85\x86w\xd6D\xac\x01\xf9\xc0&\x12A\xcd\\\n\xd2jT\xb6\x06\x93\xa9\x98\x9a\x94\x9fSK\x8eP\xbe\x9d8 \xb9b6Af\x984xJ\x14G\xb5b\x80\xd7\x9d\xe5|\x0f\xe2\xb9\x854!{DE\x0bnGPS\x19\"\xe2\x1b\xc5\x11\x1a\xfb6x\"\xf9i\x1a_\xdb\x0c\xb6\x01Bb@H\x1b\xd23\x9c\x94b/\x8c\xe1\xf1c\xdd\xbd\xd8i)\x84(-\xcb\xe6|\xd9\xff\xc4\xf9\x02\xcb\x02\xf3e6Y7_r\xcb|\xc9\x9a\xf9\x12>_T\"\xe0m\xa4\xbf\xbc\x0f\xf7\xcf\xb6y\x99\xa7\xb3\xa3\xfd\xa7<}\xf6\xe2\xf8\xf9\xf5A\xf4m|\xb6\xf8.:\xfb\xfe-;Y|\xf7\xd1\xdf\n\xaf\xcf\xb6\x7f.~y6\x8c\xce\x16?o\x1f\xfc\xf8\x9c\xbdxvP\x1c\xbd;\xba>\xe4c\xde\xdf\x19\x1d\x1e\x1f\x15G\xd1\xd3\xad\xc3\x8f3\xc6\xbf\x0f\x9e\x1d\x14/\xdf<}x\xf8\xf1\xd3\xec\xe5\xfe\xd3\xab\x97ov>\x1f<{>:\xfc8\x9b\x1d}\x0cx\xd9\xeb\x17o\xe0\xbf\xad\x17ov\xb6\x0e\x9e\x1d\x0c\xa1,\x1f\xe3\x9b\xa7\x97g\xcf`\xccL\x8e\xf9\xfa\xc5\x9b\xa1,?\x94\xe5\x9f2Y\x96\x1d}\xfc\xa9x \xf9\x907:<>\x18\xa99\x1f}\x7f\xc9\x8e>\x1f\xf0\xfe>\x1fE;\xd7'\xd7\xc3\xeb\x17\xd1\xce\xd5\xe1\xf1\xf3\xcb\xc3\x8f\x07\xec\xc5\xf1O\xc5Q4\xbc:\x8av\x1e\x1e\x1e\xcf\xae\x0e?\x9e\xb0\x97\xfb;\x0f\xcf\x9e\x9d\xec\xf0\xdf/>\xce\x8a\x17\x8b\xa3\xd1\xd1\xfept\xb4\xff\xf4\xea\xe8\xf3s\x80\xdf\xd1\xf1\xec\xea\xe0\xd9\xb7\xcf^\x1c\xf39\x9e\xcc\x8e\x8e\x9f^\x1f~<\x9aU\xdf\xb3\xcf\x87\x1f\x7f\x9a5\xd6\xe2\xd1\xf1\xf1\xc1\xf5\xd1>\x87\xc5\xd1\x0e\x1f\xcf\xd9\xfe\x10\xc6u\xf0\xec\xe8\xfa\xf0\xe3\xdf?\xf2\xb1KX\xb0\x17\x1f\xdf\x16/8\x9c\xf6\xf9\xd8\xe4|\xf6\xf9|\xdf\xea\xffd\x99K\x91\xffs.`2|x\xb4\xbf3:\xf9|0\x12\xed\x9d\x8c\x0eEy\x0d\xdf\x83gA\xf1r\xff\xe96\xac\xc71\xac\xd5\xd5\x8bk>\x0ec\x8d\xde\xf09\xfd\xc4\x8e\xde\xec\x0c\x0f\x9e\xfdT\xbc\xdc\x1f^\xf31\xbc\x888~\xfcT\xbcxw9<\x02X\xfe\xc4\xe1:\xe2e_\xbe\xd9\xb9><~\x0ep<:\x9e\xd5p\xe7\x00`\x08\xff)82 \xc7\xb58*`\xcd\xf1T\xc1\xfc\xed\xa5\xf8\xef\xf9\xe7\xa37OaM^>{\xce\xd7y\xeb\xe5\xfe\xce\xd6\xe11_\xb7_\x9e\x1d}\x0c\x86\xb0\x0e\x9f?\x8d\x0e?>\x9f\x1d}\xfci\x8b\xaf\xc7\xd1\xe7O\xb0NG\x1f\x0f.\xe1\xef\xe7\x19\x87\xfb\xa3\x83\xe8\xf1\xe6+A\x0f6\xf7g\x9e\xf77$\xc9\x1e\x17\xce\xd95g\xc6\x1f\x8a\x94\x8b(\x97\xcc\x8d\xdb\x9bGaH\x92[i\xe7\x85\x94\xfb\x07~\x1c\xcd\x12\xb7\xb7\x88\xc20&c\xa5t\x9a\x8f\xdc9\xbd YoW\xd0TITqo\xbe\xb5&\x03\xbe \xcb\xadS`sp\xf0[usZ\xf1\xf4/\x8b\xda3\x08\xfc\xb8\x92\xd2\x81}V \x9c\xc9$\xa9\xfd\x14v\xbf\xac\xdfozO\xeaw\xa0^e\xe4\x82$\x8c\x84\xab\x95\xb8r>+\x18\xa3\xc9j%\x0c^m\xe2,\x08\xf3\x7f$p1\xec\xc7L\xfe\nX\x16\xcb\x9f\xf9<:\xe7\xc9\x08\xd9\x10\xac\x90\xcb\x88\xd0\xe63\xd1\x83\x8dp\xf5\xb8\x8b\x08\xba\xfc\xf6\xf5\x81\x9d xP\xc1Y\x90\xa4p\xe6\x11?E\xaf\xc1r\x9cQy\xfc\xf3\x9f\xd5\xc9\xcc\xf6\x944\xf4<&\x0b\x920\xdb\xf2-\xbc\x04\xab\x16\xf0&\"\x8e\xfe\x8d\x81m\xaf\xb7\xcd%\xf9O\xdf\xd1\xec \xb4\xa1\x0fL\x93\xfd8\n>\xb9\x19\xb6\xfc,\xf2\x07p\x0bg\xb9<\xb3\xc4\xc4Q\xa2\x10\x12A\xb2\x04\xc4\xdf\x80\xd2\xece\x81\xc4\xe1\xfe\xa1\x10\xc1\x86\xc7\xe6\n=/\xcc`\xbb\x8d1\xbf)\xf0\x92Q\xd1\x89b\x18^\x15\xde\x128\x00\xeb\x9baHf\x16\x061\xd9\xb5\x06\xf2\xb3H]k0z,>Bz\x99\xb8\xd6\xd0RF\x85O\x8b\x1e\\\x92\x87y/q^\x15\x19\xd1\x01\xac\x96\x19\xe1\xb2\xa5\xbdv,V~1\xabAP\xdcdd4\xcd\x0dP\x1a\xd1@E\x16$\xe0\x0b\x92\xe5\x11M\\k\xe4\x8c,|\x11\x91\xcbo\xe9\x95k\x81\xdea\xa7\xb7\xb5ca\xfee\xe1\xabE\x9c\xe4\xaer\xf1\xbd\xbc\xbct.\xb7\x1d\x9a\xcd\x1el\x0d\x87\xc3\x070\x82k((\x16A\xecI\xcb\xb5XV\x10\xab\xc4\xad1\xa74\xbe\x9e\xd1\xc4\xc2K`\xa4r\xd7\x1a}\xedl\xf7\x1e;\xdb\xbd\xd1Vo\xb4\xed<\xea=r\xbe\x86\xef\x87\xcev\xef\x1b\xe7kH\x7f\xe4\xec\xf4F\x8f\x9d\xaf!\xc1*\x11*%\xf0\xef\xc1\x8a>\x15+Zi\x86\x80\xc7\xe5,\xcdje\x8d\x1e\xa7W\x16(H\xea:\xd2V\xf6\"J\x06\xb7\x14YOL\xcec\xeaW]\xc3\x17\xc4\xf7\x04\x9dC\xe6'J\xb1\xacU\x0f\xbd\xa1\xb3\x95\xf7\x88\x9f\x93\x01-\x98.&\xb4\x12\x19\xe5\x92\xf9/64\xf7\xaa\x98\x10G\xab\xf9V+\x8b#\x915-\x11\xe8!$D%\x0d:\x8f\xe2\xd8\x95\xb7\x151\xdc\xdc\x19w\x15\xf0V\x8a\xd4\x06Uwvd\xba&Y\xa4\xadV\xa4\x94d\x0c\xbf\x06EN\x9e\xfaIM\x89\xd9$\xba\x9a\xfd\xddJ\xafz\x8f\x05\xb3\xa95[\xe3\xdb5\xa9b,\x13\x111h\xea,\xfc(\xa9+\xb8\xd6\x97\xe5\x0cl\xe6\xe7\xec\x98\\uh\x12\x8dz\x86\xb2\x90\x934P@\xbe\x89>\x93[\x96\xb9\xce\xc9;\x8f\xc6\x95J+\xf3\xc3\xa8\xc8\xdd\xde\x8e\x98\xf0\x9du\xa0\x95\xea\xf3[\x1a\x87\xcdA\x8f\xb6Ds\x9b=\x0e\xf6 \xccR\xdd\xa5\x98\xd2\x87\xec\x95\xaf\xd2~\xe1 \xf1\x05t]! \xa8\xb8\xfbt\xc5\xe8\xb9\x18U\xcc\xe6\x06@\xff\xf2\xf5\x90\xff\xdf\xf8\xabS\xfc\x11V8\xf0A\xbb\xa4\xdb\x90`\x00\xc26n\xe9\xc9\x84\x96l\x8d\xbem\xfd\x9a \x85d\x0e!P\x84J\xf2\x14\x1fC\xf7,44\x85bz\x95\x9e\xb0~\x8b \x9c\xaa\xf8\xbcr\xe3\xc6\x82^\xf1\xd1\x01\nj}#\x80\xa7\xe3~\xc8\xc4\xd7\xd10\xbd2\xfe1\x95\xef\xf9\xc2\x8fcK*\xde\x1b\xd7<\x82Y\xb9 \xd9yL/M\xc6\xe4\x14X\x0c\x96\xb9\xe7QV];\xf5v{}\x0c\xe9N\xec\xe7\x8c\x7f\xca\x155\xa6\xac(\x91\x94 \x8d\x1dS\xcd\x81\xd1\xb4\xc7\xcb\xb6\x8a\x88x\xbd|\x19\xe4\xcfV \x89\\0Sq\xe5\xb0v\xa8jl-i\x90C\xdd\xcf\x063\x8e\xf8\x9c\xb8C\xb1^\x8fQyY\x86U\x02\xa7k\xc2\xe0\xaa7\xfckW\xea\xd6Vz\xa5\xd2oY\xdf/*\xcb\xe7\x06E\x911\xc3\x16\xd0\xff\xf0\xc4n\xeb\xbe\x9a\xecm%\xcdI\xad\x03\x8c\x99~\xc3\xc46{,[\x83Rr/\x1a\x0d5k\xcb\xd5\x177\xb6] \xe28\x95\x90\xf1\x9d\x9b>\xc5\x07pB\x1f\x17\xf5[h 6/\xcc\xac&\xcde4m\x11\\\xa5,\xb9\x9cG\x8c\x0c\xe0\xad\x0b>\xa0\xcb\xccO\x9bds\xdb\xa0\xc2\xd5U\xd6-\x07\x80\xbe\xc2\xfa\xaa\xd7\xeb\x1b\xa6\xc0\x12\x0c\xf7\x96\xfbE9\xae\xae\xab\xed%<\xfd\x08$\xbd\xe3\x91K\xcf\xf3H\xbf/H1\xff\xdf.\x90p\xed=3H\xfc\x85\x12\x1dz\x1d2\x0c8\xc5\x8cuvm\xceg\x19\xf1?\x89\x8f\xbc*\"\x0f\x84\xacqS!\xfe\xa7\x05\x18#E^\x7f\xeb\x14S\x8b\xf4\xe0oc#]\x18(\xb9J$\xb3\xe1ZZ\xe7\x97_\x99\x7fO\x1b\xe0\xf1,\x8bCh\xa2\x1e.\xe8~*\x13w@pj\x86\xae\xdd\xb3,\xd7\x12K,^\x0e\x89\x98\x1fG\x81e\xde@\xbd2\x1c\xdc\xf7 '\xd8p\xac#\xe36\x0fnR\xff\x9b\x99\x7f\x83\xef\xaf\x9a\x91V!nm\xeb\x0bF\xe9+N\xc7\x99\x82\xff-\xca\xa5;\xb2\x8e\xbcA\xcc\xff=\xa3\xe1\xb5\xd9|wqs\x8fU\xed\xe3\x8d\x11\xb6 \x12\xae=X\xe4\x83y4\x9b\x0f\x944\xe4\xf2\x0d\x8a\xd4\x10X\xa8\x9b\x97Rk\xc5Dv\x18\xd8T\xdd\xf5\xe1\xfb\xde\xf2\xa8(\xc5)b$t\xfd\xbaS\xa1\xae_5\x01\xe7\x0bp\xa6\xd7:\x04[\xec\xf3\xcd\xad\x91\xf0[]\xd2\xd8t\x7f\xc2\xe4\xbe\xb0\xf8\x0dP1\xe7\xf2\x97s\xf8\x9f\xdar\x9f\xcd-g\xda\x92l\xabcl\x0d}8\xc5ok\xe4\xb8K\xc0\xeb\xa2\x9f7\xcaw\xd2\xd6\xa4\x92\xdf\xefD\xba\xbbm\x8a\xf8\xec\xbe\x85!\n\x05\xe7\x8d\xfa\x87\xee\x91\xcaTu6>l\x91\x88\xa1\xf3X\xcc\xb4\xe3\xaeO\x10\x86\xb5G\xe7\xba\x19\xd74!j \x0d\x1d\xc2C\xd1\xa9\xbe\xe3S\x87i\xdf=\xa7A\x91k\xee\xe0j\x90\xcf\xfd\x90\x0b\x98C\xf8\xbf\x910d\xbb}\x10\x9a\x1d3\xde\xc6!R\x1f\xb4_H-UeU)\x8c\x97\xf7N+\xe3EXa\xe0?+\xeb\xc5.\x0d\xceM\xe3P\x15\xf5\xacTB}j0y#\xab\xa3\x9b\xfd\xccvF\x0f\xf1\x0d\xbd\xa1\xaa\xbbR\xfd8uO\xabf\xbfl\xc8]\xc3\xa8C\xe3\x94\xa3\xe7o\xe6\xe6[\xab!\xb9\x0d\xfd\xbb8\x97\xb5\x87~o\xf27\xb5\xf5\x7f\xfe\xff\xbf\xf7\xa9\xea\xbcR\x9e\xbf3\x95\xe7\xfa\xd2BG\x01\xdd\xd8`*\xbe\xbf\x88\x10\xce\xfc\xb3\xfc5\x05\xa7@\"\xa2%\xfcPx\xef\n\xdb:\xf6\xcf,\x84O\xf4\xc7a\x943\x0b\xe1\xefu\x02\x98\x99Y\xa8\xea\xfa\xc7B\xab\xca\xed\x1f\x8bz$?\xf3\x81\x03\xa4\xfd\x80\x997\x1a\xb3'~6+\x16$a\xeaq\x901\xdb\xdcD\xf2\xf5V\x9d7a\xd3\xfa;\xae \xba%p\x82\xf0\xcfN\xc4C\xac\xf0\xeaP2\xc9\xa6\xa8\xf2\xf6A\xcard\x1e\xe5Xwd\xbc7\xf4SQ\x0b\xa0\x9a8\xfb\xf2J\x03\xfc\x1dHW\xd0\xbb\x9exi\xca#\xe2I\x97\x8e\x02?\x14\x10\xfe\xfdD\xfc\xf9\x9e\xff)\xb9l\xc5\xc0\xabE\\\x11\xc0\xe3D\xe2\x1aA\xf6\xb86\xc0]UdO\xd8\xbb\xc54Q\xca~d\x13\xfcc\x01\xef\xb1\x8a\xb2x\xa9\xed\xd3\xf8\xdc\x1a\x0d`\x86J\x848a2`\xf0~-\x0c\x94\xa7S\x03\x0e\xca:\xab\xdf\xb7\x7f0\xe6\xf8\xcf\xcf\xaf\xdf\xb7\x01h\xfd>o\n\xbf\xef\x9c\x00\xd8\xc1T\xa3\xff{\xa1\x83\x9a\xe2\x04g\xf2}=\x15\xcd\xad\xeaj\xb5R1 \x8dW\x1f\xb2M\x8f\x8cUp\x93\x8eW!\xa2\xf3f\xad\xba\xb1i\xfa\x1f\x80\xc2D\xa9\xb9\xbb\xecH\xcf)'\xec\x95\xea\xf5\xe5y\xfdy\x98\xca\xfc\xd3\xf9\xf0\x01\xc6\xf6\xe1\x83\xc70)\x11\xe4V\xad\xfb\xa9\xf9\xe6\\\xbfo\xcd\x08{\xcaX\x16\x9d\x15\x8cX\x1c\xc3\xaa\xb2\xb9Y\x16*\xf6\xfb\x16\xf3\xcfD|\x04\xb3\xa2me4&\x96\xd1O\xdcY7+HWe\xb8\xa5\x0c\xa3\x9c\x0b\x95\xa1%\x02\x8b\x06i;\x081\xce*\xf4\xa2\x06ns\xccn\xae'\x16/\x8f\x8b]\x98 L\xbd\xe1\x98>I\xc6ts\x13e\x13:5\x16YG\xcf\x02\xf7J\xbe\x80\xda\x9e\x0e\x82\\M\x95+e\x86\x90p\xd1E\xfc\x8c|AC\"\xa208s? c\xf2#\xb9~F/\x93\xd6\xb8\x13\x8fIZ\x9byIug\x08\xd1\xc2\xe4\xac\xdf\xa6\xbc\xe6\x8f\xe4:\x07?Y'\xca\x8f\xfd\xb3\xef2\xba\xd8\x17\xb6_$\xb3\xf9\xb9\x9c\xcd\x08C2\xa4\x84j\xd4\xc9IL\x02F\xc2\x83$$W\xd8\xf76F8\xf76F\xe3\xed-xb\xe8\x13\xb9\xde\x87\xa7!G\xdb\xe6\xf7je\xfb\xde\xc6\x10\x8a\xea\x19\xc0\xe5=\xdf\xefx\xfbk\xafVx\x83\xf6\xfb\xdb\x8f\xcd\xb4=;\xf2\xac\x8cA\xc8\x9bl\x0f\x02~\xbc W\xec\xd8?\xb3#\xe4\xc2\xf7\xab\x8c\\\x88o\xac\xfa\x1a\"w\xfb\x9bv\xd3;\xc3[\x9a\xae\x9ar\x1b]\xd5\x9a~\xd8l\x06\n\x1f\xfa9\x14\xae\x97}\xe4\xd5\xc0\xa3\n\x83Gi\xb34\xf6\xc5\xf9\xd4\xb0\xc1\xc89\xcf\x94\x13\xf6F.\x81\x1da\xb0\xe7\xac\xc1\xb3\x03\x1f\xd4Z\x8eC\xba\\\xb7\xde \x02\x93\xed8\xe5\xbf\x04~\x8a\xd8+\xded*\x1c\x95%\xad\x91n\xf3\x1c\x1d+\x03\x0b\xe5\xbc\x9a\xa7H?G\xdf0_\xae\x8f<\x83\x91_\xce\xa3\x98\xc8\xb8\xc6`XZ\xb5\x8dP\x89Y\x99y\x04\xdb\xcc\xa3\xa8\xa2\x80\x8a> \xa3\x02;\xabr\x106 \xa5\x11\"\xc5c8J\xc1\x9eVX\x16{\xb4*W=dd\x0c\xcf\xab\x13\xbb\xe8\xdc\xde\xb0\xc9\x93\xe1jEv\x85\x0f\xfa\x8c\xf05\xcb\xf7i\x910\x1b!\xbd\xf1\xb4\x89\xc5\x18X!\x9a\x88\x169YL\x1a;\x87\x81\xc5\xae\x81\\^\xf7\xe9\xd1\xd1\x1fN<\xb29\x1a'O\x18\x84=\x07;\xda\xd46\n\x82e\x8e\xe2\x97\xaa#\x05\"5\x13\x88\xd4\xdcQ'\xab\xeadU\x04!1D\xb9\x1f\xd6\x0c\x91\x8c\xd9`0\xeej\x93Um\x8a\xc8\xed\x9d\xf3\xe1\xd5{\xbb\xe4\xf6\x16\x1a\xa3R{\xa7\x1a\x96\xc1\x80t\x02N2Fp\xfa\xde\xb130\x1d\x12\xfd\xc9\x8d}\xe7\xee\xc6d\x0dXH\xd5\x0f\xe9\xe8G7a\xf6\xa4\x96F\xb6T\xe7;\x91Z'.\x11\xad\xadK\xbc\x8e\xaa\x1c&\xb8\xcd\x01}_\xe7\x80\xa4a7\xabF\xe8uH\x16\xd0\xbc:\xab&\x96\xe4\xc0\xc8T\xd6R\x8c\xbb9\xb4\nx0\x90\xcc\x18\"\xa6^V\x0d3\xf22u|\x85\xc7\xfe\xd9\xbe\xb6n\xf2\xbd\xcc\x01}\x02\xce\xe1W\x16\x90\xd7`6\xa5$D\x0cQkj\x9b/0Rj\x8d\x15\xf5\x0c\xa8_\xe5\xa6^\xe6\x90\xe4\"\xcah\xc2\xcf\xf2\xb1\x9a\xefA\x98{\xc6\xef\xd5J\x05KJy}\x9d\xab\xbe \xa4\x86\xc2\x9c\xd0\xac\xa9\x02Ou!S\xb8\xb9\xf9d8Ffi\x08\x8d\xce9_T\xef\xce\xc8P\xe8\xf5SaSc\x85\xf5\xb38\x19\xe7\x00N\n\x88\x88(\x863\xc4\xe7\xfc<\x17b$IM\xc3C\xc59\xf3\xe3\xdc*\x12\x11\x8d+\xb46\x94D\"\\o\xa4\x07\x8e\x0ce#\x1c\x7fH\xeamT\x0f\x88\xb1\xd5j\x839!\x0d\x80%\xaa}H\xd5\x93\x92\x1f+\xcb\x7f\xde\xc2\xa8,\xed\x14a>(\xfb\xdc3$AF\x05\xe7\x955\xf7\x85:\x98~(\x90\x93\xd3\x05\xb1+\x10\x80\x11\xa5\xa0\x8b\xe9\x17\xcdG\xedD\x88\x01\xdf9l\xc5t\nR,\xa2\xady\x1d\xc2qV\x17\x87\x9b\xa37\xd6\x8b\xa9\xa1\xaaM\x15b\xeaq1?\xc4\xb9\xb7d\xfe\xd9kr\xee\x9a\xa5I\xb5\x0f\xb3\xa9\xc7\xf7m\xe8\x12\x897\x93p\x8a%\xaapyX\"\x0dOU\xa8\xefR\x0c[\xca\xa5\xfd\xbe\xed\xafV\xe7H\x07\x18 \xfa}\xbb\xe2\x02\xf5\xde\xf0\x02\x84#\xc8R\x9b\xb4\xca\x8a\x10\x0e77q\x07\x00\x18\xceA\\F:\x84\xe7\xf7\x15*\xce\xbdeT\x1b \x9bb\x98@5\x11f\x0c\x99C\x83\x95\xe3\xbc\xdf\xb7\xe7&\x19\xf0r\x84\x0bHl\x0f\xba@\x98mn\xae[\x9c92\xa3\xb0s\"\xd6f\x9cjd\x90\x93z\x10c$u\xdf\x18\x8d\xe5\x86\x91\x9c\x8dl\\1b\x9e|V>\xe1\x0c\x8f\xac2\x14,y]d }\xe6\x83@k!\x04\xf7\xfec\x06\x11\xc7\x8c6%3\xa5\x05\xe5\x8dQ OZ\x02\x08\xd6\x11\\\x83\xd8f\x9e\xcd\x8cC\xa12\x1f\x05\xdce\xdd\xb4\x97\xef\xdb\xc5kr\x8ep\xc4\xcb\x082\xcc:\x890\xd3\xdc\x10D\x96\xaa\xb1B\xdd\xb4\x98\xdd@\x89\x99I\x871k\x0b6\xb8\xc5\xc2I\x82\xa6\x9e\xdb\x15\x0f\x87\x88\xc0y\xcb\x12G^=\xec2\xd0g\xf9\xb6\x85\x92\xd99\xe3\x94x\xd1$\xe3BX\xc5\xe6\xeezCx\xc0 \x99BX\xe6\xeaU\xae\xd2fxb)\x98Z\xd8\xd20\xb5\xb0\xd5\x05O\x9e\x0c\xf0\xb4\xb0\x05\xb0\x84\xbf-XZ\xd8R\xb0\xb4\xb0U\x83\xa5\xf1\xddhx-,-l\x19\xb0\xacFV\xc1\xd2\x9a\"\xc3\xbb\xaaa\xcd\x1bF\x17\x16\xa6\xa9\xcdahZ\"\xff\xc27\xb2\xb6\xd0\x06D3\xa4\x14L\x13)\xbf\x9aY2 g-b\x96\x88\xc0\xa4\xb4\xdf\xa76C\xe2\xd5+\xb9#\xe0\xc5(\xacNLu$\xd8|\xc3\xd2\xd2N\x1cmMm(\x8a\x8b\xba\xd6\xa3\xf8S\xb4\x1eAZY\xe4\xd34\xf7\x0c`\x18*)KRV\xbe?\x83\x146\x9f\x88\xbb-12\xbdU\x13!\xcf\x82D\xa9\x11\x12\xa9F\x10J\x1e\xa6\x95\x06\x02\xa6\x9d2\x8d\xf1,\x9e\x97\x8a\xe4\x00<\xea\x044\xbd\x06`\x1eS\xe9\xa7\xac\xd4\xc8\\\xea\x95\xd0\xfe\x8e\xf7\x89p\xa2\x88\xf5\x9f&4\x16Bh\xc4\x94#\xd63\x92E\x17$\x84a\xf0\x13@\xacq'~t\x8c\x1b\x10D4tD\xc3\xce\x06Z\n\xfc:\xa0\xf6F\xee\x90\xb7\xd0l\xba\xf1\x80\x15Zj.+\x01}\xef\x86\n\xa2\xaa\x16'\xc1|a\xdd\xf6Xl\x82\xe0]\x85\x11\xac\x1a/$u?\xd8\xaf\xde\x06\x1a\xe2,\xb5\x0d\xc9\x7f0B\xe3H>\xff\xdb\xa0\xeb{:\xd0Z\x93\xe0\xfb\xc8\xd5\x8f\xa5C\xcaj5\xc4\x0d\x1e\xdd\x8b\xf4z\xf2iWkt\xd3\x91&\xb1\x03\x14k\xea(\xcb<\xbb\xde\x19&5\xcc\xf9\xd78)H\xfd\xa40\xc7[}\xc2x95\xc6TL\x17\xf6 \x8e<*\x8f^\xdf\xa3u(jfU\x14\xf0\"\x9c\xe9\xad\xee\x19\x94WQ \xf9\xa2\xb5\xdf\xef\xdb\xcd\xf5\xf0Q\xcb\x95#Hq&\x10{\x1d\xa1\x0d\x0d}y\xf8\x1fA_~^?9\xce\xff\x94\x93#m\x9e\x1c\xe6z\xbb\x1b#\xdc\xc1\x04\xf0\xe4\xda\x02\x81\x93\x136\x11G\xa4\x18\x87\xbb,\xd2<\xdf\xe1,J\xebg\x11\xff\xd67\xb3\x16\x97C-\xd8\x06\xf3[\x8f'c\xb2\x9d\xb0\x14\xc7\xd3\x9fN\xac\xcf5\xb1\xfegH\x85\xe9\x81F\xdbj\xc0\x7f\x01\xcaP\xf1\x90\xd3\xf5LY\x11[8\x04\x9e\x8c\xb6y\xb2\x8c\xc6\xc4\xe5rd\x1c\xe5\xcc\xe2\xbc\xd3M;xa\xec\xe0\xc5\x7f\x84\x1d<\xab\xef\xe0\xd9\x9f\xb2\x83\xe7w\xe2\xfd>|`\xfe\xd9@\x80\x1d\xcf\x1b\x1bn\xde\xd8p`\xee\x00\x08v\x9dz\xcdF,|\xf1\xa7m\xc4?k\x07\xcen\xd7\xb1\x07\n\xc1\x9eE\xe1QSK \xbb2\x98\x93\xe0\x13\xd0=\x1b$n\xb3\xc6\xdb4\xac1<\xeb\xaa\xe8\xef[w~\xae\x8f=x>-(\xf21\xeb\xf7\x13\x19W6\x11\x960\xba\xe15\xe4D\xca\xd1\xb7\xe8.\x83\x9a\xc2RI\x7f\xa0\xb3liLp\xec\xd9J\xa9\x999Q\x88@a)\xf5 5\x1d%\xa8$[z\x0d\x1cr\xb6\xdb?\x13\xec\xce\xb9\xf8xM\xce\xf1\xfc_\x83\xa4e\xb7\x8b\xc5\xc6OSRURq\x14\x82\xb3\x00\x00\xc4\x10n\x8d\x9ff-\x05\n\xf1\x93\xcb\xd77\xd0\xce8\xb2\xf0\x02h\xe7\xbcA;#l\x13\x0e\x142I\xa7^\x81\xc9$\x9fz><\xc8X\x13X Z2!\xb0\x12|\xde\xef\x9fs\xbe\xba\"\xba\x16\x8eB7\x96\xbe\xb2z\xdcn\xb1'\xee\xab]\xeb\xdc\x8fs\xa2\x9ci58\\\xbf\xbb\x00\x98\xf7\xd28\xb7\xdc\x00\xabi\xba\xe1je\x17{\xd6\xd0\x82\x03\x1f\x95\x08\xd3\x9bH\xfc\x99A\xe2\xcf\xfe#\x90\xf8\xcb:\x89\xbf\xfcSH\xfc\xc5z\x12\x7f\x9d\xe2\x16\xb2\xba\xd7\xe9\xa65\xa8\x16P\x8b\xfd|\xfd\x81\x0fS*X\xf8\xd0jL\x83\xadk\xb6\xa5\xb1\xa5\xc4\x17\x8d\xc3\xe3\xa2qx\x88\x83\xe3\xeaO;#\xfedf\xed\xf2\xee\xccZSKi()\xa9g\xa8)q\xe4\xd5\x14\x8f\xd8\xf7\x98\x13q\x02[I\x9f86>*j\x19xL(\x94q\xf1\xafA\x1foP\x1b\x1a3Td\xf0\x0e\xc4/\xbc\x89\xe0\x81\x06\xef\x0c(^\xd1\xa0xTS\xbcx\xea\xe5\x82\xd4)B\x96\nUd\x14\xba\xbe\x19~!&\xe1\xd9\xb5\xe5\x06%\xc2\xd1j\x95\xefe\x92\x06\xb5\xc8\xcf\xd5\x17\xb0L\xb2/c\xf2\xdd\xfb\xa4\xbbbm\xe7\\5v\xceUc\xe7\x08\x0d\xab\x0cZ\xf5)\xf5\xce};M\xc1kb\xb7W\xc4\xd2\x00\x96\xb3p\xca\x05\xadr|j\x86|\xaa\xf9\xbb\x9b\xc6\xf8\x83\x87\xda-o\xb7\x17G\xda\x15C7\xf0\xd00\x15\xef\xadw\xe9\xf9j\x9dirG\xfc\xc7\x90|\xcb+u\x06h\xed}I,\xda\x87\xda\xe9\xaf3\x1eV\xdd]< fN\xcb\xbe\xbd\xd7[\x17ir?\xb3+'q\x9a\xf8\xf1\xcb\xf3\xf3\x9c0\xdc\x1d\x81\x12\xe9ih \xcb\xef^\xb3a\x88\x0e\xabB\xbe\x16I\xc4T0\xd8;\xa4\x9d6\xa0U\xf7\x05h\x8e\xdf\x19>\xc47@\x1e5A\xaf\x1c\x97\x1eV\xebn\x84\xa3xd\xa0C\x97m\xb7NW\xfe\xf7g4\x0e5\x8a\xf4\x9d\xe6\xce\xd0{\xc2\xf0\xfd\xbc\xcdQ\xdf\x0cS*\x87~\x93S\xcd\xdap\xc2rL5\xe7\x06\xf1?\x8d!~\xc1hU\xb4r.U\xf3qi\x12_\xd7\xc2J\xf7d4\xdc:v\xd5`8\x1a\x1a@\xac\xda\xe2\x04` c\xeb\xdf\x0d\x1a:D\x86#\xab\xf1&\x8e[slt\x91\x11a\x8d\xf7\xa5}\xa8zw\xea$J\xce\xe9\x97v\xc0\xeb\xdc\xa9q\x92e4\xfb\xd2\xd6\xa1\xd2\xba\xe6\xd5\xbf%\x10\xd8\x16\x96\x02\xfd\xeepz\xfab\x02\xd7\xef\xed\xf6\xc2\xe8\x02\xeb\x8f4#m\xba\x0b\x13\xd9\xb9\xaf=\x1d\xeb\xdb\xbfEc\xc6_\x190\x92=\xackZ\x17\x16\xbe\x1a\x1fR\xcf>\xf7\xedO\xad\xa3\xa5\xdb9\xb0\xeb\x90\xd8J\xaf\xd6\xd0\ns\xf3T\xa7\xce\x88\x9f*C5\x90NW\xf9^\x93\x88TAu\xbf\x7f\xe8\xf0\xc1\xfd\xde>\x0d\x89\xa0`\xb9X\xd5\x9b\xdb\xac\x82-(fF\x93-\xe7\xa1\x8a\xf6m\xc6\xd7Q\x14\x0e\xfas\x18\xfdD\x12'\xa0\x0b\xb0\x06\xa9R\xd2\x8c\xc6tf$\x844\xe0\xb2\xa6\x91\x12\x84>\xf35T\x00E\xe7ylo\x0fqok\xf8W\xdc{8\xfc+jv\x94r\x19\xb1\x80xJ\xb2\xa6\x11\xa5\xf0\xeb\xaat\xe2/\x08 \xe2\x8d\xa5\xf4P\xc5\x9b\x96U\x12\xf3\xcd\xa1\x0b\xef s\xe4\\B\xf1k\xf3\xcd\xe1M\xdf\xfal\xfe\xb2\xe3?>;\xdbn\xf6wFiL\xfc\xa4Q\x96<\xda\xd9\xd9\x195\xcb\nbH\xcd\xce}\xc62\x08^b\xf6\x0e>M\xe6\x08\xe7\xbeY\xe7\xac\x88b\x16%FJ\x94\xe4$\xab\xa8\xac\x1a\x85?\xc4\xbd\xea\x9f\xa13B&!8\xc5oL\x14\xe8\xcb\xb0\xaf\xf7\x96/\xd3r\xcd\xda\x9d\xe2\xe7\xa0\x1c\xfa\x90:|\x8d\xb5b\xcb\xb6\xd2\x8cX\xe2\xc1\xa5?\xeco}\x87\xa0%\xed\x88\x85\xeat\x1c\\U\xe7\xa3!\xaa4cf\xdd\xb4\"\xd08g~\xf6\xf8l\x80\x0d\xb2\\\x98X=P\xea+\xd3\xefnF\x18\x87B\xc1H\x08\xaf\xbc\xda\xc4P\xc9?\x95*\xf9\xfa\x03\xd8\xca\xaa\x99M\x92\xe9\xb8\xe5\x00\xab|@\xd3+\x0ba\"\xa2\x96N\x92\xa9\x97UW\x01\xba\xfd{\x86c\xa76\xca\xeePtV\xc1h+\xd5\xb1G0\x03/\xc0\xd7\xa9\xd7e\x06.\x1b\xe8\xf7m\xf9\xcb\xd0Z/|\x16\xccI\xbeZ\xb5\xb3\x04[w$\n\xbc\x91ghW\xc1\x05\xfd|\x97Ry\xa3\x90q\x83\xb3\x9fV\x9eJ\xafS\xf9\x84\x07<\x97\xc1eo\xdbzA{D4\xd8\x83\x01\xf3#nA\xd8\x9c\x86\xbd\xbcH9\x1d'a\x05\x9a\xd7\xa9\xb8\x82\xa9\xfbr~\x04\x08\x13'#\x0bzA\xf6\xd4\x0f\x1b|\xaa\xb5\xdf\x168\xaeU\x1eb\xa2\x0c\x18e\xd6\xd0\xe1\xb8vC#\xfc&\x8d\xb9\n\xab}9\x8a.{\xf8\n\xeb\xe4\xd4K$\x1c9\x0f\xd2\x0e\x93:+\xe52\xd5\xbcX\x9c\x0d\xacMR\xe2\x17k\x0be~\x14\x8b2\xcfR\x0fR\xa0\xf3\xc1 \x10/\xb4X\xf8\x10\xd2\x07\x03y\x13y$?\x838\n>E\xc9\xcc\xc2\xdf\xadi|0\x10>\x02\xa2\xf9\xcfkK\xe5AF\xe38Jf\xa2\xe0\xdb\xd4[JK\x9ek\x11\xc7\xb8Z\xf6o%\x14/\xa4\x9b\x9f\\c\x81\xd9\x87Q\xcep\xe6}Nm\x86\xc6\xc0.2?Jr;C{AL\xfc\xec8Z\x10Z0\xfbm:aS\xe4&\x8e\x1f\x86vf\xac\xd1o\xb2u(\xe0\xe5\x84\xa9\x1a\xb6qG\xa3\xaf\x8f\xa2\xfci\x1c]\xc0\xfa\xb7\x86\xa1P\x05\xc6\x82J\xd8\xcc\x841\x08\xf1\xa2\xa7{<\xcfH>\xa7q(\x16\xf2\xe7:\x80\xe0\x0eH6\xac\x9e4\x17\xa6kY\xee-\xcb\x12\xbfK\xbde\x94?_\xa4\xec\xda\x95\x8f\xc2\x14\x19g\xb7\xdc\x8daY\x8e\x7fN\x0d\xf4:\x8b\x92\xa6\x8f_\xe5\x9bb\xb6\x0c\x81q\xedf\x927\x99\"\xdcL\x14>7Lf(\x10\xf8a\x08\x0f]r(\x10\xf0\xab\xc5\x0co\x8cP\x89k\x03*\x92\xae!i\x9f\xc2qk\x04\xad\xde\xd5\xeb\xa1\xba\x89L\xad\xcd\x86\xbd\xc1V\xab\x8cO\x0d\xadVv\xa2\xc7&\x16\xa59\xbc\x8c\x0f\x0f\x86\x88\xbaG\xf94\x8e;=\xe0\x80\xa0\x9b\xc3\x12\xaeJ\xa2\x12\xdc\x81\xbfK\x1d\xb9B\xce\x8c\xb0n\xe3\x8c\xb5o\xa7\xeaV\x1drA\xb2k\xbb\xe6\x1b#+ \xb7^\x0d\x166\x95Wp0\x15\xd9\xa2\xa0\xeeU\x80A\xdb\x9c\"~\x97\n\xfb\x95\x1f\xd2\x96\x99 8\xe3J\xb2\x9c{\x93\xa9\xb1\x0fOR\xe9\xfdQ\x99J{u\x1f\"g\x1f^\x17\x02`k\xcfLr\xd93\x92m\"\x9f\x8bi\x9d_\x90k\x19E\xcdS,J\"Vk\x05o\x8c\xf8\xff\xabw\xa6\x8c\xe0\x05\xdf\xa7\xc2F\x18g\x98J\xd3\xdeqt^\xb9e\xc1y\x0b\xfe\xc7:\x89\xf6\xfb6\xf58FX\x8c\xa6\xf0\x10-\x8a\xbc\x89%#\xc0\x08\xae\xcd\xc2V\xa0\xfcat\x8a\xd8\xd7\xc74\xb5\xb0uma\xabH\xc1\xbb\xe12\xb1\xa6\x10e\x02\xc0\x15\x93sfm\xf0F[G\xd6\xd3\x9e\x90\xc9z\xfeU\x94\xf7\xf29-\xe2\xb0wFx\xeaE\x14\xc2qe\x0c\x04\".\x9a\xe3P b\x18\x87\xbc\x1fl]YXt\x89-`\xd4\xadi\xb9a\xee\xb9\x1ah\xbcd2\x9cb\xdfK&\xa3)\xce\xbdd\xb25\xc5\xb1\x97L\xb6\xa78\xf0\x92\xc9\xce\x14\x17^2y8\x1d\xdf ~\xc2\xb6\xbf\xa2\xd1c\x02\n\xbf\xf9$\x9ez\xc2\x1a`\x92O\x9f\x8c\xfa}\xdb\xc8\xb0r\xe6g\xccB\x90\xb9K&\xd1t@&\xfet\xd0,F\x92\xd0B\x983(\xa9\x13F9\xbc\xcd$\xb0\xe1$\xb5\xf9\xa1\"\xa00\xb06c\x840{2\xdc\xbb\xad\\\x80\x90\xcbv\x87\xfd\xfem\x05\x0b\x84pV\x7f\x9c\x00-\xe5\xb9\x84\xe5 R\xda\x04\xf3\x8e\xab!s\xa2\xbaZQ\xb4\xb6}k3\xde\xb4\x06P\x9c\x1f\x83\xba\"\x82\xc6\x12\x1c\xc1BU\xa8\xfd\xa3\xc9\x88\xc2\xb3Z\x07\xb0\x17FC\xb4Z\x0d\xcb\x1fL2fn\xe4\xb6}\x84\xd7\xde\xecm\xe2Z\x91\x1c\xa6\x0f%\xcf#%B\x93\xe1T\xef\xcd\xd5\xca\x16\x8f\x96\xfd\x0co\xa3Y\xbf\xdfLq\xea\x95v\x87\xab\x95,\xf2L\x0e\x14r\xfb}5nx\xb8\x9f\xcf\xaa:\xfcj%\x91\x9e\xcb\x01y%\x04\xfc\xce\xf9\x18c2\x06\x93\x1f\xd5\x86\x83\xa3|\x7f\x9e\xd1\x05\xb9\xad\x89\x07\xa2\xd8\x83\xc8a$gvg\xe3EN\xb2\xa73p;\xae\xce\xf6\xf7\x86`\xa9\xa97N\x84G\xccyLif3G\x1fv\x08,\x94f\x84}K\x8b$\x8c\x92\xd9~\x1c\x91\x84\xbd&\x01\xc4\x03p\xea\xe7\x93h$ Qlg\xe2y^\x84\x8d2\xe2,\xad\x15\x12\xea\x14UJ\x1d|\x9e\x1a\x01|U\x99\xb2\x01\x95+>1\xabd\x01\"s\xce\xfc\xec\xfdk?\x8a9\x83x\x9c\xda\x0c\xbfHm\xeb\xcaB\xe8\xc6\xad\x08\x12!lA\xc7OS\x92\x84R\xcek6\x8a\xd6ty\xd2\xea\xf2\xfa\x9f\xef\xf2Dv\xb9a\xca\x18E\x9af$\xcf\xdf@\xa1\xf7\\F\xa9/\xc4fK y\x7f\x04\x9a\x13qS\xf9\xa4\x0e\xee\xbd\xda\x14\x9f\x82T\xe7m\x0c\xf9\xf9\xe6G\xf1{\xb1$\xcd.\x062W\xb4\xab\x16\n\x92^\xfb,\xa2\xad\n\x0f\xcc\xe6\xb0\xd9\xa3\xe8\xe0\xef\xfcp\xe5\xe7\x9eQ\xec~G#\xe6\xc8\xe1\x10\xae\x1a\xe2l\x91\xf7cj\xdb\xc4I\xc8\x0c\xdeB\x10 z\x1a~,r\xc61}S!\x0f/\x8b\xee\xd7z\x1b\xb4\x06\x85\x1e\xd8\xf5\x0e\x07\xcd\x01!\x84\xdc.\xe8\x8dnX\xb0\x93\xda\x82 ,n\xaf\xd8I\xf7\x8a\x89\xe2\xb5%;i.\xd9\x89\xdc(\xad^\xe4\xa2\xc9\xa6\xe5\xfe\x91i\xadU\x13\xd9\x0fjM\x9a\xe0V\xbd\xd4\x17N\xa6\xde\xefj\xa86\x85\xfa\xda\x9d\x1c\xd3\x94/]r\xbf\xde\xce\xa0\xdd\xa1\xb9(\xbaP\xa3\xb3\xc6\xb2\x9cT\xcb\xd2\xc4\x97]\xeff\x14\x00\xd6\xb4\x81b\xb7 Ms^\xaa\x8b\xf5S\xaaw\x02\xb0\xb8\xad\n\xc2]\xd2\xf5RXL0c\x80%\xceL\xe2N\x0c\xe2>fN\x94\xbff\xf1^\xe2p1\xc2c\xeb\xb7\x0d1\xb6\xcd&k\xd2\x02V\xdb$\xael\xce\xac\x83yWo4\xa0\xde\xe6Q2\xfb\x16\xec.\xf6\x12G\x18`h\xba\xce\x0b\x88\xbcA\xe6&\x0e\xa3i-\xeb\x98\xa6\x9b\x19~\x9a\xda\xacA\x98q\"\xc4\x12\xea-\x19M\xdd\x0cKe=3AY\x8ek#9\x81\x91\xc0+\xcf{\n\x1aT\xd8@x\xf5Y\x0d\xec;\x82\x07\x0d\x98I\xbea\xfd\xcc\x94\x97\x05Sp\xfb\xc6\xad\xfajV1\x9bt\xab\xa1}\xd1Bm\xdd\xbfe\xa9j\x03\xe3U\xd6\x8c\xd4\xd5\x1d\xd7\x8b\xd7\xbak\xac \x9c\\\x9c\xc3l,\x15\x16O\x8b\xb1\xc6\xae\xc2\nu\x1b\xdbi \x96\xef[\xb8'\x92(\xddl\xf3\x04\xc3\x8a\xb3\xfa\x1e\xaa\xd6\xbf\xb9yjm\x9e\xc86K\x9baR?P\x04\xd9\xd83U\x7f~\x18\xda\xdfIn\xc2\xb5;\x94\x82*\xb3\xe3\x88\x1b\xb6O\xab!6\x0f$oC\xa8|\xc4b\xd7\x8f\x1ewX',7\x8c\xed\xfa\xa6\xb1]7\xc6\xa6\xc8\xf8\xb0E\x8e\xab\xb1\xc1\x97\x19\x054mx\x18\xe8\xb3k\x11%zo\x1d\x82\xb2\n\xe2`j\x7fk\x86o,\x8cj\xba\xd4\x85\x7f\xb5\xbe\xb1(i4\xd6*\\\x0fu\xf9KM\xb9\xcc&\xc3)\xe7m'\xa3)\xa6\x1e\x9blMq\xe4\xb1\xc9\xf6\x14\xfb\x1e\x9b\xecLq\xee\xb1\xc9\xc3)\x8e=6y4\xc5\x81\xc7&_Oq\xe1\xb1\xc9\xe3)6\xf4\x1e8\x14\xea\x8es\xf1g\x0e\x7f\x0coC.Z3\x07\xe4\x17\x02\xf1\xee\xe4\xcf\xc9\x10\x94\x06\x13:\xf5\xcc4'\xf5g\xe4\x04\xe1t\x12O\xbdps~\x1f\x8a\x0c\xce\x11\x06\x1dD\x80\xf0{!{;9\xa3\xe9\xab\x8c\xa6\xfe\xcc\x17\x82'n\xbfrh8 \xdah\xf9\x9bl\x81L\x8ai\x1b5\x8eR\x0ez\xa8\xafu\x9c\x0e\xbdLH\xa6\xa4\x1dl-h\x91Ci\x0b/\x8c\xc6\xafm\x86}\xb4\x0c=>j\xec\x1b\xb3\xbci\x8a\xe7\x1e\xcf\xc2s\x0f|b\x06\xe03\xf0\xc0\x96J\xa1|\x8a\xb0\xbf\xa7\xc6\xd3=\x1ahR\x8d\xc6\xb5o.\\\x1b\xba\x9e(\x97\xa3\xd7\x94-R\x0b\xcf\xba\x80\xda\x02 \xdfu\x1cz\x1dkR\xd6\x075\xf1\xa7\xb2uP\x1c\xd6\xef\x7f\xae\xa5$\xd0Q\xc5\x10\x7f[u\xf0\xc6P_\x16\x91\xd0[Zps3\xe0\xe4\xcd\xaa\xf9pU(\xdb\x80\x94AE\xd7\x0e\xae\xda\xe8\xad)\xb6\x86\xdc<\x01\xba\x1b\xadv\xa2@\x88\x81\x94\xad\xe1C0\xbd\x83fS\xeb\x04Q\xce\"\xec6\xa8\xd7\xde\xc8\x1d\x8c\xc6\xd5\xe5\x8d&d\x9b^\xd2fN\xd7o\xab\x9b\xe6\xf7\xfe\xcf\x06\xd8\xfb\xbb\x03\xec\xbd \xb0\xf7m\x80\xbd\xbf\x11`\xfc\x04\xdem\x1eF\xdd \x83c\xbe\x0e3!\xc2\xdd\x04\xb2\x12[a\xe6\xcf\x06pIY\xc7C\xa0\xc3\x93\xb6f;\xa8k\xbeaZ\x16\xb6*FVk\xbf\xf9xk\x1f\xf5lC9^\x87\x865E\xb8\xd9{M\xe3o\xde\x00\x00\x1e\xca\xfeO\x1a\xb7\x00\x1c\xc5j\x1fko \xea\xf8kMQ\x89?\x91\xeb3\xeag\xa1\xdbV\xd5\x9a\xda\xf4\x9b\x88\x99\nGc`G\"\xc3z&N\x94?k\xbc\xa3\xdb\xefw\xa5\xdah\xb5JZo\xee\xa2~\xdf\xdeOm\x86-a3b\xa1\xd5j?m \xbd\xb0Nig\x9dTY2\x84N\x86\xa9\xd7\x1dSn\xaf;\xd9mL\xb6\x9e;\x8e\xcem*n\xa6\x0e\xbe{\xfd\xf4\xe8\xb9\xe5y\x1eu\x98?\x83\xc8^\x14B\xec\xc0:\xae\xa9\xaf\xe3\x81\x8f\xa9#,>_S\xca\xc6P\xb3\xfanw\xba\x9f\xda\x99G\xb1\x15%i\xc1\xf0DvB\xc2\x08\x9e\xf2\x99JPd\xcac\xed\xa6\x12\x8c\\1?#\xfeMe\x84\x11UW y\xd9V\x8a+\x9d!\xf6\xbd\xe18\xbf\x8cX0\xb7\x13\xe7r\x1e\x05s\xb4\x0c\xfc\x9c\xf4\xb6\xbfv#/QO%\xef\x0dHSD\x13/'\xef\xb54\x1a\xee`{8\x16A\xd9DC\x8f]\xdfh\xa8!zW\x0d\xb5h\xaa\xdbh\xe7\x9b\xda\x80\xd6\x8d\xa75\x9cz+;\xc3\xdah\x06k\x87\xd3\xd6 \xb4&\xb6\x05M\xa9\xc7\xa2;&\xd0n\xa3V\x7f\xdb\xf5\xdb\xfa\x92Z\x89\x1d\xd7\xf7ni\xe4\x91nDO\xa2\x96\xff\xb0j\xa2Y@\xee]W\xa2\xc4M\n\xc2\xe1\x86\xe7E\xf04\xf6Z\x95\x14/\xe2\xc3c\xd9\x9a\x88\x0d<\x1f\xd7\x8f\x81HR\xfd\x8a\xeeT\xa1\xb7\xd6h\x90\xf9\xf6\x81\xf0M\x82B\xb5E\x98*\xb8\xa0,I\xfb\xfdlw\xb8Z\xd1\xdd&d\xda\xb0\xec\xf7\xb3'C\xd5\x821\xbd\xcb9!\xb1q*\xc9\x0dc\xceFu\x97\xb5\x06\xf6~\xcd\xc0\xa2~?y2\\\xad\"c`\xddj\xc1~?\xd9\xbd\xd3\xb0d\x91aiG\xd8G\x9cR\xb7\xf8\xcd\x12\xceS\xa8y\xe3\x99\xa1\xf9q8\x0d\xc4mPW\xf9\x90\xc4\xcc\x7f\x8f\x13o0\xba/\xbfNj\xa1\xad\xe1\xd5\xf5~_\xffN\xe0\xe2\x0fJ\xc3(\x9eA\x03\x0f\x1eA\x94\x89*\xe5\xe4\xc1#\x84e\x83G\"f:\x08\xb3F\x82\xcd\xee{\xa3!N\xf8\xbf\x08\xb3\x0d\xdeM\xb2\x01\x91\xbd\xb8\x00Zo\x0fDA\xb59'\x83\x04\x0f\xd8\xd4\x9d0\x9cLK\x11\x92>\xe32\\\xe4e\x93\xd1\x94\xaf\x90y\xf5\x0dh\xc9\xd3~J\x1du\x8b\xc5\xe5\x92\xdf\n\x92]+\x833[Rk}f\xa9\xc5\x80\xd6L\x1d\xbf\x11\x00S\xd9\x87P\x8f\x8ci\xbfO9\xac\xc6\xd0\x175d\x02]\xf5Yj4+p\xf0UjS\xd8\x15Y\xbf\x1f9\xca\xca\xf1D\x98\xde\xd9\x0fl\x81\x86+\xbf`\x14=\xd0\xa1\xe8\xa8DO\xb9\x11xgQE\x10\xa2s\xdb\xdf\x1d\xf6\xfb6\xadv\x1e\xff\xce8\xba\x1aiO|\xd8[\xd5\x98\xca\xe8\xdcN\xccq\xbc\xbfq\x1c\xb9\x1e\x87\xc0{5\x0c\xf8\xe2\xa3\xc8k\xa3\x00\x05\xebP\xee\x1a3\xf1I.vH5\x0e~\x02W\x86vj_\x8cJ;\x91\xd1\xde1\xc5\x91\x86\xc6\x06\xe7S\xf5\xae*r\xf2-e\xf3w\x1cu\x9e^\x91|\xafMd\xfa\xfd\x8e\x0d\xbegG{5r\x17\xddo\xee\xd57)!\xa1[\x13\x1fhw!\x88w\xdfu\x19P\xefZ\x8f\xc7\xa6{u\xda\xba\xa6]\xd7,\xb5v\x88\xb2w\xfb.\xd3\xc1w\xeaW\xa9\x1al\x9f\x1f\x0b_@\xf0q\xe4\x81\xe1Y\x95\x84}\x8fn2\x87\x82\x90\"\xd5M^\xf3\x1a/\xaf\xd5\x02\x8d`\\\xfb\xd4-\x08e\x9aW\xbf%Tabm\x18\x95\x7f\x96\xdb\x19\xda\xd5\xbf\x13\xb4\x17\xadV\xbe\x9b\xafV1Z\xadn$\xc96 Z\xbf\xbf\x918\x01\xcb\xe2\x1f\xc9u\xbfo'\x1d\n\x97NZ\xad\xa9\xa6\x14\xcfh\x02\x1d\xd4u\x19\x0c[\x90j\xe1\x04\xb9\xed\x1a \xffA\x010?\xac\xd5\xab\xf2,0\x92\x00\xdd@\xed\\\x88\xce\xed\x9fR\xa7v\xc1\xbeZ\x19)\xfa\x9a\xba\xeb\x1axY\xe2\xcc\x1b\xaa`\x10\xa0\xccj6\xb6g7\xc7d\xea'\x82\x86t[W\xd4\x14krI\x12Z8E\xc8\xed\x1ag\xbfoK\xd0\xc8\x040\xadi\x0fC\x9a\xd7\x0b\xd1\xa8c\x1c2\x7f\xedHd~\x91\x8a\xa1\xc8>\x8f\xde\x98\xbd\xc2MM\xbd\x9a.\xf0l]\xc7\xba\xc4\xd1\xba\xaeu\x89\xb7\xa2s\xf3\xcd\x19\xb1\xe5j\x1b;\xc3u\xa2\x90\x88\xbdj<>S\xd3A\x08\x02z,Tp{\x8d\xef\xc9p\xea\x1a\x86\xe7qUs\xc3&\x8e\x84\xc91\xbcpf\xa5$\x11/\xd0\xd4\x92\x85\xceZ\xc8,\xf9j\xc5Y\xa9Z\x0f\xab\xd5\x08\xdeN\xa9%JSF.on\xd4\xda[\xad\x04\x8e\xb7:\xe2\xec\xab\xf1 \xd9Go^\xbd+\x85\xee\x10\xd7$\x11z\x13\xa5L\xc1\xe2\xfbDi\xa3p\xe6\xd9 \xb9\xec=\xf3\x19A\x10\xfa\xe7\x7fq+\xff\x1a\xdcJ\xa4\xb8\x95\x14\x87\xfa\xe1\x19\xdf\xe6_8\xf1\n\x00\xeay7n\xcd\xbd\xf3A6\x9e\xcb!]y\xe9\x839\xa6\xce\xb5\x17>\x98\xe3\xcc;\xff\"\xa1\x0b\xd7E\x1d\x15\xf1V\x1c\x858\xf7\x8cCR\xc0\xc1\x07\xa4\xc8\x9e\x0c\xfb}\n;\xeb\x16\xb9k\xb5\xca\xf8@A\\S\x06\xc0\xfcC\x12M\xd1\xf5 ,_\xbf\x0fL\xb80X\xd2\x81\xf1\xfd\xdd\x9c\x1f\xab\xbc\xc3\xc8\xec\xb0[\x9eZ\xad\x12\xd5]d\xa0h%=q\x00s\xc4h]\x81T\xdb2\xb5\xd1\xd2\x14\x80/\xa3\x94<\xf7\xf3(\x99\xf5\xfbvs;\xe3\xc8\xcb \xd3 \xa6\x8b\x00q\xa2\xfc \x89X\xe4\xc7\xd1g\x12\xee5\xab\xba\xd4\xb9\xe2\xf8s\xbd\xa7\xa1L\x9d+\xf4\xc4\x19\x8e\xfa}#\xe9\x1a\x92\xda\xd5m\xdf\xde\x1e\xde\xa7\xce\x15\x86?\xd7\x08S\xe7\xea\xbe\xe7<\xe6\xd8\xc0\xff\"\xb7E|\x10\x1e\x0d9\xf7Qbv\x83\xd9\xbdi\x1c\xcd@\xe6Z\x96\x08\xb7\x1f\xef\xe3\x87\\\xa5\xb6\xab\xcbL\x04l\x91\x80\x85JhH@\xef\xd62vN*\xff\x9c(\xef\xe5) \xa2\xf3\x88\x84=F{\x91\x86\\\xef\x15\xc9\xceI\xc0\xf4\xad\x9d\x85\xea\x91\xd5\x1a>\x12\xa4q\xe7b\xa5\xb9%\xcd%\xd5\xa2zKe,\xefN\xcc\x8b\x90\x9a6\x1a\xf4\xa7\xa0\x82\xb54\x1b&\xb8\x10k\x8a\xdb\xb7\x88\xc2W\xa5}U)\xe3\x9cA\xa2\xe9\xee\xe1\x8e\xc8\xb6L\xae\x19]\xb9C\x99z\xd2L\xad+k \x12T]9\x03I\x15\xba\xba\x1bC\xdc\x14yx\x91&'\xcb\xcb\x19r\xc4\xa8\xc4\x0c\xd5\xc0\x05OiL\xb2\xa9\xf0\xc7\xa8\xef8q\x9fY\xcf\x90\xac{=G\x1b\xed\xb5\x92\x8d\xe2\xc2.\x03G\xd87Me5\x83R_\xd8\xc3\x14\x958\xbf\xa5\xa0\xbc\xb6\xe4e\xc5\xf0\xe1\xce\\?|\x06\x9e|\xc6kq\x1b\xda\x17\x06\xca\x81\x05V\x13\x9b>|\xe0\x95%JE\xf9\x8b\x9a\x89\x85gGu\x83\x16\xf3\xc3\x1b\x8c0\xade?\x19\xd6\x0bD\x98\xca\x86\xd7Ynx\x9d\xddjQV\xd3\xc5\xea\x04s\x87\x86\xb10\x18f\xff\x90\x8a\x94\x9a\n\xddk\xa8\xd4W+\xb5\xb5\xe5\xe6Qx\x0d\x97$\xde\xbd\xd4~Q\x990\x98V\x89\x1d\xa5Q\xb3 ^\xfd@U\xef\xa8pS\x83\xad\n\x1cQ\x8dWC\x98\x7f\x16\x89\xb0\x97C\xd3LZ2\xd1\xf5\xaa:\xb4\xa6\x7f\x87\xa2gq\x91Y8o\xf5/\xad\xc6*\xc4\xae\xb2\x9a(_\xe5\xc0rk\x9c\x8f9&v\x01n\xdcH\x14\x06O\x9e\xb6\xf5\x8f\xa5U\x14'\xec8\xca_\xf8/\x9a\xcd\x88\x1ah\xcf\x96\x88\xd3i]\x05\xef\x13\xd6\xebIK\xbb\xd8a\x94\x8b97\xd7\x96(\xd6\xb4\xc0\x11\x0d\x08\xdfm>aHD\x9bF*\x181\x89d0\xd6i\x83\x00/Ul \x0b\"kX\xea\xd9\x8b\xa6]\xa9\xe8L\xb8\xfe\x82\x81\xd5\xa6\x91\x00\xfd\xdc\xa1\x8bz\xeb\xcd\xe53\xecV;\xd6\xf4\xc4\xdc\x18\xd7\xb7m\x8c\x93\xae\x8dq\xa26\xc6u{c\x9c\xdc\xb21NZ\x15\xfe\xf8\xc68\xb9\xfb\xc68Y\xbb1N\xd6o\x8c\x93\xd6\x19Qeq\xc4\xd3\x1b#ho\x8c\x93\xae\x8d!\xac\xe1\xaa}\x11\x08\x83\xb9\xb5\xdbB\x94\xef\xd8\x15\x86\xa5_{S\x801\x1b\xc7\xb3\x00\xae\xc6;\xb6E\xad\xfa\xb0Y\xbd\xb2\x943\x0e\x99\xbd\xb6\xf6\x1d\x8e%\xa5l\xff1\xb5\x994\x93\xdf\x84\xdf2\xd0\x81\xc6q\x9d\"\xe6$\x92\xba6\x1dko\xba\xb2\x85Dn\x1d\xddM\xe371s\xd1\xc61M\xab\x86U\xa2 \x07\xeb\xb6\xf3\xc9\xad\xdb\xb9fq,z\x13\xdb\x97\x0b+\x9b\xc6\xb7$j\xb7\xf7Qo\xbe\x85u\x86I\xb3\x91H\xfc`\xee-\xaf\xdc\xdaI\xed\x0d\xf7\xa4cZ-]>\x8dY\x13KtJ\xc5'\xed\x81\xb7\x9arhV\x0dp\xe1\xb5\xa3]0\x066\x9bU\xe6\x88\xf36\x9be4\\b\x89T\xe0\x92\\\xa1\x9f\x12e\x14\xd3{\xb3\xa3Q8!S\xf1|\x9b\xa8\x1e\xfb\xb9\xe4\xbd\xf9\xc6\\c\"\xdc,z\xd86\xec\xed\"\"J\xa1(\x0d \xba\x8dc\xe0AQ\xc8\x97\xa6O\xef\xc5\xa2s\x8e.4\xdd\xac\xba\xe3\xa4k\x0fm\xd1\xe5\x17\xf2U\xe60\xe5t\x8c5\xae\\\xbeMn\xeb\xd6CF#\xfe\xad\xe8{\xfb\x89\xb7\x86oh\x9e\x837\x17\x93\xa7\xe3\xfa}\xb8\x86\x087v\xe7\xcd\xa5\xd6\xee\xd9&x\x12\x9a\x90;AG\x15T\x08\x81\xbf\x17?\x84\xd7.\x1e\x82O\xf0\xd0H\x16^\xb0:\xfd\xd6\x91\xdci\x14\x16\\\xbc\xd6PQ!l\xdb\x97\xbf\xc2\xc65\x83\xee@\xb8c\x9a\x0e\xda[\xb15\xad\x8e\x9a\xa0\xf6\xed\xd8\x9a\xb7m\xed\xeeAt\xef\xf25\xdd6A\x12\x92\x9ce\xf4\xfa\xb6\xed)(\x84\xe1\xeb\x88?\xb6\x16\xa9#\xed\xa4\xab\x9c`\xb0\xdae\x0d\xc6K\x88\x87\xafr\x88\xa5Lr\xbb\x1e\xc7\xa0\x93q\xef\xe4Y:K\x02;\xb8\x96O\xac24\xc1\x1e5\x81\xd6\x18^\xdb\x7fT\xd3\x1f\x15\xd3\xa5;\x19\x1cW\x99m\xf5,\xd4\xf6\xea\xad\x14\xf9D\xa9I\xff=\xcd\xed\xc9\xe0\xc3\xd4\xd9\\\xa1{\x0f8\xd1u>\xd2(\x81\x06d(\xf0\xd0c!\xceB\xaf+\xbe\xc05\xa6:cF\x98\x11\xe4\xfe\x0d\x84j\xcbq\xa4\xf3\xd7\x85\xc3\xc7~G\x11\x15\xaf\xec \x7f\x9e\x14\x0b\x02\x81.p\x1ez\xd2\xb7\xd5\xdbe\xbd(\xe9\x91\xbd,\x84\x94%\xd1\xa5\xdc\x8d!n\x84\xc7\xc0\x97\x99\xb0\x97\xe2\xbf!\xb0\x98\x9b\x94\xc8%\x136\xf5\x12\x19 ;\x0e\xbd$\\\xad\xd88&\xac\x17\x84\x9ee\x8d\x7f\xce\xfa};\x08\xbd\xcc\xde\xde\xd9\xdeF\x98\xa7*XV\xca\xb1 t\x18}\x03\x1a\xb3~\xdf\xf8\xb0\xd1jeYPiBaz2\xe6\xc3\xd4\xf2ClM\x1d\x0b]F\xd7\xec~f\xa0\xe3\xc5\x8b5oytD\xe8\xec\x0e\xfc8'~\x08Z\x8cV\x98\xce\xf5\x8f\x7f\xac{\xc2\xe1\x82d,\n\xfcXm\x11\xa1B\x17yr2\xbc\xb5\xf3B\n\xfb\xb2\xc5=k4\x1c\xfe\xd5\x92\xa7\x8cl\x0b\xb6\x9a\xb1Y\xbb\xdeE\xe9mmA\x0c\xfa\x1d\xfd\xfeI\xfd)\x8b-\xfd\x98E3\xce\xb6J\xaf\x81\xa8\x16\xf5\x14\xfa\xaf\"D\x938\x8e\xd2<\xca\xe5:\xe8t\x81qr\x8af<\xcc\x84^f\xbe\x0c'\xdb\xeb9\x0d\xa4V\x81\xaa;\xc9\xa3$}2$+x\xeb\xaa\x8f\n%\xfe*\x12\xf4\x9ctJ\x15pv,\xb1LDx\xad\x00\xe8\xebH1fj+J\xea\x1fD\x82\x1a\xa8k ]\x07l\x0e\xa0\xf5{\xa1k'\xb4\xf6\xc1\xda]\xd0\x08\xfa\xbf%\xea\xb7\xdf[\x81\xb0\xae\xdb\x8fq\xef\xe1\x10\xf7\x1e>\xaa^\xa6Y\x8f\xd3\xb5\xb8\xb8\xc3\xf4\n\xfe>\x12\x1dt\x89\x11z\xf5\xd4ib\x86\x95\xd5A\xa1U\x88\xe4\xadG\xdb[\xdb\x8f\xc7w\x0d\xfb\xban\x1bwo\x88\xee\xed\xd0\x11'\xd7\x8cV,\x80\xd6\x1b:[\x0fE\xb4b,\x06[K\x81u\x04O\x1e#\x19p\xa9_\x05\xd8\xed\x8cf\xdc\xf5\x06N\xfb\x1d\x10\x89k\xce\xc2\x8f\x92&\x9d\xbaS\xe9j\x80.,\x9a\xfao$\xde\xe8\xb9\xbd ~d_\x03I\x9f \x92.\xdf\x83\x10\xfbT\xc5G^G\xbe\xea\xeb\xf1\x08\xd6\xa3\x9e,c\xd67\xb7\xadA\xf5F\xf0t\x81|z\xc3D\xa2Zt\xe7/\x00yE\x04L\xe8T\xa9\xe6\xa1\xf5\xa5\xf0n\xbe\xbf`\x80\xfc\x8e-\xa8\x98\xca\x17\x1c\xe8N\x9e\xfa\xc9? u\xb5\x0b\xe4D\xe4\x1b\x10\xa7\xa0\x7f9[\xa7y\xb9\xec\xce\x88H\x8e\xaf\xd6(e\x9e\x91<\xc8\xa2\x94\xd1,\xc7\x9fnQ\xdc|\xb8]q\xf3\xf2\xae\x8a\x9b7m\xc5\xcd\xd9?\xad\xb8\xc1\xcfE\xab7He\x1fj\x12\xd6\x9b\x86T\xf6\xa9!\x95}\x02\xa9\xec\xe5\xfa:Z*\xc3\xaft\xd7\x97\xbc\xc0\x15\xd4\x94J\x99\xa7aM\x01c\xc6\xb6\x131\xf59\x1b\xedM\xa6R\xf3\x93\x81GLF\xce\xed\x04\xd4\x1ac\xe2\x90\xab\x88\xbd\xe6 \xca\xf4$\x89\xd8;r6\xa7\xf4S\x0e\x11L\x19*\x1bi\xd0\x07\x9f\x8dl\x94\xcf\xa7\x16b\x14)\xd5\x0d\x05\x0b\x9f\xc6\xc3~Tk\x0b\xbf\xf7\x85\xd1\x95(\xccx;\x91\xaa\x9ayt\xc2\xc0\xb5\x86:\xf72r^\xa5\xab)P1\x85\xaeQ/'l\xcay\xdb\x04\x95\xd1\xb9\xbd\x91!.\xa7GIA$\x1c\"\xa1\xfe)l\x82_\x85\xf6\xf3\x90\x0b\xbe\x19\xc2K.\x93\xfeL\xb23.\xd3\xca\xb8\x938\xc1\x1b#\xd9K\x05R\x11l0BeY\x96b%\xeeu\xaeD\x0b\xecj\xbc\xa1\xa7\x0c`\x84\x8d\xd0A\xe8\x9d\xe7\x9b2\x8d#\xb7\x97\xc1\x1f\x91 \x0fx\xd0\xc5f\x13\xebj`$X\xd3\xd5J\xd6\x0b\xe5\x96\x8bh\xe2e\xe6\x17h\x07-?\x8d~$\xd7\\\x1e\x13m+\xed\xb8H\xf7\x96 \x17@2xi\x03G\x89\x9b9QR\"\x0c\x82z\xbb\x12O\xf5\x96y\x00lQ\xe6\x88\x1f\xf8\x8c\xf8\x19\xc9\xbe\xa3\xd9\xc2gn\xe6\x98\x9f\xbc)\x9a\x92\xe4 \xdc\xa7I\xc2E\x9bV\x9b\"\xdb\xe3P\xe3\x05\xdef\xb1\x9b9\xb5:o\xb3\x18\xda\xf1\x0b6\xdf2\x1b\xc8\x1c\xce\x91\xe6\xaa%\xf8\xf0d\"Rk\xf4\xba\xb1Fj}\xe0R1%A\xa5\x0c\xcb\xfb\xfdV\x12_\xaa\"\x8b\xd8\xf5\x1b\x98+(\x06\x95\xbd\x00$x\xf5M \xe4\xae\xc4\xdb\xe5\xb8v\xcf\xd8\xdb\xe0\xa9\xe1g\xbd\xfdu\xd4\xf6\xe3zj{|\x07j{p\x0b\xb5}q;\xb5}vWj{\xd8\xa6\xb6\xfb\xff<\xb5=\xba\x95\xda\xbe\xa8Q\xce\xc3\x06\xb5=hP\xdb\x03\xa0\x99\xcf\xd6\xd7\xa9\xa8\xedwU\xd7\xc2xuY\xd6\x0dC\x89\xee\x9b\xc0\xab\xba\xcc\x88\xd2\xf9d\xd8\xef\xdb\xc9$\x9bzd\x92\x89\xa1\x08\xa3}\xd2\xef\x1bc\xca\xe4\x98\x08B\xcd\xda\xcfjm\x9bm)eF)I\xff\xe7\xb0\xa1{W\x8a\xe8\x82\xb3\xaf\xde\xb2,3\x92\x13\xd6\x95\x01\xcf\xbe\xe8\xcbC\x95\xa3Ca\x1b {\xcd\x84\xcd\x91;*\xf9\x99q\xa7\xea\x95v\\\xa5\x0cF\xa5|t\xc6\xb8!\xdah\x96R\x1b\xf6m\x07Q\x05\xd2}Fm\x8e\x05\xea\xa4\x13\xc7\\\"\xb5\xf4\x199\xdf\x97\x93\xe5e?\x87\"\xdd\x8fczyD\xb2\x19yM\xcesm\x86sv\xadn%b\xc2z\xe0\x1f 6uJ\x02\xb4\xb4\xfeb\x81\xfbH0\xf7\xb3\xa7\xcc\x1e\xc23\xca\x9e\xf5\x17k\x93 L\xbc\x90\x044$o_\x1fTOV\x104f\xd9\xf5\x92y\xc7>\xdf\x7fUcp\x1d\x007a\x04-\xd5\xab\x0b\x8cS\x91R\xdaX\\\xf8q\x04\xf7\x01*\xc0m\x9a\x914\xa3\x01\xc9s\x9d\xc4[R1\xdb\x1b3\"@+\xfd4r\xc0\xf2#\x7f\x17\xb1\xb9mm;#\x0b\xe9\xf3\xff\xe7lOZ\xc9\xc74\x80\xb3\xcc\x99g\xe4\\\xfa\x81\x8d[\xe6\xd8LQT\xde\xef\xdb,\x06\x88\xbe}}\x08O\x0eCUT\x1a\xc3^\x9aV\xdezz\xca\xc6BNE\xae\x0c\xcd\xaa4R\x9cgs\xf5\xe8\x11\x9c\xe3\x0c\x05\x91 \x82S\xcc\xa0\xc4#15\xdd\x13\xc2j\x13\xc2\xf6\x9b\x10\xb6uB\x98\x9a\x90\xaceB*\x83\xb1\xab[ \xb5\x04\x99\xe9\x97\xfd\xb2*\x9a\xe05\xaf>\xc8\xcb\x90\xe2$|\x12{\x14\x8f\\\x9e\xe4\x9e\"\x1cU\x98\xdaD7\x82\xd3\xf7H\xbaQ\x1e[\x03\xc4\x90x\xaa\x0c#C\x01\x0b\xb2~?\xf2\x8b|N\xe0\xa2\xc7\xb5\xe8\x19\x9c\xb0\xfd\xbe\x0bc\xa0\x1e\xc85#4\x8b\xd2G\xf9\xb8\x804\x84\x8e\xd7Q\x9a\xbe\x9a\x04\xa3\x04\xb3\xd32x\x11{/@rc\x08'Ht\xf0>\xcf \xf9\x84\xde\x10\x8b\x1dzBD4\x1f\xc6\xc5\x84(\xe6\xbc\xa0 *\xe0I\xf3\x82Y\x9e\x14\xecUF^M\xc0\x89\xd1\x87Oi\xaa\x06\x0b2\x0f\xd5\xcd\xec'\xce;\xbe\x05\xa6\x12\xc9F\x10\x84e\xf3\xa4\xdc(4Q|\xc4\x83\xd1\xa9\x9c_\xe2\xc3\xdf\xcd&\xe1+\xa1DG\x9a\xfe\xe4\x8a\xbdNH\xd1\xef\xabe\xa1\x8f\xe1\xeak\xcf~\x0c\xc5\xf7\xed$\xa4\xfa\x07\x15'\x8c\xcc\xdb\xeb\x94o<\xf9K\xd7\x04O\x08ia\x99\x88\xd1\x10\x02\x0d\xe7\x94\x92\x89\x07\xc1i\x04\xcd\xa4\xb0\xb2\xe5*Un\x87j\x97X\x1b\x15V\xe5\x80\x13\x16\x91w\xb3\x91C%\xb7\xb35\x83\x0c'\xe0^\xaa\xe3\xf8\xfbf8\x85\xec\xed\xfb~d%n6\xa3S$Wr\x82A \x8b\x82\xa8,\x911M\"\xe1=C\xee\x91\xa5y\x10\xa5\x88*\x95\x95U=D\x86\xc5^M0\x97h\x82\x08\x9b\x81\x0e\n\x0cc\x15\xa4\x98\x92?\x97 %q0\xe6\xfbh\xa9\xf6\x11/\xe9b\x97\x97t\xb1kJ\xba\xd8\x85\x92.vUIW\xde\xdf\x83D+\xfc|\xadY\x14b\xaeNH\xfa}\xde\xbe<%\xfeUD3\xef\xecY\xc6\xd9\x9b\x88%\xe7)qx\xe6\x82\x0b+0oN\xc4\x1c\x97\x9f\x92n\xc0\xff\x8a\xbaJ\xd7\x89\xb2\x98?'\xa5{f-\x98\xa4\xdf\xf7D\x08\xa9\xa4\x80\xbf^\x82\xfa\xfdj\x8a\xa8\x02\x1d\x8b\xbf\xe1\xc8\xf7\xfd\x04\xfb\xbe/\x9eO\x03\x99\x9eX\xd5F\x8dj\xa3\x96j\xf98\xf1j\xf9_\xa86\x12\xd5\xf2g^-\xa4GV\xb5\x05ZW6\x83\xfd\x00\x02\xba\xd1/AP\x9d\x02\xc1\x10\x9bL#rj8\xb4\xfa2T\x04\xa7V\x00\xf3\x7fNK\xcc\x0e\xdc[\xe6\xc5-.\x13\x1c\xd5\xb2*\xa1\x84\x9fK\xafa\xb5\x16^\x86\x84#j=+\xff\xc7@8\xa4\xd6\xc6\x94\x7fy\x87\xd4\xf6\xdc\xd2Vx\x8fS\xd9@\xb1\xccl\x920\x86\x9a\xd5\xb2\x0b\xad\xdf\xb0\x8b8#;\x8e\x987F\x9cO\xd4T6G\x80\x1d \xa8Om3\x12;J\x8b\xa0q\xfd~\x0e\x84T\x9d@y9I\xb2\xf8\x11\xa1\xc9\xa5\x90\xfd\x14\x81X\x97X\x0e|C\x05\xd3\x96*\x94-Q}rA4\xcf,\xbd\xa3!;\x19\x88\xcf\xd6V\x82\x81\xea\xf7\xe5\x0f\x9f\xb7\xcb\xf3\x98E\x1d\x98$lD\x0b\xe7\"\x05\xdd;\x1c\"\x04\xb8\xa2\xee\xbfn\x996\xdd\x92m\xba\xe5\x1e\xd0\xd3p\x94K\x0d\xdd\x98&\xf3$\x8bX.#\x8c\xba\xa7\x9b\x0d=\xd5#\xc2J{Q\x10[\xa5\n\xaaPR'o\x15\x06G\x10-V\xa2\xb2zr\xd5$\xb0\xda1f\xc4\x1cx\x01\x03\xc8\x8f6\x12\x0e\x8e\xc8]&\x0f\xf4#rp`m\x8a\x11\x11z\xd8\xdc\xcb\xfc\x9c\x7f\xc7\xe2J\x99_@\xf0\x92\x01\x86H\x1f\xea\x91\x1c\x0c\x15\xed^C\x91@\x165gH\xe5\x80hY\xc7\xbe\xefSL`\xfb\x9f\x96U\xe6\xc7\x1e7\x860+\xc1\xfbX\xb3:\xa0\\{\xd0\xa5\\\xfbs\x87v\xec\xfdn\xed\xd8\x87}\xb5cO\x9b\xda\xb1\x07_\xaf\x1d\xfbm\xa7v\xec}E\xd3\xf5\xb4\xa6\x1d\xfb\xb3\xa6\x1d\xfb\x13\x18\x99\x0f\xdde\xf4\xc8J\xd5\xd3\x8f\xad\xba\xeeK\x01\xb9\x88\x93#\x9b\x11V\x04\x10|\xa8\x04?\xf6.\x96E\xd4\x8d\xc3D\x88\xa3oS\xcf\xca\x8a\xedZ4wo\x98\xc2\xd0\xca+\x88\x84\xfdV\xe4\x97\x8e.\xcf\x80`\x8e'\x1059>\x81v/)\xd9\xf5\xb5\x9a\x92@\x88\xcc\xb1]J\xb1HQ\xf8[\xec\xfd\x06d\x92\x0b\x90a\xe8 \xcf\x9f0\xf4\xa8\xddNt,\xb6f Z\xac\x1f\x81b\\\xc9\xfb\x0b\xcev\xcb\xc2Ik\xe1DtW\xe5\x97W\n\xea\x11\x9ay\xbf\xd2L\x9c\xe1H\xea\x9c\x7f\xee\xda\x16\xbf\xecT,\xe3_\xd5j\xc6\xd4^{9NBzo\xa8\xbbv\xfc\x8b\x88z\x140\x1c\x85D\x92\x94\xc3\xe1Qt/\x1c\x1cE\x87\x87\xc8\xcbC2\x8aN9!MB\x8f\x1e\xe7<;NP\x90{ B\x9b\x8d\x912h\xbf\x9f\xf4\xfb?\xc72\x03N\xd4\n\xfc\xa9\xfb\xdeK\x9c\x8e\x9c\xe5\xe6O\x91\x8e\xbd \x17\xd0\"\xcab\x12CB&]%D\xb18d~\x12o6\xe4\xc0\xbd\xe5\x1e\xb0\xdccp\x13\x82\xac+\x19\xa9v\xcb\xc0$\xbe\xed\x1aF\xdc\x9d@\xa6\x94\\\x924d\xe2\xeff\xa3|\xfe\x92\x98\x9cG\xf4yt\xce_\xaa\xca\x9a\xb77\xac\xa1\x812\x04\x17:xD9\xdf\x9dj\\\xf2z\x05\x0f\x01~\xf7-\xb9f\x0f\xc8$\xa7\xe4)\x18H4\xf2a:\x1a\x9c\x8a~\"\xbdO\xc1G\xa1m\xc3Uw\x98;\xa5\xf9R\x84\xb1S#\xa4\xfd-\xf40\x0fP S`\x19>\xab)\x19\x94\"\x9bJ\x17_\x96\xa7\xbex\xf0U\x8e\xfa\xec\x0d\xcaq\x9e\xa6\xd1\xa2\xe0\xb5\xca\x86\xf4\xb66d\x88\xca\x98t5eX\x96\xbf\xc6\xde\xe8>9\xc5?Y\x9e\x12\xd8\x15\x19\\|\x1b\xe1\xf6\x0c\xea\x03:\xcbk\xd6ZG\xc4\x88\x8b\x87]YD-[2\xa8\xden\xc9bz\xc73\xc1u\xfe\xef]\x9b\x9dL:/\x98\xd8d\x17\x1d(p\xd6\x91G\x1d\xa1t\xb2\xf3\x08\xcd[\xb2\xb4\x1e\xa1\xd1\xa4q\x84\xfe\xfe\xf5Gh1\xd9u\x84\xd2\x89}\x1cF\x93\xea\x11\x9aM\xaaGh6\xe1Gh\xde]\xc6\\0\xa5\xfa\xd3B\xf77\xb1\xae\xf3\xc7\x93u\xc1\"\x96\x8c\x9d\xdaI\x05`*\x8a!\x137\x93\x98r\"\x97\xf3c\x8d\xef\xf4h\n\n\xd3W\xfa\x8a\x9a\x7f\xdc\x10R-4\x8f'~\x14\xc7/\"z\x11\xe7W\x19\x9c\x8c^\xd6\xaa\xf4V\x17\xe0C\xcc\x10\xc2\x19\xa7w,\x9a\xfe\xc8\xf7Z\xe1\x9e\xf6\xfb\xf5\x14I\x8d\xee\x0d\x8e+_\x13\x8d\x13\x99\xc4\xe7\x88\xbeZ\xaf\xd5\x80s\xfe\xa9\xa0\xa5\xb8.\x99\xab\xb2\xf2\x0fo\x1a-\xe5\xa05:\xa6N+-\x16@\x98\xd0\xd4\xa3\x88\x932\x1a\x8d\xd9Si9\xe6\x11\xdee.\xbe)\x9a\n\x90\x9d\xd6\x90p\x92\xb2\x17\x89\xad\xd0\xd7\xdc\xd0W\xadN\x91\xfa\xa9!_\xd1\x82\x1ff\x9a\x1f\x16\x1c\xd2O\xb1\xe7J\xc3\x00\x173,\x83\x99\xe6f6c\xb2`3N\xa4\xb5\x0e\x87\xca\x83/\xf1\xa8J\xc5\xd9\xc1\x10!\xdcz5\xd14\x0f\x80{\x0c/\x0f\xa9\x9f\xc4\xfc\x08\xc4\x93\"\xcc\xf9\xe0\"\xbd\x8a\x12\x8f\x81\xbeT\x8dw\xdb\xd4\xea\xb8\x9f\xaa\xb7\xa3SKL\x8b`\xb3\x98\xa5\xac:+(8\x8e0\x84W\x16\xbd\x1b\xe0L\xf6\xa9\xb9\x0c\x80\xa5\xe1\"i\"\xd6J\xa6\xa5\xaa\xa4\xda\xb8f\xbb\xb8\xb8\x93\x1c%\xa1\x16\x92\xe8q\xf5\xde>\xa0>\x8b\xa6\x85f\xed\x12-\xb3pI\xe8\xd8\xe3\xff\xfa\xcb\x02\x8e!\xcc\x1fP\xe0Uu1/\xf3\xec\x90\\'\x05K\xb2\xa9\xc3\xa2\xa9\xe3\xdeX\x93\xd2u\x92\x82/Q\x01E\xc4f\xc4\x81^\xf3\x97\xc2\xe8\x02\xf40\xe09\x83\x10.\xaa\x03\x07\x12a$/\xbe\xea\xe6,f\xd1\xb0h\xea\x02\xb1\x14\x973b \x87\xd8\x85\xc3Q\xacC\xb5PF\x1d\xc4\xa0\xc1z`\x8aeM\x07C>\xe4\xbe\xef\xc3\xe1\xc9i\xbf\xa66fbX%\xf7)\x96*\x02\x8aD\xa4Z5\xf3\xff\xcc\xe7\x15U\xa8\xb6\xe1\xc8\xe8\x0c3\xa4\x05\xc5\xdc/r\nk\xe4~\xba\x98E\xe7\x04,]\xd3U\xbf_\xc0\x1b\xefF\xe1\xb9|\xc8\\>\x1d\xd6\xb2j~V/.\x057m\x9b\nI\xacA\xf1Um\x8a\xd5\xba1\xacb\xd5=\x02\xa6J\x11f87\xfb\x836\x17\xbf\xe8\x92i_\xbdcI\xb3c\xf5\xfd\xd28D\xac\x83\x07\xf09YUV\xe1\\\xafz\xaa(\xdb\xf2\x89\xc3`#\x81\xee\"\x1b\x11X~\xa7a:\xf1\x8a\x89\xd2\x98\x9b\xfe\x06#.\xe5k\xff\xae\x1cF\x95\xdaJ\x91\xa4\xdb\xce,\n\xd9(9\xc5U\x0b\x9ch\x9b\x9d\x99\x1e\xdf\"\x8c\xa4\x9dYT\xb13c\xdaf+BG9\xd8\x94%\xa7\xe0\xfd\x00\x84\x1c\xb6_\xc9iI*%\xbdB @\x85 \x1fi\xbf\x9f\xca\xb9\xdfl\xbc4\x1c\xb9\xee)\xaa\x8fP*\xe8Q\x1ef#b\x05?\x16\x91\x8e\x85A\x16\xc1\xd5A\xc2<+\xa7\xcc 42\x1a%|\xde\xf8D\xe4\x0d\x035=\xd6\x05\xc2\xebE\xc4f\xe0c\x92`i\xe3\x1c\xbc\x8d@\xb3\x96\xa4\xc4\x1b\xb9\xfc}\xe1\xe2\x04\xb3S\x84\x8d%\x1c\xe6\xe9\xaf#\x1a\xcd #\xb4\x08@\xeb.\x1f\xf8\xd4\xc2\xfb\x13B/\xc5\xcbB\xfc\xc2\x00|\xcdWE\xd0\xebQ\xa1\xa0)\x8dT\x97\x8b\xe0\xe8\x03\x88q\xc3\xbf+\x92\xe4\x03\xc2\x99\x90V\x97\xed|\xea\n/vr\xa98\x9e\xec'\xad.&\x7f\xaf\xb4\xba\x9c\xd8\xd2*L\xf5d\x12\xbaq\xc4\xa2Cy\xa6\x1f&\xb1+9\xbe\xd9\xa4S\x90\x15.\x83\xcaNp\x96\x14,\xa7+%\x98 \xc1\x84\xd3\x9fg\xf1uxh\x89\x97\x0f\"\xfajA2)\xe3\xf2T\xe1\n\xfaJ\xa1\x07\xd8\xca7\"\xc2\xae\xf05(\x95\xb0\x95\x8aa\xb9\x1ey\x87C\x01\xc4NP\xbf\xdf\xf32\x89\"2I#\xa1Y\xd1\x83\xd6\xef\x13$\x00>I\xcdywJ\x94?\xee}\xf6\x8a>Ih\xc1\x04\xd8\x10gQ\x8c\xc9\x0d4\xd0O\n\x99\xf7\x01I\xd3\xfc\xca#\x08A\xcc\x81\xd2:@Z\xea\xf5\xb2\xee\x9a\xee\x9f\xe7\x97\xc4T\x94\x1d\x84\xac4\xdd\xe5\x12a\xb5K\xa3\xec\x14\xf7\x06\x10\xde\xa8:\x86O\xe54\xe8kC\xf1\xecK\x97\xc3g1\x12\xd7c=\x05\xe0\x7f$\xac\x8aX}\xcc\xb4\xd6\x99\xf9I\x1c\xc2\x8d\x14f\xc7\x956\xdd\xcfb\x89P\xc2\xe06\xd7#\xb6a\xcf\x04\xf8\xb5\x8ezIxoR\xd8\xb9\x89\x9f\xc4H\xdf\x89\xb7\x7f\xa0\x82\xb4$\xff<\xcbX\xfe>!W\x0f\x0c\x08\xe3\xd9\xe8\xc6z2)C\xce\xb7\xe4\x1eA\xa5{z\x86\xd48M \xb4\xe3\xc1\xeaY\xcc\x17\xda>\x9d\xae\xaaa\x807!\x15\xcd\x1d\xae\xd6R\x83\x98\xd4\x0c\xc5)\xa6\xb0\xb6\xebjt\x94\xa9\xd0\xe0\x86]\xa6\x9e\xfc\x89J\xbd{=\xc2\xe9\x8eg\x9a!\xee\x14\xeb]P(7J\x88\xf3\x95\xf3\x12\xdf\x88L\x0f\xe2\xf2\x9cS\xa2s\xe2in\xb9\xb6\x84<\x12>+\xcc\xba\xe1]!\\\xe4\xf8\xbcq/\xad\x0fI\xfb\x94e\xa6\xd3\xc2\xca\x84\xea\x9c-TAy\xb8\xcf\xa2b\xf6\xae^\x81Z\xe4\x1d5\xc8\x0e\xa1\x92\xe5\xd3iJN\x84\x8eK\xb5\xa7F\x93\x9ai\xe58\xcd\x8b\x1d\xa5\x86ee\xa7[\xd7G\xb5}KL\xc4\xf8~\xffC}\xd0\xf8\xb2\x13\xe3\xb6\xd9\x00\xb6Q']\"\xe2`\xde^\xbf\xa5\x01\xd3Z'\xa5\xa0\x1b\x0d\xf8\xda\xd9\xb3\x0d\x8e\xa1\xba\x06p\xb2\xf6e\xb3s\x15u>U\x17\xe8F\xc5\x06\xb6D\x03cK\xe4\xd5JI\xed\x9aI\xe0\x8d\xe9\x85\xa1\xb8\xceOb\x81\x88\xbd\xd9\x18\x95\x1a\x11W\xbd\xc6\x10\xc6\xd2\xa2\xd5\xeaBXS=\xa7\xd9Z~HAs+KJY\x8b\xb9.\x17Z\x88`m\xef\x86\x83\xcd\xa6^;\xaf\xa2\xb2\xd9\xb0\xd2\x15\xd6\xeb\"\x994\xca\x14T\x0fg\x00\x99\xa7U\x7f\x98h\xb5\"*m\xa5\xa0}y\x066\x02\x13\xc0\xa3\xb2\xd5\x86\xe6\x1a\x91\x1c!p\xdb\x91JHLBu_W6\xc9k\xdd\xe4F6\xdc\"\x96\xa2\xa9\x9b\x0d9\xaaPh.\xcc\xeb\x8b\x12\x85,!\x00\xf0<\x84A\x07\x9cXG\xf0f\x03\x19\xab\x1b\xaa\xac\x97[W\xa8B\x85\xdcx\xaa]f\xaf5\xa7\x01\xa12N\x8aE^\xb4\xd2\x1c\xaf\x83\x94x|\xb0'B\x87:\x9b4\x95\xac\xb2rP\xa4\xb6\xe7\xab\xd0\x04\x9d\xef5\xab\xe7\xab\x90!\xd0\x98\xb6\xe7\xb3\x87iK\xb6\x8a\xfeVd\xf1\xcf\xf3e\x16we\xd4\xf3\xae\x15\xb1\xf3.>v\xba\x93\x8f\x95,\xe4j\x12*83\xc99^\xd68\xc7\x9a1\xb4\xbcT\xf8\xb8\xa0\xe4R\xa0\xfd\xfe\x16J\xe8\xb6\x8f\xa2\"q\x83j,\x82\x95\xe1\x92\xc8C\xe6\x89\xb2p\xbc\x11\x894\xc0\x05A\xa5\xf8\xb3nVo-\xab\xdf\xf4*\xb0\xbf\xa5\xec!\xed4?\x8ac\x08n\xf0<)\x18\xc9\x08\xf54l\x9b\xd8\xdc\x80\x00\"\x0f\xa9\xc6\xba\xdbY\xbb\xc0:\xda\xfb\x03\x95\xce\xcb\xc2\xf7\xd3T\x15-\xbc\xd5D\xed\xa7\xdf4\xa5v\x97\x99\x98\xd6\xd8\xed)\xe3\xaa\xa7o_<\xaf\x01\xd4\xd8\xedr\x92\xac`Q6\xaee=n\xe9\x81\xc6\xaf1\xb1:\x9a\xb9\xda\nZ\xc1,\x83A\xd9d\xaa\xd7\xda;!$\xc6|w[\x94K{\x81\xa9\x89\x16\x1f\xf0P\xd9\xe0\xb5U\xfd\xa1\xa9\xdf\xb2?\xd8\xf2\x1dy\xc2z\xec\xde\xe0\xd8\x86\x0fC\x01<\x8dI\x92r\xd9\xffn\xb8\xb5=\x86\xf0\xd4\xb9\x055\xbdQ\x1c\xeb5\xb1\x9a`\x8d\x8d\xe9\x81bVL~5CY\xa3\x96\x04\xad\xd5\x08ZQ\xd4\xf5\xeb\xbd\xf7\x80xx\xb0\xda\xfa\xd2\x1b\xe0\xe1\xe1\xb6.\xa3z\xfb\x1e\xd8\xc8\xe9z\x0c>P\xf0Q0\x9b\xd5\x10\x7fT\xda\xbb\xa1\x8e\xc0\xa4\xd7\xfdac\xef\xdf\x93\xd0J\xbb\xe9\x81\x1c{\xfeG\x8ei\xe9u\xc9\xe9S!\x9a\xef#\x98+\xa9\x1c\xe4\xf1\xa4\xdf\x9f+)\xbcD\xde\xe8~\x04\xb4\x0b{\xc3\xc1\x00\xeb\xdb\xa4u\xe6\xc3\xbdPM\x9e\x00Y\x18\x83!\x83@S\x8b\xc2\xc1\x91\xd2\x15\xf1\xa5\xb1\x8e\xdaC(\xc8\xecy\x08\xf8\xbc\xe9\n\"%\xe0d\xb3\xf1\xb2\x90\xc2;#lX\x90k\xa2\xea\xb4\xbd\xceq\xc8\x0e\xbd\xf402\xee?0\xaa\x98\x86\x1a`\x0b\x8f\x81]\x1a\xdfc\xc7^\xa2\x82 \xf0\xe2\xf9\x92\x89X\x02\x02\x8c)\n\xb7\xb7\x0d\x05\xfc\x11\"\x0f\xa8\xd2\x05\x06\x1b\xb0\xb2\xf4\xe4P\xe1\xe1`\x80Jt\x8a/+\x07\x9f\xbdh\\u\x97u^=\x9f\x14\xd7A\":\x9e}\xc8\xe9\x05\xa16\xf0\x1c\x18!q\xf1\xfd=E\x8c\xae\xd6$\xa4\xde\xf7\xff\xfda\xa0\\f\xb8t\x14R\xef\xbb\xff\xfc\xf7\x07\xa4\xe2\x86\n+\xbaF\xb2\x1e*r\xe5\x90\x92S\xa6,&\xd7RUk\xa9\xf7\xc2{kb\xc49\xfeX\xe7z\x15\xb7\x1cs\xf6\x0c.\xeaIC;-XL\xc6\xf97!O\"T\x1e1\xe3\xaec\xf5\xd7\x8f\xf3\x8c\xb3AP\x9f\xad\xe8\xb1\xf3\x98\x97\xf5\xc3\xae\x92\x8d\x11\n\xb6e\x9a\xdd\xaa~H\x95,E\xb2\x85\x95\xd5\xcc\xac\xb3\x94,\xff\xe9\xc4\x02\xbc\x17KM \n\xea\xb9\xfa\xb7\xb7\xa5*QA\x89\xf9\xd0\xbf\xa6\xf9<)\x88\xe7yrg_\x8aP0\xe1\xbd5\x9f\xe0\xc8c~F\xae\xc1w\xc4\xb8Eq\xd2T\x968\xa9d\x03\xef\xa1\xd6|Q\x08>\xf4|\\\x8f3\x8f\x88E\x8a\x02\xf9i\x9f\x92\"O\xf9Y$_\xf8lF2\x88\xb0u\x14y \xaa\x89\xcd@\xe4\xad\x8bh\x10\xe0\xd6\x00\xdbF0+\xd3<\x8a5sU\xe9\xac|SNh>\x7f,\x0d#~:\x11D\x84\x88\xfb\xc3F\x99\x96\xbcB\xd3y\xd5\xc5!^\xef\xb8k\xbf\xd8}\xd7\xfeq\xdf\xbb\xf6W\xcd\xbb\xf6\xab\xc9\xd7\xde\xb5\x1b\x9d\xfe\x89\xd1\x0b\xae\xc1\x02&`\xe1e\x8c\x1fIp\x98\x80\x86\xab\xd8\x82m\x1aJ\x172\xfb\x16\xa5\x01\xd9&a\xe8t\xbe\xd1\xe0T\xad\x82zV\xba\x13X\xed\xa2r\x7f\xff\xaav\xe7\x7f]\xbb\xf3\xbf\x86\x9b\xfb\x8f\xdde\xf4\x9d\xbf\x04V\x13q\xd2\x1fOB\xea\xfd\xe7\x87;\xdf\xab\x0b\xe1\xd7\x930\x8d\xce\xbeq\x9cH\x82L\x00\x8eCL\xc6\xb9\xd0\xe5w\xc3\x9e\xa4Iv!Ph\x1e\xe9\xdc[`A\x1a%!S)\xb1n\xfa\x81\xf4\xee\xd9\nu\xd1\xa8C\x16\xd2h\x15\xb2.\x80\xde\xf8\xbc\x9a\xa0H\x157c\xffA\x80\xc2o\xdbFB\x01h\xdc\x9f\x84\x93\xc8\xfb\xb8\x00\xd4\x92\xbdPe\xda\xc0d\xae$l\xcc\xb62\x1f \xcf\x1b2]\xa6\x91\xe8P\x05qfKG\x88\xc0F\x16S\xb2\x90\xc3\xd7\x0f\xd2\xa8`\x87\x80\xc9\xa7GT\x02\x80\x08<\x1e\x8dv$\xfa\xfa\x8d\x03\x88E\xe0\x0f0f\x12\xb3\xa8\xdfw\xff\xc8x\x9eE0I\xa8\xa9O$\xea\n%\xf6\x92H-U \xbb\x01\xb5\x02\xa6\x05V\x19W7B \x12\x996\xf0^\x89\x8c\xed\xa0E\xfc])\x8a\xcf\x86\xb2\xb77\xd6\xb3\xa57D_\x04xS\xed\x96\x1a\x9e\xd9m\xbb\xea\xdb{T\xdd\x80z\x82z\xc6y\xdc\xc0\xbd\xabAEY\x13\xccs\xeb=\xc7\xcb\x18\xf4\x9a\xc3}\x8b\x9b\"\x0f\xed\xcd\xbb\xd7z\x86\n\x1a@g\xed\x18Q{\xa2D\x0d\x91\xc8l\xe1\xf34\xbaP,\xa2q\x92M\xfde\x96\xb0R\xd5na\xd2\xecl\xeeI\xf2\x17)\xadbf\x0f\xee\x18,\xb3\x19\xd58]\xe54>\x84;\xa0\xc0\x81?\x87\xcc\xe7\xf3(\x8bOD\xd8|\x12\xefz\xef\xb9\xe3|\xb1\xd2\x97\x04\xef\xb5\xc3KR\x98\xb7\x99\xa5\xda\xc4i\xb4{N\xf5#J\"\x17\x1d1\x1f\xa2[\xf8\x8a\xce\x84\xee$\xb9&\xb1\x8b\xd5\x0b\x96/Bw`\x9e9\x05\xac$\x00-\n\xdd\xdbdn\xd2\x04A\xaa%\xca3\xa8RXP\xc2P\x86\xc1P\xa9\x12'\xbc\x9e|\x9e_\x9f\xc0\xa9\xd4x\xa1\x0f\x9b\xd0\xb5\xc8-\xcf .J \xaen\xa6J\xd4P{\xcbh\x14\xa3\xce9\xa8V$V\x91\xae(S\xf8\x7f\x1flR\xfbzII{\xdc!\xa2\x02\x0f\xa9[7\xfeMqW\xab\x96p\x13\xd8N\x13a\x9f\xb35\xc7\xb5\xe7\xe0\xa7\x93W/}Q(\x99\xac\xbc\xdakAio\xa3#\xd9A\xbdh\xe4e\xdc,\xbfz\x9b\xe7)K\x16\x9e\xb2\x8c\x15\xe7\xc3\xc3|\xb1z\xb0d,\xcf\xa0}\x8d\x08\n\xe7\xf0N\x84\x95H\x93\xf1E\xa0\xfb\xd3\x8cQ\xf1`\x82\xd7\xe2|y?\xf1+\xf4\xf3\xd8}\x98/\x12\x12\xbb\x81\xfb2gN\xa1\xdep\xc6|\x95/\xa9sN\xf3\xab\x82P\x17\xc31%\xda\xcc\"\xc6\xd7)\xb4\xfad\x96_e%\xe6\xd5X1cy\x8epmg z\xc3\xd2\x04$\xb2\xef\x05\xc5X\xa9c\xcf[\xd7\xbb\x1f\xb4\x0eJ\x89\xca\xca\xd8\xa9k7v\xc2\xbf\xed\xd5\xbe=(\x11\xb6\xae\xab=\x98\xf1\xad%\x86%\x84\xab\xbf3\x18\xa0\x12\xbc7\x9eN\xc2\xa1\x11\x92~\x9b\x88\xeb;H\x15F\xf1\xae\xab\x0f\xe9\x83\xf0\xe6\xdd8\xb9t`m\x86R\xe2\xf8T\xe4\x99{\xef&\xce\x0eB\xf7\xee8\x8f\xc9=\x97\xff\xfeI\xd4$\x92o\x99t\xf7\xee\xad8\xb9\xe4\xbfM,\xa3\x1f-T:\xc7\x18\x18\x1e\x13+\xbe\x976n\xbc\xd5\xbf5\xc5n?\x9a/\x8e\\+\xd5\x85\xd4?\x979\xab$\xdf\x85\xe4\xb4\x9ax\x0f\x12\xa7<1p]\xd3\x8e\x9f\xedv\xd4\xd6?A\x12\xd9c\x88\x0f\x87\xc8\x94\xf9E\x8e\x98(u\xf3.\x17;\xd5\x00\xdd<`\x077\xdd{7\x0f\xa0\x83\x07\xee\xdd[\xfc\xed=\xeb\x8b\xbfZ_\xac\x96e\xf9\x05\xc9\x9c\x05\xcf\xb8\x14 ~\xf7n\x1e\x90\xb6:\xe4Hk;p\xb9\xbf\x05d\x17\xb5\xe7\x0fl\x91\xc81=\x08\x7f\x99x.\x7f\x84\xd8\xfb\xfcC\x17du\x95\xd3\xd8E\x01\x11H\x91\x9a\xb8\x84a\x08\xe0D\xc7\xde\xd3\xc9\xc1\x01\xa6\x07\x1d\xe6\xe7O'\xf7\xd8\xb1\xf6\xd3\xe6;\xcf\x95-8\xbb+6\xb5\xea\x9a\xcaC]'\xa2It\x08\xf8\xf2\xa1{c\xcd\xab8\x18\x1e+o\xf0\xc0x}\x97\xee\xbd\xbb\xb7D-\xf7n\xac\x7f\x9dx\xee\xc8Eee\xc0T\x88\x0e\x9e\x13\x86\xe8\xee2U\xef\"\xde\x01\xa5\xd9J\xceS\xe2\xde;\xc3y\xd8\x1bZ\x08_\x12\xf9E\x01\xc2D\xe1\xe0(\xba\x9b\x1cE\x07\x07(\x0f{\x03\xde\xf1\x9bw\xd3\xe4\x9e\xbd\x03\xe0\xd2\x0d\xf4:7\x0f2\x98j\x9e\x8dO\xc8(:\xe5\xab?\xba\x9b\x1c\x0e\xfb}\x8f\x1e\x84.v\x11\x7f+7\xc0\xdd[irOO\x0d=\x08\xcf\xee\xdeZ\xa6\xb2s\xa7.*\xcfp\xbe\xd9x4\x84\xce:\xa7.\xf8\xf9\x8a=\xf5trx\xd8:Q\x8f\"\xa6\xa6\xf7\xa6{\xf3\x80\xef\x9fg'\xaf\xd4\x16:\xb8\xe9\xdeT\xf3-O\x03\x14\x18T\xb40\xfb\x82)\xc6\xb4\xe2r\x06\x188\n\x96\x01\xa6?\xf9g\xa6\x7f\xfd9\xd3\x9f\x9f\x7f\xaaO~\xc4'_\xcdu\x11\x0e\x8e\x8a\xbb\xf9QaP\x7f\xd2\x90\x8e\x8a\xd3\xa3\x88\xcf|\xb2\xdf\xccC6\xbbIJ\x0f\xe6T\x86\xfc\x9e\x0b\xf4 \xe5\xd3!\x9b\x1a8P\x1a\xd6M\n\xeb\xa6\xb8\x9b\xc3\xbaI\x0e`\xfe18*\xd6\xd6\x8ev\xf8\xad\xae\x9d\x12\xd6N\x04\xa6L0RN)\xdc\x1c\xed\xb5\xe3f\xcb\xf99\xa1b\xd6\xc5\x82!ji\xc8W(0,C\x98\x1d\xdf\xfa\x9f\xde\x8c\xb1\xc5\x86\xffS\xa0\xe0\x8f[\x7f\xdc\x1a\xfd\xcf?\x8a\xd3\x83\x1b\xb7\x14\x04\xaaYy\xf5Uvp\xf3n\xe4\xcc(\x99p\x9ahY\xa7#M\x1e\x81\xf4\x02\x89\x8c\xee\xb9\x07\xed\xb5\x04feC\xf6\xf6\xf5|\x9e\xe7)\x892h\xb5\xd8yv\xe7\xd4[\xd8Mb\xaa\x7fW\xe6\x07\xbe9\xd0\xc4\x15\xcc=G\x1b\xb8\xd3\xbaf\xde\nH\xd4\x11\xce\xac\xfcf\xdf{\xf6\xb6k\xb4/\xb8\x1f\xac\xeb8\xbe\xe2\xeaM\xfa\xcb\xeb\xeb\x13\x9e\xd6\xbc\n\xe3c6\x8e\xd2\x94\xf3\xcd\x87\xfa<\xaa\\\x07Oi\xb4\xd2\x83aF\xb3r\xef\xa4\xef\x9cn\x1e\xde\x14C\xda\x12\x8a\xa6ZA\\\x99\x9b\x8e\xda\x0ev\xd5\xa6hFGy\xe7\xff\xfc\xaf\xff\xed\xdcl|<1\xf74\x15\x15\xcfm\xeb\xae\xc37\xf4\xa1z\xc7\xa4\xae4\x8e*\xa9Z9W\x7f!k\xae'K\xc5P\xed\xaa\xba~\x85m\xb5D\x1b\xb54/H\x84\"\xee\xdb;\xd8\xb9\xfd\xed\x0f\xd8\xb9\xfd\xdd\x7f\x85\"\xae1g\x9d54\xee#\xd5M\x88\xbc,j\\\xef|\xf1\xa6\xf8\xa2m\xd12p\xdf\xb7\x8fs#\xd9\xbe\xa8\xab\xcf\x95L\xd6\x04a\x92\x12Y\x1a\xf4\xa0\x87\x02\x17\xd3\xd2\x86:\xce\xa7e\xc1\x92\xc9\xeaP/1\xfb\xa5\xd2\xc5\xe9\x9bQ\x1d\xa0I\xa7l\x8d\x17\xf6\x9d\xca%\x15\x8e\xd6\xb5\x9c\xda\x00\xca>\x14\x12\x97\x05\xa12\x1c\x99M\xcdT\xa8\xc5\x8e\xd7v\xd4+\x91\"C\x0b\xe9+8)t7/\xf5\xcc+\x11\x08\xd3\x89s\xc6H\\\x7f\xa9\xc6A\xd5_\x9a[[\xf9\x8d4)\x98\xa8\xe3\x90\xf3\xba\xed\xc1\xe1Tq}\x8bkE\x1e\xba\xfd\xbd\xb5A\xd2Dm\xd1\xd6\xa0]m\x97\xb1\xed[\xbc3\x08\x99\xc8\xaeb\"\xca\xdc\xb5\xb1\x00\xf5\xed\xd17\xdb\x06\xa2s\xf4\xbaIc\xd2\xd2\xba\xca\xf1\xa4I\xe0\xf6\\\x95\xba\xbb\x8aTB\xba\x9da2\xb3\xd4\xcf\xca\x1e\xee\x9esc\xfdjQ\xaa1P\xb1\xea\x86\xb2\x90T\x8a\xb2\xd9^Z\x8f-\xd1\x96\x85X\x0d7\\a\x8b\xe8\x0d\xe7a\xd5'\xc2\xa86\xfa}\xc9\xd1\x82\xce\xa7\xa8k>\x90\x85\xe1\\G\x14&\x06?\xdd\x80\xc6\xd4\xb5\x16d\xd6\xae\xbe~\xb5\x90\xa6\x9c\x1e\xf8M\xee\n<\xbc\xa7\xe6D0\xd3\xf7\xd3\xb4\xc4\xae\xf3\x18\x1e\x9c(M\x1d\xb7%ze\x97\xeeEL\xbe\xac\xe3\xa1|\x94\xb5\xb4D\xc1lF\x1f&ME\xcf\xc7\x85\x1d\x80\xd4\xd6\x98\xa8D\x08\x82\xac\\\xa8\xb3<\x06\xf5\xdb\x8e\x1b\xcc\xdf&\x0dE\x15\xf19Cw\x12\xcd\x17)\x11\xfd\x7fN.I\x8aJ\x88R+uSz\x94\xaaJ3\xfdi\xcb#\xb0x\xb0z\xa8\x9a\xe8\xb9\xb6X\xd1\xc0\xd8\x10\xe0\xbe\xe6b\x1c\x14\x082\xbc \xb2|K\xa4\xdf\xe4\xcb<&G\xf2\xd2\xf6yR(\x0f\x1c\xcf\x92\xb8\x10&\xe2ZA\xfb\xb5\xb8\xe6\x80v\x91_\x10v\x9f1\x9a\x9c/\x19\xf1\\#^\xb9\x16\x82\x1aR\xd16\xac\x89\xfd\xaanc\x16n\xeb)\x1e6P?\x98}\x11ou\x9eY\x9d\x8f\xe2\xb8\xdas\xf6\xa5=\x97\xf2d\xa3\xdf\xb2gV\xe8\x13K6\x05\xdbk\xbd\x16\xc1\xb1\x99\xd4\x02\xab\xef58\xa3\xc1)f\xb5\x82\xa6\x93\n\x97\xaa\xd2\xd3c\xaf\xbb@\xfb\x92\xd8k\xdaQ\xb0\xa5\xde\xc6ho\xadT\x8d\xa8\xde?cN.\x94\xab\x98\x89p_\x1biO\x85\x01V\xc5\x80s\xa8\x14s\x1fs\x8eH\x8c\xfe\x05Q\xfe`\xdd\xf54t\xafu:\xf3a\x82\xd7\xa0\xcf\xae\xd1\x85\xb2qP\xa0\xd6\x10\xfcf/4\xfd4\xa1\xd7n\xcb\x08\xc8S\xa8\xa3\x18\xf4\xdam\x19\x81\xedQ\xf0\xa1\xb6Vw\xce\xbd\xda\xd1ZrKS\xa4t\x9c\xf1c\xdcc3\xb0\x1a\xbf\xb1\xfe}R\x9a\x8b`\xda}NwYt\xa4Q6\x0d\xd8>W\xc0\x8f\x17|\xe2\xb6\x93\xfbU!=Ht\x84\xb3|\xb6\xfdn\xfa3V\x89hs\x89\xbd.\x06\xa2^\xc9\xc9b\xe7\xc1\xde<,\xe9\x0c\xaf\xc5\xa0\x98/\xf3g,\x87\xac\xd9 8\xb6\x8c\xfa7\x99yka\x17E\xf0<\x99\x93\xb7\x9c%f\xa5\xee\xea\xaf\x91\xc7P\xc3m$\x9b\xc9\x0e\x93\x12\x05^\x1b#\xe3\x91\xb0\xae\x02W\x97>\xcd^\xe4\xaa\x17\x1e\x0d\x19\x06\xb8\x1c\xedWu\xebz\x9e\xdeJ\xd0\xb1{=O\xdd\x80/\xd6\x0b~h\xa8%\xa1|\x8d\xa8\xe9R4\xf3\xd6\xe4\x1aN\xec\x8eNY\x00\xdf\xd0\xf7~\x9fhl\xd6\xf7<\xe1\x1dM\x1b}.f\xb8\xa3\xda\x86\xabL2\xc3jP\xa5\xe3\x9f\x9d\xdd\xb4\xb4\xe8n\xa9\xd8>\xb4M\x95:\xc2\xf44\xf4\x068\xf3\x97\x05\x81k\x1a\xe4\xf5\x06\x08\xe7:\xf1\x0d\x99 \xc4\x80p\xd2\x9a\xac1 \x15\x84\x8at\xc2\xcd\xd5s\xa8\xcb\xeb\x14\x82UM\x8f'\x132fH^\x19\x89\x7f\xab\x1e\x96I\xd5\xe3\x8d7\x10n\xafM\xfd\xab\x84\xa4\xb1\xf0\x98~l\x8f\xbd\xc7,G5\x93\x9d\x94\xd4\xeb\x0d\x1b\xceqV\xac9jy\xbd%-\xceqL8\xbd\xe5\x95l-\xceqL9\xc7\x01\xd0\x0e8\xc7\x11\x8fu9\xc7\xb1\x8as\x1c\xc598\xc7%a\xa2=E\xdb\x9d\xe32\x9c\x94\xc8C%\xc2#\x02\x90a\xba\xabB\xd5zT_\xab\xb4\xb1\"\x85\x91\xa2\xd8V\xee\xf3\x1c\xf03}\xdfwQ@m\x07y\x88\x19\xd6(\xfcX\x92\x15\x17^;\xa9(\xee\xa8m\xe0\xa8u\xe9\xb8-\x9c>u;\x0cb\xdc\xc8\xb5\x19\xf3\xaaz\x15C\xa8\xb4\xe6V\xc3\xe28\x0e\xdc\x8f\xe7i\x94]\xb8\x98\x924p\xb3<_\xf0\xb3\xc4\xc9rJ&\x84RB\xdd\x127K\xa3m\xfb\x8fVw\x9e\xd4\xce\xdb\xb2\xa5e\x93&#\xfb\xee\xb4\x02~G=\xff{L|P\x07\xbd\x8e2\x92\xd6\xbd\x07\x84G\x8cV\x1e8\x030\x9cs\xaa\x06gZ\xc2\xaf)\xb4\xba\xd5\xae_\x1f\xa7\xfb\x0c\x8f\xa1\xf3*\x10\xf2\xdf\xf9\xe9\xa1T\xea\xb4\xeb\x99\xfe:\x04?b)\xad\x83\xce\xe9p8\xb4\x0d\xdfT\xf9\xbd\x9dT\x8c\x7f\xca\x83<\x8d\xa5\xe6\xb9k\xc2\xbe\xadN\x18#\xd7LO\xd5\x19^\xcev\x1aa.\x80\x95\x91a\xbb\xed\xa0\xd6]\xa6\xe2m_\x93\nE0x4\x16\xf8J'\"^\xb6Z\x1a:\x15\x93\xfdY\x12\xc7$\x13\xa9\xcd\xe8\xdf\xdd\xa1\xac\x9bQ\xbb\xcb\xcfX\xa7\x7f\xdb\xc6\xe8\x0eO\xce\xf7\xa03\xf4\xbf\x07\xeb\xd0\xff\xaa\x7f\x8f\xbei\x0f.\xfew\x85(\xdf\xabc\xdf\xee\xd1\xb1\xf2\x9b3\x1c\xdbK\xe9\x8bu\xd5-\xfbJ\xa9D \xf9a\xf0\x9f\x89\xe1\xa3'\xedL\xeb\x9e\xba.i\x95\"A\x84\xe2\xeb` e\x9b\xe2*a\xe3\xd9\x0b\x12'Q\xe8\xad\x93\xf8Z\xea\xbd\x8c\x85\x85\xf6\xd0V\xc6\"\xa6\x12R\xda\xc2\x95\xe0\xe2\xed\xb7\xa1\xf96\xae\xa8\xd0\xe6\xfc{\x9c^\xfb\xf2\x00\x12Q{h{\x1e\x00\x15\xc8\xc3:\xfd\x8f\xa5\x8e\xcc}\x99;\x05\xd4\xe2\xa2Z\x14m\x06\xd6\xf3\xfc\\M\xaa\x08\xb3N\xce_\xa8\xc4{C\xc5\x8a\xe5\n\xc8\x18\x80\xc1\xc3{\x8am\x068\xe3b9\x9fGt\xb5\xd9\x10\xcc\x07*\xe3\\6\x06T\xd5\x119=\xc5E\x18\xd9\xc0\x07]2\xcb\xacC\xb5\xb7\xecH\x1f\xabn>\xbeV\x9d\xb4FI\x8c\xbe\xf2\x0eW\xcd\xcdys\x05O*]\xbe\x83\x1c\xe7\xd9\xc3\x19\x97\x95\x82\xfa\xc4c.\xb7\x0b_s\xfd\x91\xb2\x85\x81w\xe3\xe4R2\"ES\xf7\xf8h\x82\x95\x08W\x94\xcd\xc2\x91\xc5XG\xe6\xbc\xa6|\x10K\xa3U\x1a%\xa3\xc1\xe9\xe9\xae\xb1#U\xcc\xf1-M\xa9\xe4\xdc\xd1,RmV\xa9\xc4\xdb\x99\xbd\xd7+^M\xc2\x8a\x1a\x02\x9fZ|z#\x90\xeb\xa4$\x1a\xb3\xc34a\xc4\x91\x91\xa4\n\xe7\x0dOs85s\x9e\xe6\xf9E\xa1\x8c\xd0D\xdc\xd0\x1e\xcbv\xd6\xf5\xff|kj\xe3\xaf\x9c\x889)\x89\n\xe6\\\x12Zp\xf1\xe3{\x87\xe5\xce9q\xa2\xcb(I#\xa9\x83T\xb2\xc9\x1cxa\xe2 \xaf\xfb\xe9\x0c\xf0\x96\xd5\xcb\x95\x0d\x89\xf1\x88y\x7f\n\xf9Dp\xb6\x0cJ\\\xcelCh-\x1a>I\xb2(M\xfe\x02\x9b\xa47d\x9a\x14\x8c\xae\x14\x98l\xdb;\xf3\xcds\xeb\x9bk\xe8&?\xa2 \x06-\x07\x89\x83\xde\x10\x8fa\x15\xc7\x02O\x1eT0\x90\x9a\x92(\xbb\xcf\x82G\x11#~\x96_y\xe8\xe0j&a#f\xe1\x90|\x87\xafg\xe1\xe5\xec\xd8\x88Z\"\x18\x0f\x03/\x90\x17\xd1\x02g\xa1\x8a\x85H<\xaf\x9e-\x0bA\x97\xe7\x11t\x04\x06\xcc\xbej\x9b\x81\x11\xc1\xcc\x8fIJ\x00#\x0f\x19@\xf8u\x14\xc7od\xe6\xb7\xf9[\x1a\x8d/\x02K\xde\xcbq\"\xbe\x10\x85\xd9\xc1\x81\x01\xaf\xa704\x84z \x8e0A\x98h\x19\xe9|\xe6\xe5\xd6\xb3?i\x19\xd0\x87|4\x96\x8b\xb7\x9c1\x0f#0:e^d\nY\xe5KL\xc98\xa7\xba\x8d\xf7\x8b\x87\xf9|\x9e0>\xda\xf6(P\x7f\x99\xe9F\xd9\x0d\x02\x13\xa3=\xdb\"\xc2\x05\x88A\xda\xbb\x10*\xf1$\xa7c\xa2\xd2\x929\xa1o\xf37\xcb\xece~\xf5$\xa7oI\xc1\x8a\xc0\x82\xc9\xe1=*\x08\x93\xd9O\xc63\x12/S\xd2\x9a\xb3,\xbd\xcb\x19\xb2\x93$\xa4\x89\x8a\x89iV&\xbc\xd4*\x05\xd0}Xf\x95\x14\x0f\xc9w\xc8\x92\xfa\xf9\x89H\xa4x-t\x17\xa1Y\x9aG\xcc`\xea4W\x9a\x1e\x19\xbe\xd4\xe8=~\xf0\x89\xc5\xdd\xb5\xf0\xcc\xda\x10\xbe\x0d\xd5u\xc8g?\xf9\x8b\xdc\x1b\xf4\xfb\x99\xa7P\xd0w\xacJ\xc0i\xe7\xadI\xb4+\x99\xbd\xfe(\xc4\xa7\xc4B%\x9c \x9cy_\xb0\xa0\xacf~\xe6\x04\x93:\x82\x13A\x98r\xa9{\xef\x89\x17\xb29\x05(d9:\x08\xb4\x05\x1aY+l\x12\nW%\x19B'\xbc \xfb}\xf1\xd7O\x18\xa1\x11\xcb)\xceB\xbe-F\xec\x14\xd3p\x00\xb1P\x909\xd2\xc4\xdd\xce\x91\x88\x0fj\xac\xac\x94Z\xad\xca\xa9\xac3r\xcd\xec\xa6\xab\xf9\x80\xa5ALt#\xa2u9J+\xc5[@\x0f\x0eNq\x9cg$\xe8\x91\xb2,\x8f\xccy\xc2\xcf9q\xa6\xb0cW0MNR8Y\xce\x1c\xe8\xc6yJ|7pk=SY$\xc9\xf7]Tz\x8c\xaf\x86\\\xaa>\x8ez hS\x8eL\x92\xa2o\x89dI8\xa3\xa4Vx\xd1\xef{E\xdb\x9a\x8e*k\x1a\x95Fs\x93\x85k\xc2\xdb\x1d\x90\xb2\x04\xd2\x91\xae`\xea\x92~_~\xbb\xdf\xf7h\x98\xfbb\xa4P\xbfO\xc5\x98\xe7H\xe7\x87\x19\x91c\xe1Cme\xc9`\x9bQ\x0f\x95m\xebK\x0f/\xa7\x19\x08_\xcc\xc2\xeb\x99\xdf\xdcD\xf8#\xbc\xe8\xdc\x01\xf8\xd5,\xf4 C\xf7B\xc5\xd73\x7f\xe7~\xc0\xbd\xa1u\x8e\x9f\xcc\xcc\xcax53T\xe8\xb1u\x9c\xba\xf9\xb9\xc0\x9dw\x0f\x08\x9c\x8b\xafg6\xb8Xij\xbb?\x13\x8aH;J\"\xc4\xb8\x0fU\x1d\xb1\x8b0\xff\xa6\x86D\xf4\xa4\x82\x16\xe75e\xa6 i[\xb6\x0e\x19\xd5\x96\xd8\xa9\xe0\xa7L<\xc6K\x153/\xd4\x9b\x07G\x9cSQ\x1b\xf6\xc8j\xe6f\xc3\x0e\x0f\x9d{\x03@a\xa7a\xa2\xd6\xa0X\x94(\x92\x816\xa4>\xcf\xd2Av\xac*\xda\xef\xf7\xa8ZUY\x98\x98U%\x1b\x93TVU.WU\xaeV\x95\xecETz\x86C\x04\x14\xbb\xd73\x84\x87p\xf5\x97\x84^]\x05\xfc\xff\x8f\x9a\x1a\xb5\x9a\n|\x80\xf0m4\x1a\x9ej%\xf5Ci[\x88\xac\x93\x14\xadi\xf5\\U\x83r0\xe4|=\xc2\xd3\x19HnJ_\x0e\x08\x9c\x82\xe5\xd6d\x07\xf1\xf1\x13q\x02\xe7\xcc{\x0c\xc8\xe8\xf6\x17R_\xb2\xa4\xc7\x89\x87\x82\xd4or\xa5ao\xc0O\xdf4\xbc\x98y\x11.p.\xb6\xc8\x18/\xf1\xc2P@M\xfb\xe0\x94\xe0\x0dzD\xce\x97S\xa1$_\xe0\xd5\x0c\xd9\xca\xf8j'E\xaf>\xce\xbc\xc8\xa2\x97\xc7\x9e\xa9[61\xec\x0d\xcc\xfb\x96\x96\xf6\xfb\xde\xb6\xd7ao\x88\x13\x0f!\x14\x98l\xa1a\xce;\x87(\xf1\x80\xfd\xd0\xac\xfb`\x07\xeb>\xbc5(\xe1C\xd8\xaa\xa49P\x9d\x87DY\"<:Ex\xe13N\x8a+c\xc5\x17\xe58\xe4\x82\x8e^\xbb\xcb\x90\x94\xbc}K\xb9\xf8\x96\x8a\xd5\x19\x03u\xbcQ\xa1\x8e\xe2\x95wc\xa6\xf4\x0b\">\xfffc/3\xc5<0)Kh-\x8c2v\xcf\xee\xd2\xa3\xec\xe0@;\xf3\xe7\x00\x02`\xf2\x8d\xb2S\xb4\x03MA\xb9\xfcC\x88\x7f2\xcaOC6\xca+\x1e\xff\xf2J\x02.h\x8c\x1e\xa8\x84\xc5\xf7f\x16\xaeo\xdc\x10\xb4\x84O\x88P\x1f\x08H\x85\xf9\"\xa2\x80\xa0\x00\x06s\xbd\x81u <\x9c\x19.\x88h\x7f%\xccYUQ\x03\xa6\x9c\x86(\x9d\x87\xa1[\xda5\x96\x1e\xf3\x19\n\xees\xde\xb1|8\xf3\xad\xa0\x90\xa1\xfbJ\x1dL\xd8\x1eM\xb2\xd9x$\x9c\xcf\x10~\xc9<\xbd\xdc\xd4aIA\xfb\xe4%\xfe2+\x00\xfb\xe1\xe39\x9fX\x12\xbf\x03\xc0\xfdBl\xb6O\xb3p\x80\xdf\xceB\xfbt{f\x8b\xb5og#r\xba\xd9x\xf0\xb7\xc2\xf3%\x13\xaf\x93\xfe**+\x9e<\x19z\x8c\x85\xee\xc7\x8f7\x8c\x80\xee\xb8\x07\xe4\xc0u<\xf7\xe0\xd3\xec\xc0E\xda\x91\xe3\xd3\xec\xe0\x00\xb3\x92\xb3\xe7\x18\xbek\xce\xeb\x97\xe6\xe4}$~\xcaO\xf5\x80\x8bTw\xb0zX\x89\x80\xc7\xe7\x12\xc9f\xd3x\xcb\xf4[\xa6\xaa\x19\x8ak\xa9\xbaC\x06mQ\x9ber\xd5\xc2=m\x85'\x95n\x11\x82O\x1e\x1c\xe5wU\xd6\xa3\xfc\xe0\x00q2*kk_\xba\x19_\xb0\x9bM\x8f\xf7p\xc4\x1fN1\x13\x7f\x91\xf9\x80\xea\xb6\x19\x1b9 \x06y3\x0c\xd91\xa8(7\x9b\xe1-\x12\x86\xc3[, =\xd0X\xf6Bf\n>\x9f)$\xd1-\xcd\xe2U\x1f\x0b\xc4\x90\xa0\x15 \xa5\x89C2\xdc\x0f\x87\x04\xa8\xc9\x8bY\xf8l\xe6\xb9\x0b\xbeF_$\xd7IV\xb8\x08?\xb1\x12I\xfc\x88\x7f\x0e\xae$l\x0d\xcd_\xb2\xd7\x1a\xff\xa3\x81m+\xc7\x1e\x8b\xc0}\"H<\xbdw\xfb\x98\x1e\xde\x0e\xe0f\xf8\xf6Qr\x97\x1e%\x07\x07(\x1f%\x87\xb7O-z\x93\x9c\x1e1?\xcd\xc7\x17\xc5\xc1\x010\x06\xc0\xa9\xdb\xce`0\x9e^\xa41q\xe1\xeb9?>\xcd\x81/j8<\xc4\xc0K\x88'.\xe9\xcf \x9b\xe5q\xd1.\xeb\x1a\x90\xdd\x1c\xf0`\xcd|\xbd\xabN\xb4E\x85\xcd 4zO\xad\xdeg\x08\xcbu \x0b\x92r*i\xfa\x9c\x9f\x1e\xfd5\x83I\x97-\xf8k\x86!p\x04&\x98\x9d\xaa\xc0\xee\xb4\xd2\xa4\x07z Q\xbe\x8d[#\xa3\x17\xb3S\xf1\xaf\xd4fg\xb0\x9cF\x0c\x9e\x8dj\x07\xc6'\x94\x7f7\x9b\x01\xa6j\xa4B\xfd\x0b\x82FQuI\xacGR\x85Z\xcf\xd0\xdd\x01\x97kT\xba\x0cq&\xc0Tv\xa1\xe5\x8bJ\xf96\xcd7\x9b^>z2;\x95\xc2~\x08\"k\x14\xfe)\xba\x9b\x1f\xe7\xbe\xb5\xe0%\xf4=\xc5 :\xea\xde\"\x91=n\xb2\xa2\xccR(\xe0(|7\xf3rL5\x92x\x12\xaeK\xc4[\x01\x8eT\xbc\xd9\xcd\x93\xd7\x89J\x9c\xf8\x85\xfd*\xd7\xe16\x00<\xddT\x0b\x11\x90D\x7f\xfe\x9c\x89\x05\xab\x9a\xd0\xd1n\x99'\x01X]\xdf\xde\xd5\xa2If\x10\xc2\x0c'\xb0\xa1\xdf\xcf\xc2\x0f\x9b\x8d\x0b\xe4\xde\xc5\x1f\xc4NN\x8a\x17\xf9\xf9\xaf \xf6\xe93\x0d\xe1\xa7\xea\xa54\xd6\x02\xe9\xe97\x91X\\$\x8b7p\x84\xba\x08\xff\xa82>\xc9\xe98\xc9\xa6\xe2(\xb3\xa9\xc1\xcf\x95\x83X\xf3\x08\xa0K\x18}P\xf3H\xc3_83\x06\x8e\x8b:\xe0\xa2\xfbvF\x9c\x05\xcd/\x93\x98\xc4\x8e6\"\x13\x8eh\xfc\x90\xa2\x07.r\x14p\xa5\xf9o\x16\x15N\x94R\x12\xc5+\xe7\x9c\x90\xcc\x89\xc98\x8d(\x89\x1d\xfe\"s\x94Ti\xaa\xf4]$Q\xa7y\x93Bqt1\xbfb\xb7\x06c\xd4\xd4n\xf366\xf39i2!\x87\xe3\xd58%\x0exP -\x84\x93\xe6\xd9\x94P\xe3\xb9-\xd4\xe6\xc4\xff\xf8\x11F\xe6\xe3\xc7^\x18\xd6\x8c\xce\x90\xd0\xf8\xcc\xf2e\x1a\xebD1\xceb9\xb5\xbf\xeb\x85\xe1O\xb3fs\x9fi\x95I\x94\xa6\xf9\x95\x08Z\xb9,\x88\xd3Z g\xf6\xf4h\x9dG\x85=\x0d\x85\x1e\xb4\x8e\x16\x84?\xcd\x8e~\x9fy\x0c\x83\xcb ?=\xc4\x13\xdc\xae\xb9j\xe73\xc9\x8fi\x14\x07\xf9\xdc\xb2\xa1~\x9d\xc9\xf3X\x10\xf4\x12?\x80\xfa\xda\xac\x0b\xdd\n[\xcf\xbf\x04+\xae\xc7\x0f\xdf\x93\x99\xc79Q\xc1g\xa8\x80_\xe2\xa3\xa3\xf73~\xce\x13[E>K\x8a\xd1S\xb1\xd3{\xf5\xacja\xff\"6m\xdb\xfa\x15\\\xe0%\xff\xc1\x8bA\xbcO{ \xc2Z6k\xdbs\x0fX\xfb\xaa\xbe\x8a\n\xb8i\xa7IL2G\xf8v\xf1\xbd\xebD\x8cE\xfc4\xf6\x9d\xb7\xb3\xa4p\xe6\xd1\xca\xa1\xa4X\xa6\x80G\x169s2\xcf\xe9\xcaIIt\xe1$\x13\x08P\xda\xac\xdcT\\o/\xff,_.\xc2\xed3]9rh@\x91\xc6\x85\x11by\x8d\xdb|*\xb19f>\xa6\x99\xfck]\x00Ct\x05\xeb\xb9^\xc4~\x05QN7\x1b\xf7\xae\x1e\xac\x8a\xcb\xb9Ef\xf8T\x88\xd9\x0e\xc5l\x9b0\x18z\xfd\xa0\xa3\xe7\x92\xd0\xfe6\xc3\xbd!\xc2\xea\xf1Gx<2D \x82\x98\xe5!\x11qR\xc4c\xc2\x05\xccH\x89\xda\xf4\xc0\xf5\xd5\x9dru\xe1\xf1F$\x10\xc8\x00\xa2\xce\xf5\xc2\x90\xf1\xb5$\xd7\x0d'\xd5\xc0\xc2\xf0o\xc3\x87\x07\x08\xb3\xd1o\xfc4\xb6n\xcc-\xc1\ntlbw\xc9\xae \x0cx*\x8a\xb1\xd15\x0d\x11&\xfd~dA\xc6\xf3\xc92d\xb9\xe0\xad\x0b%s\xad4\x85XY\xd7\x89\xb8\x99\xed2)ke%\xfe\"\x10}\x82\xae4Z\x84g\xf4%\xef\x88\x97\xa1\xb2\xf4zC\xbem-$\x18&V\x90$S\x1a\"\x9cim\x8a\x10\xa1\xf5P\x08N\xb2\xe0{/\x8clS\xe7\xb0\xc0\x855\xb9\x16\x8c@\x953\x13{\xbf\xbaKGF\xfe9u\x9e1\xa7 d^8l\x161'r(9\x14_H\xb2)\xec]y\x03jvlR8\x8c&\xd3)\xb8#^\xcd\x92\x14\xa8\xa6D\x9e\xf1\xc46?,\x92\x98 g\x9e\xc7\xc4w^\xa7$*\x883\x8f.\x88S,\xa9u|\x14ND\xd5\xc6#\xb1\x93g\xe9\xca\xc9\xb31q\xacZ|\xd76\x90\xe8\x81&\xac\xf7rf9\x88`b\xf5\xff\xf7\x99=K\xfc\xac\x86\x8er>\xe2#\x90\x9a\x8f\xc0\xf5?\xcdSq\xa0\xd3\xd6<\x11\xcb\xe7*\x8b\x1d\xcc\xb5\x82\x0d2\xa2\xa7\x9b\x8d\xdaF\x14\xff(\xab\xe1\xb4\xc4=P\x11\xf4F\xf4\xb4\xdc\"\xac\xd4\xc5\x93*\x88\xe2\x94\xb0\xc6\xc5W\xa8%/'c\xfd>ep\xb1\x901\xaf7@`\xbc\xa8\x17\x85O ?t%\x9b\x13{\x08\xab\x02T\x07v\x18e\xa7%.\xec\xcf\xc8\x18\x01\xa3\x1f\xf9\xae\x94\xe3<\xcaN1A\xc7\xaa\xaf\x19&(\xf0\xec'l\x13\x97Ak3\x84e\x03oE\x95\x10\x81\xd97\xf4l\xbe\xc7\xf5\xcd$\xa7\x98\xcdC2?6 r\xdc\xf9\xcf\xab\x88\xc6\x1f)\x99\xb8(h\xa9+SY\xde\x90I\xbf\x0f\xeaI\x93\x80Z\xf5\x91\xa0\xb4B\xc8W\x1a\x19\x9cu|\x9c\x9f:]_\xe5\xef\xe4\xf7\xf8\xcf\xfd\xbed\x96\x1d\x9dKeGO\x98J\x03\x0b{\xfd,\xfbD\xc4\x91R\xdd\xdd\xfc\x9d>n\x03\xe7\xb7| \x9b\x8c\xd1\x15D\xf1\x16\xcc\xcfM\x95\xe1\xa6\x93\xf33\xd3\xecnA\x06$3\xc9\x19\xcb\x9b |\xe8\xa6\xde\xc7 \x91\xd95\x080b\x91\xce\xbf\xa1J\xb8\x08g\xf3~\x9f\xe8.\x85a\x98\xcd\x9b,\xda\x17\xb5X\x8f\x8ei\xfa\x15\x8d\x16\x0b\x01\x0eD\x126#\xd4\x89\xb2\x1c\xfej\xee#\xa7\xce\xcd7z\xbenr\x0e\x82\x98\xb7\xaa\xdb\xbc' )*Y\x9dIN\x9dU\xbe\xf4\x05\x07\xcb\xea\x1dcs\xc3\xf4K\x06\xaf\xa2\x9e2\x1a\x9f\xe6\x00H\xceC\x03M\xe4\x13\xe7\x89^\x97\x9a!1}v\xb5\\\xd6\xbd\x84\x15\xb5\xd0B\xb5]\xa4b`\x83\xbc\x87\xd2f\xa7Es\xadB\x8b\xc8\xf3\x92\x80\x1e\x00\xa9+\xea\x96\xee\x01\x1b\xa3\x0fp>H\xe64\x17\xfd\xe4\x19\x92\x02\x86\x16\xbc\xad6\x9b\x86>5)^\xab\xdf\xaf$\x82\xaa\xc5\x1fpR\x04RVP=\x98\x93\x89Wa~\xcc\xfd\n\x8e\xc2\x1b3omF*\xe8\x0dK\x00\xe8\x08[\xb96\x9c\x9a3\x1fT\n\xb2\xca\xfb\xb36\xed>\x81<%\xc2V\x14\xd6\xb4\xa2>\x05e\x905Q\xc76-\xa8\xcfa\x8aP`\xbdO\x81\x19\xc3IH\xb1\xad\x00\xccQ\xbb\xce\xe6\x8d\xd0\x96\xb6\x1f9 &x\x97\xe6!\xc7\xd2&\x81\xd6\xbbPz\x04\x95\xc2\x90\xca\x08k[\xac\x9f\xeaFTM#'^\xd9\xfd\xad\xd6X5\xd3\xa9f\x15\xd2(p\x1eN\"\xef\xe5\x12l\x82%N\xcd\x97\xe2\x1cH\x07m\xfdl[\x80j\x94\xe8/\xb6'm\xc5\xb1\xa8\xa2\xbc;\x9f\x19\xc2\xa1\xe9\xbc\xff5\x96\xdb\n'\x9e\x17\xbbH\xb2X\x94r\x17\x11c\x84\xaa\x05\x93\x90\xc2\x1566\x02sE\xfcWw\x9d7X\n\x8eA\xd9\xa068\xa9~y\xcf)\x16Q\xa61\xa7\x0f\xf9.\xb4\xf0\xeck\xc6\xd8\"\xe4\x01<\x14GV\xa6&\x1a\xb7\xf52\xa8\xa1\xe6\x8b\xb4:r\xbeS\xc1\x0e\xb9u\xf3\xa8\xf2F\x04\xe2\x0f\x94\xcb\xbb7\xf0o#;G\xf9\x8d\xf9e\xf7\xedrZ\xf9\x84\x80\x96(H:\xa9\x82G\xd8U\x9c\x95\xd2*\xfc\xc6\xfa\xc6R\xb9\xda\xcf\xba\xe6T\xc2\xa1G\x94\xe6W`-\xa3\x828\x08\xf4\x81\xbd\xf3/\xf2t5\xd5\x9b\x07:\x9c\xee*n\x87\x02QQj\x92\xb9\xed\xddp\xc9\x97\xcc8J\xd5\xdc\xcc\x938N\xeb\x10\xbf;qn*` \x15\xa7\n l\x8b# \x03\xc9\x1c\xc8\x80\xbd\x85\xdeQ\xcf\x1fb\x1d\"B\xb4\x9e\x1f/\x9c\xb6Y\xee\x07EW\x05\xdb\x8aB\xc9\xf43J\xbeMXJ\x8c\x1bBW0\x8f3<\x9e\x87\xc5\x1c/e\xd5uh\xf48\xb9t\xd1\xae\xefI\xfa \xb6\xc3\xe6\x93]\xf8+\xb2\x10xU\x14o\xc9\xb5\x19\xef\nI11 \xaa\xd09\x12\xae\xa3\xea\xf0\x02>\x1b\xd0\x85e\xf7\xe8H\xda\xa6\"\xdf\xa42\xd8\xc9\x19\x8e[\xc7\xb5\x11=\x04Js\x068\xc9\xa6&nN\x83t\x9f\xe1IK}\xff\x1a\x90\xff\x8c\x7f\xf8^x2XT\xa2_%\x0f\x1d\xa8\xfegxf\xd7\xd9\x0e\xe2\xd3\x1d\xb0\xa5\xd6\x993\xa1\xabj\xf3\x84\xe0\x8b\xf8\xbfwp\xebA\x80J\x19\xb7\xa8\x92{\xb8%\xb3\x8c\x89d\x07\xbci\x06O\x91\x8di\x84D\x90\x8d\xd9\xd1\x96\xfa!\xb9\xf5l\xfc#+\xcf`\xd2\xfa\xce\x81\xd3oCf\x92q\x8fT\x88\x04i\x07\x0ff\x18\"L\x02\x9e\xc3D\xcc\xe6\xe8\xec\x0cOwO\xca\x97\x0f}e\x9d\xee\x1c{;\x9e\x935\xf6\xc6\xdd\xa7{\xe8\xff\xae\xf9i4\xe13\x07\xfb!(&\xa3$\x83H\xdfr\xb8W@\xe4\x05\xbbu\xd6\xea\x97T\xe3\xb5*\x9c\xd6\x8e\xcd\x0c+\xaa \xe3<\x8b\x15\xa3Si\xe0>\xf1\x99\xda\xa7\xbd\x85\x01\xab\xa1\x1d}F\x9b\x1a\xfeAg\xed\x17X\xbb\xf8n\xc9\xc8^\xce-G\x06\x88 r\xd4\x1a\x06\xed\xd8u\x03W-\xa0!\x99;\x03\xb7\xfc\xe6\x0c\xa0\x1a\xcf\xe7\xa1P\xb2\xef\x81\xee\xae|8\x1f\xe5\xe3B{\x03U\xfc\xf9A\x84[\xb6\xb8a_\xce\xb1n\x93)\xe6\xcb\xa4&\xca/x\xa4J\xc7\xd3%M\xcbz\x0cRHE(\x10fBG\xe7\xf3\xb03\x9e.\xdb/\x92\xae\x8c\xa2+;\x92\x94\xc8\x1b\xd1\xf9)>\x9f+\xd4\xf6\xab\xf9\xd7\x02\x14I\xa7-\x8d\xb8\x11\xf4\x06e)\xe2\xb67A\x7f\xad\\\xa6\xb0\x01e*Q\xddQK \x17\x05\x04'\x05\xdc\x9aK\xf7Y;B\x86U)\xad8s\x81\x19\xc4\xc9E\xb2\xf8e\x993R\x049\x9eG\xd7\x8f\x04\x83N\xe2\xc7\xd9r\xfe^\xd4\xae\"n\x00\xd3{\xcd@&\xab\x198\x83nJ.\xd0(lk{\xbf\x9f\x1cK\xb8\x18o\x80\x13\x14\x10\\\x84\xbd^\xc2\x17\x8ft\xe0Jp\x1a&\xc7\xf4\xf8\xec\xff\xfc\xaf\xff\x0d\xb4L\xce_R:\xf3\x9c\x92\xb3\xc0}\x9a\xc4\x04\xf0f\xd5W\xbb\x9d\x9b\x1a\x8e\xc6s\x193\xe08\xca=\x97w\x1d\x06\x0c\x80\x81\xb1\xeb\xb8X\x04\xe1\x94\xc17U\x9e\x93$\x9b\xea\x03$P\xa9.\xc2n\xc0\xffq\\\x1ciW3f\x90uh\x98\x1fK0V\x82\xea\x00\xdb\xa4\x130\xcaB~Z_\x90U\xd0\xb2Gf\xb2\x1b\x14\xbe\x0eRx\xd1\xd8x\xd7s\x83\xecd\x90\xa2\xd5\xa2+K\x9c\x8aM\x84\xca\xf2j\xae\xa6\x95/\x9d\xf0\"\x92\x93x]\xe1\xce\xf7\xe0\xc74G\xb5\x17'\xaf\xc4\xe4\x16\x1e\xbdr\xa2\xdd\xe9\xa0\xc7g\xf8\x02\x0e\xef\xfb\x13tf\xb9\xc5\xde\x16\x1e\xb1\xca\xdd\xf2c\xf7\xee\xad\xee#\x05\x85$\x08\x14\x94)\x92<\xeb\x84,i\x02_\xb1&JH\x1d\xc7\x0b\xee\x84\xaf\x1e\xeb\xca5\xfc\x98\xb4\xdf\x12\x0b\xa9\xa5\xa2\x8by\xe7rP\xab\x9a\xafD\xe6\x17\xcbs\xb1\xcc\xbc\xdb|\x85:r\x89\xd6\x0b\xcdU\xa1:R<\x19\xb1S0\x9fj,\xd9\x11;E\xf2?\xcb0\xe4\xd5\xdc[O\x12\x92\x82\x06\xc0\\r*w\xd0&\x16\xc9\x0ed3\xbb7\xb0\xd7dE\xae\xeaM\x9e{\xa6ztl~\xcbM\xc8\xc4I\xa0\xdc@3\x81\x1a\x03\xb1\x8d\x92L\xed\xc8\xbc\xb1#\xf3\xbdw$\xed\xde\x91\x89\xde\x91\x0d\x90\x83\x13\x99\xa5\n7g\xf5\xa4\xd2\xfc\x06QK\x13W~\xfd@\x16\xeen\x85\xe8\xb24\xf1\xe6-:t\xf5\xe2\x90\x8e\xaf\xcc>UaJ\xc5\x89*F\xed\x046\xfe2m\xb8I*\xa4\x02\x0d\xc9h|\xef\xf3%+\x92\x98\x98\x8d\xf7x\x8f\x8d'G\x1c\xac\xcdl\xe6@q\x91&\x10\xf22M\x1bCZ\x01\xd4p\\\xdcQ\x05\x8ck\x0b(\xddTn)RBi\x02Sg\xc5\x86y=\x0f\x85v\xd5R\x9dj\xf0\x9dTDt\xc64\xba\nhY\xf5\xb0 -\x07b\x1e\xd2/9\x0d\xf68\xcc\xa0\xe7\xd0\xf6\xd6\x8d\xae\x16E.\\\x19\xf5\xbe\xbd_ \xfa\xa1ez\xa9\xc0\xc3\xebY\x12\x93\x13H{-\x928\xe7 \x0c\xf5\xc5Y\xe1]D\x08\x8fr\x9c\x9c\x86\x96CDo\xa8\xed\xf1\x95A\xbf\x80\x9dI\xbc^\x8ex\x01m\xe2\xdcc\x9b\x0dm\x9f\xd9]Db\xa2:\xc5W\xb2X\"w\xbf\xbbs\xcc\x82\xb3\x1bkE\x02\xbd\x01\xfe\xee\x0e*}\xdf?CX\xe5\xba\xf7\xdd\x9d\xa6\x97\xf1\xca:*\xa3\x12\xe7\xc7\xc0c8r(\xdc\xc0=\x99\xe5W\xfa\xd1\xf6\x0d\xbc1\xf7\xd6b\xe0,\xea\xd7#\x9b\x8d\x85\xa6\xad\x82\xeb\xf7\xc8\xde\x0b\xfb\x8d\x9a\xda\x91\x03\xc0\xb2.\xd6\xf7\x0fOr:\x8fZ\x00#\xc7z5\xdcm\xe4\xc6\xaes\xaf\x05\x01\xf21\xb0\xe6\xbaEA\xa5}-\x1e\xd6\xf7\xe7\xd8\xea,&>\xb4\xad\xd9\x94\x1bV>\x91\xa7\xe4K\xf3\xd4U\x80.o\xe0\xd8\x8e\xe6\x95c[\x9f\xf3u\xdeA\x80c\xe4\x0b\x15\xe0\xf0\xe1\xbc#\xc0\xe1\xa7\xf9\xf6\x00\x87o\xe7;\x03\x1c>k\xc9\xd2\x1a\xe0\xf0\xe5\xbc\x11\xe0\xf0\xe1\xbciX\xfcy\x01\x0e\xf1#Q\xeb\x96\xe8\x82o\xe7v\xa4\xc0\x97\xf3jt\xc1O\xf3jt\xc1Os\x8f!\xf4\xac\xbb\x8c:\xaeKI\xa5\x9e\xcfC:\x07b\xa9$\xbf\xaax\xc0\xb0!\x0b\xa0\x9e,Z\xa9\xc2Z09\xe2`\x0br,\xf8\x83D:)H\xae\xd4\xb9\xbb\xa5n\x8c\xd9\xd4\xb25\xcd\xce\xf2M\xc2\x97\xfd\x0c\x9b\xad\"Q\xcd+[\xa5\xf0ej\x89p/j\xb6\xf0j\x8e\xd7\xb6nd\x82\xa5\xca\xa4\x00{\xf0R0N\xf3\xc6\xf7?\xce\xf1\xda\"7\x8f\xe6\xde\xa3\xb9\xb7.\xf1\x92\x0f\xbcy\x81Z\xe6i\xcb\xa0<\x9a\x18\x8dXo\xa0\x90\x11S\x90\xe2}[\xd3\xd6\xec\xc8\xb9l\x90\xd6\xc5U\x0b`Sm\x89p\xd4\xefG\x1eA\xc2s\x08\xc7\xcd\xda\xaa4\x08\xd6]eX\xe3R\x16\x06R\xf3Bs\xc3\xcf\xe7\xc2\x0e\xf4I\xd7A\xfcW\xfb\x8b\x84\x14\xf8]\xc7\x19m4\x9c\x05~\xb0\xe3\x1c\xffs\xf79\xfe~\xdfs\xfcC\xf3\x1c\x7f\xf2\xd5\xe7\xb8K s~\xdfv\x8f\xb1\xa7~^hE\x05,\xbaq\xa57{ \xf88 \x1bOb\x89\xa3\xa6\xf4\x84<\xf1\xc1\xea\x918\x81\x8e\x1b\xa5\x94\xf2\xdbCA\xe3\x9d\xd6\xc6\x8af\xcc\xa2,N\xc9\xcfd\xf5\x9a\x92\xa2hG\xc8\xf6\xf8\x00\x83\xeb\x8c\xfc\xa2W\xe9\x83\x87\x9a@n\x06\xdf\x93\x84\xae+\x99q\x86\x93\xe2yT\xb0\x80\xe2Z\x17\x82\xbczu\x90\xf1\x92\x89\xcd\x84GX\x9a\x0b\xc4A\x81\xc1\xf8'-C\x86\xc7a\x8f)5BR\xbc\xe6,>K.9\x8fd%+n\x05/\x0d9bzh\x8f\xf3\xc0<\xe0E\x03)\xae\xae\x17p9U\xe5RB\x94VM\x8e\xd2\xe6q\xb7\x987\xcah[J\xce\x82\xb4\x9a.m\xabG\x16\xb0+i9\xb3\x97*\xbb\x1a3\xce\xe9\xc4\xe1\xb8A2\xf3\xb9\x0d\xc5\x1a\x1d\xdb\x1cR\xe0\xbar\xa0e\x88\xe5\xa4\xa9\xfd{.iK\x93\x17i\x8f\xf4 \x16\x0c\xce3\xb5\xe0\x82\x96E\x88m(\xf8@B\xc1\xab\x1e\xf31j\xb9\xc1\x13Z9\x1bV\xb6b\xaf\xe5\x968i6\xf2\xc6\x12\xaf\xe3\x84\x8ap\xbb\xc1\xf2\xd8\x8d\xf3\xab\xcc\x0d\\\xb0\x03\x03\x10\xbbE\x93h\xbe\\n\x192i\x8b\xfa\xe5\xc3\xb6W?\x16\xfb\xa8\x8d\xdbE0F+\xb5\xd3c7\x8d\n\xf05\x0fH\x89\xe3&\xe3\xb8l\xaf\xe8\xc5\x1c\xef:\xfe~\xa9\x1ce?\xd5\x8e\xbf\x9fk\xc7\xdf\xcfp\xfc\xfd\xda]\xa6\xf3\xf8\xe3g\xde\xb2\xdfo\x93\x12\xa0\xb7p\x83\x01\xb6\xb3\x07n\x92e\x00\x11\\\xcf\xf9l \xd7\x95'\x8b(\x0bn7_\xbf\xe8\x18\x85\x8b\xa99{\x15\xf3#|2\xa3\xf8U\x96\xae*\xd8\xeaV:d\xfa@\x13F\xdar\xe9\x17\x18\x02\xb5\x8a\xf0\xe6V\x16\x95\x88SrI\xd2\n\xac;O(\xe5m\xc9\xd1\xef\xff\xd8=\xf5\xef\xf3\x0e_\xd8\x9d\xa6\x04\x10\xa3z\xfa\xf5\xa7\xa7\xc0\x02\xb9\x0f.-\x10\xd4\x18N.\x83;\xea'\xf1u\xe5\xcc\x14\x96\x1e>8\xc1D|x\xc9\xab\x89\x07\xd9PY\x169e\xaf\x04\xd4\xa5\xb6\xd7\x96\xde\xe8\xf6e\xb3\x8e\xb9\xbc.m\x0c6\xb5\x0f\xb2\x119\x0d\x19xQ\xf9\xbcF\xfd&\x1bI\x8c\xf7\xd3{\xd9H\xde\x91\x9c\x1e\x0f\x83\xc3!j\\\xac\x8bv\x06\x04\xdcm\xe4=x5\x9aAE\xeb\xef\xe7\xbc#-\xba\x7f\xaa\xdeU\xae\x89\xf5]\x82T\x10$\xf1\xb5\xe4\x1a\xf3\x90\x8e\x88\x18\x1e18\x12\x02T\xfb\x81\xc1\xd5\xba5N\xb4-\n\xfe4V\xf8a\xb9\xc6\x0e\xa55\xec\xd0\xc6\xd4\xb5#\x88\x96\xe5\x11\x99\xfeS\x0b\x98Lu\x10\xf3)h\x1f\xb5J]\xe8\xcf\x8a\x80\x84\xa3SI\xc0YimD\x8ac[\x95\x18\xe4\xd5\x0d\x9f\xd4\xb6v$7ia\xe2A\xad\xc5\x81&n\xf8\x85Z\xf3 \xb0G)|F\xec \x91\xae\xd5\x99c\\\xc8\x84E\x04\n\x00\x880\x14,[\xf4\xa0\x8b\xba\xa61\xd9l\xa2c\xe2\x0b\xfb`\xd0\xb3\xf6<\xb0~\xd0f\x98\xa2\xed\x9bMd\xa5^\xa9. \x84\x02\x02Z\xbf\x08\x93S\xceF\xa4\xfd\xfe0\x0c\xc3\x85\x1c\xfd\xcdfy/\xec\xbc\xb1~\"Ig\x8b\xaa\xe8\x93|\xd5\xb2\x8e\\v\x9e\xc7+)\x9b\xfcL\xbd\x85>m\xea9\x7fW\x17j\xc2;B2\x98Lr\x9c\xa4\xc1h\xc6[\x14\xc2\xd2\x0f9W`\xa3\xb9`\x99\xf9I\x89`\xb3\xf1O\x1c\xb7\x05\x15'S\xacvn.I\x8d\x98A{\x1b\xeb\xb1\x15\n \xc5,X\xac\xb2\xe1I]\xf5K\xf3\x14\x15\xf5\xf6x\xd7\xaa\xb3\x17\xac^\x81p.\xa8\xd8\x02\xd3\x0e\x19\x8e\xb6\xbfHH\x81\xf3\xe9.E\nNvf)p\xd4\x91G\xe9Z\x8a\xe9N\x190m\xc9\xd2*\x03\x8e\xa7\x0d\x190\x9b~\xad\x0c\x88\x97\xaa\xd6&]\xa2\xf7\x86j\xf9\xd0\xe3|\n\x9cL\xb0\x17\xb1\xf2\xe8q\xce\xb3\xe3\x04\x05\x9cpU(\x17\xed\xf7\x93~?\x9b\xca\x0c8)\xe1(]\xfc\x0dGi\xe5H\x0c\x8d\xd9\x8e\xad\xd2\xa9\x9d\x9b\xd6{q\x80\xd6\x0e1@\x02\xc7\x8a3\xc2\xc5\xf2\\\xec\x06m\x08\xb6\xd8\x16\x97\xe7\x01g\xcb\x8d\xe4G}\xf3\x80\xc5\x01\x15\x00|\x8f}Z\xe1\x8a\x98Qim\x89\xa98\xed6\x1bj]/\x1c\xd0\x8aj\xa3,\x8f\x16\xd3p9\x15\xe7\xc3b\x8a`|\xe3m\xe3[\x8f@$\x0f\x108u97\xad\xb52-}6'x\x87\x99A\xb7j\xe6\xdd\xd2h\xd8\x998\xe3\xc5=A\x9b\xae\xff\xaf\xa5\xd2\xe3(6\xa0\xcd\xd2c1UDT\x1a:\xb5\xcd\x9d\xe0\x16\x00r{\xab\xee\x99\x8cX\x95\x8f0\xd3\xd7<\x03Z\xb5\xf5\x8f,5}K\xf0?\xa3\x8e\xa3|+'\xd3\xfd\xd4q\xc5\xd4\x96-\xc6\xd3\xaa<\x12M\xab\xf2H\x04\xb5\xa6\xddev\xab\xe3\xea\x03Q\n\xb6<6\xcb,\x9e\nb<\xe9\"\xc6\xb3nb<\x9f~\xa1\xae\xcd\"\xc5\x08Ow\xd0\xe2\xd5nZ|\xb9/->o\xd2\xe2\xc9\xd7\xd3\xe2\xab\xe9\xae\xfb\xebUe\x12\xcfk\x13?\xadM\xfc\x14&\xfe\xb2\xbb\x8c\x9ex|\xad?=\xe3\x19\xe6P\x12\xe8\xc6\xc5^tC`\xa1(s\x18[\xffU\x18r\x89\xf3\xb0\x12\xc2\x08\xa4\x0f\xd5b\n\xc3\xa8{\xc8ww\xbf\xcf4\xd0\x13\x05\xa0'/\x1b\xd1\xd3\x90\x8c\xa8\xe8p\xa6p\xb9\xac\x9eS\xd9s\x82P\xbd\xf4e\xa5n\xbb.E\xbeK\xe41\xcc\x98JD!\xbbp]&,f\xf9\x95VX\x002\"O\xb1\x94\xe0ao\xb8\x8ft\xb8\xec\xd0\xc5\xc7\x1d\xe9\xe3m\xba\xfb\x8a\xd6\xa4\xc7\xaaZ\x95\x9e\x11ay\xabL\xd7\xa4P\xdc\x16\xe5h\xd1\xf1\xb5\x87\xd3\xf6\xf4\xc9\x0c\xaf\xab\xbb&h\xd9IX\x87\xb3\xaa7E)\xfb\xc5J{8\xb5\xac?\x8c\xcbc\xab\xd7`L\x1e\xa4\xf9\xf8\xa2\x1e\xa4L\xba^\xdes\xe2\xe4\x12\xcb\x9f\x0b\xaa\x00\x0f\xb4\x87\x0cx\xe4|\xf7o\xed\x9c\xddtp\xb4\xacl\x8fT\x98\x7fYo{\x95\x03\xe5\xb3\xfci\x1a\xae\xf3h\xc9f\xb7\x03\xf7\xd5}\xfe\xd7\xc5\xd1\"\xf9\x99\xac\x02\xf7\xfe\xebg\xce\xcfd\xe5\xe2\x19c\x8b\xc0}\xfa\xf6\xedk\x17\xe7\x0b\x92=\x8b\x1f\xe6YF\xc6,p_\xf1\xc7G\x8e|vKI\xde\xdev\x93\xb7\xdaR\x05F\x93`\x88\xa3W\xf5i\xab\"\x1dK\x96\x81)>\x81\xf9\xc58_\x90\x02m6\xeb\xb2\xdbB\x92\xd1.\x03I6\xb3<\x0b8\x0b \xddw\x9e\xa4\xf9Uk8}\x16\xab\xfc\xc9|\x91&\xe3\x84\xb9\x12\xcc\x99\x0f_NeX\x9c\x87yL\\\xa1k\xd8\xff\x80v\x0b\xc6\xb98\xdd\xa0\xfbv\x8d\xce\xbb7\xcf\xc11\x86\xf9\x95/\xbd\xa3\xd2\xc3\x0b\xbb\x8b\xa8(\xaer\x1a\xab\x16\x8d\xd3\x84d\xec!%1\xc9X\x12\xa5\xc5?\xd7T\x88\xfbc5\x11\"\x8c\x9a\xa61\x9f\x92 %\xc5\xec\x1dm\xb9j\xff\x8c\xef\xbc\x11\xd5X_2\x15#\xdc\xebQ\x1d_\xa5^\xd3\xce{\xda\xfd\x1bq\x02K.h5ft\x97\xa9\xab$\x99.\x8f\x14\xe3\xe5\xd3\xe2\xdd\xe3r:\xa1\xf4:\x96WO=\xdf\xa3 ^\x0bd\x15\xcb\xbcPm\x07@\xfdq\xc5 *\xa9\x15l\xc8g{lH\xfb\xb0\x92\nI.2%l\x05b\n\x91\nJb\xcb\xdf-\x16\x84>\x8c\n\xe2\xa1\x03&=\x85\x87|\xb1/\"\x1a\xcd #\xd4\x11B\xd5\xae.\xe8\xaf\xc0U\x14\xb4> >?\xa9\x8eG\xad\x8d\x87m'\x14'\xa4u.L7\xf8IW\xa3\xc1rx\xf7h\x16o\x82\xdc(rP\xdds\x12Qe\xe4e\xbd\xee\xf7\xe5\xa3x\xdfeQo\xb5^V\xb4\xbd\xf5\x0f \x933\x81\xea\xb6\xb7\xf8\xa6\xe3\xde\xc4-\x8d\xc07]\xe7&B\xa7\x01\xf1\xc5y\xff\x85\xebA\xb2\x05\x9chooH\xe3M\xe4\xe2\xf5\xdea\xa8U k\xd1V\x7f,\xbe\xfaN\xa0\x0b4\x12\xe1\x92\xd5\xe7\x0cGqls\x182\xad\xdbE\xf7\xad\xd4\xdc3\x11w\x83 \xa6E\x16\x1b1\xd09\x0b\x97kd 0\x86\x06\xbf\x9cVd;\x10-C\x80\x9f\xef\x0d\x84\x82\x120\xeapq$\x18\xcf\x88^\x10\x01\x96\xff\xa8\x10,\xbfD\xb5\xa52z\x1c0\xaf\xd1\x95\xb4\x12\x083\x91\x92\xabGr\xe5\x9c\xe7^\x86\x1fM\x15L\xc1\x98\xe6\xa9\x904.\xe5\xc5\x92\xcc\x8c\xf0l\xe2/\x01`\xf7U\xf64)XNW\xde\xb3B\x05my\x16\xdb\x15\xa8\xda\x16d\x0cu\xfd\x18C_\xaa\xf5I\xde9[B\x96\x99\xfc\x1c/cW\x85\x9f\xa9\xac\xb2 \xef\"\xa7\xa5'$\xa2\xe3\x99\x92\x93\nx\x12=\x9a`\xaa\x03\xdd\xf2T\xa1B\x05\xbbfO\x7fT\x98D\xa3\xda\xa8yy\xa8s\xe0$te\x04\\F\xe6\xcf\xe2k\x17_y\x91\x88E\xcf\xf3\x88\xc1x\x11\xd1\x8bW\xd9\x0b\x92-=\xe2g\xe4\xea\xbd\x88\xaa\x84\x8em\xc8A\xd0\xa2\xa8\xa3\xf0\xbd@!\xf4%\x9a\xe4G\x8f\xbf,=9\xb3U\xacB\x0bR\x90\x17\xb3\n\x01\x92\xa0(\xc4\x0fq)\x03Oh>\xff\xe9\xc4v\xeb\xe4#\xf2r\xea\x11\x18X?\x8eX\x84\xe5\xef%Ma\xf1\xc3\xa8\x02\xb4\xb3:\xde\xc5\x00U\xfa\x1e\x92\x96\xc4\xcdf\x80\xed\xcc\x11#\x9e|\x9e\xa4\x11\x00\xc0\x14\xa3\xb6\xdaN9w\xd61\x9fL\xcdZ\x9aG1o7<=\xe3S\x880+\xf3\xecQ\x12C\xb8!\x85\x9b\x01\xd5\xd7W\xa6\x9c\xd8\xc6\x1c\x99\x12\x95\x06\xa1R\xc3A\xaf\xad\xc5WC;\x17\x05ki\xa2}\xd5\x05g\xb2d\xa0\xde\xaf,2\x99U=z\xa8d\xf9O'\x16J\xa4\xc0r\x96\x01 3\x0d0\xf9o\x9de\xcd\xdb\x11\xac+=\x08:zVb>\xd9\xc1zI\xa5m\x1a\xcc\xbd\xd0V\xc0\xefw4\xc5|Y\xb4\xbf-\xb15\xfe\x81\xd5\xc7\xe3UB\xd2\xd8\xb1{-\xba\xa1,$\x94\xba\xa3F\x83\xca\x12C\xc44\x9a\xcf\x93\x82x\x9eGq\xae.S\x12\xb1\xb9\xe8j]x\x99\x08[F\x90\x1d\xa1\xcc#\xa8,qT\xc9\x06\x98\x90\xad\xf9\xc0~\x9a@\xe4\xb2c\xeaI\xa3/\x14\xc8O\xfb\x94\x14yzI\xf4\x0b.'\x99\xb5\x04\xf5&Q\x81O\xd8\xc1\x1d\x84)\x04\xee\xcd\xa9\x07\xd6y!;\"w\xb3#rp`\xaa65L \x93g\xcf}\x88g\xcb\xfa}*\x02\x880@\xe0<\x1c\n\xf0\xc5\xf7\xd4x\x88\xc4\xf9\x18\xd4\x84\xfe\x9fKBW'$\x05t`\xef\xe6\x88\xaf\x82C\x9a\xa7$t)\x89\xf3\xf1\xa1\xc5\xee\xba\xa77\x11f\x9fQV\xe2\x0c\xf0rGD\xb7\x8a \\i\xa2\xe8 \x1cc~\x14\x83\xa2\xc7\xa3j\xb3\x89d\xfe\xc7\xd3:\x95G\xd3p-\xe33\xbc0a\x15\x8a`=Z\x14\xa7\xc1Zc\xfc\x06\xcf\xa6\x18$\x14\xd5\xc6\x80\x84\xf7\xbcuM\\ $)\xac%\x97\xa8\xc4\xa3\xf8\xef\xadO\xdc\xe3\x98\xb8@v\xddoZ\xebV\x1aE{O\xea]\xa5 w\x89\xca\xb2\xc4\xcf\xa7\xe1$\xf2\xe6KT\xc7k\x18XpX\xe79c\xf9\xbe\xe0/\xc0u<&\xe3\x9c\x02\x97\xce\xbf\x90\x91V,\x19=\x1c\x8f\xf2\xab\x8c\x9f=\x0f\x84\xcd\xbc\x18\x93'S\x1b\x08G\x83\xffI\xad\x99\xc1\x01\xddH\x1c\xd0\xce\x069\n\x12\x14zuT\xc5\xde\x1c\xde\xd1\xea:\x1b\xa1\xd4 \x7f\n\xbd]\x90F\x05;\x84\xd0mU\xe0A\xfdU\xd5\xcb\xf2\x9b3\xfc\x97\xad\x86\xcc/ \x05\xa6\xd4\x99%qL2\xde\xb7wv\x06]\x85\xc2d\xe5\x7f\x0f\xafh\xb4\x08\x007\x9b'\xdd\xba\xc5K\x13\xa7 \\&c9u\xf2\x0cPyyW\x8b\xc0Ib\x12\x89kD.7\x14\xc1\xad[\x05\x8b\xc6\x17\xea\xdb\xfe8\x9f\xdf\x8an};\xfc\xcf\xb7\xb7\xff;\xb8}k\xf8\x9f\xef\xfe\xfb\xc3\x0f?\xd4'\xfdP\x8f\xc7\x97\"\xa5q\x02\xfa\xe0o\xb0\xc9\x12\x0e\x11j]\x80e\x13\x1cA\xc4\x17\x02\x88\xcf\xa5\x8b\xcd\xc6\xabN\xb2I\xee\xc7\xb2\xaa\xe7Iv\xd1\xb4\xd7\x82\xdcU\x905\xbc\xe6\xe5\xe0F\xc1\xbe!,CQ+D\xe1P\xfc\x14\x9f\x9a\xea\x1a\xc6I\xc8\xf47\x9f$) \x92\xe2\xc8J\xe4\x0d\xc1E\xc8|.ngE\xcb\xa5\xfa\x13\xa92w\x9f\x8b\x1c\x81\x02\x94\x91%\xfc\x044\x89\x93\x84\xd0\xe3\xb6\xc4\xa6M\x95\x86y3\xd9\x01\xee\xcdQ\xb3\x9f\x7fu,\x8aw2}\x0c\x83$tW\x05\xfc\xbbT+`\x87\xb6\xd4\xd0;\xc9\x0cbW\xb3\x89nP\xe3\x13[t\xa9\x1d\x95\xd9\x06\x13-\x15\xdaLk\x89\xda,\xdd\x1b>\xf4\xc2\x8a\xb2,\x8f\x1e\xfccV\x0f\x0f\xb4\x8b\xc3\x9fp\xda&\xf3\xa9`\xd5\xae\x0f\x0dT\xb7\xc5-\xa5\xf94\xe7\xd2\xc3S\"\x01\x8eE^\xcd)\xb4d\xfd\xc0\xdf\x95\x15.\xa9\x99o\xbad\x8cH4iQ\xd7p0\xf8\x1f\x15\x16J\xb2*g\xf8\xbd\xcd\x17\xb4\xf1#g\xf8\x83a\x15;8\x9e\xaf9\xbb\x9f\xeee\xb7'\x8d\x9c\xf9\xf9X=3YHF\xee\xf5!\xef\xb7+Bj\xb3\xcd\xa6'H\xbb\xa2<\xb6\x8b\x8e:\xc7\x89!\xf6\xc4>\x0fp\x1e2?J\xd9[r\xcd\x8e\xf5\xaf\xc0\x85\x0f\x88\xd8\xdc\x95u\xf6\xe7\x14\xaf\x0b:\x0eD\xe1\x08\xfcj;\xef!\xdf\xf3\xccl\x95\x92`]\xbb\x03\x0eX\xe3V\xb8\xc4\xf4\xd8\x8bB\x8a[n\x90>L%-\x8fJL\x10\xf2\x12\x14$Bf\x8d\xca\xf2\xe8\xe9?\xb6\xc2\x9fJ\xbb\x9e\xdf\xba\xecz~\xdca\x98\xf3\xf3n\xc3\x9c_\xf65\xcc\xf9\xb5i\x98\xf3\xdbW\x1b\xe6\xe0\x9fv\x1a\xb7\xfe\\1w\xf9\xb5f\"\xf3c\xcdD\xe6G0\x91\xf9\xa5\xbb\x8c6\x91\x91\x97\xe6\xbfO\xb7o\x85\x8e\xb5\xf5*\x92\x87D\xcbr\xb9^\xaa\x03$\xbc'T5P\xd9\x87\x84\xcd\xa4\xc6\xe6~\x16\x9fp\x8eT(B\x90v\x92\xeb\xca\xa2\xb8XA\xb9)\x9e\xb1y\xfa\x81\xcb\x0fy\xc8\x1b@P\xdd\x7f\xae\xd7\x12\x1c\xe4\xc3\x8cd\xd2\x98\xd1\n\x02\x96d\\D\xb8\x00#\x0c\x07\xd8dpDv\xe6\xcb\x829\xe7&$\xa6\x0e\xf7\x91\x80\xfe\xf3a\xea\x11$;\xf6\"\xfe`\x83\xe3\x17\x1e5KY\x19u&\x15\xf3\xfc&>\xe6q\xe6\x8f\xd3<\xd3c\x98{\xf5Q}9\xc1k\xde\xef\x80`u\x11;4\xd8,\xc3\x12!\x05$\xd9ti&&\xba&\xfei\xea)\xc0\xc9\x9f\xa6\xdeO`|H\x94\xe5\xa1\xfc\xa1\xb50bv\x1402h\xa9V!\xf5\xbe\x1b\xfe\xf0\x1d\xc2l\x15R?\xf3\xc8J\x0dM\xb6R\x12\xad\x1f1F\x0b\xb8\xae\xf5,>\xea\x8c\xef+`t\x0ey\xc7\x15.;)\xcf\xf8qyfN\x90\xff\x92\xed2x\xeb\x01\xb7\x7f\xcc\x86\xfd\x8b5a\xc5\xff\xf5\xed\xb7\xdf\x1e5\xf1\xbd%\xec\xac\x95\x9f\x92\x05\x89@\x01!\x7f\xd6\xde\x1b\x94\xcb\xef\x8d\xd6\xc1B\xb2\xfd\x8f\x95\xa2\x80\xec\xdf\x13\x1aGY\x84\x9d\"\xca\x8a\xc3\x82\xd0dr\xc4e\xe7+r~XD\x13b\x14%\x10\xb3D\xab+\x00\x0b}\x92\xd3y\xe0,\x17\x0bB\xc7Qa^6T\x02\xad\xc1\x06\xba\xd1w\xab\xc1U\xbe\x17\xcd\xb65F\xb7e\xb8\x95>'\xd3\x9d\xb1q\xdaT;pI8%\x82[\x11\x9a\n\x7f\x91\x17_P /U\xa9e\xf9%\x95,+uH\xf1\xf8\xf3\xebQ\x8a6\xbb=\x11\x1b\xcf>\xbf&(f\xd7\x13\x93\x940\xf2\xf9\x15\x89rvM\xe7Q\x91\x8c?\xbf\"(f\xd7\x93&\xd9\xc5\xe7W\xc3K\xd9\xb5\xccH\x14\x7f~-\xbcT\xa5\x96<\xff\xbc\xb64t\x8b\xe57gVt\xbc\x95G\xb0\xb4\xbbc\xa5u\xb3F\xee\x0d\x8f\x99_$19\x8f\xa8\xf0\x94\x18\x8a\xbb\xab\xec4\x00\x05\xba\xf5\x9a\xb7b\xa1\xdf\xba\xae\xd4K\xe7\xab:^\xae\xd4\xbd\xda\x06u`s\xd7\xb7\x83\x84\x08\xe21\xf0\xff{\xfb\xbfB\xc1Y\n=$\xf4\xcd\xb8\x9f\xba\x81[U\xed\xb9\xa0\x94L\xe0\xa3irVA\xe4\x15Y\x9c$\xe3M\xd6\x9a\xc0\xa6\xe2O\x12\x14\xf3\x82\xa4i\xb2(\x92\xa2\xdel\xd9 \xe1\xe1\x1e\x93\x05\x9b\x1d\xbb\x15L\xe0;\x8bk\x97\x0f\x05D\xd6Y\x85\xebA\xa0\x82=Y\xba\xce\xff\x1c\x19\xbd\xa6E\xe1\x9a\xd1\x19\x1a\x03\x0d\xd1\x14\xde\xaa\"2~Pe\xf8~\x10\x83g0\xb6\xb4\xaa[$+e\xaf\x04\x89\xe3\x89gx\xa8[\xd9>\x15\x9f\xd1Vk\xcd\xb44\xf6\xac\xc4\x85\x98\xa9\xe8\x9c\xa4\x95\xd3\x96K\xae\x81;'\xd92ad\xeeZ\xde\xc7l\xe5!\xcf=\x84\xe1v\x0f\xe4\xb8\xe3\xb5\xf2\xb8\x94\x97|%RgqK\xac\x8a\xeaN\x11\x05\x8e\xf9.\x90\x95\x11,\xef\xb7\xb9\x18\x03\x82\x85\x8b\x02mC*\xbb\xc6\xd4;+\xb0F}i\x0fo\xfbw\x16\xd7{X\xa1\xf2\x01\x84o\x07DYH\x88\xf1\xcc t\x984\xcbr\xc30\xe4\xb2\xd7\xbda\xbf\xefVQ\xd3\xdc\x83\x1f\xfe\x9dUj>p\x17\xd7G.Xc\xb5i\xaf?-\x0b\x96LV\x87ZC\x0f\xb1\xc0\x0e\xcf \xbb\"b\x13\xec\x15\xa0\x8d\x93\xa6$\x9b\x16\xf5 m\x90?Z\x8d\xe4\x90\x9ev\xb0!\xbb\xa7\xe0AU\xc2k\x99\x88\xa6e\xb0\xa1\x14\xb6O\xe7\xc3%\x0c\x86\xa06\xc1\x8coo}Ka\x1a\xb3c\x19\xc8M\xd6\xd1\x93\xbd:PZ\xe4l\x9f\xb8d\xb2\x9b\xfb\x07&\xeb*\xb0od\xb2J\xf9q\xde\x0cM\x96\xae\xec;\x9fN\xf6\xb6\x9b\xd7\xaajk\xe0\xe9X\xfe\x0d\xdch\xc9r\xb7\xfcl\xd2|\x86\xc7\xabJ\xe4\x97fd\xa2\x06i\xe4\x896\xc1\xbe\xb1n\x83\x1b\xe4\xb9*Q\x84\xbe\xeb\xc8\xd4\x08\x9e'\xe2\x14Uh\xbdH\x8a0\xfc\x1b\\&E\xc2H,\x9f\xe4\x9a\xac\x85Bj#9N/\x99/r\xca\xa2\x8cU\"\x18\xc9s\xc7\xba\x94|(\x03)u\xec\x16\x1dy\xc9V\x8d\xd5;\xe7\x0cd\xa6\x9a*\x8c'\x96\x7fdg\xa5Ad\\\xaev\x1b\xcb\n1\x18l\x15 \x18\xc5\x938`\x16\x85\xa7Z\xff\x9b\x83\xfd\xfc{B\xcfk(k\xfbx`,V\x15\x08)S\xa9B4nj\xc1'+\xe9\xe6\x9d\x94xVxI\x8b^\xf9\xc6\x12\xafa \xb9C\xff\x0e?\x99\x0c2\x17\xab!s\xe1I\x9aG,p\xf9RhS\xe3\xc6\xab\n\x80\x00\xa8\xa5p\xd4\xb0\x17\xfc,\xa4X\x15\xb7D:\xdc\xadj\xe1\xa5\xec\xe8Q55g3\xf2\xa3p\x84\xf8\xb7\xa4\x17\xdd\xbb\xb9A\xcb\xf6\"4\x0f\xa9g\xa2B\xe5Y\x94\xbe\x9aL\n\xc2L\xc0\xad)\x8dV\xa3\xe1`p\x8aj\xe4'\xae\x90\x9f\xc6Ev\x83\xf4\x1f\xbb@\x97\xd8\x8c\xe6\xcb\xe9\xcc\x0d\\\xce\xfa\xb9\xd6\xb1\xad\x84\xbe\x1fd\x80;^\xbf\x97\xad\x9a\x18\xec\xce\x00\xc2\xa7\xe0\x19\xe4X\x8a\x1c\xe6\xb4\x1fl\x8b\x99U\xb35\xf8\xae-\xd0\x9f\xba\xcdo;^\xda\xe3i\xe9A\x12\xe6\x05\x9f\x1b\x97\xeb\xf3&\xe1\x0c\xcfWM\xdcV\xd1q\xe7\xf6\x9d\x86\xee`\x9f\xb6\xdf\x91M\xaf\x0d\xcf\x9d\xa6\xfc}\xc7F~\x9dv\xd3\x99=\xef\xae\x0b\xd0\x0e\xc9M&\xf0D\xdeO\xaa\xa9\xc2\" \xcc Z\xa0#y2%Y{\xd0\xaf\xc6\xa5\x19xJ\xac\xc1\xd8V\xea\x13\xc7\x02\x0f\xacz\xd9U\xf9>\xce\xb3'\xf9xY\xb4\xbdb\xd1\xb90=\x1b`\xc1+K$CND\xd4\xf6_\xd9\xb3\xd5\xb26\x8c\xee\x86\x924\xe2\xccJ\xd7L\x9c\xe1\xcb\xca\xa6\xdb\x8b7l\x0b\xde[1dP\x1b\x86\xf3\xa4\x10\xe6\xd2\x1c\xf9\x87\xd7{\x1e\xfa\xe75\x12W\x8d=,W\xa0\xf4\xe1\xde\x93\xea\xb5\x8dTe\xa9\x7f\xcb\xff\x81_\xb2\xebI\xc6\xa9#\xa74<\xd5\x0d\xdc\xdb\xfcO\xd9B\x0c\x1a\x05\x06n\xe0~'4g\x9c\xba\xb8\xdb\x19eS\xce\x8a\x0b\xe8\x06F\xdc\xdf\xe6.\xd7\x90\x01*\x11\x81\xb3\\Y\xb1\x88\xd8\xba`\x06l\xeb\xd3\xd4\xe1\xd1\xda\x05\xc3r\xd8\x0d\xb3G@\xad\xa7\xe6\x90\xe9\xa2\xff\x1a\x8f\xc7n\xe0\xcaA\x80\x8a\xe4\xfa\x94u\xc0`8\x03\xff\xf6\x9d\xc2!\xa0\xfck*\x05 \x9a\x88\xaa\xbd\xdf?\xb3\x8b\n\xee\xa6\xa2\x1a\x11\xaf\xfd8\xa2\x17\xe5\xd1\x99\x10\x97\xbeq\x1c\xff\xc6\xfarU\xb6\xc8\x07V\xcbk5\xd9\x01<\x03\xf7_\x13\xf8\xcf\x95\xdc~=\xc2\xf4y~}X\xcc\xa2\x98/\xe7$+\x08s\x06\x10\x9d\x8b\xff\x8fN\xcf#o\x80\x1d\xf9\xff\xfeww\x10\x96\xaf\x07\xe2\xe5\xf0\xf6\x0f\xd81\xff\xf0\x01AG\xf2t\xbc\xda\xa9\xbe\xe6<\xd5\xe1%\xa1\xe7NSs\xdd\x0ck+\x95\xf3\xc7.\xb0\xcc|z\x84&@\xf4\xacM!\xadK\x0c\x7f\xa8o\x86\xbd\xb4U\xbc}\xc6\xc9\xc6\xfd\xd7\x7f\xe1?Q\x83,&G\xf7\xa8\xe5NW\x7f\xfd\xb6\xb0\x84s\x03\xf7[\xb9]\xe5\xba\xda\xa6J\xde\x8b\xb0u \xbd\x96\x12\xe0\x0c_W\x8eJMi\xa3\xf3\"O\x97\x8c\xb4\xd0\xa2\xbf\x0e\xc1\x1e\x1f\x12\x8ej\x9e\xb1\xff\x9aD\xfc\xff\xec!\xb8\xfd\xfd\xb7\xb7\xbf\xfdA\xec\xb0k>g0\nz\xb7]\xeb7r\x99qz\xc5\xff\xf7}\xcb\x12\xfb\xf6[t\xd4!pU\xb6/\x10nM\xcc\xbe\xab\xf0;2\x07\xf0R\xf5,\xf6^\x8e\xd2\xb4\xb2\x85\x1d\x87KA\xe7I\n2\x92\xf9pC\xd9gg\x83\xdf)9r\x03\xd7\x9aJ\xf8\x99F\x8c\xfc\xe6\x1d\xde\x19\xfc\x0f\xe4\x14\xe3(%\xbfy\x03t\xe4\xf2\xbdq\xd1\xc9\xbe\xf0\x19\xfb\xd8\xfa\xf6\x8e\xddI[\xb6\xe2\xd4\xaa9MbQ6\x83\x15Giz\xf4\x99\x06\xa0\"\xa2{+\x0d\xea$\\U\xad,\xef\xaf\xaaV\x96\xf7W\x1eC\xe8Mw\x19\xcd\xe0\x00v,Avx\xd7\x97+\xbd \xf5\xa8\xb0*\x82\x1f\xc4\xadL\n\xd9=\x80\x85\xe2\xbc{\xd7\x14>\xb6\xc6\x97\xe1\x1a\xda\xd4\xb3U\x89=;\xa0\xec\xeex\xe2\xfa@k\xb1t\xb7X/\xda\xc2_)\xd0-\x8d\xb1\x95\xd7\x90\xcb{96\x98\x18\x91\x8bM\xbb\xf8 I\x8fLq\x8d\xd0\x08\x93,\xd0\xfa\xf5=?\x99/\xd8*\xa0x\x9c\xc7\"\x1c\x01\xdc\x87%\xd6}\x98\xf1\x87(\xca\xceue\"\xd9\xb4\x15\xec\xd1~\xbfP\xf7^\x92Q7\xd0\xed \x96\xae\xe6q@K\xdc\x16\xb6\xb1q\xeb%\xa5\x0cK\x92H>\xf3\xf6\xeb\x89\xe4U\xf3v\x08\xd2Z(\xc0\x06j\x0f\x1fj\xa5\xb4\xaa[\xe8\x7f\xfeE\xd7?p\x87\xd3\xe6G\xb9E\x88\xa7\xa4X\xe4YA\n\xa5\xf9\xb2n\xde\xf7S\x9b5kh\xc5L\xab\xa8!\xb5\xb6\xedu\x9d\xdbf\xa7\xd2\x86\xef\xd2\xbe0+\x06\x04\x15\x831\xe9LU\xdd\x03G\xdb,f\xab\x92\x04\xe7\x01\x7fZU\xe1U\xec\xc13\xa3\xed\xdc\x7f\xf9\xc8\x91#\xde\xea\xf6\xd4\x84Gi\xad\xc8\xa0\xa3\x00g\xffz\x02|\xf0\xef\xb56t \xbcx;Z\xb0\xa5\xf9\xc8y\xf5f\x8f\xd2\xbb\x9a\x7f\xd3A7\xad\xde\xe6Y\xba\x92\xd9E\x93q=y\xffA\x90t\x85\\\xeeIWj\x01\xc7%\xecQ\x17\xb9\xff]\xdf\xf2)\x98XIaH\x037\xb6^\xf4'M\x0f\xda\x00b_5\x81]\xeb\xb8\xaeD\xc2\xdfjU\\\xbf\xef:^\x93\x8b\xfb\xc5jc\xbe\xd8\xd2\xa2\xadH\xbd\xbf\xaaZ\x805o\xfd8r\\\xd4\x12\x05\xfc'%S\xbc\xcc3\xe2\x1a\x0e\x83]ZR\x9a\xb4$s\x86 \xd0\xf2\xc5\x9b\xd9\xaf\xdbP\x02d\xe40)\xaf>\x12\x88\xb3\x062\xe0\xc6:\x8e<\xb7\x98Gi\xea\"\xe1\x15S\x91\xdf\xa4\xbe\xe0\x8c\x13,z)DB\xb4\xd5,\xbeb%\x92\xb74\xaf\x01<\xa0\xec\xb5T\xc9\xa18J\xdb[\x07\xb0DF-\xc3\xcf\xd5\xe5\xb0\xafT_\x7f?\xeb\xb0\x19\xaa\xbb\xb9t5\n\xf0\x1f\xeb\x95F\x97\x1d\xfb\xaa\xd1l\xb1\xd2\xd2\x7fl\xa5\xa5|\xa5\xc1$\x8f\xf7=:\xd6\xaa\x91\x1d\xaa\xc6\xaf\x90\xa6\x96\xea\xb0p\xd4N\x03\xc5\xa2\x91\x9a\x88\xa1<\xcaT\x80\xb5\x86\x94L\xe5\x19qvc-t\x89\xe5\xc7\x1bkZ\x9e\xe1\xc6\x08\x0b\x93\x82\xba\x8c\xb5\xbc\xfc\xbfM\x00\xfe\xf2}\xbc\xd8w\x1f7L\x06\x85\xe5\xc13F\xe6]f&`M\xdebdbl\x0b\xab\xa0\xbd\xa4nMX}=h\xc6r\x05s\xf5.\x0b\x94-v&[,D\xd2/\xb2\x0e\xa9W\xf0u\xf6!lO\xfb\x90\xca\xa1\x0b\xeb~d\x86\xaf\x062]\xb3#i\x16m5,\xe1\xa5-\xbb\x92z77\x1bWm\xc6n+\x93\xee6\x01\xfdZ\xfcc\xf4kq)\x0cO\xe2\xcb\x8ek\x80I\xfb\x8b\x84\x14xv\xf9w\x840\x9d_n\xbfg\x98^\xee\xbcgX\xb5di\xbdg\xb8\xbcl\xdc3\xc4\x97_}\xcf\xc0i\xc4\xf9\xbe4\xe2\xb3\xee\x19\xbe.\xfc\xda\xf4\xd2\xbe\x08\xb8\xbc\xac^\x1e\xcc/\xab\x97\x07\xf3K\x8f!\xb4\xea.c_\x1e\x88\xa5\x9e\xce\x1a\xe1\xd7&\x97\x1e\xc3\xb3\xcb\xad\xe1\xd7\xb6IRR\xdb\xd0\xbcvk\xbfh\xb3\xd5\xf9d\x0fu>\xd6\xc6m\x9c\xc9n\xc5\xb7\x9a\xccT\\\x0fq_\xe6Z\xd1\xbb\xf6\xf9\x84\x0c\x13|\xfe\x8fm\xd9s\xcdr\\]\xee!g\xd5\xc6W\x92\"P\xee\x9d\x88\x1e\xfa\x93$\x8b\x81=\x88\x96\x1e\xe1\x13\xa5\xa6\xbaA\xe3\xaf;\xa4\xd4\xf3Kk\x1eliA\x1a\xd9\x955\xf6\xe0\xba\x85-\xd7\xd0 \xfc\xb4\xe6Cu\xd1E\x93>v\xd3\xa4W\x7f\x0bM:\xd9A\x93\x1e\xef\xa6I\xaf\xf7\xa5I\xf7\x9b4\xe9\xe2\xef\xa1I7\xfe/\xa4I\x8f+\xf4\xe5~\x8d&\x9d\xd4h\xd2 \xd0\xa4\xd7\xdde\xf6\xa2I\x1f9Mz\xf594\xa9\x93E\x97\x9c\x93m\x01\xd0a\xa4\xdb\xcdq\xf3D\xfei\x9f\x92x9&ZM\x03\xe6}\xe3\x88\xf1.\xe3\x91\x18\x90\x1e\xf3\x8b|NdM\xf6\x9eU\x8aA\x84:\xa0)\xdb\x0c\x81\x81\x9bW\x92V5tR)|\x00\x81\xd5?3\xa6\xc2_p\x11\xb7Z\xd6\x85\x10g\x11\xad\xd2<\x8a\x1dIR\xdb\x8c\x1d\xdetP\x96\xc5%\x96\xeb\xcd\x8b\x81\xd9\x02\xaf\x85\xebP\x90\x97\x98u\xde.\\.\xd4}G\x1ae\xd3\x03\xf7\xa3{\xe0\x11-\x81\xb8\xa8\xc4\xd6E\xbe\x10\xe0\xe4_Y\x04\xee\x1d\xba\xeb\xbf\xdeY?0\x0f\x9f\xa3\xad\xd8\x8bi\xa8\x95\xc9gx\xcd\x1b \xdb\x81\x0d\xdc3\xfc\x90\xaa\x08\x816]\x96G\x0f\x1b\x1b\xf1\xe1?\xb6\x11\x1f^\xa2\xaf\xd8\x0f\x9f\xfe\xa6\xfd\xa0u\xaf\xb6\x0d\x071\xee,\xfa'gX\xc4\xfaDV 's\xdf\xf4\x19\x13\xd9\\\xfd\xa2\x0d\x7f\xcf\xf2\x17r\xfe\xd6\x85oa\xb9\xb3\xe8\xfc\xd0=\x90\x11\x08\x8dA@\x89\xc5\xdf\xbdW\xb9(\xf4\x19\x83P]\xcdc\xbd\x84\xab\x0b\xf2\xd3?\xb6\xfc>II\xfem\x17\xd7\xfc\xac\x9bk~\xd9\xc1\xef\xdaa\xd2\x1f\xed\xe0\x89\x9f\xef\xe6\x89_\xec\xcb\x13?i\xf2\xc4o\xbf\x9e'\x16\xa7\xe4_\xfb\xdf\x08|\xdfz#\x80\xdf]J\xdb-{\x1f\x1a\xe3-\xd0l\xd7L\xfe+:\xed\xea\x95V\x82\x93\xe2\x039\x9f\xe5\xf9E\x10\x195xQ\x86\x04\xa7a\xcf\xeb\xd1~\xbf\x97 \x0c\x11\xb8eF\xc81.\x85\xfd\xd5CA\xe0\xbc\x8b\xa8\xdb\xd9\xb2\xe1\xf5\xbbl\xae\xfdx\xa9\xcd\x11\x9f\xf1\xc1~ \xcc7\xf2v\xb1\xf4\xcf+\xec\xf9\x93\x1aK\xff\xa8\xc6\xd2?\x82Z_t\x97\xa9\xda(\xaeG\x93\x89\x8c\x19)\x86\xfaiT\xccJ$c\xc1\xfe\x7f\xec\xbd\xf9V\xdb\xc8\xf60\xfa?OQ\xed\xfeN\x1aN\xcbB\xf2l\x08\xf4eJB\x82!\x012\x9euV\x8e\x86\xb2-\x90%G*\xdb\x18~\xf4\xfa\x1e\xe2\xaeu\xdf\xe0\xbe\xc8}\x93\xefI\xee\xaaAR\x95\x06\x0f\xd8\x04\x8e\xa3\x1e\x8c-\xd5\xb8k\xd7\xae=\xd5\xde\xf1\xa7\xf1)=8\xdf\xabe\xdeoH\x88\x10\xb4\x14\x13bz\xe4\xa9\xc3p\x891\xb1\xd3&Uc\xeaj\x16\xb0\xaa\xc0V\x15\x14$\xe3\xc5\x0b\xff\xc5\x8b\xc2\xff\x80\xc2\x9f\xbe\xc8\x9folH\x03r\xff\xf4\xd8i\x91\x08S\xef5\x07\xda/^\xfc\x96\xd2\x91hv\x84\xbc\x8d\x91:\xb8\xc5+\xdc\xc6m\xa2\xd3\xaf\x86\xa4\\\x04J\xd8D\xad4\x9b\xe8\x7f\xa3\x1d3\x0d\xb50\xb9\x8f\xa4\xc4P\xb1\xe2OJ+\xff\xdbC\x970e\x00\x07\xc3i%\xae\xa6\x96\xf8_\x13&\xb1\x11\xe5\xae\xdb\xcf:R~L=7\xa4OS\x8e\x8d\xcf\xd3\x8f\x8d7\xb3\x1e\x1b_\x93\xc7\xc6\xfe\xc2\xc7\x86\xf4z8-\x88\xffg\x81\x9a}\x8dQ\xc0O1\n\xf8\x89P\xc07\xd9uB\n(\xbd\x0b&\x94d\x16\xbc]5\xc8[\xef\xfd\xf5cH\xda\xd9\x9a\x89\x83X\xf7\xferqq\xc9\xda\xd8\xc2\xdc\x84\xc0Nx/^X/^\xec\x0fY\x01\xc9\xba'\xdc\xe9\x87\xd9\xb9SQ\xdfHD\xf7\xa0\xf1\xe4\xc5\x89l\x7f\xce/\xc3\xc8\x7fK\xc2\xad0\xe7\xda\xfb\xed\x0f\xc3\x9dwC\xca\xf3|\x18n\x90\xe1}Ydx\xa4\x05D\xb9\x03J\x9f\xbd\xfb\x1d\xb8M\x8d;\xeb\xde\xc6\x9d\xa1\xf9\xb0@\xa2\x0b\x17\xb6h\x92\xcdm\x12\xbbd\x9b\xbc@Z\xa7\xb0E\xbe\x05\xd1hq\xa1\xd8l\xbe\x0d\xa5\xd7C|\x9eE}ol\xf0\xad\x84\xfb4\xad6\xd4\xa9\x0e\x04\x83\x80Ub|\xf3\xac]\xdd\xcfheK\xb1\xb5\x87\x89\xd7-S\x1a`H\xda\x96\x03\xcd-n\xc4dUI\xb8$ mH0\xb0i\xc6\x1b\xfa\x10jrX\x11j\x9b\xff\x12-\xe7\x97P\x95\xf1v\x98v\xcd\x82\xa4m\x8a|d$HW\xff\xdb\xec\xab\x1fxCLr1\x92Hp\xe6\x98?\x04\x1e\xb0d\xed\x94vvv\xdc\xbf:\x83\xad\xde\xe0\xa1\x86\xcb\x899\xa9\xa2\x84\x0f\xc9\x93p\"\xcb\x12\x1b*e``Z\x02\xa8o\x9d\xc8\xb7\x89\xb8\xc0\x87\xe96\xde\x0e\xd3}\x9d\xe6\xcd\xa6\x9f\x9d.\xe9[\xb4\xd6\xdf\xd8\xd6\x85\xfa,\x8b\x97\x01\xeb\x8fY~ \x18\x06\xf7\xb8G\xa8\x87=B\x9di{\xf5\x8c\xd3\xccI\x7f\x81\x05$O_\x86Y\xc1\xd5'\x9f\x85\x96>\xf5,\xd4R\x8a\xa4\x9e\x85\xbe\x9e8\x0b\x91\xbe\xe8YH\xdd\x9a&\xad\xd8\xccf\x85vH\xb8\xcea;H\x8d\x1c\x04\xd3\x88rf3\xf3\xbb\xb3\x17\xa6\x8b\x16\x17\x99\xb8\xca\"\xb7\x8f\x01\xa4u\x08\x1e\xd0\xdc\xafl@\xf1\xdc\xcf4M\xf3\xb1\x83\xdcO\x16\x1c\x1d\xb7I\xbbp}C\xa8\xf1\x91d\xe9\x9dZ%\xebE\xdc\xbf\x83Y\xf4\x99\n\xd2\x83\xed \x07\xfa\x8b\x17o\xbc\xf5\xf8\xc3\xc4\x95,J\xf9\x89\xe5\xd2\x1d\xa0\x83\xc0)#\xf5&F\x82h\xc4\xbd\xaf\x02\x08K,\xaa:\x8b\xcaM\xd3\xa2\xe1\x9e\x8a\x96Y`N\xd3i$>\xa1\xdf3\xf4\xe8V\"\xc6/O\x9fMj\xb4t\x9e\xff\xf1u\x91gru\x91grI\xabZv\x1dQj\xe4\x8e\xbe\xe8\xe4L*\x13}\x1ah\x98\x83C,Z\xbe\xc4\xc2U\x11e\x12Iw\xc8\x16+I\x9e\xed\xb1\x14\xdc`\x0fbJ\x13\x83\xd4\xbd$\xfeN\xf3\xff\xc0HL\xfa\xdfU^\xbc`\x87\xe3\x04M\\2\xb6U\xe4\xd6\xcc\xc7\x85\x13\xae\x9d\xdf\x87)\xf8~Ca'\xb3\xf4\xd6\xd3\xb9`VQ\xf3\x92p\x94K\xd1\x0e\xddJ\xdd\xb7\xcc\x0fO\x7f,\xed\x97\xad\x07\xac\x83\xa1\x13\xed\x0c\x0c\xf51d\xfd\xd1\xfd\x0e\x94\xbc\x18\xcdI\xa8T\xdcI*\x95\x81\x0f\x8f\xdamh z\xd9\xed\x0e\x8a\x9b\xdb\x13v\xb5\x17m\xe7\x0d\xe9_BQ\xc9\xfbw\xf2T\x8eP\x11\x89\xa8\x88\x82Z\x9c\x06 qA\x9c Zz\xf7\x12\x92C5Rb\x8f:A\xe0\xb5\x02~]\xb8\x97\xdc\xbfPh\x06\xdc\xd2\xdc\xf5\xc2\x88\xd6,\xa4l\x92\xb0rT\x85\x04\x01\x8f~\xa60\x19x7\xb0\xb0\xf5\x86f\x1b\xeb\xaa\xa2\xfc\x03\x14A\xb9\xd1\xbf\xd9(\xe0\xc1\n[\x02F;!\x949\x07Y\xa7t\xff\xa1G1;e7$s\xfa1\xdb\x9e\xf5\x98\xed&\x8f\xd9\xc1r\x8e\xd9\xdeL\x8c\x91\xe0\xe4'y\xae\x8b\xc4\x90\xf1\x82}\xc0%\xc2\xcb\x0e\xcf\xd7\x06\xdb\xf9\x7f\xfe'\xe5a\xd6\xa9\xe2\x8e\xa7^\\6\x05R\xdd\x8d\x91\xf7~\x8c\xbc\xf7 yog\xd7\xe1\xc9;\x1f\xbb\x9e^\xd3\xe3\x86N\x1ep\x01 \xef%\xf4\x17K\x9a\xe2hC\x8br\x08\x85\xfb\xad\xbb\xfb\x8d)\xb7$l=\xb8%\xc1\x0e\xe0\x19H\x1c!r\xbdG#r=}\x11\x0bSg |\x9b\xc0\xa0Y\xedu\x12\x86H`o\x02\x0bk\x0f:\x83K\xe2\xea\x1d\xf8'pG\x13q\xde\xb5\xb5\xbe\x0f\xd77\xc23e}c\x9b\x83+\xae\x1fv\xb7\xe7\x98\x17\x84\xd9Z\x87\xd2o\xca\x86\xe4Cti\xf5\xa0;\x08h1\xa9\xf8}@\xf86Z\x92\x0dGx\xb6\x8e\xa9K\xe0>\xab\x0d\xd9S\xca\xedE,\xa7Pe\x07N\xf6W\xc3\xc3\xcc\xda&mS\xba\xa3m\xbdb\xc2I\xbcS>}\x0f\xc7\x16\x04\x0fC\xe7\x85\xbbQ\x17B\x9b\xe3qI\xec\xd0\x04\xd5\xed\xe91 ;\x81\xb3!\xfbG(E\xea=\x13#+V\xa2V\x90\xee\xe2y\x89=ho\x15\x1c\x97x\xf1{\xc0q=\xd8\x86\x9e\x07=\x96\xb1\xb8\x10\xa4s'\x99v\xed1I\xe4N\xbeo\x16\xee\xa5\xc2\xa1k\x10\xec\"S\x02\xef\xdd\x11\xf4\xa0 \xf418\xa7\xc5\x0btCu\xf4\xb8\x11\xb7\xf3h[\xac\x13\xf2\x11c}\x87Xx\x04\xe3\x0e@;\xf0\xaf\xc6V\xb1\x92\xb5\xe6\xba\x9e\x0e\xbd\xa1\xce\x02\x05\xa9\xd5 \x9ah\x14\x9f\xf7?a|\xde\xf5R\xffF\x02\xff\xeb\x0e\xdd\xf7o6\x80\xe7\x12\x17p\xb5\xa1\x98\xb0\xb3\xf1\x1f\x89\x8b\x16\x1cE\xf7\x05\x8a\\\xa2!\x83\x0b\xf7)\xcb9g\xc7J\x91t=S_\x1b\xf7\xd2\x10\x03\x894\x0fwT\x85G\xe7\x9dB\x106\xd5K\x0b\x9bP\xf0\x87\x1d!&\x13\nJ\xff\xcf\xff\xdc\xddKC\x0b\x8e\xf6\xdd\x9b\xad\x82\x02\x14\xd0,\xd5\xe4R\xb9\xd6l\x82j\xbd,\xd7+\xcdf\xa5 \xb1\xe4\xe0[\x05UV\x0b\x12.\xd9\xbf)Hc\xf6\x97\xf2\x1ePbw\x86\xd3,\xb9\xb8\xfb\x08\x12\x85\x08\x12M\xa5\"7K%\xb5\"\x15\x1b\xf5\xa6\xacV\x1a\xa5\x8d\x94\xcc\xe0,\x8a\xdd\x9d\xb9U\xa0I`\xe8?=P\xac\xd5\xcbr\xad^\xabU$\xb5TR\xe5ZU)\x81b\xa9\xac\xca\xa5J\xb5*\xb1o\x0d\xa5\x0c\xaaU\xb9\xa6\xd6\xaa\x12_\xbf\x88\x1f\x96\xea\xc0\x00eE\xae6\x9a\xaaT\xc4_\x9a\x95F\x15Tk\xb2\xdaPjRP\xa6Z\x93\x1buE\x0d\x7f+r\xad\xd1\xac\x08\xcd)\xa0\xde\x94\x1b\xb5r]\xaa7\xe4\x9a\xd2\xa8\x95\x80Z\xaf\xca\xcdJ\xa9.\xa9\xf5\x8a\\kT\x1be`\x03\xfa\xbdY\n\x1fFO\x84\xd1\x85\xaf\x0d\xd0\xac\xc9J\xbd)\x15\xc9\xdfzI%\x0d\x97\xaae\xb5Y\x93\x8aQ\xdb\xac\xbbZ\xb3\x96\xdeR\x99\x0e\xbb*)\x00\xafsC\x95JUY)\x97\xd4j8?\xbe\x1e\x9b\xaa\x1d\x02\x8f=\x08\x00\\i\xd6\xa4\x08\xc2\x06(\xaa\xa5\xba\xac6\xaa\x12\xfd[\xab\x08\x83\xc0%\xab\xa5z3\xa8B\x9f4\xea\xe5\xe8\x81\"\x97+UUR@QU\xf0\x88\x1b\xb1i(\x15Y\xa9\xa9\xb5\xa8f\xb0\xc0\xe06*X\x90H\xae\x97\x02\x13\nh\xc6+\x12PO\xd79s\xf4\xc0\x87^\x91\xe6\xb3\x88\xee[\xb3\xdb\xaf%v\xa36\xb8\x06\x1f\xfc\xa6Y |h\xb7\xf9\xa4\x04\x89;\xb2\xd9\xd7_g\x0f\xbd\xbd\x88\xbf\xd7H\xdf\xfe\xe4\xbdx\xb1>\xd2w\xbc\xf5\xaa\xaaV6\x02B{\xa3\xef\x8c\xf4\x17/F\xfa\xfa\x86t\xadO\xbb\x95\xcc\xd25\x8d\xc2\x8b\xc8S\x82\x80egCK\x0f\xeb>3\xe0X\xd7m\xcd\x80\xc5\xf4@\xed\x9b\xff$\x97\xe75\xcb\xd9\x02>\xf2,\x03m\x83\xcb\xb3\xc33\x16\xfa\xdc\x07\xb66v\x07\x08\xf8\x96c@p\xd0\xf5\xdc\x1e\x04\x0d\xe5\x9f\x9bk\xdc2\xab\x8a2\xecn\x0b\xa1\xf2}d\x19\xd7c\xf1Yq\x04\xf5k\x0b\x15\xa3w\xc4\x9d:\xf36tT\xb3m\xdd@\x93\x86\x18\x08\x03\xed\x97X\x1a\xc4\xd8\xc5\xeb)^\x85\x93@\xcd\x01\x96-\x0f>Z\xff*`\xe8\n\x99\x87\xfeC\x13\xd1\xfd_\xc4\xe9\x1e\xf4=\xcbA\xf1X\x1bQ \x82\xffH\xdfy\x84 #\x96\x05%R\xf7S\x1a\xc2\xc4f\xd2\xd6\xf4\xd4Y\xcc\xbeUR\x86;1\xd1L\xb8\n\x9e\xb8\xbb\x13\xb9\x0f\xc4\xf8{U\xba0B:\x03\xa0\x90\xda\xc9\\\x06$\x95A\n.$P\x9e\xadA\x18\xce\xaf\xc22\xfc2t\xa8\xc5(Q\xf0\x9b\xcb\x05\x17\x0c\xdf\x1fv\xe2q\xfaS@\xcdG\xce\x9b}\xed Y9[\x82P\xc3n\xd2\xb9$\xc5\xd3\xa5\xdb\xa7<\xc4=\x7f\x01\xf7T\x1b\xb6\xa03H\xdc\xc3%R\n-rA\xb1?K\xfb|\xa3\xbfxq\xa3\xcb\x9ai\xae\xb3N\xf1Fe\xccD\x98z)\xb8\xf4\x17\x8d\x85\xbc\xe8@D\xc5\x86\xaf4\x0f\xd5:/jm\xdcs\xda\xeb\xcf\x96m\x7ftzb\xa7\x1e\xec\xb9C\x98\xd6\xef}\xa2e\xb8qG\xed\xa1\x81K\xe0NtQ\x9e\x13\xb3\xf9:\x7f\xe9\xaeL\xefYZ\xb70e\x9c)U6\x88\xdc'$\xf9\xb5\xf0\xc0\xe8\x0e%m \xaf\xb9\xf4\x9b4\xbf3\x1d5\xd2\xfa\xc5\xae\xd5\xe9\xda$\x05\x0e\x83S\xecx\xda\x88\xa6\x8d\x97\xb2\xa8\x99W\x03\x1f1\xde\x836\xf3\xcf \x05hF^\x1f\xfa2\x00Qv\xa7\xa5jU\x02\xd1\x07\xeb:H\xd8)\x1d\xf1\xb8\x19\x9d\xbf\xdb\x99\x89\xe1\xd2\xd8HvT\xf2\xca\xef |l\xe2d\x96~S\xd8\xe1\x1cc\xc1\xd8\xd1\x1c\xf2\x95\x94\x85\xc4\xc3~\xaf\xcfz\xfb\x83\xb0\x18\xc4\xf7,\xfd\xfaGjN\xa6\x80\x9d\x8c\xd8\x02\x85cW\xf8x\xc2\xb1\xfe\x88\x9a\x90\xef\x93\x14\x93\xf1a\xfd\xd9B\xdd\xf5\xc2?\n\x1bQ\x04\xf7\xbe\xe6\xf9\xf0\xd8A)U$U H\n%\xb3\x1c`\xe3\xf0\x04\xff\xc4\xc4wSU\x14L\x80C\x05d\xbc\xc9{.\x94\x11f:\x06=\x0e\xf2 \x9e\x83\xa2\xc7\x9e\x9e\x91\x0d\x89\x06.\xfa_\xe4\xb5\xe5\xf4\x07(\xc83\xb6\xbe!&\x1a+\xf8P\xf3\x8cn\x91\x14*\x04\xc1\x9a\xb30\xa6\x91u\xfffc{b\x8a\xab(\xde\xda\xb4k<\xb1i\x90\xe2\xa5\xac\xe2\xb8\x08\x01\xcf\xf4V\x85`\xd3\xb1lwa\xfc8\xd6\x96\x802\xeb\xc7\xdezvf\xde]\xb9\xfa\xd7\x81\xb7u\xe8mL\xcb\xe0\x9b\x0ct\x17\xdb \x19\x87J<\x88D\x10m\x8d\x0fd\xc1\x82\xd8M\x129\xc5L\xe8I\xb1\x83\xcb\x08\xb8\x9d\x94^\xfe#\x9dcTJ\x0f%\x16\xd7\x9eA\x8e/\x115c\x82&MU\x14\xfa\x11i\xccnz\xb6\xe3SE\xed\xd6\xe6\xe6h4\x92Ge\xd9\xf5:\x9b%EQ6I?\xe3\x80!\x9e\xa0\x02k5k\x0d\xb9$5*M\xb9rR\xab\xd5\xe5\xb2T\xad4\x8dFYn\x16\xd5rM\xaeJ\xb5\x9a\\/\x96\xd5\xba\\)VU\xb9^\xac\x94\xabr\xed\xa0R\xaf\xcbj\xb1T\x95J\xd5\x92\\\xc5_T\xb5,7\xc9g\xc5(\xaa\xe5\x86\\\x95\xf0g\x99}/\xd7JrMR\xa4\xaa\xa2\x1e\x94\xd4\xa6\\\x92\xeaeEV\xa5\x8aZ\xc6\xdf+\xb8\xdf\xba\\\x93j\xb5\x9a\\\xb5\xcb\x8a*7%\xfcY1*e\xb9&\x91\x8fz\x0d\xf7P\xc1\x1fJE.\x15\xd5\x92\\9h6T\xa9Yj\xc8eIUTUnH\x8dfY\xe2fu\x0bZ\xd5RE\xaeJ\xd5R\xc9(6\x1arSj4\xe4z\xb1T.\xd3/\xe5\x12\xae\xa5\xd0wE\xf2\x88|+\x95\xc9\x88\xc9\xfb\xb2\x11\xbe\x94J\xe52\xfd\xc2*\x1e\xd4\xf0\x9c\xa5R\xa3)W$\xfa\xbdR.c@\x06\xdd\xde\xd2;\xab\x8c\xae\xa4Q\x14\xc3u\n\xf74\xfbn*\x15\xa7\xf9E\xa7o\xdd(j{\x83\x06aa\xd4I\x91\x9b\xf87!\x19\xa8\xcb\x84\xb3 \x8d\xf1\xd4-\x80\x05\xf6\x83T\xf2)VNd\xd9\x9eEj?\xf0\xd6e\xa5:\x89\x1ed\x8a\xf0\xe9\xa3\xedYN\x14s\xb2\xaa\x04\x91\xeeo\xc2\x87\xa5\xaa\x18\x14\x9f\xa5JO\x8cj\"\x91\xbaO!\x8e\x0fj#-\xfa^,\x02\x7f%F\xc4\xd8j\x02\xc0\x874M\x02\x9a\xcb\x12\xcbb?\xfaa\nP\xb6\x82\xb4\xdb\x1a\xed5z\x1aL\xa8\xc6\x14\x08\x00\xbc\xa0\xc9\xdc%\xfa\x83\x99\x0e\xc3\xa0\xa73-\xf2T\x9a\xcf\x86I\x12\x05\x86\xfa\x87\x94\xf3<\x8a\xa8zE\x0f\xed\xec}\x93\x19\xb4\x90\xd7Qf\x9e\x99\xdbk\xa9A\xfa#\xf6i\xfa\x86\x14V\x92\x85K\xcd\xce<.\xa6\xeffI\x1aR\xf4O\x14\x17\x82P\xb74RR\xb8E\xfe\xf8\xbdV\xab\xfd\x11\x04c\xb8\xcc\xf2\xc78\xcepj\xe4\xf4\xbfTCs\xaa\xcf\x14\x88=\x11D)\x8a\x87s\x0e\xdb;N\x18\xf5\xc7\xb0\xa1\xe6\xa5\xa6c\xf4\xa0?\xb0\x91\xbf\xf5\xaf\x7fK\x8e{\xce~\xfc\xa6J\x08z\xbd\xadBA\x12c&\x15\xd5{!*OO\xf3\xae\xa1'\x0f\x1c\xfce=\xb0\x17w5\xc7\xb4\xe1;8>\x0c\xe2 X\xed\xf5R\x9d8\xc6]\xc3\xf1\x81k\x86\x16p<\xae\xf5\x0d\xa9\xa2\x88/\xd7c\xa3\x14G\xd1\xd2PW\xeeY\xce:\xa7\xcc\x10J\xfc\xa9r\xda*\x99M1\x14\xc57\x88?C\xdf\x83C\xe8 \x96;p}cC*7\xe6\x1f\x84v\xb3\xaeHY\xc3\xc8\xeeJ-\xf3]\xc5\xb47\xc2\xa8\xb3\xa3\x1dmca!\x92\x06\xb8U\xe9@\x84\x0b\xed\x8f\x8f\xcdu(\xf7 \xd26\xb6\x91\x90\x91\x8dw\x12\xdd\xb8\x0f\xf4*\xf4d\xdc\x89\xdc\xc1z\x96s\xd0\xd5<\xcd@\xd0;!\xd0\xbbt\x8f\x1d\x0b]\x90\x82\xa1[%S\x8aH\xce\x0e\x94\xa9\xd5\x9bF\x87\xdav\x18\xcc_\xa2\xbf\xa2\xe5fH\xb6\xeell\xc5\x00Lp\x8e\x84\x91\x0fbh\xd1\x11\x05\x11\n\xf8\xf5\xc6e76b\x01\xbe\xe6F\xe6{aDpc\xae\xdd\x01'\xef\x05\x1f\xa2\xb0a e6\x0d\xb9\x96\xf9K\x1f\xa9\x8d\x93\xa6\x11n[\x80\x0b\x14\xfch\xe9K\xf6g\x1dn`J\xe9\xd0\xcc\x99\xc1\x18\x82\x81! \x12?\x8f\x98\x8fT<\x8e\x1a\x87\x97\xa2\n1\xd8Z\xc1\xcd\x94u\xe6A8\x11\x17%\xdfp=\xe2\xfb\x89\xff\xf2\x913\x90\xec\xbb\x1e\n\xdd\x8c\x10-Qd%S|\xe7\xf6t\x89y,\xd1\xd9\x16x| 8\x92T\x03^\xc5\xd5\x80\x04\x07\xee\xa5\xc2\xff\xf7\xff\xa4\xc5\xda\xa0N\n)\xf7\xc1t\x89\x0f\x9b\x16\xf5(\xb9\x0e#}[IjH\x13\x86u]\x1bK{\x05\xba\x8fdY.\xb0|J$F@!xQ\xa0>\xb5D\x8fT\x88\xc7S#%0\x92L\xf0Gm\x9b\xd2\xdd\x9c~1\x07\xbatG=\x9c1\\\x0b\x01`\xb7\xd8J\x17\xc2\xb8\nY\xc1\x10\x83\xfb7\xec\xa0\xa3o\xd7\x11\xbd\x15\xc20k+HH\x88\xf1\xfd\xfe~c\xaa\xbfX\xc2\xa3\x9b%\x8e@\xc1\x0d\x0e){\xccT\x10\xd8H\"\x06\xf7 \xdc\x82 \x7f\xd0\xe9\xf0\xd0\xdc\xf5BX\xff\x15\xe6\xaf\n,\x82\xd3\xc6\xfd\xfdiBe\x9c\xa9/>\xd6\x897\xdflZcz\xe5\x8ch\x8e\xad\x17/.u\xf6\xe0~c\xfd_{\x9a\xac[\x8e)\xad+\xd2\x9e&\x9bPw\x07\x8e\x017\xd6+\x8a\xb2\xf1o\xe9T\x8f\xdc4\xa5\x82HG\nA\xb0\xacC=\xc3F\x94qS \xf0't=(\xbbN\xf46\xcb\xd6\x92\xa8\x84yF\x97\x84\xd6\x89Q\"\xf2z\xeb\xce\xefCc\x0bJ=\xe8\x0c\xb6\x10\x97\xbc\x92-\x86+Q\xfa\xb8e\xdd\x0bN\x9c\xdaN\xbc\xa7,SG_\x93\x18\xef\xecQ\xc62%%\xf3 \xd8\xf0Z\xf2\xe5w-x\xe9%_^\xe8B\xd8\x05\xe2\xd4U\x1cyZ?EOp\xa6Kwl\x9a\\\x15\xfc\xa4\xc8\xe2$\xa4Tz\xd3\x91\xee,\xa7Mnc;m\xf7~C\xfa\xcd\x93Y>6JJRR\x11\xea\xd2]\x02|\x12G\xae\xb7\x10O\xbc\x85-\x9at6\x0c\\\xe6\x13C\xeb\x84\xf3I\xbb\xec{$BF\xeb[\x13f\xb9\xdf\x91\x18>h)\xce[\xd1\x959\x14^\x99K\x14z\xcf\xa89u?=${\xa1O\xd2\xb8\xec\xb0\xa6o4\xd9r|\xa49\x061\xad\x06m\xe2\x16Y\xb3a\xbb\xdcH\xe5N\xe5_\x96\xb9S\xf0\x8db\xf7]\x0b}k\x15\xfe\x1d\x06}*\x90F\xa5BXOn\x7f=\x82\xad\xde\x9d\xd0\xb6\xb2\x1d\x7f\xcf\xa5\xef\xb9\xe3t\xce\x9c'\xc9\x9f@\xed\xdflp\x15}\xa3\x08\x0f\xbe\x9a?\xde\x82]\x10\xfd\xc8h\xc8r,di\xf6\x83\xe0\x14\x9b\x81\xc2AE\xee\x0e~\x9c\xeao\xe3\xb3\x0b\xf5\xa7\xa1\x85<^\xe39\xcf76\xa7\x94\xf9n9.Z\xa7=\xbb\xed\"\xa6;\x1b4]\xd2]8\xf3Pq\xcc\xd4\xdf\xca6\x87h\x81&\x99j\x90\x03\xdc\xf9\xe3\x8fm\xd1\x06\x10\xe5\xd7b~\x12\xe4_\xb9\xc4AE@\xcbj\x80\x96\x144\xec\xf9\xe4\x01_\x90\x14H\x01\x8a\xf2 \xb3\x91\xf1\xbds\x8e\xcc\xcc\x8f9\x18F\xf2M\xfa\xd3\x8cUi\x04 \xb3\xf6\xaf\xafL\x9f\x07\x19\x1d\x06\x0f2\xbb\xd7\xf2\xce^\xdf\xf1\xb6\xf9\x96\xeb \x1fz\x9e\x86$_s\xfc\xa2\x0f=\xab\xbd\xcd[\xe1+\x8a\xb2\x1d\xd9\xaeT\xb9Q\xad\xab\x15\xd8\xdb\xe6-#\xaa\\\x83\xbd\x00\x8d\xcb\xe4\x9f\x8c%n\x06\xe3m\xa3\xe1\xc5\xa0\xcf\x8f\x97\x8e\x8e\x1f\xafu\xf0\xe3\xe8\xf2\xcd\x82\xe3\xc5\xc3-\xcf0^\xe6\xb7\x11\xb8\xf1f\x8c_U\x82 \xf4\xb5\xfe\x17a\xbf\xd3\xd1\xf2\xe3\xefhZ\xf1\xf0\xd0\xb8\x13\xf7wF\xc3\xa5\xa0\xe1\xeb\xc3C\xef\xe4\x0b\xdf2k\x87o\x1a~\x1e\x9c\\\x9e\xdeM$^\xe5\x86TU\xa4jM\">\xc8l~*M\xf2Ar\x7f\xd0q\xc5\xcbV7\x04x2\xfb\x14\xb1\xa3E\xf7v\x06\x98\xdf54\x1fr\xb0V\xe4f\xa9\x19\x83\xf4$P\x96C\xdc\xfda\xb8\x16\xe4gL\xa7'\xc0\xf2\xe0\xfd\xde\x17\xe3\x8e\x19\xd3\x02[\x1a3\xb8\x11\xf3z\x91\xf4\x15m]a\xc1\xd9\xee&E\x82]/\xd8\x14\x03/\x10\x9eO\xa0}\xb2d}w\xdc\x99\xc1HE\xb5\x7f\xb3\x1dt\x80\xbfs\xe4\x8e\x00\x84y\x8b\xf1\xcf\xad\x9e\xd6\x81[\x03\xcf^\xff\x03\x03c\x8b\xfc\xde\xf4\x87\x9d?oz\xf6\xb6\xae\xf9\xb0V\x91\xde\xbf9-}\x1b\xefW\xf4\xcf7\x03\xe3V\xb1\xb47\xe7\x8aq\xe8\x0eO\xcaf\xd9\x1cW\xcb\xadquh\xf4\x8ca\xebjo\xd4:h\xde\x9a=\xc3:~\xf3\xcd6\x9c\xd3\xbe^\xaa4\x8f\xaf\x8e\x06\xad\x8b\xe3\x0e\x95\x8f\x0f\x13\xe5+\xfa\xe7Q\xcd(\xefw\xbf\x96>6\x8f\x9d\xfd\xf1\xb7/\xa7\xb6\xe1|\xb3\x8f\xaf*\x0d\xe3\xf5+E;\xd8\xefi\x9fo\xfc\xf7\x17\xc7W\xad\xc3\xa3Q\xebr\xef\xe6\xd8\xda\xbf~\x7f\xf1\xf6\xf4\xf4\xf0c\xf5\xe4\xca\xe8\xb4\xaeZ\xb7'W\xe7\xfe\xc9\xe5\xf5\xe8\xe4\xeac\xe7\xecrop\xfa\xb9\x85N/\xf7:\xa7\x97{\xa8u\xd9\xba9>\xfc8:\xb9<\xaa\xb4.\xf6F\xc7\x07J\xf9\xe4\xea\x1a\x9d\x8e+\x95\x93\xcb#\xe5\xe4\xf2\xa8tre\xa0\xd6\xe5\xf5\xe0\xf4@\x19\x9f^T*\xfa\xe1\x87\xf1\xc9\xd5\x11:=<\x1e\xb4>\xb7\xc6'x\xcc\x07\x15\xf5\xe4\xb25hY{\xa5\x93\xab\x0e\xc2\xbf\x8f\x0f\x8f\x07g\x17{\xd5\x93\xab\xeb\xce\xd9\xc1\xde\xcd\xd9E\xe5\xf6\xf8\xf0H=\xb9\xeatZW\x06.;>\xbd \xff\x97N/*\xa5\xe3\xc3c\x85\x94\xc5c\xbc\xd8\x1b\xe9\x87d\xcc\x88\x8dy|z\xa1\xb0\xf2\n+\xbf\x87XY\xd4\xba\xfa08#\xef\xc9;\xf5\xe4\xf2X\x0d\xe6\xdcz=B\xad\xdbc\xdc\xdfm\xcb\xaa\x8c\xbf\x8e\x95\xf1\xa9U\xb99\xb9<\x1a\x9d\\\x1d\xa3\xd3\xcb\x0f\x83\x96\xa5\xdc\xb4\xacJ\xf5\xe4\xb2ssr\xf5\x15\x9d\x1dT\xaa\xfa\xe1\xd7\n\xfe~z\xd5\x19\x9c\xf6Zj\xeb@Q[\x07{7\xad\xdb#\x02\xbf\xd6e\xe7\xe6\xf8p\xff\xf0\xf4\x12\xcf\xf1k\xa7u\xb97>\xb9ju\xa2\xdf\x9d\xdb\x93\xab\x0f\x9d\xd8Z\xd4./\x8f\xc7\xad\x03\x0c\x8bV\x05\x8fG?P\xc8\xb8\x8e\x0f[\xe3\x93\xab\xb7Wx\xec\x0c\x16\xe8\xf4\xea\xe3\xe0\x14\xc3\xe9\x00\x8f\x8d\xcd\xe7\x00\xcf\xf7c\xf8?+3\xa2\xef?\xf9\x14&J\xb5uPQ\xbf\xde\x1e\xab\xb4\xbd\xaf\xea -\x1f\xc2\xf7\xf8\xd0\x18\x9c\x1d\xec\x95\xc9z\\\x92\xb5\xba9\x1d\xe3qpkt\x81\xe7\xf4\x01\xb5.*\xca\xf1\xe1\x87\xc1\xd9\x812\xc6c8\xb50~|\x18\x9c~\x1e)-\x02\xcb\x0f\x18\xae*.{vQ\x19\x9f\\\x1e\x118\xb6.;\x02\xee\x1c\x13\x18\x92\xff\x038\"\x06\xc7L\x1c\xa5\xb0\xc6x\x1a\xc0\xfc\xe3\x88\xfe\x7ft\xdb\xba\xd8#krvx\x84\xd7\xb9tvP)\x9d\\\xe2u\xfbv\xd8\xba2\x14\xb2\x0e\xb7\xd7\xea\xc9\xd5Q\xa7u\xf5\xa1\x84\xd7\xa3u{M\xd6\xa9uu<\"\x7fo;\x18\xee\xb5c\xab\xf1\xe7{J\x0f\xfe<\xe8\xec\xec\xfc\xb1\xb1\xed\xf65\xc3B\xe3-E\xaens\xb7\xa5\x98\xc3l*%\x8c\xb970\xef\x86\x90*vU\xeaJ\xc2D\x02\xc3\xfbb\x1c\xd9[AF\xd3n)z\xcb\xc8g\xf0*\xf8M\xde\x07O\xef\xb8A\x91\xaf|W\xe2q\x11J\x80\xb4K\xe1\x80$-\x0b\xdc\xa1sk\x9e}\xb9\x0b\xa8s\xa3\x1f\xf2w\xf8+\x96Z\xb8\x9f\xe93\xa6\xa1^\x88/\xc7v\xe8\xdc\x1c\xdd\xce\x15\x1e\x89\x97t\x8b\xee \xb5JV\xd1\x19\x8a$z\xdb\xa2\x97\x94\xbf\xad\x17\x9b\xe4\x962a(\xb3\xdff\xbf\xe1\x04\xad\xe1\xedgc?\x84\x99\\\x85\xbd\x00h\xe4;\x075\xf2{\x12\xd8\x88\xef\xfc/\x045\xd0w\xedq\xc7u\xee\x88S\xde\xef\xaa\xd9PKu\xae\x94uy\xd2\xfa\xf6-\x87\xed|\xb0\xa5P\x8b\xc1\xd6\xac\xa8m\xd5\xe0\xd9\xb4\xab\x0f\x83\x1f\xaf\xeex\x8e\x93\xe3\xf6\"\xc8\x92\x9f\xff\xd5{]\xc9\x02\xaa\x92\x06Oe#\x01$\x11\x94\xa3\xae\x85x=\xd1\xd5\xb7\x9e\xddo/D4\x9f1\xf0\x96\x86\x96\xe2\xb1\x14i\x80\x86\xdf4Q\x00'g\x90D \x84DqY\xa2\xeb QP\x0bZ\xa1\x8b\xd1\xdb\xc1\x97\xbb\xd4#9\x10jJ\xfd\x1b@\x96\x82\xc9\xaa)\xba\xa2v[\xab*JL\xa5\xc4\xc9\xc3\xe5\xcc\xa5\x8b \xc8\xdb\xe2\x95\xd7J\xffF\x10\x0bk\xa2\x98]\xe2\xc5<6\x17\xf0'\xf0\xfb\x9a\xf3/4\xee\xc3\x7f\xdf\xf1\xa2Z%[(\x0c\xd5L\xba\x07\x07\x97\x87\x82\x9a\x89\xb4\xca\xc3\xccx\x85N\xdf\xbd\x0d\xa4`\xd2t$\x03\xff^7\xea\x86\xaeosW5\xb8\x9b\x1aI}i\x00dU\xe9\xdf\x80\xe8#\xa9\x03J\xd7\xfeT\x15\xaa\xfdac\x12\xf5\x8d\xe1U%\xc6xE\xda\x1c\xe4m\xb5-/\xd2j2\xb6\xaa\xbb\xf7\xcd=\xb4%\xe4\xc9\xb6\xe6#\xfc09W\xd6\xb1\x80\x05\xe1\xb4\x90\xdb\xa7\x17\xd8\xb8\x97\x1e\xecC\x0dK\xf4\xec[B`U\xc9\xa4\x95\x7fl\xcf6\xbc\xbb\x84`\x8bqH\xf3\x8a\x1d\x8c4\xd0A\xeb\x00\xb9\xec\xde\x92\xc4_\xbb\x00\xca?\xc4\xdf%\x12\x06\x85\xadX\xec\x171Al\xf0C\na\xf2\xc0\x91\x04-\xe3Q\x88}&\xc7\xc4?\xc9\x1a\xc9\x9f\x00y\xb1\xe1p\xabD\xb7\"\xd7N\xa2\x01\x06b\xa2Q\xcf\x9a\xd6\x16\xf1\x9e\x9e\xb1]qK\x85:B\xda(\xbf\xa5(R\xf1[\xea\xdb\x9b\xf3\xd7\xee]\x8cB \xb7\x9f\xd4\xea\x90\xd3\xa3\xe8\xf75\x03n9\xee\xc8\xd3\xfaq:\xc3+\xee\x0e\xdc\x81gAO\xea\xb9\x8eK\xeal\xc7\xfa\xe4b\xeb\x85\xaaS\xa2t2\xa1\xe1\xb2H\xb3d\x0c\xa8\xeb\xb9\x83Nw{\xe2KF\xff\xea\n\xfe7\x030\xa5P\x97\xd7>:\xf3mA\xa5M\x86$h\xb4?u?\x9e\x8c2\x15n\xbf7\xdbzE\x8f\x11\x91\xc0\x00Q\xaf\xfe#\x83\n\xf1\x98\x10D\xe9\"\xeb\xaf_}t\xad\x93Xw\x04\x05\xe6\xa3Fl\xd8\x91\xe9\x80,]J\xb3\x93i\xe8\xbd\xb8\xe9\xc4\xd1\x91:tl\x19\x80VC\xa2N*\n\x8a}2@A\xd3\xe7\xda\x97\xe7Z\xa04e\x03\x98\x8cJ\x82\xdf\xbd*\xa8\x1cYs[)Z\xbc9\xa4\xdf\xc06\xc0)\xfc\x04}_8\xced\xbf\xd4H\xb5P\xb7\xe9]\xb1\x81\xd43\xcf\xd2R\xa8R\xb6Lk\xfc\xd1\x15$f2:\x01\xecP\xbf\xfc\xfc)X\xd3 N\xdc\x96\x0f\xfb\x9a\xa7!\x18c\x07\xc2\xedMw{%B*v\x89B\xb4\xbe\xc5\xbb\x01\xbb\x00yq*\x13\xd74\xcc\x84\xe0l\xd8\xe2q{\xcfw#q?t\xd7\x1c\xd3\xbec\x15\xe6\xe9\x94>\xc5ld\xd7\xeat\x89\x93\x99\x87\xa98\xde\x02\xe1\x88\x002\xef8q\x8d\x87E\x02\x18xK\x99\xc7\xee\xe0\xfc\\J>J\xff:s\xc1\xf4\xafw\x915@\xdc<\x8a\x80im\x0d\xff\x9b\\\xbd\xa5\x0d\xe9!u2f$\x8c{\x92\xa5\xa5\x14\xb9\x12\xbc9\x81\xe7\xef\x84mAF#\x18Z^\x7f\xf9\xd4\xc6\xa7\xf2\xc0\xbe\xb3-?\xb8\xb6C\xc8]dk\x08\x19\xf2\xd0\x8aT\xac\nT\x88k\x06\xec\x02\xdb\n)r\x95\xf1\x99\xe9d!\xc9\xdf\xab\xaaZW\xb5\xd9\xac\xd6\xd5\x8d\xed\x98\xbd\x84\xbb\x0d\xc5.C\x05v\x0f2!\xd6\x87a\x18\xd1D\xaa\xf4\xee1\xa8\x86[\x9c?\x1f\x94\xba\xd2T\xf4\x18q\xa8\n\xd2\" S#X\x89`O\x10%\xc85\xdflP\xc9\x1e\xd4\x0cTD\x9a\xee\x7f\xff\x8e4\xbd\xc8\"\x0bA\xf3N\xb4\xe0M\xc2\x809Z\xddj\xbb\xc6\xc0\xbf\x0b\x00\xa3\x0d\x90;\xa1\x9d-\xd7\xb1\xc7\xcc\x19\x82\xb7\xf8R\x80\x06V^\xfa+\xfa\xc6\xc9\xd2\x8a2\x11Qd<6\x7f`\x18\xd0\xf7\x83\xf9&\xb4K\xa9\x95\x0fg\xd0\xd3\xa1\x17\x9f\x86K\x1c\xed\xe3\x80\xf0\x89\x03w@\x9c*ZC\xd7\xcbY\x03\xd0]\xd7\x86\x9a\x13\x14\x86\xb5J\xa5\xa2f\x15\xa6\x87\x85\x1b\x1f\x86\x86\x90W\xc4\xd3\x8e\x8f\x83\xf8\xd1\xc6\xc7\xdc\xd5\xe2\xf5\xf5\x81e#\xcb\x89=\xb5\x1c\x9f\xe4\x91\x0b\x86\xa6)m]\xd3\xa6\x0d\x0d\xfc \xb4\xac\xe1\xa5\xbc\xa3CLy\x81\x87\x99\xf2\x98\x0d5\xe5M0\xdc\xb4N\xb8\xb1\x11{\x1f\x82\xe6\xa41f\x94\x89\xc6\x9aQ \x18s\xc6kn\xec\x19%\xf89\x04EB4\x82fI\xd7\xb6\xb3\x94\x14a\xb2\xa6\x84\x86\"z3e\x0f\xb0 \xb2\x0e\xe3jz\xa1\n\xcd\x15\x92@D\xe8 +\xb1\x97\x06\x9e\x1d{B2\xb3\xeb6\xe4\x08@E\x91\x9a\xca?\xa4\xda\x04\x02\xa0!o`\xc7Q\x9c\xac\x1bq\xab\x8f\xbd\xb8\x86c|v\xf04\xa6\xaaH\x15\xe5\x1fR}B\x1f\x1e\xec\xc0\x9b\xf8\xa2\x04A\xae\xc2=\xdaT\xb2\xea\x87e\xe3K\xef\xda\xe6\xdd\x04\xeeSl\x04i\xb6e\xdcq\xd7\xf5\xe9\x93\xac\xf2\x14\xea\x81\x93R\x17\xda\xfd\xac\x92&\xb4a\x84R\x1e4\xb3\x18\x89H\x86?~o\xdb\xfb<#A\x1a\x14\xd4\xe1\x1f\xdf\x0c\xb4\xb7\x02\xb1M1\xae\xb0\xd7@\x91\xcb\xd4n\xb2=\xf9e\xc4=P\xfbX\xbc?\xca/\x17G\x16\xeaZ\xd1\x81\xa0&\xca\x81]\xa0\x0f\x10r\x9d\xa4[(\xaf\xc4d2F`\xc2\x08\x82`\xf0&\x10U\x89)\x17\xcf]\xddEn\xc2#0\xd2M\xc4x\x15\xd8\x8b\x0bFi\xee_\xb1a\xb3\x08\x1a\x89\xc7T\\\xe0\xf8\xd80\xd8Y\xf0\xbf\"\xabY\xe6\xa3r\xe8\x04\xd7\xb1\x8c\x83\xc3cA9K:\x12lD\xdf\xde\x9e\x1d|\xba\x9b\xe0\xeb-6\x1ey\x87^\x7f\xeb__\x0b\xc6\x14\xd2\x94\xe02\xf1\xc9\xfa\xf4\xf1P\xb0\xd3\x10@\xc7<\xff\xa8$\x93p\xfa\xa3\xabE\x19\xce\xf4\xd1TBT6\x0e\xfc\xb3+\xc1\xf7\x93\xf6-\xe8[\xbb\xa3\xfd\x8f\x07w3\xac2\xe7\xf7\x99\\\xe6x\x83\xa0/x\xaf\x0bi\x88\x95d\xe9\xae\xba\xa0\xf7\xe9to\xd9R\xb9\xd4losQd\xd2\x86QZp\x18\xb3:\xc1&z\xc6\x1cqHm\xab\xe5f\xb9\x9a\xd4I\xc4\x1dH\x95\xc0\x834S_+\xaa\x0bJi\x9a\x85x\xa3*\x7f\xff\xa4*j\x1f\xcb1\xdb$\x9e='\xc0\x90\xcf\"~\x90\x82\x0e\x1e\xbc\x9b<\xd6\xb8\xb4\x94\xa9\x92\xe1\x0fkA\xd6\x0c\x18\xf9\xe2\x0de\xe5\xf9E`\xb2\x94\x08\x10eF\x80\xa4\xcd\x86\xae\xd8D\n\x9b6\xd0\x14\xa4\x0b\x1a\x0b\xfd\xb7\xe2\xcfE\xcd\xb6(]\x05\x85\x89\x1a\xeb\xc7\xc0E\xf0.\xa6#\x0buW\xb0\xc7\xad,\xf1\xa3\x0dT\xff\xf5\xba`\x96\xa8Dj'\xd3LYK\xab\xd7\xb9\x8bt\xb5D\xd7\xcaY]\xd88E\xb3KPu`\x87\xd3s\xed@(\xa3\xbd\x968\xc9,e\xe8)M\x89\xad\xf1\xbf\x066p\x85w\xae\x9d\xa0A\x93)\x01\xb9\x01\x1aS^s\xf3\x15e\xc6\x0c!\x9e>\xb9\x86\xb0_\xd4\xec\x10\xf7B\x8d\x7f\xf0%\xa9\xd0\xe7\x86\xc6\xbc\x96Dp\xa4S\\2d\x80\xbc\x94\xdb \xe4\xbaK\x14\xc4\x8b\xd3+\x1a\x86\x91\xdd\xd2\x96\x83\xba\x94\x82\xaf\x97\x9c\x8d\xb4v\xe3zk\xb1\x81\xae\x14{`\x86rx\x0d\xb3\x17\xe5TUg*\xce\x05-\xde\xc5\x95,\x13XLVU\xf6\xbb\x9a\x07\x8b\xb6\xe5\\\xff\\\xb7\xf6d\xff\xb9\x8b{\xee\xe2\x9e\xbb\xb8\xe7.\xee\xb9\x8b{\x8c\xfb\xe7\\\xdd#b\x19g\x88x\x9f\xf7 \xc5\xf8w\xb3\xfb\xc0\x07\xb5\xb5L\xa7\x18r\xd4\xa7>\x14E\x8cd\x93q\xc5VvA2\xde\xa0X\xadQk\x18\xedL\xfdW\xf6x\xa2\x86\xbb\x17\xef\xfb\xe6\xc7%Jw\xb4\xc1Y\xa5\xbb\xb04\xe7xu\x97\xc1x=\xa8\xe5\xa7\x96\x1b\x83a\xfc|\xb9\x91\xf5\xbc\xb2rc\x80\x0e\xab!7F\xb3Y\x82\xdc\x18k,\xa4\x7f\xf1\xe7\x13\xe5FV\xf8\xa7\xc8\x8d\xac\xaf\x87\xc8\x8d\xac*\x96\xed\xd8\xd7\x07\xcb\x8daSbk\xfc/&7F\xeff\x97\x1bY\x9d\xff&\xb9\x91\x1f\xf2brc\xac\xa5\xf9\xe5F\xb1\x81\xae\x14{\xf0\x00\xb91\xd6\xe2\xac\xe5\xf4\x0b\x84\x89rO-\xa0\x06\xc3\xf8\xf9\x02*\xebye\x05\xd4\x00\x11VC@\x8df\xb3\x04\x015\xd6XHh\xe3\xcf'\n\xa8\xac\xf0O\x11PY_\x0f\x11PYU,D\xb2\xaf\x0f\x16P\xc3\xa6\xc4\xd6\xf8_L@\x8d\xde\xcd.\xa0\xb2:\xffM\x02*?\xe4\xc5\x04\xd4XK\xf3\x0b\xa8b\x03])\xf6\xe0\x01\x02j\xac\xc5y\x04TV\xf5\xc9\x04\xd4d\xff\xb9\x80\x9a\x0b\xa8\xb9\x80\x9a\x0b\xa8\xb9\x80\x1a\xe3\xfe'K\x9e!w>S\xb1\x07\n\xa8\xac\xf62\x05\xd4\xa0\xc9\xa9\x02jX\xf0Q\x05\xd4\xf0\xa2\xe9\x95\xb9\xd7\xfa\xe2\x08\x97\xc0\xc8\x00\x84\xfb\xd7\xe8H\xbby;\xb3oo%\x8c;\xa3\x7fs\xba\xc7\xe2\xe5n\xd2\x94\x10I\xd5=9\xb8\xfa!\x04n\xa3\xfe\xc6i\xfe\xdab\x80\xe3\xf0&\xdb\xd5\x99\xd7:;\x17\"\x9e\x92V\x85I|\xba\xfd\xdcu\xa7\x08\x1e1\x01'.\x87\xb0\x937\xe0k\x13RF\xbc7 \xd3$(W\xbe\xeb\x10\xfe\x9dDKa\xbc^t\xd1\x9b\xde\xd8\xa5|H\x91\xe4P\x8b\xdf\x08\x0b\xdb3X\x0e\x9bb\x10\xe6\x9d!H\xc7\xd3\xc6i\xc5\x83\xbe\xe2w\xfd\x8b\x7f\xc4\xdd\xcc\xb3+\x9b\xc2\xa8\xe3-\xfd9CK\xd0\xb6\xad\xbeo\xf9\xf1\xba\xe0\xff\xfc\xef\xff\x17\xfc\x91\xdd5\xde\x96\x82\xd7wI`v\x83\xd2\x04w\x08\x93\x1eH\x11\x8c\xb3\x0dX8\xee2\xf2\xb6(hp\x0f\xe8-\xf3H0\xe6E\xe5\x8c>\xa1\x99d\x84\xa9\x8b}\xb9*\x95\xca\x0d\xa9TiJ\x82\xd0\x98X\x98\xb9n\x1c\xfc\x1eFL\x9a\x15\x83\xc5\xc9\xd5\xe2\xf3\xe7\x1fP\xe9'\x061%\x11\xb1\xfa\xe1Q\xac\x83\xd2\xe4\x00(\xd2$6\xec\xaa7\xd7\xb8x\x07<\x8cE-<\x9d\xd2B_3\xae\xe3\xcf\xaf\x06>\xb2\xda\xe3 \xefN\xa2}\xbeNF\xd9\x0c\xf6<\x19\xe4\x1dC\x92\\\xed \xb2\x84p\xa9\xc3\xa4\xc9\x11\xc3a\x0d|,\xed\x91\xabg\xdc\xa5\xd1\x94\xa7~\xf2a\xb2TV\xa3\xdc\x0d\x95\x89DB\xb8^\xce\x0b\x8c\xc1#z\xd3\xc8t\x11\x82f\xf80\n\x05\x92h[\x88L@\xa24\xc5\xc2\x13p\xf7\x9d\xfb7 \xf8\xbfTKk\xcc\xb6R\x8e\xa0X\xb0\x8c \xb4a\x8a\xf61\xa8\x10\xde\xe0\x17\xe7L\x04\xd2\x94)\xa7Bf6Zj\xf1\xa3\xca\xa0\xf7\x01\xe5\x9cVNh?Q)\xb8\xa9\x94q\x8e\x861p\xcc\xf7\xe3\xfd\x03!r8m_8G\x8f\xb5\xb7\x87\xc3\xe8\x9a9\x89\x990U?Y\xd9\x88\xc26(A\xf42q\xedf\xd4\xb6f\xc6\xf3\x8e\xa9B\xc4)\x86\x17|\xf4\xfd/7_?\x08S$\x13\x12.\xf8\x1c\xeb\xaf?\x8dfU\xffFQ\xe6\x92\x94\xe0\xb6h9&\xbc\xd9R M(\xaaj@\x15Hy^_QS\x84\xa0\xe7\xe2\x1d\xadzf\x8e\x87\xc8\xd0p\xf6\xea\xf2B\x17\x0c\x0dd\x16\xfc\xbc\xae\xceO\xf6\xbf\xce~G\xab\x1a2\x89\xfb\xf0\x83+\xc4\xa0\xa2- l\xdc\x9eu\xfe\xde\xe0\x0d\x06j53\xfcO5L\xa7p\xd5\xd1/No\x05\xce\x8d4\xc47\xdds\xce^\xff\x98\xef\x82^\xa4\x82ISYg\x1e\x9e1F&R\x00ei\xec\xf9\xa11\xea\x19_\xd4xa9\x88\xc7\x18E\\U\xb9\x88\xab\xa2~3V%\x16n\xb4V\xabe\x018\xbc^\xd7\xb9\xd8{\x7f\xf5\x9a\x070i\x93\x87\xef\xf1;S\xefgD<\x8a\x81\x8f\xdfo\x13\xe2\xe7W\xc3\\\n\xb6~\xb3g q\xddHo\x02V~x\x05\xf7\xbe\xdeq\xc8\xaf*%)\xf8_\x91\x9bY\xc8_\x0b\xf9\x7f\xeb\xf4\xf3\xe8H\x08pI\x1b\x15n\xa0\xfa\xef\x0e\xbfX\xa1<\x95 \xbaZH\x0d\xaf\xda\xbd\xc3\x0f\x02\xda\xd36\x84V/\xec\xe3~k\xa9\xc0\xab\x85{\xda\xb5u1l'\xedM\xe8\x1f\xbe;\xd2.c!N\x04:\x19\x8bh\xc3\x94\xd2\x02S\xad\xc4\xaf\xa1f\x8d,\nOd\xb5^\x8f\x04\x81\x8b\x0eD\xb8\x11\xfa\xee\xd5\xde\x9b\xde]\x92\x99N7\x13\xa5\x1f!UU\xa2\xffQ\x13W\xfa\x9bf\xdcN\x95n\xc8\xe1j\xa8\xd3\xace\xd140m\xbdn}\xbaD\xe0O\x10\xfd\x10\xa4\x92\xacP+\xb5p\x17\xd2J\xc2%W\x02\x1d\xe1`\xbd2\xdd\xeeU\n\xbc\xd2!\xa3*\x15 \xff_R\xea)\xc0Q\xf0\xc9\xabV\x9b\x14:\xe1\xd1[\xe5\xd5\xda\x93@\xc5\xd5Wci\x97^\x7f:\xfb\xe81`\x90\xef3\xc1\xa2\x1enVRG8\x80\xc9\xc4yP\x98GG\x06z}'\x0c;\x1e\xf7\x91\\\xfdu\xfbY\xddE9\x81\xce\xba\x87\x03!\x92\x16m]8\xbc\xde\x9a\x9f\xde]\x8b\xd6\xee\x98\x8dh\x02sQ\x0f\xa9\x9d\xfeQ?p\x84\x18\x82\xb4e\x81\xb9\xd0\xaf_w\xee\x92\xa6\x0e\xa6\x08\x12\xd5BSv.\x1dU\xb0\xa0\x15\x1a\x82\x17T\xb2\x0c\x13Y\xda#\xc2S\xa6>\xcc\x92\xec\x85\xf97\xc2\xa5\xbd>~w\x08Eo\x07<[\xe1*\xb7{\xdd\xb9\n\xd2<5a\xc6H\x03B\x14'\x9b\xd4L\x94\xb0=\x91\x10[\xc2\xbe\x89\x95\x9b\x14^6d\x87j\x0cv\x11\xf9\xac\xc78\x86O\xd035G\xe3Y@\xde\xb0\x9b\x99\x88&\x19\xdb,a\xaaJ?A\xd8bG\xd2;\x87\xa2\xa20G\xe1*w JKm\xf5\xaa\xa1\x96K\xc9\xd2}\xd7O+\xae6j\xaf\xf6^\xa5\x14\x1f\xa4\x95nV\xabJ\xddH\x96f9\x13\xd3jT\xea\x8aZIi_CF7\xa5\xbc\xde\xae6T3Y\x9eF\xaaH\xa9`\x181>\x8dU\xd05\xdf2R\xca\xc7c\xb1\x06\xe5\x89\x9d0Y\\\xa97\xd4F\n|\xbaPKQ\x08\xfd\xbeW*\x1f\xee\x1d\xa6\x14w\xdd\xb4\xd6\xe3\x1aaq\xaf\x85\x9cs\xdb@o\xaf?\x0b\x91\nH\xb3\xc2f;\xfdr\xf1\xf5K\xe4\x05\x90\xe6y\xe0\x1b\xc57\xb7\xaf\xac[\x10~\xbbK\xcaY\x1ci>\xbcv\xde\xc0\xb4&3$\xd4\xf9\xda\x17'\x1b\x9e\x9f\xa4\x9e0W23\x89\x8eF \xe5g\x07'\xce\xd7x\xa4\x89\xd7\x99\x824\xc2\xf1\xd2\x0c\xb9j\xfd\xf3\x97\xbd}A\x87B)\x8eDqR\xa2\xbd\x08Z\x81\xa3\xf3\xb3\xd3\xdbt\x8d\xf7\xa4p\xde\xc4\x889\xe3\xf1\xc8\xd1\xbf\x1b\xdfw\xc6\xf3\xf7\xc6gq.7\xfa7\x1bsw-\x02,T\xdc\xc0W\x9f\x7f\xbc\x16\x828Q\x80Ht\xa4<\xa4\xba?z\xd7\xa7\x8e\xc0\x914\"';\xa2\xc6\x14\\\xc1\xe8\xde\x8c;\x9e\xa5\xc7\x90\xa4m\x03M\n\xbfE\x11\xfd\xc2'\"6\x92\x7f\xc0oa\x84\xb8\x0cO=vl\x05\xa3\xaa\xa6h\xd33`\x14\x05\xba\xf2\x87\x8e1\xe2aD\x87$x\xa4\x9f\"\xd3\xfd\x18\xa7aI\xf5\xb1(*g\xab}\x9b!?g\x0en\xbd\xaf?\x04\xaf\x03\xd2\x97\xc0\xbc\xfe\xb8\xfe\xe4iS\x0c\xf6\xbc4LV\x8a'\x8d[j\x14\xe5X\xddf\x7f8\x9b\xfd\x83\xb0,\xe4\xfa\xcck\xd3\xf9\xf8J`J\xc9\x88\x05\x9d\xce\xcd\xe9\xb8\xff\xfe.RG\xd3\x85\x0e\xec1\x9c\x17i\x1c\xa52T\xd1\xc4rR\x0e3\xc0\xf0)\x13\xa2l8X\x8a\x05\nH\xcb\xc1\xc3\xfc\xa6\x97w\xb8\xa4\xa4\xdaxT;oBq\x92\xd4\xffG\xb6\xeb\xf0,\x89\xa2\x08F\x9e\xb7\xae\x07\x14\xb9TM\x06\x1a\xcc*\x12_V \xcb!\x1aD\x91\xacc\xc1\xbdi\xd1 \x12\x9f{\x13\xc4\xe2\xb5\x1c\x1f\"\xa0\x80\x12^\xc5\xfe\x8d\x18\x1d\xbdR\xdd\x90\xe8+\x85\xbePK\x0d)\xf8\x1f\x8f(3\xe5\x93\x12\x9e\x1a\x9f\x0f\xae\x7f\x08\xb9\xe8\xe9Hx\xec\xb4\xaf\xcf|\xbf\x9b\"\x8e%4\xd5\x99*\x05q\xda\x01\x96\x96\x83H\x88\x99\x1a\x91\xe9\x0cB\xc8\x1c \xf4h\xdc\x7f\xf3\xb0\xf12\x9d\xc6\xcf\x1cole\xd4(\xe2\xe1\xd5\x87[\xc1\xcaJ\x17B\xa2\xf3\x13\x14\xa1F\xf7\xc7U7%\x8f\x0b\xfb\x8d\xa6\xfe\xe1rr\x89o\x89\x0e\x8b\x7f\x9d\xb295\xdb\xce\xd8\x93\xb17I\x9fC\xa15\xb2x\xe4\x9b\xad!\xf8u\xbdXU\xfe\xb1\x01|C\xb3\xe1\xd7d\xa6\xba \x05g*\x94\xb5\xe0\xe1Y\x8b\xfcW_\x8f\x04\x0d4YVa\xa1\x0f>\xb7]\xe7\x8e'\xf3\x99\xed\x86\xf6!\xbd\xfb\xe9\xb8{%4L\x9a\x11\xf4\x0e\xfb-\xefm\x8b\xcf\xe9\x90\xe2fo\x18Fm\xf4\xed\xcb%\x8a]\xc2\x08\xcd\xbd\x13\xceQ\x01\xa2I\xdb\x8a\xc8\xba\xcc\x14\x8f5 (4\xd3A\x86\xffWSRKM\xa9\xdc\x94\x14Y\xa9\x0ba-\xc8DR\x129\x80\x94\xdc \xc3O\xef\xc6'\xcfi\xd2\xcc\xc0\x981i\xb5$\x95U\x89\x1cQ\xe2\xa4\xe9DR'\x9d\xc8\xca\xa0\xef\xf7\xbe\x1d\x7f\xfb\xaf\x9dt\xcc\xcf+>\xafy`\x90H\x0cU\xf8?\xff\xfb\xff.$M\x07\xbc\xec\x99\xb44\xcc\"\x96 v\xb4\xf4\x91f\x9fk\xa1\xb7ow\xcf\xbf\xd1\x84s\x8d\"\xbbD\x97_\xa2\xed\n\xc4\xe9\xdb\xe5\xb7\x8f\xc7i)\xdd\xb2:\x0b\xb9\xef\xab\xd7}\xef\\\xb4\xa8\x92\xc6\xf8\xe6\x7f\x9ci\xa3\x16\xc7.\xa8r\x99\xbf\xf8F\xf2P\x84yq\xca\xf8\x07\xa0\x0e\x18\"\x01K1\xc2e\x0cO\x8dd\xf6\xf7\xe3\xee\x0f\xc1\xf3\x99\x0cF\x90o\x06\xef\xceZ\xed\xd8]\xb4\xf2\x04\xc2_\n \x7f\xfb\xf3\x95\x7f\xd1\x15D\x0f\xd2\x98hNv/\xc6\xdd\xbbGq4\xe4n@\xf1\\\x97\xc8\xf8\xfb\xd0n'\xd8{\xcc\xcb\xa7\xf1\xf8|\xe1\xe5 '|\xe9\"M9\x83\x99 \xc3\xb5\x07=N\xb1\x95x\x93\xfe4\xe3\xf0\x8b-Rx\xac\xb5\xdf\xf8g\xef\x8fEC7^\x12A\xc2\xfe\xa2_\xefu\x995\xb4TKg]\x19#\x17g\xbe\x9e+\x98\xc2\xf1h\xc6u[3`1\xc9\xacMx\x15\xd0cE\x19v#UC\xd0\xa6\x8f,\xe3z\x1c=\x8f\xff\x8e\x95\x8b]\xe8\x9c!\x81\xda]\xb0$a\x93m\xeb\x06\x9a!\x93]\x12\x8e\xa0\x14v[\xb4\x82\xc5\xbbf)]X\x1f\x19ec\x08\x15\xd2\xd7\xce\xed\xed\xfb\x1f\x82\x8b\x1fmG\x10\xe9\xdcO\xe7\xe8\xd3\x9d\x90:\xebQH@\n\x9a\x96\xf0\xbf\xb1]\"L1K\x91DA\xecE\x84D\x10i\x84\x93\xbc\x1a\\0\x0e\x92\nQ\x8d\\LT\xd9\xd8\x0e\x8e\xf9J\x98(\xba\xc6Q\xabZ\x8aNo>,ap^\xde\x1e\xbc\x8f\xaf!\xf0\x87A\x96\x8d\xdf\x15\xa5V}\xb5\x9f\x18\"\xc3\xa6\xd8X&cS\xe8\x17\xd3\xb9~k;\x07\x82\x14J\xda\x11\xce\x90\xb7\xf0x\xbc?KH\x8a(\x9f\x01\x7fZ\xa6G\xa8\x10O\xd7\xe5\x810\xa9\x98\x8c\xb3\x88a{d\xc8=\xd7E]\x8c\x01\x9a\x83,\xcd\xb64\x1f\x9a\xdb\x13^\x91\xd6<\xe8\x98\xd0\xc3\xaf\xdc>\xb2z\xd6-\xbc\xe8Ch\xf2:[\xa4\xf5I\xfaE\x9bH\xbc\x1c\xaf\xc8\xf0sC\xb4q`\xd0\x155\xf3j\xe0#\x8e\xb1M<\x8d\xaf\n\xf8\xe7]\xba0\x1f6\x9e5\x0c\xc1\xb78S|-E\x9e\x06=\xef\x1b\x12\xb8\x0d:\x02\x81\x99\xb9\xbc\xf2o\xde\xdcE\xfe\xce\xc9\xc5\x88\x9f_I#\x009\x007\xc2[V\xb66v\x07(\x1d\xeb\xa5\xc9\xdb\x93\x0d\x87#\xd5\x99\x1b\"\xd4I\xc3/\xfb\xc3\x1f\xc2yM[\x11\x18Vk\xf0\xed\xfc\x9d\x90\x19\x8e)V\xd2o\x81(\xdb\xa1.2Hb\xc9M[\x9c7\xf8' ~\xf2\xf3\xcc\xb7^\xa5\xf3e\xe3\x9a\x8d\x04\x84<\xb4\xf5j\xf4\xae#\xb8\xab\xd1v\x84\x03\xa5s\xb0\xdfq\xefDSCF\xcbQj9\xeb\xc7\xeb\x0e\xec \xc4\x85\xb4#\xa8<\xde\x1f\xbe\xfb\xfc\xfa.\x89\x06\x15\x82\x05\xe9\xc8\x1d\xba\x04\n7\xf4\x83L\x95\xa0*\xea\xc4\xb7\x94\x98J8iC\x99\x81\xb6\xf1\xb2V\xcc\xa5W$e\x893\x91\xd7M\x0bGr\x16\x00#\x13\xd6\xa7\x0fm1\xed3\x05\x97`\xe5\xfb\x02\xbd\x9b\x8f)\xca\xc1\xc8\xab7\xa4\xbb\x8d\xd0FI]\x82\xe3\xad\x80\xbe\x86\xba\xb3\x98%\xd5(\xed\xcf\xf5\xe5p\xf8\xe5\x8b`f#mqc|\xb9I\xea\xed\xae\x01\xf0\xd2\xb6\x9ck\xd0\xf5`{\xa7\xd0E\xa8\xefomnbh\xfar\xc7u;6\xd4\xfa\x96/\x1bno\xd3\xf0\xfd\xbf\xe8\x82\xecD\x9a\xd6\xad\xb2\xa2H\x15E\x91\xea\x8a\xf2?t\x9d\xf8G\x05\xe0A{\xa7@:\xf3\xbb\x10\xa2\xc2\xee\xda\xcb\xcd.\xd4\xcc\xdd\xb5\xb5\x97\xbak\x8e\xf1\x10\xd6\x00\x00\xe0\xa5i\x0d\x01\x9e\x01\xb9\x9aY\xd8%\xbfI\xfe;\x8e\xd8\x01Fc\xe9\xf5\xcd\x91\xa7\xf5\x13\x05)7\x06(\x0b\x06z\xd0\x19\x04\xb6\xf0\x02 \xe3\xd8)\x10\n\x10\xadB\x80\xe3\xc3.(\x02\x8c\xe3\xacM\xcf\xc5\x85}\xa8yF\xb7\xc0\xf5@7\x11\xa0;\xa7\xb0\xfb\xd2\x1fv\xb8\xb7\x14\xfa\x80-\x1f\xad]\xb4\x0c\xd7)\x80!\xf4|\xcbuv\n\xaa\xac\x16\xc0\xd0\x82\xa3}\xf7f\xa7@o\xde(\xf4\xa3\x00\xf0\x93\xfeM\x01\xdc\xf4l\xc7\xa7k\xb2\xb5\xb99\x1a\x8d\xe4QYv\xbd\xcefIQ\x94M\x7f\xd8)\x801-\xba\xfb\x12c 0w\n\xadf\xad!\x97\xa4F\xa5)WNj\xb5\xba\\\x96\xaa\x95\xa6\xd1(\xcb\xcd\xa2Z\xae\xc9U\xa9V\x93\xeb\xc5\xb2Z\x97+\xc5\xaa*\xd7\x8b\x95rU\xae\x1dT\xeauY-\x96\xf0\xd9S\x92\xab\xf8\x8b\xaa\x96\xe5&\xf9\xac\x18E\xb5\xdc\x90\xab\x12\xfe,\xb3\xef\xe5ZI\xaeI\x8aTU\xd4\x83\x92\xda\x94KR\xbd\xac\xc8\xaaTQ\xcb\xf8{\x05\xf7[\x97kR\xadV\x93\xabvYQ\xe5\xa6\x84?+F\xa5,\xd7$\xf2Q\xaf\xe1\x1e*\xf8C\xa9\xc8\xa5\xa2Z\x92+\x07\xcd\x86*5K\x0d\xb9,\xa9\x8a\xaa\xca\x0d\xa9\xd1,K\xdc\xacnA\xabZ\xaa\xc8U\xa9Z*\x19\xc5FCnJ\x8d\x86\\/\x96\xcae\xfa\xa5\\\xc2\xb5\x14\xfa\xaeH\x1e\x91o\xa52\x191y_6\xc2\x97R\xa9\\\xa6_X\xc5\x83\x1a\x9e\xb3Tj4\xe5\x8aD\xbfW\xcae\x0c\xc8\xa0\xdb\xdb\xc2\xee\xcbM\x0c\xf1\xdd\x97x\x19v_ZN\x7f\x80\x00\x1a\xf71n\xc1\x1bT\x00$\xa9\xd9N\xa1\x00\xfa\xb6f\xc0\xaek\x9b\xd0\xdb)\\\x10d\x90e\xb9\x004\xcf\xd2\x8a\xb6\xa6\xe3\xddq\x91\xc00Je\x00%-!\x0e\xe1^\n\x9b\xbb/7Mk\x18\xc7z\x9a\xad \xd0\x14M\x98Gvm[\xd7\xbc\";\xb3\xa1\x07\x06\x8e \xdb\x96\x03\xcd\xc2\xee\xcb\x81\xcdU\xa5^\x80\xd4q\xaf\xc0\x90\xde\xd1\x86V\x87\xb8p\x14v_\xe2\x91`RCt\x04\x84\xc6P\xc1rso\x80\xba\xd0A\x96AK\xf2\x9b\x90x\xde\x01\xean\x87\x9b\xc03e\x10b\xb5\x83\xae\xf0\x0e\xc5-\xf3\xd5\xa9g\x05`\x0e\\E\x13\xf6QW\xc5;\xad\xaf9\x00Y\x08\xd7\xcb\xee\x9c\xba\x19\x00\xea[P\xd8\x15\x0b\xbe\xdc\xc4\x8d\xec\xbe\xdc$C\xc2\x7f\xad\x94\x19\"\xad\xb3\xf9a\x00\xbd\xf1\xac\x93BZg\xd1 %\xfa\x8b\xcd\x83\xbc\x0f\x86/\xd2\x1c\xea\xc4\xa2;\xb7\xe6\xd9\x97\x89d\xa6T\x01\xa5\n%13\x13\x18\x86\xac\x94;\xdc) o\x001\xc5\xa1\x1e3\x80\x08\x8d\xfeNA\xad\xcbe\xd0\x90\xcb@-\x01\xb5,\xd7@M\xae\x93\xdfU\xb9\x0c\x9ar\x9d<\xaf\xc9\x15\xa06\xe4:y@v\x11m%\xd8H\xc1\xa2\xa4\xe0'\xf5(M\xc3\xc6p\xad6ibC\x82\x99\x86\xe1\x0e\x1c\xe4O_\xbe\xa9k\xc6\x1c\xcc\xe8\x9a\x95\xc25#\xab\xde\x81\x88\xafA]\x7f\x01\xf5\xf7\x05\xe1h\xc8\xfdZ\x80\xcb\xeev \nW\x107C\x8e\xfe\x9dB\xc2\xe3&\x05\x0d\xa8\x8fLa7\x98\x1a\xf0 \x1ax\x8e\x0f4\xdb\x06\xa8\x0b\x01\xbc\xb1|d9\x1d\xa0\xb1\x12s\xa2z\x12|\xab\x0b\xbd\x08x\xec\xb7 \x91f\xd9>\xd0\xb1D \\\x07h\xa6\xe9A\xdf\x97\x1f\x0eDY\xc6\xff\xa1^\xbf\xe8\x8f\xb4N\x07z\xc5\x0et6\x0d\xd7\xef\xb9\xfe\xa66@\xdd\xcd\xa1\xaaC\xa4\xa9\x9b?pM\x99\x95\x92\xaf|\xd7y\xafyZo\x15\xb1\x97N\x0c\xe0\x19[\x90\xe2n\x1f?\x82\x08z\x8b\x00\xfb\xb5\xa7\xad\xe6v?g\x88j[>\x02n\x1b\xfc\x07\x1fg\xaeg\xdd\x92\xbe\xfe#\x81\x0e\x9e94\x01r \x15\xa0?!\xd0\xc7\xdcOoQ\xc8B\xb8\xb2\x00\x16\xe6\x17\xd1\x85\x08\xe0\xe4\x8d\x08u\x0c]\x06\xe8\x85!\xeb\xad8d\xbd\x18d'\xc15\xc2\xe6\x10\xc0\x8b\xa0\xee\x9em\xefk\xb6\xe6\x18p\x15\xc1\xcb\xcd.\xa4\xa7x\xcb\xeb\xf4!\x861&\xaf\x86k9>h\xbb\x1e\xd0\x80o9\x1d\x1b\x06\x87\xde\x02\x90e\x1d\xaf T\xd9\xcc2!\x1a\xc0\x10\x83u\xd9P=\x84\x8e\xdb\xf3[\x10i\xb8\xec\n\x02W\x9c\xa0\x00c\xc3\xb6\xa0\x83@/xG@k\xdb\xc0\x83\x1d\xcbG\xd0\x83&\x05\xb9\x89\x9b\xb0\x1c2\xb8E\x18\x062\x94\x1c\xd4\xf8\x1dA\xeb\x8e5\x84N\x12\xc4\x0b@x\"\xff\xabk\xceu\xce\xff\x92\xe5\x88\xf8_\xbc\x127\x044\xa0\xe7\x9a\x03{\x11\xe6\xe2\xa2\x0f\x1dS\xd3m\xb8\xc2'`b\x8e\x02\\\xfd>tHD\xe2\xa9\x07\xe2\xda\xe2\xa4\xfb\xd2E\x9a}1\xe8\xf7\xed\x19TF\xffu\x80\xe6f'\x80\x18\xe1\xe7\xc0\xa7/x\xf0.\x00I\xda\xcdY{\x05\xc1\x18LMD\xd3\x08z~\xb5(*\x1eB\x1bR-8\xd9\x00\xe7p\xa4y\xe6*\x12\xd2\xf4\x89\xa6lu\x8f\xbd\xd1\x0c\xc3\x1bP1M\x03P3\xbakC\xcd\xb6L\x0d\xb9\x8b\xc8k\xd10~\x05P\xcf e3\xac\xb8\x00\x84'\xf2d\xa6\xe5#\xcf\xd2\x07\xa4d6o\xc6f\xe0z\x9f\x82%_\xe1u\xe2g)\xac\xd40zLH\xb7\x19\x94_`u\xc2>?[\xa8kz\xdah\x8f*\xa1W\x19\xbc\xb1\xa9\x860\x1e\xb1\xe7\x81\"~yP~\xe5\x0e\x1c\x93\x12;\xed&\x07\xed2A\xbb\x0c\xf2\xf2\xab\x88~}\xfa\xd3m\x13r\xc2\x03gq\xe1/\xa4Y\x98U\xb2|\x7f&\xeb\xfc\x7f\x1d@Sf\x19\x19\x96\x0cc\xd0\x1b\xd8\x1a\"z\xa3\xf05\x95\xfa\x96\xc1\xab\x84\x9d\x9f\x0d\x90\x8f4\xc7\xb4\x9c\xce\xear-\x13f\x1b\x82<\xe0Z\x085 A\xbc\x04Cj\xd8\xf9\x85\xad\xf9\xdd\x95\xd4d\xc4\xa7\x18\x02\xd5\xc7\xbf\x01\xcd=\x10\x83\xec\x02\x10\xdd\xb3\xed\xa3\xa1e\xc2\xd5T\xe1s\xb3\x13\x0c\xcd\x90=\\\x00p+\x0c\xb5\x04\xc8\x02pE>\x11\xe1\x93\xae\xe6w\x17\x80\xe2\x9em\xbb\xa3\x15\xb5\x1f\x85s\x0b\x0d\x9em\x08\x1f\xddH\x1f\xf6\xba\x8a\xc41\x9a\\\xc2\xe7\xa9Cm\xcb\xed\xa5\x9c3\x13\xb9\xd7\x8e;\xcc\x99\xd6\x98\xbfN\xc0\xbcv\xdc\xe1\xe2<\xeb{\xcf\xed\xbb\xbef\xaf$\x14\x83\xb9\x89\x80\x0c\x9f\x86\x14\x96Z\xe1|\xa4\xa1\xc1\"\x98\x1c\xf4\xb7\xc2\xa0\x8c\xe4\xa8\xe0A\xc2\x85/(z|\xb8\x00(\x0f!\xb9\xc7\xb1\x8aX\x19LM@J3x\xc8\x1b$\x02\x18/\x0e\xc7\xd5\x05c\xc4\xb2S\x981@\x02\xcbi\xbb^\x8f\xf4\xcbP\xb3\x1f\xe2\xa5\x14\x94\xda3\xcdE\x8e\xffK\xcd\xb6\xc7\xe7\xd0\x1f\xd8\xab\x08`nv\xa2\xb2\x1c?\xa7x\x1a\x12\x81\xa1\x8b\x169\x84>\xb9h%Y(2\xaf\x10xC\xf2\x8bs\xfbX\xc2\xfe\xc6=\xac(\xe0\x04\xb8\x99)\x1b\xdau\x84=\x8d\x8by\x0b\xee\xe8=\xc7\x19h\xf6{\xcf\x1dZ\xbe\xe5:\xab\x88\x93\xf1)\x02c\xe0y\xc41\xc9r\xe8=\x06R\x00\x836(A\xaeU-\x00\xd5c\xa7m\x93o+\x08\xcepn\xa1\x90D,\xe21\x98Za\xa9Ea9QZ\xc2\xdd\xfd\xc2\xe2\x12\xbf\x02\xccG\x06\x12\xa7\xe7`\x19\x96r\xe7a\xe2\nP\xf3\xc2/\xbc\x06!S\x0b\xfc>4\xac\xb6eDP\xa7g\x1f\x15Y%v\x06b\x9e\xd7\x1f\xe8$b*\xd0\x1cs\xed\x1a\x8e\x1fkq\x88V\xd7r:\xf9\xf2\xa4x@\x06\xc0a\xeb\xf3\xf0%\xb8\xb0:\x8e\xe5t\x8e\x9d\xb6\xbb\x8a\x80\xe4\xa7\xc7 \x1f\xe4!aR\x02\x8f\xbc\xc8Ua)\xb0\\mP\x8a\xbey1h\x06N\xd2\x8e\x1f\xa8\x1b\x1f\x0e\xd1\xd0L\x1fy\x04\xad\"\x96\xa6M3\xa6p\x88\x9es\"I\xe8\x8e\xb0\x04\xc5\xee94W\x1a\xc6\xc2\xfc8{l\x0c\xb4\x14\xb0\x8b\x833\\\xd2\x8f\x8e\xee\x12S\xf0/\x82\xc2i\xf3\x15py\x10\x14\xc8\xc0\xea\xb5eb\xf5d\x0e\x03i\xd7\x93\x19\x8c\xdc\x8dO<\x1b)\x91o\xbb^\x9c\x00\xad-\xbeT\xc9Q\xfc\x12\xa0\x8e\x14'\xe1\x93, GE\xd6\xfa\x9a\xb5\x88\xe6\xe4\x8d\xe5#\xd7\xb3\x0c\xcd^QfE\x9c\xa0\xc0\xaft\xc3Wq@\xd3PG\x0b\x80uAj\xb3\xda\xe2\x0c\x95]\x04\xce\x91Bd9\x82\xfe\x8a\xde\xe3H\\\xdf \x9760\xe2.\x00\xab\x95>\xcd\xa6\x1fb\xa8\xab!\xd0\xd3\x90\xd1\xa5\x96\xf9\xe5\xd8\x93W\xf9\xd8\x9a\xe3\xb4z\x14\xa7\xc6\xd5\xe6\x9d\xd3\xa6\x19\x02\x9a\x9d\xfe0\x13\xce\x0b\xc07\xeao\x05\xa1\x1aMnvXr\xbc\xd6\x82\x1cV\x8a\x18\xb4\x820N\x99e\x08\xecH\xce\x9b\x0e\xedE\xf9\xd9p\x07\xfd\"\xd2\xf6\xc4\xf9\xa6\xac@B\xd2^\x06\xf5\xd8\xeb\xf7m\x0b\x9a\xefmm\x15Q\x9b\x9b\x1dg&\xe9{ph\xb9\x03\xdf\x1e\x03\x8d\x16\x00\x83~\xc7\xd3L\x08\xfa\xb8\xa4>&6\x12G\xeb-b6<\xa0\x06\xc9\x15\x85,7;\x81\xb3\x0d\xcc\xb0<@\x17\x00b\x8bXF>\xd18\x8f\xabH\x04\xc4 \n\xa0\x0c\xe2GQ\xebP\x10\xec\xd2\x07m\xcf\xed\x11Nw\x11\xec\x9c(\xe5\xb2\xc5\x9b \xe5~\xa4%\xcc\x03\xd7\xf1\xa1\xe3\x0f\xfc\x0b<\x9e\x15\\\x9f\xf4\x89\x8a(\x1f\xbc\xa2\x8bB%\x93\x91e\xdb\xc0\x87\xde\x10\xaei\x98\xe6 o\xe0#h\x82k\xe89\xd0&\x07)\xae\xeb\xc0\x1b\x14\xac,u2\xb6|`t5\xcb\x91\xc11k\xc5u\xec1\xd0\xe1\x9a\x8f\\\x0f\x9a@C\x14;4\x1f1eG\xac\xe2Z\xc6\x98\xcf\xdf\x1f\x00\xc7E$\x0e\x83\xeb\xe1\xc1\x8c,\xd4\x05\xf8P1\x82h\x17\xde\xda%n\xc8\xeb\x1b\xc0\xc2\xacV\xdf\x83\x06\xb9Z\xe6\xb8#:\xb1\xe3\xfd\x03\xd0\xd5|B!\xdd\x91\x03\xd8\x03\x11\x84\x80?\xd0\x17v\x9c_`\xad\xba\xae\x8f\xf2UJ_%\x0c\x9b\xa5\xac\x0f\x89\xc4\xf5F\xf3\xbb+\x08\xcdpn\x1c\x1f\xc9\x87\x0f#7\xc5x\x8f\xc9E\xe1x\xe9i\xaby\xc9\x89\x9b]\xcc<\xceA\x13\x91\xf7K\x81\xe1J\x830\x0b\x1b \xfc\x96\x84\x8e3\x92]\x9a\xa96?\x0c\xd3\xc8,\xe6~\x02\xf8,~\x81\xec\xa0\xab9\x0e\\\xc9\xfbc\xc1\xd4\x04x\x92\x83j\xff\x00\xb3\xb7\xf4%\xd1~Pfwa(\xae.\x10#\x18:\x04|\xec\xf1\xe2 ; |\xf8\xaaJ|\xc9I\x86\x80\x0c\xa46\x16W\x94\x8a{\xe1C\x06u\xcd\xf7]\xc3\xc2B\xd3\x1a\x91\xaf\x88\xbd\xcfs\x87\x96 \xcd\xb0\x90eB\x07Ymk1si0\xd4U\x17\xc2S\xe7\x99\\\x95\x98\x1c\x1e[\x98\xb5ha\xc0c/\xcc)\xbcA\x17\xf0\xc7\x00:\x06<\x87\x06\xb4\x86\xab\xb8,)\xb3\x14.\x04\x10\xe5\x86\xc7^\xf8\xac \x8bL\xc3\x1cL\x17&I\xef5\xe3\x1a\xa2=\xe3\xdaqG64;D\x11\xb1\x8a'c\xfaD\x13q\x02\xfa\xa4\x18\xd0\xe2\xe5\xe2TI{,\xd8\xff*\xa0\xe78o\xa6\x98K\x07\xfd\xa2!Dh\xe7$\xf0\x13Zm\xdc\xe6\xe6\x98\x85\xd6\x06W\xa4K\xe3\x07=\x06b\x7ft\x18\xd52\xf7\x8c\xebU\x04\xb88\xc1\x04\xb4\x07\xe1k\xc28\xceNLHv\xd0\x80\xd2/r\x80F\x03\xa4\xb8\xb1\xda\x8b\xc0\xe68m\x1d\xfa\xacX\x9c\x91\xd1\xd6\x96\x0d\xfe\xf8\x86\\A\xe8\xc7\xa7\x98I\xcf#\x9a\xb3\x1cRN8\xa5\xfe\xea\x82\x94\xcd/\x84\xa7\xc5\xdd\xbe\xa7\x10\x0dY\xc1\xae\xe6\x03\x1dB\x07\x84h\xee:\x18\xf1\xd7h]\x93\xca\xf8\x0f\x07\xf8\x81\xeb84\x07\xe3*\xabL\x12\x93L(OB\xc5I\x82r`\xa1\x89\xd5^\x83\x8e\xb9\x00rSyye\xd5|\xfc\xf4\xa6+\xfb\x98\x86`ap\x12Awu\xc1I\xa7\x97\xaa\xeb#9\xe3\x19\x18\x97\xa5\xf0[m\xb5U\x8a\xbe\x8a)\xfexX.\x05~\x83UDI:\xb1\xf8\xdd\x06\xfc\x08c\x1f\x85\xe4\xe20\x14TX\xab\x08\xc6\xd8\x0c\x93gQLK\x97<\x92\xe8\x05\xc2%\x83z\xe5!\xcd\xf1\xaf\xd3A,(\xb05\xb4\xa6-\xeb\xf2T\xe8z\xb4\xd2\xb46e\x96<\xcd\x0d^/\x93\xf8f\x1baS]\xa3r_\xbd\x94\x8d\x11[\x99\xd86Y`q(\x1eD\x8c\xf8J\xd2\xf5\xf8\x1c\xe3>\x90\xec9\xe8k\xa8\x9b*i\x90\x06\xd6\x16\x86\xf5jC9\x05\xbe\x82 \x9c{\xbf\x1c\xa68lp\xa5\xa1\x19g\x899|]P\xec\x8d\xa4\xef\x95>\xf2R\xe7)\x92\x00\x81\xa7H\xdaZ\xd7\"\x98/\x07\xde\xab~\x9ceMu\xa2\xf3\xf9#\x02\xde\\Iy\x85\xcc\x93\xe5st\x90\xa7\x19\x08\x18x\xaa\xc0u\x8a\x0b\xab\x1f\xcdU\xc4K\x06\xb1(\xda\x9c\x00\xb8E\xc0E\x9b\xf1\xf7\xc7+\x0d\xb9\x00\\\x8bCjE\xe3~,\x0bL\x17=\xcdC\x01\xacV\xf5\x94X\x16\xb0\x8e\xc3[\x13{\xf4\xd2\xc4+\xcf\xed\xadnZ>2\xfdIs\x16<\x99\xa2+%A\xf2{\xee*\xb4;r\xa0\x17\xa5\x98s\xb8\x1c\xe3\x9cPdy\x0f_\x9b#\xc7\xf0\xc6}\x04\xcd\x0b\x08\xcd\x15\\\x8cs\x0e\xd40\x98+\xf0!4\x99\xb7\x18\x97\x1b\xdfqM\x92N\xa6?\xd0m\xcb\x00\xd7p\xfcp\xb8\x9e\x93f\xe9\x8fwp\x15\xf3Y\xf3\x90\xbd\x86c0\xf0\x19L=n\xea\x0f\x07\xe0\xe5\xcd/\x066\xe2\xc4\xafQ\x01<\x15l\x9b\x83\x89\x00\xbc\x80\xde\xd0\x9a\xe5N\n\x9d;\xd2:\x85\xe9\xd0\xbb6n_\xef_2\xe8\xa9!\xf4,\x84\xeb\xa5\xf4\xc8&k\x1c\x9d\x9f\x9d\xde\x16vY\x89\x10f\xc3\x0e_v\xf8M\xf3\x81\xee\xdc\x9ag_\n\xc1M\xd5\x9d\x82*\xab\x050\xb4\xe0h\xdf\xbd\xd9)(@\x01\xa5\n(U\n\x00\xff*\x80\x9b\x9e\xed\xf8;\x85.B\xfd\xad\xcd\xcd\xd1h$\x8f\xca\xb2\xebu6K\x8a\xa2l\xfa\xc3N\x01\x8cIA\xcd\xb3\xb4b\xd72M\xe8\xec\x14\x907\x80\x85\xdd\x97}\xd7\x1ew0\xcdt-\x07\xf9;\x05\xb5.\x97AC.\x03\xb5\x04\xd4\xb2\\\x035\xb9N~W\xe52h\xcau\xf2\xbc&W\x80\xda\x90\xeb\xe4Aa\xf7\xe5&ke\xf7%\xee.Z\xa4\x81\xcdM\xee\xcd\xed+\xeb\x16\x98\x87\xd7\xce\x1b\xdc\xf1\xa4\x15\xe3\x90\xfe5D'\x1a\x82>\xda\xb7]\xe3z\xfaRN]\xbf\xe7\x86\xfd\xe2\x04\x85\x83\xd0&\xcf\x81\x8e_\xcc!L\xa6\x02\x91\xb4\xbe?~Cl\x0e\xab Fa\x8a\xa1\xdcN\xa0\xb7H\xc8\xbaTp\x9e\xba&\\Q\x81\x80\x9b]j\xb0 \xc2\x13\xcc\x19N-\x15\x86\x17c\xc7\xb0\x9c\xcej\x82\x90M.\x84 \x81\x9aO\x1f.\n8J/\xa2\xe4\x9epE7tr\x9e!8\x19i\x0c\x83\xf2\x14}\xb8\xf0\x9e\xe6;ZmJ\x996\xd3\x10\xb4\x02L\x81\x86\xc0,\xf6\xea\xa9\x9c\x98\xe1AT\xcd\x02ak~\xf7'\x9b R\xba\x8c\xdb X\x91\x10r\xb9\x11\"m\xd1\xa2\xbd\xc0\x1e\xfc\xad\xfaV\xc7\xc1\xe4\x1a\x9f\xd0\xab\xbc\x1f\xf0< \x1b\x82\x89\n\xbd\x92(\xca\"$\x91f\xdb\xe3\x15\x05 \xbdC\x1eL\xf7\xc5\xef7\xa5\xfa\xb6\x0f\xc8\x8c\x81\x07\xfd\x81M\x02\x92\xf1\x1a\x16d\xf5\x96\x01\xecP=\x13\x1eE+\na\x8a\xa2\x9d\x10\x0e\xc194MC\xf5`p\x92\xc5[^L\xa4g\x0fO\x8a\xac\x8f\x05\xcd\xa1\x8b~!X\xd2\xd9N\x03\xe6\x14\xe5\xe9\xa1\xe5#\xcf\xd2\x07h\xa6\xb4KKS\x9ffu\x1bS\xa0\xf2\xc5r\x15\xea\xd4\x05\x0cw\x86\xc9=\x9c\xea\\9\xd2\xd2\xa8\x1b\xecj\xf3\x8f\xaf \x14\xe1\xcdM=\xc4u>\x10\xc8\x03\\\x82\x16]\x8d\xd5^\x81\x03\xb7\xd7\xb3|,\xd5\x91\xbb|>\xb4\xdb\xc5$\xd7\xf8\\\xd6`u\x89|\xc8\xc8`*\x1fN?\xe0\xe3\x1f\x83y7\xdc^o\xe0Xh\xfc}\x85\xfd\xc2\x0f\x82I\x12\xe7\xefi\xca\x9c\x87\x82r\xe5]\x0b\x13tz1\xadX\xcbrf\x80\xd2\xd2\xb4a\xf1\xeebZ0\xfc:\xd7~e.T\x88\xf3=\xcbA\xbf\x86'm\x8b\xce\x14\xf4\\s`\xc3i\xc8>\x07\xe4,\xa7m\x93\xf1\xae(\xe0\x0e\x98a\x8cM\x18\x84\xf3\xa57F\x16\x05\x9f\xe68\x03\xcd.\xf6=wh\xf9+|3,\x0eF:o\x10\xcd{\x028\xa7\x90\xde\xcf\x9a\xdf\x9b\x0e\xb1\xa5\x91\xdexw1\xd2\x8b_\xe7\xa47s\xa1\xc2\x1d0\xd2\xfc\x1e\xe6\xd8\x96\x17\xde\xf8\x19\x86~ }g\xf1l\x81\x8f\\\x0f\x92<\xf3\xa0\x07}_\xeb\xccA=\xb2`\xb7\x1cj\xf1\xdcrA\x9cX>M\xc8O\xb4\x15\x0bC\xe9o\xf5\x0e\xff9>\\\x9a\xde\xf8\x19\xe2\xda\xb1\xe3#\xcdAV\x88nAZ\xf5\xa5!\x1b\x07\xc6\xd5D\xbb\xd7\x90\xc3\xba(G\x99 \xc1\xf1\xe1\x12\xa1\x87\x7f\xd3\xa5Y\xd6i\xff\x1c\x01I`\xa8\xe9\xee\x80^ \x0f\xa7\x0cL\xd8\xb7\xdd14\x89\xc6\x17hK\x020m\x9d\x00\x99~\xdd\x0b\x82\xaa\xae\xee\x96?\xba\x81\xc6\xe0\x91\xb6{&<)6\x17\xbb\x9a\xdf]a\xec%g\xb5\x19\x02\x95L\xf7a\xaa\xf3y\xa1K\x02e\xfd\xad\xde\x91\xbf\xabLi\x19\x88\xf9@(\x84\"P6\xe9\x1a\x8e\x17\x84\xb1HrW\x1c_\x19\x11%\xb0\xc9N\x174E\x92:\x87?3\x88A\xac\xb7\x98\x1cu\x0e\xf3\xd0\x05\x99\xab\xc4%Z6\\\xc7\x87\x8e?\xf0\x8b\x96[\x847F\xb7\xd8\x1f\xe8\xd7p<}!\xa7\xae\xde\xb3\xc4\xf3\xaef9\xa0?\xd0m\xcb\xc8\xa4\x11\x11\x9a\x93o\xa65\xe4\x1a5\xfc\xa1c\x8c@\xf7G\xef\xfa\xd4)\xec\xbe\xd4\x00\xd2\xbc\x0eD;\x85\xef\xbaM\x92\xb7x\xd0\xde)8\xae\xdb\xc7\xd2\x1bp\\\x0f\xb6\xa1\xe7A\xaf\x00\xba\x1elS$\xf2\xb767=h\xba\x86=\x96\x0d\xb7G\xbfo\x16v\x0f]c\xd0\x83\x0e\xa2\xf4\xec\xbd;\x82\x98\xc6\xe9cpN\x0b\xbf\xdc\xd4v_n\x9a\xd6P\xfc\x14\x87\xd8\xb9~k;\x07\xc0v?\x9d\xa3O\x85\xf8\xdb\xf6\x1b\xff\xec\xfd1\xe8\\\xb9\x17\xe3nA\xd8\x1e\x05\xe0\xa31^U\x9a\xe4\xc3\xf5z[\xe4\x9b\xad!\xb8^\xea\xdfH\xa0X\xe9\xdfl\x00\xcfE\xf8\x89\xdaPL\xd8\xd9\xd8&e,<\xe2\xad\xb0\"P\xe4\x92\x0f\xa0\xe6\xc3\xd8\xb6j\x96jr\xa9\\k6A\xb5^\x96\xeb\x95f\xb3\x12\xdf\x86\xb8d\xff\x86\xee(\xfc\x97\xad\xb5Z-\xb0<~\xe4\xfb\xee\xcb\x0e\x08\xbbcC&\x03m*\x15\xb9Y*\xa9\x15\xa9\xd8\xa87e\xb5\xd2(m\xe0]\xa8\xa1.0w\nk \xfc\xa7\x07\x8a\xb5zY\xae\xd5k\xb5\x8a\xa4\x96J\xaa\\\xab*%P,\x95U\xb9T\xa9V%\xf6\xad\xa1\x94A\xb5*\xd7\xd4ZU\xe2\xaa\x17\xf1\xb3R\x1d\x18\xa0\xac\xc8\xd5FS\x95\x8a\xf8K\xb3\xd2\xa8\x82jMV\x1bJM\n\xcaTkr\xa3\xae\xa8\xe1oE\xae5\x9a\x15\xbe5\x05\xd4\x9br\xa3V\xaeK\xf5\x86\\S\x1a\xb5\x12P\xebU\xb9Y)\xd5%\xb5^\x91k\x8dj\xa3\x0cl@\xbf7K\xe1\xc3\xe8 ?\xb6\xf0\xad\x01\x9a5Y\xa97\xa5\"\xf9[/\xa9\xa4\xddR\xb5\xac6kR1j\x9a\xf5Vk\xd6R\x1b*\xd31W%\x05\xe0%l\xa8R\xa9*+\xe5\x92Z\x0d'\xc7Uc\xd3\xb4C\xb8\xb1\x07\x01l+\xcd\x9a\x14\x01\xd7\x00E\xb5T\x97\xd5FU\xa2\x7fk\x15~\x08\xb8`\xb5To\x065\xe8\x93F\xbd\x1c=P\xe4r\xa5\xaaJ\n(\xaa\n\x1eoC\x9c\x83R\x91\x95\x9aZ\x8b*\x06+\x0bn\xc3r\x05\xd0\xb6l{\xa7\xc0\xee2\x1c\xb8\xb6\xeb\x11\xc2\xab\xa1\xee\xee\xcb\xcdN@y\xe7\xda0x\xbf\xe4\x1b$\xdf \xbf\xd2\x06\xc9>\x99\xe0\x97\xfd\xe1\x8fc\xa0_^\xf97o\x80\xd6\xb7\x8aX\x80\x81\x0eJ\x9cR\xf0\xe0\xab\xf9\xe3-h\x7f=\x82\xad^\xe2\xad\xb5\x7f}e\xfa@?{\xdby\xf39\xf1\xb6\xfb\xae\x85\xbe\xb5\xc0\xe1\xc9k\xeb\x8at\x82e\x84\xc2\xee\xcb\xae\xca\x1f\x83hx1\xe8\x03\xcc\xae|\xd4\x0f\x9c\x13`\xf7Z\xde\xd9k`\xbd5?\xbd\xbb.\xec\xd2,\xfb\xe0\x14\xa2\x91\xeb]\x83\"\xe8\x9c\xbf?\x00\xaf5\x04G\xda\x18\x98\xae\xe1\xbf\xfc\xadX\x04\xc5\xe2. \x1c\xc9\xeez\xf0{\xa8\xcaeY\x0d~E\xc1\x8a\xbb\xea\xee\xcb\xfe\xee\xa1;rlW3\xc1Y\x1f:{\xef\x8f\x81\xdf\x87\x86\xd5\xb6\x0c*\x17\xb2Z[/5`\xb2\x92;\x05\xccJh}K\xbe\xf2]\xa7\x90\xe07\xa29]\x1f\xbf;\x84g\xa0\xad_\xbf\xee\x14\xc2\x9e(\xcf\xd0O\xc0\xf0\xf8\xbdm\xefc\x00\x18\xd6\xb7\xee\xde\x1988B\xef\xbe\x81vw\xb4\xff\xf1\xa0\x90\xbe~\x93\xebPf\x93\xf2\x85\x84\xa1)\xfa\x83^O\xf3\xc6Kj\xcd\x84\xbe\xe1Y}\x0c'L\xaev\xf7\xc0\xf9\xd1\xc5%\xb0\x1c\x04\xbd\xb6f\x90,\x7f$P\xb4\x05}\xe2\xbb#\xe6\xf4\xec\xef\xae\xa5\xb0N\xd1\xc00\x83\xecCR\x9a$\xdc\x81\x0eb\xab\xc2\xc6\xc2^\x16'\x15\\>\x06g .EW\xc2\x80r\xcc\xa9\xf7\xc58\xb2A\xe7\xe0\xfd\xde\x17#\xe07\x7f\xcf\x1a+\x91U\x08\xe3\x9b9\x9f]\x8c<\xe23\x8a\xc8\xb3\x03o\xf3\xba\xe7\xcf\x0c@Z\xf8q\x80X\xe2\xde\xf5\xb5\xfe\x97\xb7\xc0:\xf8qt\xf9f\x01\x18\xd2\xe1N\x87#)G`y\xdd\xf3_nvK\xf3m\x85\x87l\x9f\xdd\x97H\xd3m\x18\x96\x87\xc6\xc0\xb3\xd0\xb8hB\xa4Y6\x1e\x0d\xd2]s\xbc\xfb\x12y\xbb/Qw\x17\\\xb0\x12\xe0\xc2\xe8\xc2\x1e\x04\x97X\xf6z\xb9\x89I;2wA@\x99\xde\\^\xbe\x8f(\xdf&2w_n\x92&X3\xf8=\xc0\xb3w=\xeb\x96\x8a1\xac\xc1d[\xba\xe6[FZc\x9bll\x9bd\x0ei\x1b6\x0d\xff\xb0tK.\x1d\xa4\xa0\x1b\xf7\xeeq\xb0k\xb1-\xca\x0d\x8f\xc7\xa6\xe81A\x1e\xf25\xb9\xff2\xa0\xc0I\xf9{,Y\xd8$\xc0\xa4\x16O\xc0\xaa;\xf8q\xaa\xbfe\xd0H4\x96\xd6D\xd6\xf3\x87\x02z\xa1mxw\xd6j'\x91p\xca&\xef\xef^X\x8e\x01\xb7\x80\xe1\xfa=\xd7/\xfa\xe65P\xe4J9y\xdc\x91\x8fn\x95o\xfb\x87\xe1Z\x10\xc0\xcf\x83\x93\xcb\xd3\xc2.\xd1\x18\x87C}\xcf\xb9\xf8t\xabqjb\x14\xbboN\xe0\xf9;\xd0\x81\xfa\xe5\xe7O<5 \xca\xe0g&_a\xef\x9b{h\xe3\x99\xb4\x8f\xce|\xdb\x02\xc6+t\xfa\xee-\xf8\xf6\xe6\xfc\xb5[\x00\xd7\x96c\xee\x14\xda\x16\xb4\xcdB\xa0\xe2\xebk\x1d\x96\xddP\xbe\x86\xe3@\x83\xc4M\xc0\xb4\xc6\x1f]\xd0q\xed\xcbs\x0d/\n\xa7 b\xa5\xfa\x1e^>4.:Z\x0f\x16v\xc5\x16C\xd6\x0c\x13\x1ea\xb0\xfa\xd5G\xd7:\x01\xedO\xdd\x8f'\xa3\x02\x03\x1e\xf9\x88\x0d\xc1\xd6o\xf6,2+\xeb\xf4\xf3\xe8\xc8\x07\xc7\xefL\xbd\x0f\xae>\xbc\x82{_\xd3\x87$\xd4\xbaj\xf7\x0e?X\xac\x96\xe1\xbf;\xfcb\x15v}\xe4\xf1\xa1W\xe7\xaa\x1b\x12\xd7\x176\xda\x0e \xed\x18\xc1\xf0y'z\x0eB\x08\xe0\xb9\x81\x97\xb3\x9f2\xdd\x8b\xf7}\xf3#A\xc0k8\x06\x96O#3\x0f \xdb\x0dD3\x0f\xdek\x1dx\x0e\xfd\xbe\xeb\xf8Pv\xe0\x0d\xfa\x8e\x0b#\x17\xe8\xb0c9k\x04\xe3\xf0F\xc1\xbb\x06\xbf\x06}\xad\x03A\xcf\xf5\x11\x80\xed\xb6eX\xd0A\xf6X\x06g\x8e=&YX\xdd6p\xdbm\x1f\"\xe0z\xe0\x1a\x8e\xd7\xfc\xae;\xb0M\xa0C\xe0C$g2y\xdc1\xf58\xf8IG\xb5d\x14\xa5\x8d\xfe2X:\xb0\x1cT\xab<\x1a\x9e2\xc4!\xa8\xea\x0cz\xd0\xb3\x8c\x00\x99Hr\x08Cs0\x1e\x0d|h\x82Q\x17:\x80!\xf6\xc0\xd1\x86\x9aec\xfa'\xaf\x1d\x93\x06l\xe8\xfb\x11\x86\xe2\xea\x0e\x18\xf8\x18\x93\xaf\xe1$t\x05\x14]\xd7\x9e\x1c]m\xabg-\x1b[I\x9b9\xb2.\x07Y 01\xaaE\x97\xc9\x9dAO\x87\x1e\xc6)\x1a{\xc5\xa7\x84T \xb8\xf4F\x1c\x89\xcc\x82I\xa9\xbcv\xdc\x066l#\x00{}4\x06\x16\x02#\x8b\\?\xa7\xa9:H<1J\xb6i[\x18U\xf51\x80\x9a\xd1\x05Z\xbf\xff\x84\x18J8\xa7\xefd\xe6K\xc6S\xae\xe5\xe7\x8a\xad\xba\xeb\xdaPs\x96\x81H\xdcl1:\x11j\xe7\x02\xe4\x0d \xc0_,\xc7\xc42*\xa4$\x90C\x1f\\\x90\x1d\xae\x96c\xd8\x03\x13\xaei\x80&\xe0e\x9eMq\xac\xb4\x10\xec\xf9 \xa4\x95D\x1b\x13\x81\x1dc\xe7\xc7c_^\x8b\x0d\x88\xa4\x88\xf1\xa0\xdf\x87\x06\n\x08oD\xa911\x96\x01%\xbaV\xc7!\x16\xff\x806\xaf\xd1\xe9\xcc\x85\xa3\xb6\xe6#\xb0\\D\xf5\xe0\x10z>\\2\x92\xb2V\x7f\x01\x04e3\x8d#\xa7\x15\x919\xcd\x83\x19\xa4\xce\x84\xbe\x01\xe9\xddH\xd73\xa1\xc7pav\xa1(\x8e)\xe9\x8a\x07\xf2\xd1-\xf3\xd0\x7f?\xee\xfep\xc1\x8f3m\xd4*\xec\x06,.\x16\x95\xca\xac\xb8>@\xc8u\x04,\xf3o\xb4\xb7\xa0;\xfa\xf6\xe5\x12\x15\xd2\xdd\x12\xba\xc3\xdb\xcf\xc6\xfe\x7f\xb3[\x82\x8f<\xd7\xe1'v\xf5\xba\xef\x9d#p\xfd\xed\xf2\xdb\xc7\xe3\xc2nIQ\xf8s\x92\x94N \xdf\x95\xb9\xd7\xfa\xe2\x00x\xe5\xf5z\x16S\xf5\xfa\x03\xc3\x80\xbe\xdf\x1e\xd8\x84Z\x10\x89\x82\xad'\xc3A\nqa\xcd\xb2\x16\x01\x0e?\xbd\x1b\x9fd,\x82uy\xd2\xfa\xf6m\x95\x17\x81\x1d\xff\x0fZ\x08\x07\x0c\x1cx\xc3\xa85\xf4<\xd7\x9bm=\xe2\xaa*\xae\x93\x8bV\xfb\xc8\xc2$\xa2\xf3\xee\xcb\xd9\xa76\xb8n\x8f\xaf\x0e\x86\xa0\xdd\xf9r\xf4\xf6$\xa1\x111\x07\xb7\xde\xd7\x1f\x00\x9e\"\xd3\xc5\x14$\xb1\xc6\x9f\x0f\xae\x7f\xb4@\xe7\xe6t\xdc\x7f?\xd1\xeb\xc4\xba\xbe\xfap\xfb\x16\xd8\xd7g\xbe\xdf\x05x\xfd\x8aC\xe8\xe9\xe9\x0e'\xdc\x00\xaeM\xe7\xe3+\xa0\xff\xb8\xfe\xe4i\x85\xddMJd6\xb5\x01\xean\x0eU\x1d\"M\xdd\x0c5?\x13|\x90:W\x1f\x06?^\x85&\xe4\x9e\xe6u,\xa7\xe8Y\x9d.\xda*\x96\xaa\xfd\x9b\xfff\x14\x0cW\x1f/^\xb2W\x0e\x18\xc8\x7f\xf5\xf5\x08\x98F\xf7\xc7U7\xb1\xd8z\xf7\xd3q\xf7\n\x98\x07\x9f\xdb\xc4\x1a1\xdf\xe1\x12a\x1b\xd2t\xcb1!\x85\x16\xb5)\xd1\x01&\x0d\x8f\xaf\xf7\xbam\x0d\\\xef\xb7\xbc\xb7-\x86>\xc1!9e\xa9\x93\xe7\xca\xc4\xcf\x19\x14\xb6\xf3\xe9k\x17W\xd7fhk\x9f\x9f\xb2vf]\xad\xa0\xaa\x8d4\xb5\xec73\x86\x00]\xc3B\xbf\xeb\x04\xa1C\xe4\xa4\xc6v\xb2\xee\xb4\xaf\xa1\xee\xf2T\xa7\xcb\xe2R\xd9l\x96\xc1\x9a\xc6b\xaa\x88\xab\xee\xda\xba\xe6\xe3\x91u\xad\xd6\xeb\xd190.\xec\xe3~\x0b\x18\xf0\xdd\x91vY\xd8\xf5\xe0\x8f\x81\xe5A\x93\xe7\xb6\x9e\x11/+\xaa\x06\x16ae\x19\x90\xb0xm9\x90\xca\xee\xc13\xe4\xb2\x1c\xc6m\xd7\x9bAd\xc9\x19\xd1\x05\x0f\xa0i\x83E\xc8\x19QJY\x1e\x9f\x11\xdd\xbcc\x84\xe8>gI\x7f\x19\x96\x94_\xf4\x19\x18\xd2Y\x99SY\xc6\xff\xa1^\xbf\xe8\x8f\xb4N\x07z\xc5\x0etR\x07BN<\x99\x95\"\xeek\x847\x9a\xd5\x0fa\x19\x1dq`\x9c\x8f%^F\xe7\xcbo\x91\xc3\xb4\xa7e\xc4\x971\x99i<\xfc\x12\xfa \xec?\xfd\x1e\xb9\x06\xda|\xdc\xa3t^?\xe7\xb1f\xa0\xa8\xd3\x8e\xf7\x9c\xc7z\x06\x8b\x90\xf3X\x8f\xcdc\x11Z\x92\xab\xfaV\x9f\xaf\n\x16z\x06\xfeiV^\xea\xb5\xa7\xcd\xee\x97\x19\x14~0O\x134\x90\xfe\xf4\xd9\xf0\x16\xc1\x80\xa6\xf1\x07\xac\x1c9\xe3\xcf\x99j\xcf\xb6|b\xa1\xfe\x8f\xe0\x83\xfc\x1f tpah\x12\x03c\x17\xb2\x9f\x10\xe8c\xee\xa77\xb7\xe2\xef\xf99M\xb2\x99,C\xe9\xc7\x9az\xaeF\xe8e)\xee&\xe9\xe1\x1eai\x96\xe2*\xc0\x9a\xca\x97fIK\xd3\xf3;\xdf1\xdf\xf0}\xe0-\xc5\xdf\x88oo\xd5\x17\xa9\xbf{F.ei\xb6\x04\xf8yK\xd4U\xc7\x87H\xa2ngT\x01N<~\x08\xfe\xfa\xa0\xa7!\x83dd\xefXC\xe8\xe0\xda\x84{\x9bAA\xbe\xd4\xd5\xcf\x1d\xcd\xe7\xaf\x9b;\x9a? ~\xe6\x8e\xe6s\xd5}\n\xdf\xdd\xdc\xd1y\xf2L\xfc\x9cdf\xd8\xb3\xed}\xcd\xd6\x1c\x03\xcejd\x10jp\xf3\x9b\xcf\xc4 \xb42\xe1\x15\xb7(Ok^\x10F5\xcd\xb8\xc0\x17\xa6Q\xf4\xa3\x07a,M\xccy\xe8\xf4!\xe6{5\xdb\x06\x86k9>\xe1x5\xe0[N\xc7\x86A\xbc\xfd\xb9\xa3k=O\xed~\x1eV?Vk\x06-\xc3\"\\q\x10B\xdf\xca\x88\xa8\xaf\x07H\xb9xh\xfd\xdc$\x90\x9b\x04\x96\xac\xbd\xcaM\x02\xb9I`\xde\xbaO\xa1e\xcdM\x02\xb9I\xe0Au\x9f\x02Ys\x93@n\x12X\x8a\xc657 <\x86\x84\x94\x9b\x04\x96\x86\xa0\xb9I\xa0\x90\x9b\x04\xa6j\xa2s\x93\xc0\x12\x17!7 P\xda\xb4T\x93\x80\xae9\xd7\xa1V8\xd0\xd8\xe4Y\xc9V\xdb\x160u\xd1\x93g\xcd\xc4\xcfIF\x00\xa6\x9a\x9e\xd1\x00\x10\x96\xe6&4\x9f\xf2?l!\xe31\x07\xfd\xa7U\xfa\x87#\x9a\xa6\xf0\x0f\n\x12e?\xfb\x91\xa9\xe8\x0fT\xfb\x86k9\xb9\xb2\x7f&\xfe5W\xf6O%D+\xaa\xec_\x162\x9a\xd0q{\xcb@E\xd2\xd0s\x95\x9e\x96\x87Ld\x9a\x01*\x11JE\x9f<\x066\xe5\xf2\xcf\x0c\xdc\xce4\xd6;\x97\x7f\x9e\xc1\"\xe4\xf2\x0f%/?S\xfe\xd9\xd4\xc7\xdf\x05\xa2\x9c\x0bB\xbf\x90 \xc4\xad\xfeD\xf9g>\x89\xe8\x10\xb7\xe8\xb7 \xd2\xb0\x183\xa3`\x14\xaf\xc4\xcds>\xf9(\xde\xd0\xe4\xb7\xdc\x12=\xad\xb4\x14\x1f\xd84\xa1)V\x9e\xc8N\xe23A\x842lb\x12\xed\x05\xef\x88\xe4d\xe3C\xabc\xf9\x08z\xd0\xe4\xf8\x14\xa6\xed\xceHQ\xfc\xf3\xd8\xd7%p\xae\xb9\xaf\xca\xfcus_\x95\x89\xcc\xf8c\xe1g\xee\xab2W\xdd\xa70\xff\xe7\xbe*\xb9\xaf\xca\x83\xea>\x05\xb2\xe6\xbe*\xb9\xaf\xcaR\\\x01r_\x95\xc7\xd0\xa9\xe6\xbe*KC\xd0\xdcW\xa5\x90\xebj\xa7\xaa\x08s]\xed\x12\x17!\xd7\xd5R\xda\xf4x\xbaZ\xa2\x89\xf1\xbf\x07\x1a\x9b\\?\xbb\xf2\xfa\xd9\xc4\x8a'O\x99\x89\x9fSu\xb2\x0fQ\xc9.K#;Q!\xfb\\\xf5\xb1s\xaac\x1f\xac\x8d%\x8e-\x1dk\x08\x9d\xa4\x16vn%\xec\xf3\xf4gy\x1c\x17\x82\xdc\x97\xe5A\xee\x07\xf89o\n\x98A\x00\xca\xd9\xda\x05\xcf\xb1i\x1cU\xce\xd6>\x83E\xc8\xd9ZJb~\x1a[\xbbyG\x1e\xe4~\xd8\xbf\x1c{\x1b\xad\xfc\x0c\xac\xed\xacl\xae,\xe3\xffP\xaf_\xf4GZ\xa7\x03\xbdb\x07:\xa9\xa3!\x07\xa1\xccJ\xc9W\xbe\xeb\x10Vi\xd6@.\xcb\xe8\x88\x83\xe5|\x0c\xf52:_~\x8b\x1c\xba=-\xeb\xbe\x8c\xc9L\xe3\xf7\x97\xd0\x07\x11\x12\xe8wA8\xe8\x87,;\x96\x0bnHk\xa0\xe7\x9a\x03;-\x0bo\xce~\xcdFg\xa7\x9d\xfc9\xfb\xf5\x0c\x16!g\xbf\x1e\x9b\xfd\"\xc4%O\xdb\xbf\xfa\xdcV\xb0\xd030T\xb32W\x17}\xe8\x98X\xfa\x9f3\xe8]J\xbd\x07\xb3>)mM-\xf0l\x18\x93\x94\xb1M\xe33\x92U\x08\xdb\x90x,p\x10~\x1f:D\xcf75B\xdeZ~i.(\x95_\x9a\x9b\x97\x8eM\xbf4\xe7\x07h\xba\xcc\x0bO\xb9\xffq\xee\x7f\xbcdW\xb9\xdc\xff8\xf7?\x9e\xb7\xeeS\xb8t\xe6\xfe\xc7\xb9\xff\xf1\x83\xea>\x05\xb2\xe6\xfe\xc7\xb9\xff\xf1R\xdc;s\xff\xe3\xc7\x90\x95r\xff\xe3\xa5!h\xee\x7f\\\xc8-\x05S\x15\xd4\xb9\xa5`\x89\x8b\x90[\n(mz\x85>+W\xbe\xe6\xca\xd7\x07\xd5}\nd\xcd\x95\xaf\xb9\xf2u)\xba\xad\\\xf9\x9a+_\x9f5\x82\xe6\xca\xd7B\xae|\x9d\xaa\xf3\xcb\x95\xafK\\\x84\\\xf9Ji\xd3#*_\x89>&W\xb3\xae\xbe\x9a\x95-t\xf2L\x99\xf89\xd1M\x9b4y\xd6\x9eQ\x9b\x1a\x15\xe7\xa61\x9f*5j\"\xeb9\x07\xf5\xa7U\xa2FC\x9a\xa6A\x0dKR\x87k\xf6K\xf4\xb3\x8e\xb4\xa6|Z\x92\xb95\xa7\xcf\xd3\x99:\x8f\xd80\x8d\x8b]\x9e#\xf5\xd4\x88\x0dK\xf4\x9f\xce\xf9\xd0\x19N\xa0i,P\xce\x87>\x83E\xc8\xf9PJ^\x1e\x9b\x0f\xcd\x834\xfcb\xfc\xe8\xa3\xc4f8p{\xbd\x81c\xa1\xf1{\xd7\xb5gdNcu\xb8\x89\xcd\xc7\xa1\xc6\xda\x99\xf8\x92[\x91\xa7\xe5Uc\xe3\x9a\xc6\xb0\x8a\xc5 \xd7*<\x12#\x90\x05o@\x1f\xbf\x9a`\xf1\xcf\xd9\x85\x19\x08\xc4\xb4\x93*g\x17\x9e\xc1\"\xe4\xec\xc2#\xb0\x0b\xa6\x85\xa5 }@HPp\x8a\x84\xd4\xe5;\xa6.9\xdb\xb0\x8al\xc3L\x0b?\x03\xcb0+\xfbp\x08m\xd8!_\x89+\xdb9\x1ci\x9e9k\x08\x82\xac\xca\x0ff(\xb2\x1a\x9c\xad\xd4\xb3a1\xb2\x068\x8d\xd7\xc8\xa8\xc7\xe2\x9e\xa6\xbdKq:\xf4\xd8\x1b\xcd0\xbc\x014\x81>\x06\x1aq\x1dX\x1bj\xb6ej\xc8\xf5VF\x95F@\xe2z\xdf\x97\x18\xa1 \xd1h\xaeb\x9b\xacb\x8b\x81\x0b\x98\xb0m9\x0c#\xc3\xb7\xc9 \x06\xb9\xc6\xed\xa7\x1c\x96\xd3\xb8\xb7\x9c\x85~\x06\x8b\x90\xb3\xd0\x94\xda<>\x0b\x1d\x12$\x7f\xf3.A\xba\xee7\xd9\xd9\x99\xb3\xd6\xbf\x0ck=+B\xcc\xc0f\xcf\xcfr?\x94\xdb^&\xa3=\x95\xc7~\xce\xec\xf5\x038\xeb\x0c\xa6zN~\xda\x0c+>1/\x9d\xb3\xd19\x1b=\x9d\x8d^\xbe\xec\x15\xca\x92\xcbD\x9aD\xa39\xd2LB\x9a\x04\xb8\x04\xa4 \xdf>\x14ir\xd9kAnj\x1a\xdb\x9f\xcb^\xcf`\x11r\xd9\x8bR\x9b\xe7\"{m\xde%\xc8Z\xee!\x91\xcbc\xb3 \xc9\x0cr\xd9\xac2\xda\xc4D\x04\xa9\x03O&$8\x0c\x86\xff)\x18\xeb\xac\x92\xde\xa3\xf5\xce-\xd0|\xf2\xe2\xa3\x8d\xe8'u\xc3a\xfb\xd3\xca\xae\x8f6\xc3i\x12\xf0cu\xcc\xcb\xd1\xfc\x0bA\x92\x1eF\x8f\x89[w\xb8\xb3\x9fXz^\x964\x94\x8b\xd0O/\x0d=\xb2\x08\x9dKC\x0b\xf22\xd3\x18\xf1\\\x1az\x06\x8b\x90KC\x94\xda<\xb94\x14\x9d\x98\xb9\xf0\x93\x0b?I\x9c\x98A\xbe\x99U\xd6 \x99\xb7\xcf\x16\xea\x9a\x9e6\xdac<\xccl\xc2Jvu\x0e\"\xf3I\x1b\xd9M\xceZ\x8e[\xe0\xa7\xe5\xf7\xb3\x878\x8da\xcf\xac)r\xdc\xb1\xb7!\xdb=b\xcfC~'g\xbcs\xc6;g\xbcs\xc6;g\xbc\x9f\xe3\"\xe4\x8c7\xa56O\xcex\x07\xe7f\x9c\xf6\xe7\xec\xf7\xaf\xce~'1c\x06\xc6{V&\xfc\x95;pL\xea\xde\xaf\xdd\xcc\xc8y\xc7\xeap\x10\x98\x8f\xdd\x8e\xb53\xf1%\xb7tO\xcbX\xc7\xc65\x8d\x9b\x16\x8b?\"\x0b\x9d\xb3$3\xd0\x96i\xa7a\xce\x92<\x83E\xc8Y\x92\x9f\xc5\x92\xb4C\xe2\xf4\x1di79\xc7\xf1\xcbp\x1c\xf1\x85\x9f\x81\x89\x98\x95\xa1X\x86\xbd\x97\xa8yf\xd5\x03.\xb3\xc3\x07\xb32\xcb\x1c\xc4\xe3\xb5\xfcl\x98\xa8eNj\x1a\x07\xb6\xc4\xbe\x08\xfbF\xbf\x87\xcc\x1a\xcd\xcc\x1eDA\xe6\xdb\x03=\xd7\x1c\xd80g\xd7\x1eL\x98\xa7q\n9\xbb\xf6\x0c\x16!g\xd7~\x16\xbbFIM\xce\xa6\xfd2lZ\xb0\xe03\xb0d\xb3\xb2g\xa1\xa3\xdc\x81\xdb\xebY>F\x85\x19\xf9\xac\xd4\x9a\x0ff\x98R[\x9b\xa1\xc8\xb3aaRG7\x8d\x17I\xabD\x98\x8a\x94\x17!\x87\xa1\x19\xc6\xa07\xb05L#\x8d\xe8u\xdb\xf5h\xba\x8e\x95\x8a\xad\x91\xdf\xefzz\xc3j~\xbf\xeby\x1f\x84\xd38\xb2\x9c-~\x06\x8b\x90\xb3\xc5\x94\xda<>[\x1c\xb9\xa7\xa5]\xcf\xd9\x8c\x8e\xcc\x9cs\xfee8\xe79pb\x06\x86zn\xe6\xfal\x80|\xa4\x91TD\xf3\xc5\xda\x98\xd8\x02\x07\x97\x072\xdbi\xad\xceQ\x94[\xecg\xc2|\xa7\x8drf&<\xa5\xb2\xc8\x8c'\x0b\x84Ly\x10\x9d\x83\x98f\x13,Q\xce\x8c\xe7\xccx\xce\x8c\xe7\xccx\xce\x8c?\x8fE\xc8\x99qJm\x9e\x9c\x19w\xa3\x13\xf5{\x1e\xf4.\xe7\xca\xa7#\xc7\x0c,\xf9\xdc\xec\xf9\x85\xad\xf9]87O\x1eV\xe3@\xf1@F;\xa8!2\xd7\xeci\xc8Q\xfb\xf87\x80C\xe8\xa08[\x9d\xb3\xd39;\xfd\xdf\xcfNO\xc0W\xd2\xc5\xf2\x10v \xb8\xea#\xcdC\x98\x10w!>m\x97\x81\xa9\xb1&\xc3\xd5|\xd6\xb86_]\x10\xac\xe1\x0b\x1bm\x07\xdf\x07\x96\x83j\x95\xf0M'z\x03\x96\x81\xd11\xb0\n\xf8\xec\xf61%\xd6l\x10\x14\x02\xacP\x88\xd6$\xf1%\xa5\xc43\xa0\xf7RQ\x8c\xa6\xea^\"\x82 \x0d\xe6\xe8\xf5\x13\xd1\x8be]\x7fF\xc8\xc5%\xcf\xbf\x86\xe3e`\x97\xd8\xe2/\x83^\xfa\x18\xc1GC\xaek8\x06\x96OY\xbd\x81\x98\xd0\xff\xbd\xd6\x81\x81\x9aIv\xe0\x0d\xfa\x8e\x0b\x93\xc4\xff\x1d\xcbY#\x08\x86q\x0e\xe3\x18~\x0d\xfaZ\x07\x82\x9e\xeb#\x00\xdbm\xcb\xb0\xa0\x83\xec\xb1\x0c\xce\x1c{\x0c\\\x07b\x96\xd2m\xb7}\x88\x80\xeb\x81k8^\xf3\xbb\xee\xc06\x81\x0e\x81\x0f\xd1\x13\xe2'\x1d\xd5\x92Q\x946\xfa\xcb`\xe9#\x13A\x868\x04U\x9dA\x0fz\x96\x11 \x13\xeaj\x08\x18\x9a\x83\xf1h\xe0C\x13\x8c\xba\xd0\x01\x0c\xb1\x07\x8e6\xd4,\x1b\xf3o\xf2\xda1i\xc0\xc6\\e\x88\xa1\xb8\xba\x03\x06>\xc6\xe4k8 ]\x01E\xd7\xb5'GW\xdb\xeaY\xcb\xc6V\xd2f\x8e\xac\xcbAV\x02\xcc \xfb4\x8d%\xef\x0cz:\xf40Ny\xd0\x1f\xd8\xc8\xa7\x84T \xb8\xb84}KH\xa9\xbcv\xdc\x066l#\x00{}4\x06\x16\x02#\xcb\xb6\x01S\xa5\xe2\x06\x02\xb2M\xdb\xc2\xa8\xaa\x8fI\xc6'\xa0\xf5\xfbO\x88\xa1\x86;p\xd0w2\xf3%\xe3)\xd7\xf2s\xc5V\xddum\xa89\xcb@$n\xb6\x18\x9d\x08\xb5s\x01\xf2\x06\x10\xe0/\x96cZ\x86\x86 %\x81\x1c\xfa\xe0\x82\xecp\xb5\x1c\xc3\x1e\x98pM\x03\xa4\xb1\xe0\x9aD\x1c+-\x04{>\x08i%\xf1m\x8c\xc0\x8e\xb1\xf3\xe3\xb1/\xaf\xc5\x06\xe4bZ\xe9A\x9f\xe9\xe6 \xe1\x8d(5&\xc62\xa0D\xd7\xea8\xae\xc7\xd1\xe65:\x9d\xb9ptYZ \x0e\x9d<8\x84\x9e\x0f\x97\x8c\xa4\xac\xd5_\x00A\xd9L\xe3\xc8iEdN\xf3`\x06\xa93\xa1o0\xb1\xc5\xf5L\x18(w\xfa\xbb\x17\x96c\xc0-@\xf5\xd8E\xdf\xbc\x06\x8a\\)O\xc7\x94\xdc\x92\xba\xa0=d\x9a\x11/\xb7\xa4>\x83E\xc8-\xa9\x946=\xb9%\x95\xe9U\xc2\x8er\xeb\xe9/n=\x0d\x11\"yFM\xfc\x9cd1\xdd\xfb\xff\xd9{\xf7\xe5\xb6q,\x7f\xfc\xff<\x05\xca[\xb55S3\x89|\xbf\xf4t\xe7W\xbe%qg\xdcI\xc7Nz\xa6\xa7\xa6T\x10 I\xb4)\x92\xe6\xc5\xb6\x9c\x9a\xae\xefs\xec?\xfb\x8a\xfb\x08\xbf\"@R\xa4D\x11\x00\x05\x8a\x90tv\xa7\xd4\xb1D\x80\x00\xcf!\xf09\x9fs\x81m_>Z&q\x0c\"\xe8,-\xb4\xc8MZ\xceOZ\xe8\xa5\xe2\xa7\x9c\xa4\xda\xf5\x8e\x16F\xc5s\x8c\xe6/\xa6>\xd1\xdc\x17\x93\xac\x1f\xdbF$\xf9R\xda\xff\xa9\x9f? \xf8X\xf9\xb6\xc0\xc7\n\x9afj\xf5\x13\xf8X\xa9\xb6mP\\\xc0\xc7\x02\x1f[\xabm\x1b\xca\n|,\xf0\xb1J\xe8.\xe0c\x81\x8f\xd5ZA\x81\x8f\xdd\x02>\x96K\x03\x02\x1f\xabP\x08\xc0\xc7\xb2\xb5I)\x1f\x9b\xf2.\x19\xf5\x96~\x01l\xeb:\xb2\xad\x15\xe2\x9e\xdd_*?\xab\xb8TI\"U\x01\x8b:\x8fB\xd5\x90?\x15'O\x8b\xcc\xe9\x0cm\x9a\x8a\x0e\xf5pl\xfc\xbb\xce\xe4\x9b!\x0e\x86\xd2L\xaa\x9e\x99$\xe9\x9c\xba\xf1\x9cT\xc0\xd5B\x87\xe9\xf5\xe6\xdaf\x90\xc8\xb5]>\x0f[\x10G!\xe4\x9a~\x91Xm\xf1#'\x01\xdd\xbc3G\x01\xc0\xe2\xa6\xb7B\x1e\"\x03X\xac\x81\x10\x00\x16\xb3\x95f9\xb0\xb8\xf3\xbd\xb0`\xc1\xb9\xf9\x9b\x05\x93g\xc5/\x00\x95Ea\xf3\xa9m\xbbOX\x1c7\xe7\xae\xcfMO\x0e8\xe7\xfa\x98\xfbCN\x1e\xedB\xe7\xdc\x98x\xd8yri\x1av\xc0\xfeL\xc8\xb8\x00\xf5 A\x03\x1f;\xf1\xca\x17\xba\x14d\xb0? \xea\x8ds\x7f\xb6\x9d\x91\xad\x00B'\x13Q\x01\x9e\x93\xae\xd6\x1f6/\x02i\x93\x87\x94\xfa\xc1rG\x1b\xc5\x7fF\x01\xf1\x99nY\xce\x00a\x07\xe1L7\xd9\x15\x96\x8f\xfa\x91c\xca\xe5\x11\xaa2\xb7\x92w@\x9d\xae\x10\xd0\x15\xbe\xae\x90*]\xe9\x91XQ\xd2\xb5jZa\xb0\xe3\x86C\xe2\xd3K\xff\xfb\xbf\xf6N\xfe\x16\x08k\x0f\xd8G\x0bb \x1e4\x07\xfbH\x03!\x80}\xc4\x96\"\xa5\xf6Q\x9f\x10\xba e\x009[\x93:\xdf\x93\xed\xef?\xe9\xbf\x08\x18Iki$\xc9\xea\x80\x80u$m)\x89\x16\xb6\xca7\xc8\xcd\xb2\xa6\xad4S\xcc\xaa\xbc{]\xac%\x81\x02V\xb9k\x8b\xf6R\x90\x19L\xd8\xb6'fQ\xc0\xcedX\xab\x12\xb0\x00}\xa7Z5\n}\xeb\x02SH\x05\x80T\x00\xc5.(H\x05\x80T\x00\xd9\xb6mDWC*\x00\xa4\x02\xd4j\xdb\x86\xb2B*\x00\xa4\x02(\x89\xb4\x86T\x80&\x8c\x1dH\x05P\xa6\xa0\x90\n\xb0\x05\x9c>\x97J\x06N_\xa1\x10\x80\xd3gk\xd3\x928\xfd\x00\xa8\xfcM\xa5\xf2\x83\x86\x18\xfc7o\xe2\xff\x85#\xefu\xf0\x84\x07\x03\xe2\xbf\x1e\x10'\x1d\xce\xc0}\xccFB)\x967\xc9Eo\xee\x02\xd7\xa1\xc4\x9e(\xf1\xaf\xe0>\xb9G)\xe7/Ppo\xe5\x1d\xe6t\xad]\xef\x84\x82\xb9\xf0\x9c\x1a\x8b\xdf\x82\xfaB\xd8\xbf\x0b\xd5j\xbc\x8c[Nm\x89\x81\xfb\x88F\xae\x19\xd9\xf2\x15l\xf4\xf4\x86\xb0\x03\xd9\xbb\xf1\xbe\xa3\xc62\xc8\xba\x03\xafH\x955\x91{PY6\xc4\xd3\xd02\x86y\xa5\xcb\x1f\xd5\xf1\xd7\x94\xf7K\xf8\xba\xff~\x88\xdc\xf0o\x8fnh9\x03\xf6\xef\xbf\xbeb\xff\x0d\xb1m\x8f\xb3o\x91\xeb'\xd7\x9a\xc4s\x03+d\x7f\x08X\xa3`c,\x88%x\xf0\x16l\x0c\x0d\x84\x006\x06[\xb1\x94\xda\x18\xf9]\x97\xadt\x9d\xef\xb9\x15\x0f\xcc\x8b\xb54/\xf8R\x17\xb0&D-\x8b\xcf\xbe\xeb\xb9\x01\xb6E-\x84\xdc\xf5\xb9Y\xc9!\xfd\\\x1fs\x7f\xc8\x89\xa1]\xe4\x9d\x1b\x13\x0fAO.eH8\xfd\xb3\x08\x86\xb3o\xb3D\xe4\x81\xf5H\x1c\x14\x848\x8c\xe4\xa3\x834\x0c\xe3Hf\xd8e3R\x82\x87\x8b]\xeaJ\x93\x97\xe0\xda\xaa\x9b\xd3\xc69\x7f\xe3\x05\xdbC\x7f\x98\xf6,\xa2\xf9\xc30\xee\xaf\xbf\xdd\x86\xc90\xee?\xbe;\xfd0\xdaz\xcb\xa0\xe9\xe7/\x9f>\x7f\xba9\xfd{\xf7\xe6\xf6\xf4\xf6\xebM\xf7\xeb/7\x9f/\xcf\xaf\xde]]^\xb0\x0bj\x8f\xf3\xd2\x89F\xe9\xbf\x7fX\xca\x18\xd5\xf4~q\xf9\xf9\xd3\xcd\xd5m\xf7\xf3\xe5\x97\xabOM\xdc\xe0\xdb\xa7\xdb\xab_\xde7\xd7\xff\xe7\xd3\x9b\x9bF\x9e\xcc\x97\xcb\x9f/\xcfo\x1b\xe9\xfa\xdd\xe9\xd5\xdfg:^\xc8\xe4+\xae\x05\x85$\xf8\xe4\xab\x84e\xc8\x96\xda\x04EF\xf6\xdbW?\xda\xd6\xdb\n\xad\xfb\x01U\xfcX\xb8U\xeaS\xa77\xf1\x02v\x94\x1e]\xc0;\xb6U~\x9f\xa2\xfe\xcd\xde\xaa\xf8{v7\x9cM$\x9d\x9f\x19\xf9i\x18Ub\x8d\xbe\xf2\x88o\xb9f\xc5\xcd\x0b\xba9{\xef\xc2\xcfb\xb7fF3\xff\xceLkgo\xc9\xbe\xaf\xb8\x17=\xeb5\xfb\x92z\xac\x878x\xe5\xe1 U7L\xb5y\xf6\x96\xe9/\xf27\xed\x11\xe2 \x9f\xdcQ#\xa5\xe2\xdeL\xddg\xef\xcc\xbe\x97\xbfo\x1f[\xf6\xe4\x86\x1d\xaa\xc2Ul\x83\xd2\x9d\xfc\xd1U\x94\x08I;Z\xa1]\xbb\xe6\xd2D\xa7Y<7\x96~\x93\xe6\xa9\xf5]\xbftaZ\x9a@\x93\xd5\xc2U\"\xd4\xac\xb3\xf5\x17l6\xd5\xa9-\x80~\x9b\x8a\x97\x04\xa8\xef\xbb\xa3v%\x0c1\xd4\xf2m!\x86\xba\x15\xfd\x84\x18j\xa9\xb6m\x84\xa5B\x0c5\xc4P\xd7j\xdb\x86\xb2B\x0c5\xc4P+ Q\x85\x18\xeafB$ \x86Z\x91\x82B\x0c\xf5\x16\xc47\x14\x95\x0f\xe2\x1b\x9a\x15\x02\xc47\xb0\xb5\xa9\xb9\xf8\x86\x941\xc9\xba\x80\xa0\x86u\x0dj\x98\x88zv_\xa9\xfc\x14\x89d\x90\x0cdP\x10\xc70/\x8cA\xc3(\x06\xf1 \x86b\x0cC\x16\xc2\x90y(L\x12b+\x1f\xc5\x90^zu!\x1d\xc3\xa0iLo\xeah\xb4L%Hu\xd2]z\xf5\xfa\xc6\xf4\xca\xb5m\x83-\xc8\x89\xa3@\xeaG\x8e\xf5\x10cis\xda\x8b,`4\x01\x14^p\x0b\xe4\xa10\x80\xc2\x1a\x08\x01\xa00[b\x9a\x87\xc2\x9d\xef\xb9U\n\xa2}7\x07\x18O\x0b^\x00\x1a\x8b\xc2\xe4\x0b\xe6\xb4\x16\x8d\xf7\x9d\\\x9e\x9b\x96\x1cL\x9et1\xef\xfb\x9c\x14\xda\x85\xc9\x93!\xf1`rv%\x85\xc9\xe9_\x85H_3\xfd\x92\x86\xf6\x04\x963\xb0\xf3h\x0202`d\x89\xb6\x9b\x80\x91W+\xcc\x1d\"m\xa4\xdbB\xa4M\xe5\xbb\xd1\x94~B\xa4\x8dT\xdb6\x96Z\x88\xb4\x81H\x9bZm\xdbPV\x88\xb4\x81H\x1b%\x81\x0c\x10i\xd3\x88Q\x06\x916\xaa\x14\x14\"m\xb6\xc0\xbd\xc0e\xb5\xc1\xbd\xa0P\x08\xe0^`k\xd3\xb2\xdd\x0b\x9d\x94\xaf\xccz\x06?\xc3f\xf9\x19r\x1a0\xbb\x0bU~\n8\x1c\xe4\xfc\x0d\x8b\xbb\x1b\xe6x\x1b\xf4s6\x08\xfb\x1a\n\xae\x86\xcc\xd3\x90\xf8\x15\xd2\\D\xcb\xe9\xbb\xfe\x88\x81Z\x16\x9a\xe3eq9\x7fM\xaf:5\xcd58\xa8\x15|\x0f2\xa0x\xd58\x86&|\x0f\xeaM\xadf\x13\xaa\xd7W\xff\x16\xd1\x8cF\x93\xb1\xc1\xc6Z\x10D\xf1\xe0=\xd8X\x1a\x08\x01l,\xb6\xd6\xb4fcu\xbeg\xab\x18\xc4um\xbc\xbdU\xd4\x06\x01{K\xd4\xf6\xba\xc5\xb6=\xfeB\x99JA\xfb\xab\xd0\"7c9\x1b\xac\xd0K\xc5O91\xb5k\x8b\x15F\xc5\xb3\xc7\xf2\x17S\x9b,\xf7Ef\x97Q'D\xfc\xfdTe\xa7G7\\\x9b\xa2\xe7`\x80\xd5\x06\xc0rm\xd7\xc5\x00\x03t\xbd\xe0\x96\xc9\x03v\x80\xae5\x10\x02\xa0k\xb6\xc4,\x1d]\xd3\xfd\x16\xe0\xf4\xa6\xc2\xe9D\xfc\x02\x98Y\x14?\x7fsC\"\x9a)\x91\\\x9b\x9b\x96\x1cfN\xda\x97~\x99{\xfe\xed\xe2\xe4d<<\x84\xcc.\xa3\xd8\x98\xfe3C\xc5\x8f\xf4/\x8a\x88Y\xd5s\x0f\xf2!\x00\x12\xd7i\xbb \x90\x18\xf2! \x1fB\xb1\nC>\x04\xe4C\xc8\xb6mc\xa9\x85|\x08\xc8\x87\xa8\xd5\xb6\x0de\x85|\x08\xc8\x87P\x12n\x0e\xf9\x10\x8d\x18e\x90\x0f\xa1JA!\x1fb\x0b\xbc \\\x12\x1b\xbc \n\x85\x00\xde\x04\xb66-\xdd\x9b@\xb9\xca\xac[\xf0&l\x987!\x11\xff\xec\xfeS\xf9\xc9\xf3&H8\x13\x16\xf4%\x94\xb9\x124\xf3$\x889\x12&~\x84\x82\x1b\xc1,\xc9up\x9dB\xba\x03=}\x0b\x92\x1d\x02p,H\xb4m\x83@h\xc2\xb1\xa0\xde\x8ej\xe68\xc0\xf5\xd5\xbbE4b\xf6(\xc1\x85O\x12\x04siAH\xc4C\xea`.i \x040\x97\xd8\n\xd3\x8e\xb9\xd4\xf9N\x17.\xc8i\xd8l\xb3i\xa2\x06\x02&\x93\xa8\xf9t\xea8\x11\xb6?\xfb\xee\xa3\x15+\x87h\\\xd6l\xb3\xdc\xa4\xe5\xcc\xaa\xd9\xaex\xbf\xe7d\xd6\xae\xb95;4\x9e\xe95\xd3\x82\x9aa\xd3\xdf\"#\xf2}\xe2\x84hd9\xa1\xe5\x0c\x10\xa6\x17\xc4\xc0$\xbd\x82\xba\xac\xca-0\x80\x1d\x02K\no\xc7\x03\xd8\xa1\x81\x10\x00v4\x00;\xe25%\xdbp\xd8\xc2\xd2\x9d,,\x801\xd6\x11c\xf0d.\x00\"D\x01\xc5\x95\xd3\xb7\xe9\xbf\x04\x91D\xee\xfa\xda\x10\"\xd7\xc7\xdc\x1f\xb4\x01\x0d\xb91\xf1\xd0\xc2\xe4R\n\x13\xb2?\x13/0\xa30\xa6\xb1\x82\x95]\x05\x18a\xb1%\x81\xb7=\x01F\xd0@\x08\x80\x11\x9a\xc6\x08\xd9\x82\x02\xd8`\xed\xb1AN\xd6\x028@\x14\x13\xbcy\x13\xff/\x1cy\xaf\x83'<\x18\x10\xff\xf5\x808\xa5\xf7\xa7\xf1\xf0o\x92\xab\xde\xdc\x05\xaeC\xfd\x84\xa2\xb4\x84\x8a\x1b\xd5F!*n\xae\xbeGmp\x8f\x8a\xc9\xf0\x00\x93\x82{\xb0\x13:\xe9\xbf\x0b0\x8b\x85k\xd2@\xf6~\x86\xb5\xbc\xcc\x89\x0d0\xab\xf6\xea\xca\xdb\xe1\x01fi \x04\x80YM\xc3,\xba\x96\x00\xff\xb2\xfe\x18+\x15\xb4\x00\xa8R\x02\xb0\xd8\xfd\xf8;\x9f\x02\x88%|\xabf@\x96\xf0\xed\x9b\xe8s5\x80\x96\xf0t\x16\x82Z\xa2w\xc9\x83\xad\xec\x94G\x14x\xc4\xb0\xfa\x961\x81W\xac\xb8\xc1\xc85#\x9b\xfc5)r`\x85\x01\n\xa2^\xe0a\x83 \xec\x98\xaf\xee\xc9X:$Q\xbf\x8c\xeftJ*B\xc2\xd2\xbe\xb2\xfdum#\xbb2E\xc8\x07w1}A\xa1Kuk\xccb\xbb2\x95\xea\xbb\xbe@|\x97\xfa\x80?Ey\xfc+\x93\xbc\xbf\x88X\xef\xc9\xb8 \xd1\xf8\xef4h3\x13d\x92 \x95\xaa\x80\x80P!hoA\xb0\xc6\xb3\x16\xc0d\xd3@\x08`\xb2\xb1UF\xa9\xc96\x85l\xc0h[_\xa3m\x8e\xa8\x05L5%f[`\xe3`h9\x03>\x8aV`\xb8I\xdc,\xf7\x10\x15\x9an\x12\x03h\xa6\xd7\x9c\xbeil\xbeILh!\x03N\xfc>e&\\\x01\x9f\xd1\xcati\x7f &\x07\xb2\xbc\xee\x8a\xcb\xdb\xf4\x01yi \x04@^\x0d \xaf\x99% \xb0\xd7\xfab\xaf\xb9\xc2\x16@\\\xa2\xe8\xeb\xc6\x1a8\x963\xb8r\xfa\xae(\x86*6\xa9\x8d\x84\x8a\xddT\xfd\xa6\x0d*)\x0e\x8b\x87-\nWS\x84\x90\xff&w\xcc\x1e\xfd\x92\xe6\x9cS\x8a\xd7\xb6\xd1#\xb6-\x13\x87\xae\x1f\xac>\x97\x0b\xd5;\xe5\xdbB\xf5\xceJ\xea\xb2)\xfd\x84\xea\x9dRm\xdb\xa8g\x00\xd5;\xa1zg\xad\xb6m(+T\xef\x84\xea\x9dJ\x8a#B\xf5\xce&\x9c\xd0P\xbdS\x99\x82B\xf5\xce-\xe0W\xb9\xb4\x1e\xf0\xab\n\x85\x00\xfc*[\x9b\x9a\xe5W\x13v\xa6k9}\x17h\xd6\x1f7\x82f\x9d\x92\xf9\xecNS\xf9)\xc8\xb6\xca\x93\xadj\xb8\xd6\n\xaaUO\xa6U\x8ah\x9d\xe1Y\x0b\xee\xd8i\xaa\x95\xc5\xd0\x1a\xae\x13\xa4\xe5\xefd\xe9V\xb5\xd5\xabB\xbe\xd3\x8c\xc2M\x90\xb4X\xfa\x1a\x1c\x84+\xe2\xac\x80P\x1aE^_\x08\xa5\x81P\x1a\xd9\xb6mD'@(\x0d\x84\xd2\xd4j\xdb\x86\xb2B(\x0d\x84\xd2(\x89T\x80P\x9a&\x8c'\x08\xa5Q\xa6\xa0\x10J\xb3\x05\x9e\x07.\xe1\x0d\x9e\x07\x85B\x00\xcf\x03[\x9b\xd4z\x1eB|\x9fg\x9dstb\xe7{\x91\xee\x01\xc7\xc3\x8fk\xe9x\x90\xd2\x80\xd9]\xa8\xf2\xb3\xca\xef\xf0\x85\x98\xd2\x0e\x87\xa96\xb9\x99\xcay\x1a\xa6\xfa\xa9\xfc1'\xa2v}\x0bS\xe3\xe29\x15\x8a\x97SoB\xe1\xab\xcc\x8d\xe0\x93)'\x02s!\x80\xe3\x00\x1c\x07\xe08\x10\xd5S\x05*\x1a\xf8F7\xcb)V\xa6\xa6\xb3\xbd\xeaj\x9e\xa9S\xb7\xd99\x17T.\xfb)\xafr\xd9*HP\xdfwG\x02\x8a\xa7T\xf8f\x106 \xfc\xd9^\xd7_\xf8\xb3s\x96\x12~\xe8.[\xf4\xe00\x94o\x0b\x0e\xc3V\xf4\x13\x1c\x86Rm\xdb\xf0\xc1\x80\xc3\x10\x1c\x86\xb5\xda\xb6\xa1\xac\xe00\x04\x87\xa1\x12\x7f\x0c8\x0c\x9b M\xc0a\xa8LA\xc1a\xb8\x05\x0e\xc3\xa2\xf2\x81\xc3\xb0Y!\x80\xc3\x90\xadM\xcbp\x18\xba\xfe\xac\xb7\xa8Sp,d\xb7\x01\xef\xe1\xfa{\x0fE\xd4av\x7f\xaa\xfc\xacr%fY2_\x9d\x9eK7\xca\x05r\x99\xca\xfb\xc8=\x169W#\xa7_\xa9\x8bs\xf2n\xd7\x15\xc9\x19'\xcf5Y\xdd\xbc\x98\xf8TvI!\x03*J/\x98\x93\x0b\xf5\nr\xa1D\x919\xb84E\xd7Spi\n\xa9(\xb86\xe4\xdb\x82kC\x90\xe5P\xab\x9f\xe0\xda\x90j\xdb\x06[\x0c\xae\x0dpm\xd4j\xdb\x86\xb2\x82k\x03\\\x1bJ\x98cpm4a<\x81kC\x99\x82\x82kc\x0b\\\x1b\\F\x1d\\\x1b\n\x85\x00\xae\x0d\xb66\xb5\xe6\xda\xc8H\xc7.\xb88\xc0\xc5\xc1S\x8b\xd9\xfd\xaa\xf2\xb3\xca\xd5Q}\x16\xea\xd4Pg\x8fB\xcdh\xf5o\xd9\xe1e\x82\xfe\x91&n\x9c\x13\x84\x9cS\xa5\x89\xc14\x7f\x87\x9c.\xb7\xeb\xbeibr<\x9fO\x03\xf7,:\x8a&?\x14\xdcC\x93S\xfaX)\xdf\xd8\xa8\x99\xaa\x91\xf7\n\xfcB\xe0\x17\x02\xbf\x90\xa8\x9e*PQ\xf0\x0b\xc9\xb7\x05\xbf\x90 E\xa4V?\xc1/$\xd5\xb6\x0d\xaa\x1d\xfcB\xe0\x17\xaa\xd5\xb6\x0de\x05\xbf\x10\xf8\x85\x94\xd0\xee\xe0\x17j\xc2x\x02\xbf\x902\x05\x05\xbf\xd0\x16\xf8\x85\xb8\xee\x08\xf0\x0b)\x14\x02\xf8\x85\xd8\xda\xd4\x9a_h\xc26\x823h\xd3\x9dAy]\x98\xdd\x99*?\xab<@\xb3\x84\xb7\xa0\x07\xa7\xacan\xf6r\x1e\x98\xb2\xce\xf8W\xe4\x04\xd8\xae\x07\xa4lp<\x0fFI\x9b9\x1e\x88\xcc\x011)64\xcf\xf70\xb9\xe4\x95\x87-\xbfe\x17\x84\x02\x00\x0d\xde\x07y\xd0\xbd\x1a\xde\x07\xf5\xc6\x96\xfa\x82g\xe5\xc5\xce@W\xcatE\xb6H\x9a\x8c\xae\x80\xb9\xb5 \x8a\xe2!}0\xb74\x10\x02\x98[l\xa9\xd1\xc0\xdc\xea|/.gP\xad\x1c\xec\xaf*\xe5\x100\xc2D\x0d\xb2\x0fV\x10\xba\xbee`\x9b\x9d\x84/d\x8cM7\xca=\x069Cl\xba\xa3\xea_s\x12l\xd7\x00\x9b\x1e\x18\xcf\xf8\x9a\xba\x9e\x1a^\xc5\xef2\xa3+\x060\xc3\xec\xa7i\xcbkH\xe2\xd7\xbce;K\x15\x80f\x93Q\x01\x9cYO\xeb\x0f\x98\xe5\xda\x96:\x88\x9b\xf5\x0f3Adh\x1c\x87\xe8ih\x19\xc3Do'8\xbcD\xcb\x01\x977\xbf\xbb\xf2 !\xe0r\x0d\x84\x00\xb8\x9c-6\x8d\xe2\xf2\xc9\xe2C\xcf\xa8\xef|g+\x14\x00\xef\x8d\x00\xde\xf3\xa5/\x80\xa6E\x91\xf5\x829\x03\x14\xa6-)\xbf%\xbdW\xee\xa9\xca\xe1xE\xf7o\xa4\xd3\x9c\xfa\xb5k5(\x9a\x0f\xcf\xd8Ps\x1bj\xa3LL\x85\x82}\x92t\x82\xbc\xec\xe7r\x8b\x040\x99\xc0\xc2\xcb\x83\x03\x80\xc94\x10\x02`\xb2%`2\xba\x9c@\xe8\xc9F \xb0T\xd6\x02\x18K\x14o}v][\x10.\xb1Kk\xa3\x1d\xd6\xbc\xec;m\xb0\x06\x1b\x0e\x0f*\xd0\xab\xd8N\xef\xbava\x8f\xf7\xe2/\x18/\x03[{\xcd7\x9a\xb7\xab\xc0\xd6\xae\x81\x10`k_\xc6\xd6\xee\xba6l\xec\x1b\xb1\xb1SI\x0bl\xe5\xa2\xdb\xbat\xad\x0f%5:\xe6\xd7\xd6\xd0\xb2&\x86L-\x8b\xe9\x1a\x14\xfc\xd2\x134 k\x84CcH\xa1\x01sE\x06!\x0e#\xf9\xaa\x13\xfa\xa5\xf3\xb3\x89\xa8pC\xb2\x9e\xb25_kW\"}\xf1jz\xf9\xd8<\x11qbi\x15\xa3\xeb\xf2jC5\xc6r\x06i-\xfbLe\xb8\x8e>\xa5\xf2\x85r\x0d\xf2m\xa1\\C+\xfa \xe5\x1a\xa4\xda\xb6\x91\x01\x0f\xe5\x1a\xa0\\C\xad\xb6m(+\x94k\x80r\x0dJ\xb2\xe1\xa1\\C\x13\x01\x90P\xaeA\x99\x82B\xb9\x86- \xce\xb9|-\x10\xe7\n\x85\x00\xc49[\x9b\x1a%\xce\xa1$\xc3f\xd1\xe7\x0d\x95]\x90\xad\xb6\xa0\xa2\xc8\xc2\xdc\xda\n:\x96T\x90\xa8\xa40U@A\xa2n\xc2Lb\xb24{\xaeg\"\x0fd\xc2\xcbc_ul\x1a\x1dR| \xc5G\xb6m\x1bY\x13\x90\xe2\x03)>\xb5\xda\xb6\xa1\xac\x90\xe2\x03)>J2( \xc5\xa7 \xe3 R|\x94)(\xa4\xf8l\x81C\x84\xcb\xc3\x83CD\xa1\x10\xc0!\xc2\xd6\xa6\xd6\x1c\"e\x046$\xfb\xfc\xb8\xe9N\x8f9j1\xbb_U~V96N=\xcf\xb6\x88\xf9\xd9\xc6\xa2Ai\x85\x16\xb9\xa9\xcb9-\n\xbdT\xfc\x94\x93W\xbb\x0e\x89\xc2\xa8x\xee\x87\xfc\xc5\xd4\xd9\x90\xfbbrb\x1d\xf2|\xf2h\xb9Q`\x8fc\xdb*\xbe\x00E\xde\xc0\xc7&A^|e/6\xd0\x02\x14c\xc15\xf110X\xbb80\x8e?\xc1\x9fP\x85\xa2\xe3'\x94\xd2\x05\xf4\xdf\x89\x91\x96*\x1aU0\x85~\x04\x00\xc3\x02\x1b\x1b\x0f\x87\x01\x18\xd6@\x08\x00\x86\xd9\x12\xa3\x14\x0c'\xfbZ\x86z\x92e\xa8\x1b/C\x9d\xef\xf1\x02\x05)\x19k w\x85\x04/\x00bE\x01\xedy\xe4\xfb\xc4 %\x00m\xa1Enrr\x80\xb6\xd0K\xc5O9\x89\xb4\x0bh\x0b\xa3\xe2\x01\xda\xfc\xc5\x14\xd0\xe6\xbe\xc8\x00m\x0c/\x0c\xf6}\x01\xc7\x96cW\x00\x0c\x02K\x03o\xaf\x02\xc0\xa0\x81\x10\x000,\x010$\x0b\x0b\xdd7\x00)l\x02R(J\\\x00\x16\x88B\x84k\xd7\x8cl\xf2\x8di\x81h\xf4\xeet\xa3\xda@a\xba\xa3\xea_\xb5\x81\x0b\xd3\x03\xe3!\x86\xa9\xeb)h(~W\xc0\x0d\xb6\x15P?\xf2\x88^\x92\xbe\xa2\x01\xea\xfb\xee\x88\x1e\xc2_\xc6\x80\xe5&\xd2\xff\xed.\xb8\x19\xa2^\xf4\xf1\xd3u_T\xa5\xfb\xc3\xa7\xb3\xaf\xe7t!\x16\xf5\x0f2\xec\xb2\xbc\xa0IU\xc4\x1b{\xae]U\xfc[\xae;]=\xd2\xea\xa8\xb4\xdcdY\xb0\x18}\xb4\x13\xf2\x0c\xa3\xc0#\x86\xd5\xb7\x8cD}_\x19\xf1\xfe\xed\x04Q\x90*r^\x8f\xd1\xdf ~dA\x8eV\x90\xc4\xe12\xfd\xbeN\\5\xf4\xb5E\xa3(\x08Y\xc2\x87\x13\"+~\xb1\x1e\"\x12\x84\xf1\xf2A_\xee$\x94$\xe9\"rL\xe2\xa3\xa7\xa1e\x0c\xd9\"2\xbd\nY\xf1?\\*>0Q\x1b\x06\xa4<\xeb\x08LT\x0d\x84\x00&*[\xa9\x1a5Q\x93\xbf\xcdn\xb6\x1cu\xe9r\xd4\xf9\x9e\xdb\x8d \xd0d#,WQ]\x100b\x173hc\x00I\xa3^\x0c\x16\xbf\xdd\xb1\x9c\x90\xf8t\xd7\xedb\x83f\xbf\x05\x1d\xc3uB\xdf\xb5m\xe2O\x00f\xdeH\xa0(Q\xd4W\xb5\x84q\xe4d\xa3\xc2\xd0U:\xb6\xa5\xdf0\xa7\xfc:\x1a\xc0J\xe7Z\xcf\x18V9\x04j\x18\xb3\x7fOb\xe9m\x1by\x99!\x95\"\xdc\xab\xf3S4\xe9\x14\x05Q\x8f\xd1Y\x10\x90T{\x0b\xe1\xc1\x1c\xc0\x9a\x1a\x08\x01\xb0\xa6J\xac\x99\xac]\"k\x16]\x82\xc03\xb2^\xf8\xb2\x86\xfc\x05p\xe4\x120\xe5\xd0\x0d\xc2v\xd1$\x7f\x04m\xe0H\xfe\xa8\x96x\xabu\xc0\x8e\xfcY6\x88\x1a\xb97\x97\xc3\x8bqw\x80\x14\x15l\x06<\x90\x02HQ\x03!\x00R\\\x1aRL\xd7)\xc0\x88\x9b\x86\x11\xa7%/\x80\x08E\xd1\xe1\x05q\xdc\xd1\x07\x1c\x0c\x05\xb1\\\xee\xfa\xda\xc8+\xd7\xc7\xdc\x1f\xb4A5\xb91\xf10\xc8\xe4\xd2\xe4\xbc\xd6\xe4\xcf\\\xc1\x063\xfe.\xad_6\x8c\x7f\xb3\x9c\xbe\xeb\x8f\xe8\x17kR\xa2!\xf4\xb1\xa1$F\x9cv\xb4\xfe\xae\x7f:\xc6\x9a^\xf9[Z\xb2,\xa7S\xf4\x99\xa1?\xfd\xcbs\xfd\xb0k\x99\xff\xee\xfc\xcb\x18b\xc7!v\xfc\xc7\x9f\xff\xd2\xf9\x17\xbd\xfa\xdf\xe0To|\x9f\xe2!'\x80\xaf\x1a\x08\x01\xe0+[h\x14\xc3\xd7\xd0\xc7N\xd0g\x94\x16]p\xba\xf1^G\x82\xcew\xba>\x81\x03}M\xc1+_\xee\x02pU\n\xba\xde\xc6\xfd\x8a\x12\x91\x85\x16\xb9\xb9\xd5\x80\xafi/\x15?\xe5\x04\xa2\x01\x84MG%\x04b\x93\x8b'0\x96}Q`\xbffaG \x0d`\x15\xe7:*\x00\xafp@\x84|[8 \xa2\x12I7\xa5\x9fp@\x84T\xdb6j\xee\xc3\x01\x11p@D\xad\xb6m(+\x1c\x10\x01\x07D(\xa9\xbf\x0f\x07D4A\xab\xc2\x01\x11\xca\x14\x14\x0e\x88\xd8\x02\xa2\x95\xcb\xef\x01\xd1\xaaP\x08@\xb4\xb2\xb5\xa9q\xa2\x9511@\xb0n\n\xc1\x9a\xca{v\x87\xa9\xfc\x14#V\xa5yU%\xb4\xea|VUKRU\x86S\x9d\xa6T\xe7\x85\x0607\xee\xfa\xc5\x06\x0cYt\xc4\xc2\xb05\xee'\xbd\x0c\"\x03\xca0.\x0d.\xf9\x93\xe5\xa0!yFL\x8d\xfe\x9c\x9aQ\xb6\x8b\xe2\x95\xce\x8ag\x06\xa8\xbc\x99xN\x92\xd53^\xa7]\"HJZp\x91\xe6a\x06\x00n\x1a\x08\x01\x80[\xe3\xc0\x0d\x92\x906\x05\xab5\x90tt\xceR\x12D\xb1\xd5\xe4\xf2\xda\xc0h\xd2\xc5\xbc\xef\xb5\x81$\x93!\xf1\xf0Dv%;P+\xf9\xab\x00\x07hR\xf2\xd992\xd2\x1f\xdd>\xc2I\x9dUYF\x11\x825s/\xaeF,\xa1\\[\x08\xd6\xacd6\x9b\xd2O\x08\xd6\x94j\xdbF\xfc\x1b\x04kB\xb0f\xad\xb6m(+\x04kB\xb0\xa6\x92X8\x08\xd6l\xc2\xcf\x0d\xc1\x9a\xca\x14\x14\x825\xb7\x80?\xe5\xd2v\xc0\x9f*\x14\x02\xf0\xa7lmR\xc7\x9f\xb2\xf3_\x18 \xd3y\xdcI\xff \x04\xea\x8fkG\xa0\xce\x17\xf5\xec\xbeR\xf9)\xc0\xa0\xca\x11\xa8\x8b\xf3\xa7s\xe8S\xfd\xd8Sa\xf2\xb4\xc0\x9dN\xa8S\x87\xb2\xa6\xc9\xd7\xd2L\xa9\xda\xd8K\x05ptR\x03H\x05\x0c\x9d\xf4\x96^lB\x08f\x99i\x95hU\xe4X\x0f1b5\x89\x13Z}\x8b\xf8|\x9c\xd9\x80E\xc2\nB\xa9\x90\x7f\xd2\x15\x08\xbfJ\xf8\xf1C\xaa#y\xb00\x16D\x16\x18W\xcb\x95{]\xe3J\xa9\xd0}\xf2h\xc5\x88\xa7\xcbBBU\x08\x7f\xaa\xcb\xf5W\x02\xb9\xb6m\x04\xa6\xa7\"\xc9\x05\xfe\x96\xec\x802\xaa\xa7\x8a\xd1\xc9\x94eHb\x1c\xaeT\xffX\x97\xa0\x7f\x1a\xe9\x1f\x13Im\xfd\x03^iA+\x91Gi\x00\xaf\xa4\x81\x10\x80Wb\xcbJ\xeb\xbcR\xba<1\x16\xa1\x93\xaeb\x9d\xefS\x10\xe7?\x1d\xb6\xae\xe5~`_\x80/\xffG\xa0\xa3\xd4\xe9\xd2\xec\xceX\xf9Y\xc5b\xfdB\x9e\xc3\x1b\xf2\x10\x11\xc7 _\x88A\xacGQ\x0e\xab\xb4e\xee\xf9\xc91X\xa5\xbd \\\x92S\x82v\xd9\xab\xd2\xd1\xf1\xb8\xab\xb2F\x94\xb9*\xf9!\xc9\x9f\n&\xf9\xf6~\xf2C\x90\\H\x99+\x8c\x06\xd6#qRb\n\xc8( \xa3\xea u%d\x94*\xe3\x10\x18\xa9\xe5\n\xbf.#\x05f\xd9\x82h\x89g\x11\x80Y\xa6\x81\x10\xc0,c\xcbH\xdbf\x19-I\x94b\x1f0\xb0\xc0\xc0*\xd3\n\x01\xf3H\xd4T\xfa\x8c\x8d{\x12\x9e\x1a\xf7\x8e\xfbd\x13s@F\xc4 E\xcb\xe4\xcdk\x9c{\x1er\x06\xd3\xbc\x0e\xc5\xae\xca\x89\xb6]\xb3i\xde\x00y\x96\xd3\x9cvI\xe5\xdd\xb2\xdf2\xfb)-\xbd\xe7\xd1\xcb\x10\x9e\xben:\xa2\x1a\x83-\x95\\\x05\xb6T-8\x0d\xb6\xd4\x06\x0b\xbf [\n\xea\x80B\x1dP\xc5\x9eY\xa8\x03\nu@e\xdb\xb6\x11A\x00u@\xa1\x0eh\xad\xb6m(+\xd4\x01\x85:\xa0J\xca,B\x1d\xd0\xe6t\x14J\x80.\xa6\x9bZ\x95\x00m\xc0^\xa6,Q\xd7pG#+\x1c\xd1T\xa2\x84\\\x0c\xd4\xa8\xcc\xdc\xee\x9b\xd7\x9dS\xdf\xc7\xe3\xf8\xad\xaf\xa7Dl;\x0e\xea5ng?\x0e\xe8\xc2\x970\x7f\xd9\x93\x16X}\xc0\xb5\xb9\xa0\x9f\x82\xe7U\x03\xd7\xa6\x06B\x00\xd7&[I\xdavm&\xbb\xc2\xb4k\"\xbb/897\xdb\xc99W?fw\xb0\xcaOiw\xe7\"\xdeN\xd5\xceN!_\xa7\xee\xae\xce\x9a\x9e\xce\nG\xe7\xa4N.\nBjk\x95;:\xd1\x10\x07Cpi\x82K\xb3\x0e\x92V\xe2\xd2T }\xf0f.W\xeeu\xbd\x99\xea\xed\xf2\xd4xS!\xfa\xe9 \xb2\xf5\x95\xbd\\\xdb6l\xf4)\xdb\x9c\xafZ`\x99/\x08\xaeyF!X\xe6\x1a\x08\x01,s\xb6~\xe8c\x99\x07\x9d\xef\xe9\"\x05\xe9\x9d`\x98W\xab\xc7\xec\xfeU\xf9\xc9\xb7\xcb\xcf3\x87\x81\\\x04r\xa1]\xeeq\xd4\xb1\xc7\x0b}q/\xc8\xc9S\x07;\xbc061\x1b<\xdf$g\x7f\xe7\xbe\x9e\x17cl\xe4.\x89\xcdn\x02Q\xc6\xc2\xe0\x1cLr\x915P\x91I\xae\xca:\x03\xbb|\xb9\xc2\xafk\x97C\x94q\x85g\x1e\xa2\x8cU\x1b\xf7\x10e\x0cQ\xc6\xb2m\xdb \xa1 \xca\x18\xa2\x8ck\xb5mCY!\xca\x18\xa2\x8c\x95DrB\x94q#\xa6\x10\x84\x1a\xabRP\xadB\x8d\xc1\xef\xb4 w\xccsy\x80\xdfI\x03!\x80\xdf\x89\xadM\x9a\xf8\x9drDrvK\xf09\x81\xcfiZ5f\xf7\xad\xca\xcf*\x7f\xd3W'\xa93i\x9e\x1a\xf7\xa2\xce\xa6\xe9F\xb9\x87 \xe7i\x9a\xee\xa8\xfa\xd7\x9c\xfc\xda\xf51M\x0f\x8c\xe7`\x9a\xba\x9ez\x97\x8a\xdf\xcd\xb8\x96\xa2\xecgtuv.Q\xc6\x06a\xc7\xcc\xe7\xbe\x80\xbb \xdcM\xb2\xcb\x9f\"w\x93\x02\xe9\x83\xa7i\xb9r\xaf\xebij\xc2\xb0Nc-\x1aI\xc9,\xf4\xab\xb7N\xacb\x1e'\xfdD\xf3o\xf6\xfe\xdb\xa7\xaf~r\xaf\xc1\x9d\xe9\x0e\xefr\xf7r\\\xe75\xa5)g\x89\xd4\xc55<\xcd\x12\x9d\xce\x97\xc8)\x03O\xd9\x81\x1bX\x10\xe3\xf3\xccR\xe0\x064\x10\x02p\x03lE\xd1\x8f\x1b\xe8|/\xdb\xc4\xfe\xd3\x99\xd8\x0c4D\x11(\x04\xa0\x10\x16\xd5\xa0\xd9]\xb0\xf2S\x8ci`\x81\x95\xf2dC\xd6.\xf7\xc4\xea\xf2\x0dY_\xdc\x0br\"\xd7\x85u\xc8\xc6&N<\xa4M\xa6\xb8\x87\xe4k\x1e\xfd\xe0%\x97M\x1f\x96\x8b_\x01\xeb `s\x00\xeb \xb2b\x02\xeb\xb0\xa9r\xd7\x8euh\xb1\x1e\x94\x9e\x1a\x02\x1cD\x13\x1c\xc4t\xa5*\xbe\xc6\x03\xf5\xb0\xa0m\xc0\xb3z\x81z\xd0@\x08@=\xb0\x85Dc\xea\xa1l\x0b+\xd8\x8f\x89\xc9\x00$\x04\x90\x10\xeativg\xac\xfc\xac\xa2#\xa6\xb3;\x05\xd9\x88\xd9f\xb9''GF\xccv\xc5\xfb='\xf8v\xa9\x88\xd9\xa1\xf1\x98\x88\x99\x16\xa5)\xb6s\xab[MT\x04\n[\x05@0\xd4\x05\xde@0l\xa6\xdc\xf5!\x18\xa0\xb0U\x1d\xd9\xcb\xb5\xadK\x18,\xa4aES\x9e\xafZ`\xc9/\x08\xb0yF$X\xf2\x1a\x08\x01,y\xb6~\xe8h\xc9C}+\xb0\xd1\xa5\xb4dv7\xab\xfc\xe4[\xdf_b\x03\xdf\x933\xbd\xb36\xb9\xa7Q\xc7\xee\xce\xfa\xa9\xfc1'F\x1d,\xeel\\b\xe6vzy\xce\xd6N\xbe\xca\x0cm\xab\x8f0\x1aX\x8f\xc4\x99\xf6F\xc4\x866\xea\x11\xe2\xa0,\x14\xc0\xa5\xc9\x96\xafX[\x13\x19Cl9`\x89\x83%^\x03/\x83%\xbe\x99r\x07K|\xb5e/\xd7\x16,q\xb0\xc4\xc1\x12\xd7B\x08`\x89\xb3\xf5C\x13K\xdcg8\x1c\xccp0\xc3\xa5Tdv\x1f\xab\xfc\xac\xb2\xc1\xcf]\xc7a\x06\xf2y2,AC\xbc\xaca\xee\xa1\xc8Y\xe3e\x9d\xf1\xaf\xc8\xc9\xb5]\xbb\xbclp<\xe3\xbc\xa4\x0d\xb5\xd0g\xbf\x9f\xf8\xc3\x93\xb8\xfcT\x81f#\xf1\x91\x91\xb5~E\x1c\xb3e\x0f\xb9*\x90>\x99\x94\n\x98>\xe9m\xfd\x81\xfa\"\x10z\xf2\x9c\xea\x98jPux>E\x00U\x87\x95\xdb{Pu\x18\xaa\x0e\xcb\xb6m\x83\x97\x80\xaa\xc3Pu\xb8V\xdb6\x94\x15\xaa\x0eC\xd5a%E]\xa1\xeap\x13f\x11T\x1dV\xa6\xa0Pux\x0b\\\x11\\\x06\x1c\\\x11\n\x85\x00\xae\x08\xb665\xe8\x8a\xc8\x08\x9c\xa0\xf3}\xf2\xc7\x7f2\x02\x1a|\x0d\xeb\xefk\xe0\xeb\xc0\xecNT\xf9Y\xe9L\xb0cS\x94\xb2v\xc2n\x84B\x93\xdcL%\x1d\x08\x85n\xaa~\xcb \xa8e\xa7AaX\\wA\xfej\xe6(\xc8}Sp\x11x\x19k\x9a\xa2d\xabg \x83^^\xee\x11\x00T!\xb0h\xf064@\x15\x1a\x08\x01P\x85rTA\xd7\x8dx/\xa1\xeb\n\x80\x865\x04\x0d3\"\x16\xc0\x01r\x98\xe0&\xc4!\x91\xc3\x04i\x93\x051A\xdaM\xd5o\x9aa\x82tXb\x98 \xb9:\x87 \xd873a\x03Wg\xe7\xc8\x8e\xdf\xc5\x04\x0bPx\x80Y\x00\xbft\xa4\x008js\xaft\xab4\x98r\xaf\x028j\x9b\xf6+\x80\xa3V\xaam\x1b\xbe/p\xd4\x82\xa3\xb6V\xdb6\x94\x15\x1c\xb5\xe0\xa8U\xe2\x07\x03G-8j\xb5VPp\xd4n\x01\xa5\xcae\xf2\x80RU(\x04\xa0T\xd9\xda\xa4\x90R\xa5N\xba\x8ctc\xff\xea\x06\x94\xb5\x01zu\xfd\xe8\xd5Jq\xcf\xee/\x95\x9f\x82T\xab<\xd3\xaa\x86h\xad\xe0Y\xf5\xa4Y\xa5X\xd6\x19\x92u\xc2\xb1:3\xf4\xaa4\xa5\xaai\xf2\x15SW5\xd51\xb2\xce\xd2kMH\xbd*3\xc3\xe8cBt\x89P\x9d|\x05\xc0T`3\xe2a\"\x00\xa6\x1a\x08\x01\x80)[N\x96\x03L;\xdf\xb3\xc5\x1b\x8a\x14l\x16H-\x8a^\x00\xa4\xca\x03\xd6H>6 R\x13\x1b\x10U\xc4\x06Dz\xc6\x06DR\xb1\x01Q\x12\x1b\xc0\xfe\x9d!\xd6pH(\xc0\x88X\x18\x00\xc3\xaf\x80\\\x01\xb9\xaa@\xae\x80Y\x97\xbf7\xf1\xe0\x12`V\x0d\x84\x00\x98\x95-$\xcb\xc0\xac\x11`\xd6M\xc5\xac\xd3\xa2\x17\xc0\xa9\xc2\x985~\xdf\x9c \n\xe4BZ\xa7[\xe5\xa6)\x89\\\xa7{\xe2\xfc\x9c\x93Q\xcb\xf8uzd\\\x08;\xd5 -\x8f\x95\xffr\xb66V\xfa{\xc2\x9e\xcd\x96\xc8\xa2u\xae_\x01\xd2\x05\xa4\xab\x02\xe9\xaa\x82\xb8\x10j\x0d\xa1\xd6\x8a\xa3\x02!\xd4\x1aB\xade\xdb\xb6\x11\xbd\n\xa1\xd6\x10j]\xabm\x1b\xca\n\xa1\xd6\x10j\xad$\x92\x15B\xad\x9b\xb0\x84 \xd4Z\x99\x82B\xa8\xf5\x16x\x07\xb8\xa44x\x07\x14\n\x01\xbc\x03lmj\xce;\x90\xb2\x83\x10\xd4\xb2\x89\x0e\x82J\xe9\xcf\xee>\x95\x9f\xe2>\x82Z.\x02e\x1e\x82j\x07\x81\xb6\xfe\x01Y\xf7@\x99w`\xe2\x1c\x10p\x0b\x14bnq\xf8*=\x10sH\xe2\xb7\xbceG\x81\x02d\x0c>\x82\x92V\x02\x94\xc4\"\x10\xba\x86\x8f@\xa9\xcc}\xf2h\xc5\x9bR\x97\x19\x83*$?\xd5\xe5\xfa\xcb_\xaem\x1b\x94\xd4\xf4\xda\x96\x8a\x08\xa5\"\x12\xd79Ufx\xa6%l\xf5T\xaax\xacKP<\x8d\x15/\x15\x11O\xf1\xf4p\x88\xaaRz;\xc6\x94\xa1B\x95/t\xb8\x01\x8cSa\xbe\xc8}$\xbe\xef[f\x12\xab\x9c|K\x1f9\xc2\x8eY\x08df-Q\x10\xba>1_\x15Q\xa0\x00\x0f \xec\xd2\x82&$\x8f\xd8\x00vI\x03!\x00\xbb\xc4\xd6\xa1V\xd8\xa5N\xba9v\xbeOA\xe8\xfft\xd8\xd2\x96\xfb\x81}\x01\x8c\xd4\x8f\x9b\xccH\xd5\xd3\x98\xd9]\xae\xf2\xb3\x8a\xc5\xfa\xea\x0d|l\x12S\xbe\xac@i\xcb\xdcS\x92\xe3\xb3J{\x13\xb8$'\xeav\x99\xad\xd2\xd1\xf1\xe8\xad\xb2F\x94\xe3*\xf9!_\x86 \xfdY\xb0\x1e\x01\xc0\x1b\x81\xf5\x88\xb7\xb3\x02\xbc\xd1@\x08\x00o\x1a\x867Q\xb2\xb2t\x0b\xc9\xc1\x00R\xd6\x1d\xa4\xcc\x93\xbb\x00\xbc\x10\x85\x1ao\xde\xc4\xff\x0bG\xde\xeb\xe0 \x0f\x06\xc4\x7f= N\xd9X(\xf5\xf3&\xb9\xe8\xcd]\xe0:\xd9vX\xc7\xe7\xd6\xc0}k\xc3\x9c\x06\xc6\xd2\xf8\x0d\xb4\x81X\x0d\xcc\x8d\x07\xd0\xd4\xdf\xb2\x08\xef\xe6\xb82\xa7\x10\xde\x14\x07\x0b \xaf\xf6z\xce\xc3\x17\x00\xf24\x10\x02\x80\xbc\xa5\x81\xbc)j\x02p\xde\xe6\xe0\xbc\x19\xd1\x0b\xc0;Q\xa8\xc7h\x8b\xf3\xc9\xb9\x84\x82P\xad\xa4]m\xa8U\xd2\x17\xf7\x02m\xa0N\xc9\xd8xPe\xb6I\xae\x90e\xee\xeb\x82OmrZ$\xf2p8\x0c\xe6\xc6L\xbd\xaa@\x1eK\x8b\x90R\xe5\xc4\x850\xa9\x92V\x02\xd1\nt\x8c5\xfd\xbe3aRe\xaa\x96i#\xb8s\x1b\xdf\xf2x(\x0c\xa0\xb0\x06B\x00(\xcc\x96\x17\xd5P8[hr5e\x8a\xc7(\xa7\xab:8h\xd7\x15\x13K\xe9\x80\x00 \x16\x06\xc7\xf2\xb0X\x0d \xae\x80\xc2z\x82`)\xf8;\x03|K o\xfe\x94\xcc\x9c\xa8\xe1\x8cL\xe1\xd4X(\xdc\xa2(\xae\x16\n\xb7@\xe1\x16\xd9\xb6m\xc4\x7fC\xe1\x16(\xdcR\xabm\x1b\xca\n\x85[\xa0p\x8b\x92,\x05(\xdc\xd2\x04\xef\n\x85[\x94)(\x14n\xd9\x02.\x96K\x01\x02\x17\xabP\x08\xc0\xc5\xb2\xb5\xa9Y.v\xc2\xca\x00\xf1\xba\x11\xc4k^\xe0\xb3{L\xe5\xa7\x18\xcb*M\xb2*\xe1X\xe7S\xacZ2\xac2\x04\xeb4\xbf:}@f.\xa8\x808\xa64\xa3\xaai\xcc@6)Uq\x03\xf9\x0e\xd3\xeb!v`N\x0d\x82T\xa1\xe0\xd0\xa1\xe5\xefG<`\x04\xe8T\x03!\x00:e\x8b\xc9\xb2\xd0i\xe7{a\x01\x870\x81MC\xab\xb3\n \x80X\xe5\xd1\xab|b\xf6\x9c\xb6\xb9\x89\xd7\xc5\xb4Ug\xc0\xf3n\xaa\x0d\xd2\x95J\xd0.o6\x85\x7f\xcb\x92\xb4ip-\x0by,/F\x18\x0e\xc9\xab\x89\x02\x01HN\xae\x02\x90\xac\x00$\x03:^\xe2\xfe\xc7\x03f\x80\x8e5\x10\x02\xa0c\xb6\x8a\xb4\x85\x8e\x0bg\x8d\x03T\xdep\xa8<\xa5\x0d\x02X\xb9\x06n\xaeS*`~\xf3\xdc\xb3\xa8\x8d\x9e+\x13\xf7En\xad\x0f\x86\x96L\xa3\x9f\xdbr\x1aI\x97\xe7\xc3\x8b\x9c\xf9\xa9\x15\x9e\x06(\xbd\x89PZ\xa9\xfc\xa1\xac\xf7\xe2: \xd7v\xf9\x01\x8bb\xca\xa4\xca8\x87z\xddu\xb4b}4\n,\xfd\x05\xe1;\xcf\xc8\x04K_\x03!\x80\xa5\xcf\x16\x8a\xf6,\xfdba\x91z\x15n\x03 \x086\x9b P\xa1D\xb3{a\xe5g5\xaf`\x12\xf1l]zm\xee\xe1\xc82\x06\xb4}\xe9\x979)\xb6\xcd\x05\xd0\xf1\xf0\x0d\xff\xf82j\xe5\xd3\x9fh\x06\xae\xe1:\xa1\x8f\x8d\x10\x19\xf1\xaf\xc8u^\xd3\xd4\xdbR\x93\x1d\x80\x89\xc0\xb2\xc1\xdb\x13\x01\x98h \x04\x00&*\x81\x89\xe1\x8e\xbc($\x9d\xc7\x9d\x1e q\xbc\x99\x98\xe0WX/\xd8P.b\x81\x8d\\fS\x97\xd8\xd3\x17\xdc\xd2\xcbvt\xcd6t\xb1\xfd\xbc\xb0\x9d\xa3\xc0#\x86\xd5\xb7\x8c\xe2\xae\xde.\xfd\xae\x8a1\x8bg\xa2\x8c}\xa7]\x01C\x06\x0c\x19\x00Qi\xfc\x03@T\xa1\x10\x00\x88\xb2\x85\xa29 \xda\xf9\x9e,\xf7\xc0d\xad?$\xcd\x0b[\x00\x90\x8a\x83S\x06\xa7\x82\xb3\xb1\x14N\x9dj\x95\x9b\x98,d\x9d\xea\x89\xf3sN*m\x03\xd9\xa9\x91\xf11m\xb1A\x0e\xde\xa6\x98\x16\xe0,\xc0Y\x91\xb6\x00gs\xfb\x1b\xc0\xd9y(\n\xe0\xacB!\x00\x9ce\x0b\xc52\xe0l'\xdd\x10\xa18\xc7&\x01\xdb\xbc\xd8\x05`\xad,\xc4\xbdr\xfa\xae$\xbeeMr\x93\xab\x07nY7U\xbf\xe5d\xa2\x07\xace\xc3\x12\xc5\xb4\xf4\xea\xb5\x05\xb4\xd84}\x12\x04*\x00m\xd2\x15\x00Z\x01@\xdbh]\xe4D\x10i\x11\xcf\xf4\xcf\xa4zb\xe6d\x08]\xc4*os\xa3\xb2\x01\x05/\xb8\xe3\xf1\x00\x18\xa0`\x0d\x84\x00(\x98\xad/M\xa1`\xb6\xect\xbe'\xeb\x11\x10\xbb\xeb\x8e\x7fg\x05.\x80vE\x91\xef\xcd\x08\xfba\x8a\xd1d\x12\x14\xcb\x1a\xe6\xa6(\x87\x82\xcb:\xe3_\x91\x93R\xbb\x88\xb8lp<\\\\\xd2\x06\xd01\xa0\xe35C\xc7\x8b\x81\xe2\xe5\x1dv\xa3J\xd3\xe9\xb0\xba\xf1J\xa7B\xd9'\xbde\x12\x03\x9d\xad\xad\xb3u\xb5\x10L3\x010\xc6\xb3\n\xc04\xd3@\x08`\x9a\xb1\x85bY\xa6Y'\x88A\x1e\x18h\x1bf\xa0\xa5b\xaf4\xca\xe4\xcc\xb4+'$>\xcdM:5\xe8\x01,\xef|wt\x9a\xc0j1\x83\xad\xba\x8b\xdc\xe4\xe5L\xb7\xeane\xae\xcd\xc9\xb4]s\xaez\x98<\xc3\xae\xb2\xf5\xc4\xc4\xab\xba,9'\x85!k+\xbb\x10av%=\x99g`=\x12\x07\xb9O\x0e\xf1'\xe0\xdbA8\xf9!W8\xc4\xc3\x96/kG*\x86\xd7\n\x905\x9d\xa9\nPM;Z\x0d<\xdd\x0c\xd6Uo\xf5,\xa7B\xd0&\xca\n\xec\x92\x051\x08\x0f\x12\x83]\xa2\x81\x10\xc0.a\x0b\x85\x1a\xbbd\x84\xa3p\x98\xc1\xd3\x04\x1b\xbc\x0e\xdd\xd7\x96\x81\xc1\x16Y+[\xa4Z\xd4\x026\x87\xa8\xfdq\xe9\x18\xfe\xd8\x0b\x89yC\x88)hpL\xb5\xc9MI\xce\xc2\x98\xea\xa7\xf2\xc7\x9c,\xda\xb5!\xa6\xc6\xc53\x1a\x8a\x97S+\xe1K\xce\x06 \xe9\xcf( \xc4\xa4\xf8\x1f#\x9f\x0c\xac $>1\x91\xe3\x9a\x04\xf5\xc6\xc8\x8bz\xb6e\xa0{2\x96\x05\xfcz:\x8e\xbc\xa8\xd7Uur<\xeb\n\x1cG@\xc2\x03\xd8\x95\xc4X\x00v\x15\n\x01\xc0.[(\xd4\x80]\xb6 &\xbbh\n\x84\xb2\xed\xf2u\xbc]v\xbe'k?\x84J\xad\x17\xfa\x95\x94\xbd\x00\x04\x16\x85\xc3_rw\xfeH\xc6\x82\x80x\xa6Un\x9er\x90x\xa6'\xce\xcf9!\xb5\x0b\x8bgF\xc6\x03\xc6\xd3\x0df\xa0\xf1=\x19\xd3S\xe6)(\xcekD)\x02\x06\x18!\xb0Z\xf0v0\x80\x11\x1a\x08\x01`D\xe30\"\xff\xe5\xeb\x9c\xed\x08\xf0a}\xe1\xc3\xac\xcc\x05\xa0\x82(l\xb8}\x16\x07\x0b\xc9\xb5\xb5!B\xd2\xbe\xf4Km\xe0@2\x1e\x1e\x08`\x97Uo\xfd\xa1\x8f\x9d\x00\xb3\"\xbe\xb0\xf5\xd7}\xd3y\xbb\x0el\xfd\x1a\x08\x01\xb6\xfe\xc6\xb7\xfe\xf0\x196\xfc\xcd\xd8\xf0SI\x0bl\xed\xf3\xb6\xf9\x1b\xe2?Z\xc6\xbc\xc4\xa9\xec\xd7\x99\xad\xbc\xff\xcfKr=\x9a}.R{\xf2N\xee\xb7~\xf8x\x13y\xc8\x1e]\xfb\x9f\xde\x0bo\xca\xd9\x00\xa7\xb7\xe1\xf4\x07\xba\xf1&\x7f\xfc\xd8\x19\xee\x08>\x8f\xdc\x06\xfe\x9e\x84\x7f\xc7! \xc23\xdb5\xee\xab\x1fTE\xb3\xda`h\xba\xa3\xea_\xeb\x8abax\xc4\x7f\x02sD4\xbf\x05\x95]\xf1\xbbBt\xa1M\xbfG\xbd\xf8\x87\xf2\xa3\xea\x007 ,\x98\xbc-\x1bp\x93\x06B\x00\xdc\xa4\x127\x19n0r\x83N\x0f\x07\xa4\x13\x12\xc7$\xfe\xc8r\xc2l_\xa5+J\xd0a\xeb\x0b\x00\xa9\xb5\x02Rr\xa2\x17@SRH\x82nbg\xe3\x0f\xec\xec@ ,1\xd5p\x1141\xd5\x15\xefw\xbd\x10\xc5\xd4\xe0\x840E\xb1M\x8a*\n\xdff\x87\xe4R\xf9\xe7\x92\x14\xd81H-\x1f\x84\xab*$I\xdd\x91\x95pR\xa5p@\x12\xd4-]\xd1\xfd\x8f\x07\xc9\x00\x17k \x04\xc0\xc5l\xa1X&.\xfe\x0e\x07Ln.2\xfe\xae\xe2`\xc8R\x98\xf6\x8bk\x92\x8a\"\xa6\x9c6\xb9IJ#\xe2I/\x15?\xe5$\xa3\x01\x0e\x9e\x8cK\x08\x02g\x97\xa7\xe87\xfd\"\x03\xbe\xb4\xf2M\xe4\xfb\xc4 YH\xbe\xe5\xf4]`\xd5j\xaf\x11\xbc\x8d\x0b\xd0\x83\x06B\x00\xf4\xb0D\xf4\xe0\xd0:\xd8N\xdf\x05\xdc\xb0I\xb8!'v\x01\x94 \x85\x18n\xc6\x8ea9\x03\x19\xc0\x905Y\x04/d\x9d\xcc\xffE/\xb4\x90\x0dK\x08,\xa4W\xa7X!\xf9;\x83\n\x14\x1e\x04\xecK@\x08\xb5W\x03\xde\xe6\x04\x08A\x03!\x00BX\"BH\xd6\x14\xc0\x07\x9b\x84\x0f2\xa1\x0b \x02)t\xc0\xc2F\xbea\xdb2q\xe8\xfa7D\xca\xe1V\xd6z\x11\xccP\xd6\x9f\xd0Ez!\x89\xb2\x11\n\x81\x8a\x92\x86\xc5\xf8\x9e\xfcO\x19\xd4HB|\x1e\xd3\xdf^\x07D\xde\x19\xa7_A0\x0f\x0f,\x87>\x9a7\xaaJ\x04\x14z\xcc6\x96uw\xae5\x98\xed\xef\xbd\xbd'cd\x05\x08\xc7\xea\x17\x91$\xf4\x8c\x98\xc8r\xd0g< )\x94}\xe3\x90\xe7\xb0\x1b_\x1c\xba\xa8G\x06\x96\xf3\x8aj\\\x0c\x99\xc3!A\xf1\xcf\xc8\xc3\x03\x82Fn\x10\"\xd2\xef[\x86E\x9c\xd0\x1e\xbfA\x9f\x1c{\x8c\\\x87 \xb7\x8f\xdc~? !r}tO\xc6\xaf\x82\xa1\x1b\xd9&\xea\x11DU\x9e[\x8b\xba)\xfdd\xa3R\xac\xa2\xac\xd3\x8d\xd1\xd2F\xcf\xae\xf4\xde&\x8aCU\xd5\x89F\xc4\xb7\x8cT\x99\xc2!\x0e\x91\x81\x9dX\x8fh\xba\xc9\xd3\x908(Q\xec\xc8\xc1\x8f\xd8\xb2\xe3\xf5\xef\xcd\xab+\xda\x81M\x82`\xa2\xa1qs\x07EA\xac\xc9\xf7\xa4J]\x11S\xd7W\xad\xab\xabm\x8d,\xd5\xdaJ\xfb\x04eU\xa3\xac\xf4a\xa6\x95\xf7C7\xc4v\xac\xb3=\xe2\xc7:\xe5\x93 \xb2\xc3\x80-\xa4\x85\x057\xbe\x9a\xfdJ\x97\xd27\xaf\xae\xfa\xc8&\xfd\x10\x91\x91\x17\x8e\x91\x15\xa2'\xcb\xb6Qb\xae\xc5\x1d\xa4\xcb6\xeb+V\xd5\xde\x18\x11l\x0c\x11\xf6\xbc\x165\x94\x96A\xed\xd2\x99+\xd6\xd3\\\xcf\xbajk\xcfum\x82\x1d\x15\x8a\x94\x9bm\xacNt\xb5sQl(\xa1\xf8\x1f\x96cZ\x06\x0e [\x02s\xea\x13_\x98l\xae\x96c\xd8\x91I^a\xc4j\xd3&\x07@Lk\xa5\x15\x92Q\x80\xb2\xb5\x92F\x87M\x1e{\xac\x9d_\xaf\x827\xaf\xa6\x06\xe4\xc6kel\xef3\xfb\x9f.\xbc\x93\x95:^\x8c\xdf \xb6\xe8Z\x03\xc7\xf5sk\xf3+6\x1d)\x1dU\x15\"\x96S'\x9f\xc4\x964Q\xac\xa4I\xaf\x1b\xa0\xa0\xc9L\xa7\x95\xd3\x9a,s\xd8's\x96:\x93\x04\x06q\xccx\xe3u}\x93\xf8\x89.xoo,\xc7 ? fS\xbf\x0e\xcc{\xb4\xfdf\x7f\x8f\xaf)\x10\x0d\xb6 7\xc3#\n\x81\xad\xd5@\x08\xc0\xd6\xb2\xb5i)lmF\xca\x04$\x84d\x89M\xa4n\xcb5`v\x17\xaa\xfc\xe4\xf2\xb8yb\xb0N\xeaDy\xfb\xdc\x13\x90\xe6r\xcb{\x14\xbc,'N\x0d\xf8\xdc\xf21\n1\xba\xa5MSN\xb7\xec\xc7\x8c\xd5-\xd0\xb9\x08\x87\xd9\xc9\x0f\x90m\xc1\xae\x82l\x0b\x81\xb6+\x93m\x01\xae pM(UDpM\x80kB\xbem\x1bl/\xb8&\xc05Q\xabm\x1b\xca\n\xae pM(a~\xc15\xd1\x84=\x05\xae e\n\n\xae\x89-pMp\x19qpM(\x14\x02\xb8&\xd8\xda\xd4\x82k\x02\xf2\xd5\xc19\xa1(m\xdd\xf0I\xf8\xfa\xcb\xe5\xcd\xed\\\x07D\xee\x8a\xdc<4+\x9a\x99\x1b\xe4,\xd5?\xf91)\x9e\x19\x7f\x81\xe2/\xc4\nhf\xed;\x1e\x0e\x87A\xe7\x8f\x9d,\x05\xb03\xa8\x08\xc2\xe7\xb6\x9by\x9e\x05\x97M\xdd\xe7\xa9\xc0\xaf\xc2\x1dy\xc5C\x9e\xd3\x84>\xfa\xdb!A \\\xb5H\x90\xda\x00\xc9\x01\xc3\xc9\xd1y\xb3\xbe\x92\xbc~\xfcv\x17\xdc\x0cQ/\xfa\xf8\xe9\xba/\xfa\xc6\xf6\x87Og_\xcf\xe9\xces\xe5\xf4]\x7f\xc4l \xdcs\xa3\xb0l\x003\x00\x0f\xa0\x9b\xf0\xca\xccC\x0d5\xa1\xdb/4C3\xc4a\x14\xd4\xc6k\xbd\xb3\xd1\xefW\xbfo!\xd3\nb\\nR\xb2\x817\xde\x83z\xe3}\x87-\x9b\x98\xb1\xc1A\xe9\xe9$\xc3\x94;\xfe\xf5\xc57\x90+\xbf\x9e\x98E4\x19~v \xbd\xbf\xb8\xf0\xff\xfe\x0f4\xc0\xf8\xf5\xc5\x85\x91#H\xd3\xd5\x14\x05x\xe4\xd9\xa4p\x80\xc4\xde\xf4\xe0\x8cg\xdc;\xef#\xf2\xfe\x1f\xdf\xfa\xe9Y\xb8~\x18\xe2^\x90I3\xb2\xd3\xeb}\x82\x8d\xf0u\xfcc\xb7\x1b\xe2\xdek\xdb\n\xc2t\xf2\xb1\xad\x1e\xff\xf9\xf6G\xdbJ\xaf\x8f\xafILF4\xdd\xf6u@l\xbag\xe4:`!\x13\x93+_\xa7\xfa\x95^\x9b\xca\x9a~9Y\x87\xfa\xd8\x0e\xd2o\x0d\xd7 }\xd7.\x8c\xf6\xf5\xceVQ^\x93i\xa6\xb3\x8c\xd7\xd5\x8em\xbd\xfd\xb1\x13\xd9\x85g4=n\x0f;\xc4\x9e\x99\x0d\xfd\xb6tN\xf4\x97\x99\x89\xed\xe4!\x80M\xcc\xdexj\xde\x89\xc4\x8b\xc2:#\xbf\xba\x16\xba\xfb\xf2\xf7\xb3\x7f~\x9b\xa5\xba\x8cO\xefnoz\xa8\x7f\xd5{\xff\xedi\xeb\xed\xb9\xeb\x84\xd4/2\xf62\x06k\xeaU8\xfb\xc7\xf3?\x7fE\x83+\xfc\xf3\xc5\xe3\xd6[\xecy\xb6e\xb0h\x8e\xbb\xc0u\xaaV\xd3A\xef\xe6\x97\x17d\x9dZ_>\x1b3\n\x7f\xf7\xc9\xbf\xfe\xf4\x05Y\xee\xdf\xcf\xef\x1ef~\x1dX\xc6\xf9\xc5\x152\xbe~\x88\xf0\xcf\xd9\xd2:3\xb6\xdf\x9d\xe1\x95\x8b\x06\xe1%~\xfe9\x9e\x8c\x97\x95\xb5O\x1b$\xffE\x97\xcf\x1evL\x84m\x1b\xcd\xfex\xee\xda6\xf6\x022\xf5s\xd9\xa4\x92w\x9f\xbd\xf1\xf1\x12\xfcy|v\xfe3\x1a|{\xf9m\xe8nM)\x85\xe9\x1a\xaf\xe3\x87\xb4\xf5\xf6G\xc35\xc9\xf4\x0ea$\xb7\xf5\x8bP/\xfdz+7\x8d\xbc\x14C\xf7\x9e8\xc8\x8b\x1c#\x8c\xa8 \xb6\xde~/\xdb \x88m[^`\x05\x13\xe6p\xf2\x92\xba\xbd;\x94\xdc\xc7\xea\xd9\x84\xbe\x90\x85\xc1\x0f\xddG\xe2Srx\xab\x9c\x08El\x18\xcc[\xb3\xf5v+\xa7\x18\xddd\xff\xd8J\xee\xfb\x03Z\xc9\x89\xa7\xc31\x05\x9f@/\xb2l\xb3\x1b\xe2A\x90\x9b\xf8\xec\xf8\xd3\xeb\xff\xfb!r\xc3\xbf\xb1\xbf\xd8\xbf\xcb\xe6R2\xe7\xbf\x16\xb8\\\xb6 )\x9b\x84a[\xc4 \xbb\x94\xe5^\xe1Y\xb8\xa3\x91\x15\xae\xf0\x04\x06\xee\n\x0f~\xc5\x95' \xfe#\xf1W\xfd\x15\x98]\x83\xeb\xcc 72\x8ay83\xfaO\x133\x17\x9cp\x06\x927l\xdb\xb1\xcc\x05e\xacRV\xb2\x83\x1f\xb9\x8euO|\x89\x19L\xa2\x80\xe3\x17T\x9f\x99x\xbe\x1b\xba\x86k\xd7\x05?\x84\x02\xd4\x15\xd5Ao\xd7\xab\x14!\x0b=\xd8z{\xa4\x83\xa4hIZ\xa1\xe1\xeel\xeb0^\xec\x89=\xdcm\x9d\x16m\xd9I:$|r\xfdj\xb1\x14\x17\x82\x01\xb6\xf0\xeb]}\x16\x00c\x88\x1d\x87\xd8\xab\x0c\xfem+\x08\x89\xd3\xc5\xa6)\xb3\"\xef\x9c\xec\xbe\xd99<~sp\xf8f\xe7\x87\xdd\xc3\xc3\x83C}f$\x8f\x82\xb6\xdf\xec\x1c\xbc\xd9\xd6g\x06n8,\xec\x8f\xeb\xbf\x99\x84\xcf]J\xc2I\x08\xcdu\xf4\x11\x98\xef\x19\xf4\x0d\"\x81\xccR\x10\x1a\xde\x0f\x9d\xce\xf6\x1b\xfa\xff\xf4-:R\x83\xc4\x97\xde\x8e1]\xd5D\xb5\xc8\xa7\x99s\x0f\xdff\x8e\xfa\xd7_>\x9f\xcf\xf1\x05O_\x94\x0cV;G\xfa\xf48\xa7\xdd\xbcS\xbf3\x9fn\xf6\x1d\xfa\xf2\xf9\\\xc4\xa3^\xec%\xf3\x17'u\xf3*\\\xea\"\x0dg\x1e\xad\x1e>u\x91\xa1W?\xed\xd26,\xa0!)g\x1b\x848\xa4\xe9\x02\x8d\xbb\xd1\xdf\x93\x10Y\xccy\xcfJ\xeb\x07i\xa9}{\x8c\x82\xb1\x13\x8f\xe6\xc9\n\x87\x88n\x11\xf4\x9a\x00\xdc\xea\x0b8\x0fyn\xea\x85\xdc\xea9\xf5Y\x11\xf7\xfa\x0d\xe5\xc1\x90\xe5\x84\xc4w\xb0\xcdB\x087\xd3\xb1\x0e%f\xd7\xd1\xad.VCvv\x01\xdd\x04\xa7\xfa\xae\"\xa7\xfa\x9enN\xf5\xbdj\xa7\xfa.8\xd5\xf9N\xf5\xb2\x81\x81c|\x9e;)9\x17\xa1\xca\x16L\x92t\xb6\xde\xc6\xaf\xc4\nX`\x19Lf\xc7{\xfd\xb1\xc3\xaa\xb8\xc8[\x15e\xeds\xab\xf7\n\x18\x17e3\x10\xb41J\x9a\xa6\x85PfN\xaa/-n\x02\xa8^\x00\xbb\xf0\xd0qMT\x7f;- \x80\xf4+\x05\xe9\xe1\xb4\xf6\xf5\x05\xf62\xc7\xb1o&\xbc\xdfW\x04\xef\x0ft\x83\xf7\x07\xd5\xf0~\x1f\xe0=\x1f\xde\xa7a\xb1\x103\xdb\xb0i@\xd7\xa9\xee\x88\x84X\xd6\xc1\xa7\xd9|e}dC\x82\xcd\x0d\xf3j\x1aCl9]\xa9`-\x96\xaa:\x8cz:\x859$\xf5 \xabf\x91\x85\xcf\xe80\xde\xd0\x92\n\xe3\xdc\xdd\xde9z\xbd\xb3\xfbzo\xfbv\xfb\xe0\x87\x83\xbd\x1f\xb6O\xde\xec\x1e\x1f\xfde{\xe7\x87m\x8d\xa2\x02\x9ch\xd4\x0d\x9f\xab\x1d\xcc3qAm\x0e\xd8\xc6A\xd8e\xeb]\xe1\x1dX\xff\x17\x7f\x88\x83\xa1\x84\x02^^\x1e\xbc\xdb\xdb\xdf\xde\xdf\xde\xdb??\xd8\xdd?\xd8\xde9\xdc=9;8\xbc\xdc\xbe\xb88\xdf;~wzqx\xb0\xf3n{_\x1f]\xf4\xb0\x1f\x06\x1b%RV\xebje\xde\xbd\xa5h`m\xb6\xb2f\xbb6\x1f(\x95\xbf\xf0\xfa\xbbw\xa0\xc3\x98\xe9\x02\xcc\xf2b\xbaKQ\x886'\x1b\x9b\xa1\xeb?\xcbI\xad\x92\xf5\x9f+-I\xbbI\x136\\' N\x10m\xc0T\xb1\xe7\xad\xff$\xe9\xfa\x9b\xd4\xc9[\xff\xd9\x92G\xcb$\x8eA\xd6\x7f\xa6\xf1\xf7n@\xfc\x1a1\xbf\xcc\xbe\xdf1\x89w\x7f\xb0oD\xf8np\xffB\xf0\xe1\x8b7\xb8\x7f\xd8;\x0c\x9d\xbb'\xf3\xe5q\x1f\xf7\x8d=s\xf7H\x9f\x19ob\x82\x13\xe4\x0c\xad\x11|\x07\x1a\x82\xbf6\xad\xe0B\x0c4\x04\xff5oS@K\xd1\xc0\xba\xeb\xd1\xb2\xdb\xa9\x14\x84\xe0\xf3\x9f\xde\xc3\x84^\x90\xf4\xeb\x15}E\xc0\xd1$\xf2\xaa\x81\xa3I\xc1x\xc1\xd1\xa4\xc5.\x03\x8e&A\x05\xac\xb7\xbf\xb6)Z@x\x9a\xbf{K\xd1\xc0\xba\x88\xabn\xbb6\x1f(8\x9a\x04\x14\xa2\xcd\xc9\x82\xa3i\xdd\xe6\n\x8e\xa6\xf5\x9d*8\x9a\xd6n\xb6\xe0h\x12\x98,8\x9a*'\xa1\x13\xe2\x07G\xd3:\xc1\xf7\xe7\xe6\xcd\xd5\x7f\xc9*/\xf6}<^T}\xcbV\x19\xf6\xd7B\xc6\xda\xbfu\x90Z\xba\xa5\x80\xe8VNt9\xdb\xb3q\xe9i\xb7k\x00\xdfY\xa9\xe3+\x88\xf8\x80\xef\xe4\xe3\x896\x05\xb4\x14\x0d\x94\\\x87W\x1a0y>a\xabw\xf3j\xbf\xbc\xcd\xb7\x99\xf1\xeb\xf4\xdaftY\x0d\xdb\xb4\x0cz\xb4\xa9\x82\x93\xb9\xc8\x16\xa1\xd5\xc8k+\xe0;\xd7v\xec\xbe\x1b92\xc1\x0b\x1a\x0d=\xb4F$\x08\xf1\xa8\xda$.\x0e\x7fE\xe2\x00\xc2\xb1W\x1d\xdd\x90n\xcc\xbb:\x8c\x16\xf00_\xf1\xea\xa1\x916\xa5\nxx\xfek\x07xx\xce\x84W\x1a\x0f\x07\xd6\xc0\xc1a\xe4\xcb\x04\x96\x1dE\xb7\xe7G\xfb\xbf\xda\xf7\xce\xc3?\x7f\xbb|\x1a\x1c}s\x0e\xaf\x8f?\x8d\x8e\xdeE\xbfo_~\xda\xef\xdd=Fw\x87\xfe\xd3\x87\x9d\xd1\xed\xd7\x9f\xfd/\xd1\xf5\xf5\xef\x8f\xa7\xa7\x0f\xb7'\xdf\xee~\x19|\xde\xfer\xda\xb9\xbd\xf0\x0e\xa3\xce\xc9\xee\xe9\x83\xff{\xff\x1f?\xdfxg\xbf\xfe\xf4S+R\xf8w\xcdvu\xef\xb7x\xbb\x16\x8a/\xa6\xa7\xd4\xd7/\xbfX\xec!\x99\xe6\x8a\x15`,\xceA\xb2\x04c\xa1qV\x84\x11\xb3\xd2~\x08\xc7\xff4\x88\x1fb\xcbA\xec\xca\xd2z\x8c\x07\xf9\x87\xf3`\xb8\x16A\xe4\xb7\xe8\xef\xb7\xbfl\xbd\x8do\x98\xb5\xf9\x8c}<\"!\xf1\x83\x1f;\xc3\x83\xb7?\x86lq\x98<\xba\x0f\x7f'_>\xa2\x01\xe9\xdd\xfe\xf6m\xeb\xed\x8fa\xcf5\xc7o\x7f\x0c\xfd\xf4\x1a\x1b\x07!\x8a\x7f0\xf3\xadN\x7fw/l\x14\x18\xaf\xfb\x97\x9f\x02\xdbB\xc6\xbb\xf0\x97\x8f?\xa3\xdf?|y\xefn\xa1{\xcb1\x7f\xda\xea[\xc46\xb7Ph\x856\xf9)\xb5\x13\x8a\xea\x1d\x0f\xde\xb4\xc6_]4p\xed\xdb/x\xb2\xe7\x95-Y\xf4\x18\xae\xad\xb7\xc9SI.,j\x82k\xf7p\x10\x8fkh]\xbf\x7f\xfa\x82\x8c\x1b\xfb\xca\xbbF\x06\xf9x\x89o\xb7\xde\xfa\xe4!\xb2|b\xa6\xea\x1f\x9aS\x13\xeb\xdd}u\xad\xbf\xa3\xfe\xb7\xe1\xd7\xbf?\xe5\nx\xcd\x0c\xdb\xee=\x9fZ\xf4 X\xbf\xfc\xf6t\x19\xa0\xab\x8ff\xcfCw\xbf\xbe#\xa7\xff,\x9fF\xa1\xd5]\x7ft\xf1\xab\x95\xb42\x82\x8f\x17\xff\xb0\xb6\xde\xb2\x1d\xb6\xb0.\xa0\xaa\xbb\xd3\xd6\xb9\xaaq\x97\xcf\xb4Z\xdc\x0f\xf9z\x8dqWh\xfe8\x8c\xfb\xebo\xb7a2\x8e\xfb\x8f\xefN?\x8crA\xce\x9d\xc9\xfc\xa7\xdeGN\x9d=\xef\xed\x19U\xe7TV\xd3G\x05\xe4\x9e\x7f'\xf4\xe3\x0f\xa6w\x1d\xaa\x9f\x85\x1bC\xe9Q\x91\xea\x8a\xbc*\x9e\x0b\x94\x1e\xcd-L\x81G\x0c\xabo\x19E\xb9&\xba\x92\x82\xde\x9c\xec\xe6 \xa3V!\xd2\xfdzS\xb8r(\xcf\xd2\xd2\x90\xf7\xeb\x0c\xf9\x0by\x88\xb2j\xaf\xc9\xc0\x91\xe9\x92\xc0\xf9\xef\xff\xda;\xf9\xdb\x92'\x01\x05`\x15\x15\x80Mw\xfe\xac\x15\x94\x80]\xa3\x12\xb0\x13\xe9\xf2\xc0\xf6\x06\x16\x81=TT\x04\xf6H\xb7\"\xb0G\xd5E`\x0f\xa1\x08,\x14\x81m\x9e\xec\x13\xe4x\xa0\x08\xac\xd4\xa4W\x9a\xcf\x85\xdc\xdcv\xc6\x0b\xb9\xb9Z\xf8\x07 7WP\x01\xebyF\xda\x14-\xf8\xe64\x7f\xf7\x96\xa2\x81\xb9\x81\xcbyMj\xb6k\xf3\x81Bn\xae\x80B\xb49Y\xc8\xcd]\xb7\xb9Bn\xee\xfaN\x15rs\xd7n\xb6\x90\x9b+0Y\xc8\xcd\xad\x9c\x84N\x88\x1frs\xd7\x08\xbe\x03\x0d\xc1_\x9bVp!\x06\x1a\x82\xff\x9a\xb7)\xa0\xa5h`\xdd\xf5h\xd9\xedT\nB\xf0\xf9C\x11X\xd1I\xaf\xf4\xaa\x00\x8e\xa6v\xc6\x0b\x8e&-v\x19p4 *`\xbd\xfd\xb5M\xd1\x02\xc2\xd3\xfc\xdd[\x8a\x06\xd6E\\u\xdb\xb5\xf9@\xc1\xd1$\xa0\x10mN\x16\x1cM\xeb6Wp4\xad\xefT\xc1\xd1\xb4v\xb3\x05G\x93\xc0d\xc1\xd1T9 \x9d\x10?8\x9a\xd6 \xbeC\x11X9\xa9iQI\x14\x8a\xc0\xae\xac\xe8\xa0\x08\xec\x06Mz\xfd\x11\x1f\xf0\x9d|<\xd1\xa6\x80\x96\xa2\x81\x92\xeb\xf0J\x03&(\x02+<~\x9d^[(\x02\x1b\xe9U\x8dT\xc0w\xae\xed\xd8\xa1\x08\xac\x8eq\x00P\x04V\xfbUx)h\xa4M\xa9\x02\x1e\x9e\xff\xda\x01\x1e\x9e3\xe1\x95\xc6\xc3P\x04\xb6f\xbb\xba\xf7[\xbc\xdd\x12\x8b\xc0N\xbc\xd4$\x0c\xfe\xd8\xb1qH\x82P\xbe\x12lE7\xc9\x84W\xa4\x1cl\xc5D\x04k\xc2\xce\xef!+\x0c\x1b\x0e b\xdf\xa3\xecj\x14\x90\xf2\xaa\xb0P*S\xa0\n\x1d\xaf\xde\xe1\x02\xa52\x0b\x12B\xb8 \xbd\xdelA\xd4\xe4\x15N\x81B\xf6\"B\x01G\xcd\n8\x16\xde\xd3\x0e\x13h\xd6\x14\xaa8\xaeC\x15\xc7r\x11\xf3\xb6\xcc\x0d,\xe5x\xac\xa8\x94\xe3\x89n\xa5\x1cO\xaaK9\x1eC)G(\xe5\xd8\xbc\xc9.h\xa91\xc6I\x9awm\x9a\xfd\x16\x1c\xfdd\xb1\x95\xa5WjH\x0bb;\xeep\xe7\xf0yLF\x1e\x19y\xde\xc9\xee\xf3\xc9p\xfc\xf2r\xf2\xe4\x0f\xfa'\xfb\xfe\xe1\xdd\xc9\xf0\xa0\xbf\xfb\xb4\xef\xec\xda\xcd\xe9\xa7\xec|\xbd\xa8\xd7\xbd'\xe3:\xf35\\'\xf0\xa2\xde\xce\x8bqgF\xc4{\xd8~\x8cv_\x06\xf7\x83\xfb\xfd\x13\xd2\xc7\xdb\xce\xc3\xd3\x8bcb\xe7\xe1`\xb4o\x1cyx/\xda\xc7\xde\xcb\xfe`\xd7?\x19\x04\xde\xc3\xe0ppb\x04{\xf7'F\xd4\xd7\xe7q<\xba\xa1\xe5\x0c\xba\x9e\xfbTHr\xe5=\x93\x9dm\x9d\\\x0bY`\xab\xe7[\xaeo\x852\xd2\x9d\x9dIm\xe2F\xae\xdd\xe2\xc4T{DQ\xfdC\x83*;J&\xbd\x9adQ\xad#\x84\xaa\xfa\xc8\x9d$4\xc5B\xc0qB\xe5\xeb\x02\x1c'4\xd5\x0f\x1c'\x04\x1ci\x0b\x1ci\xeeX\xa1\xf68\xd2\xcd9\\\xe8,=\xce)9W\xc8qC\x84\x1f\xb1e\xc7w^\xee\x0c\x80\x98VKL\xc3\x01C\x1b@M\xc39C\x15\xe4\xf4\xce\xb6\"vzgG7z:\x1eQ\x15?\xbd\xb3\x0d\x045\x10\xd4\xcdS\x86\x82,\x0b\x10\xd4\xc2\xd2\x02\x82Zl\xf4\"\x82\x03\x82Zx\xbe@P\x03A\xbd\xf6\x04\xb5\x8f\x9d\x00S\xae9\x98G=\x17.I\x06:!\x95\xfb\xff\xbc$\xd7\xa3\x05I\xe5\x9d\xdco\xfd\xf0\xf1&\xf2\x90=\xba\xf6?\xbd\x17g\x95\x0b\xa3\x9c\xe1\x8b\xf3\xbfR&8\xff\xcd\x8f\x9d\xe1\x8e\xcc\x83\xca\xf8\xe6\xf0\x99\xb2\xcc8\x18Vr\xf7BMg\x1e\xac&l\xbd\xd0\xe0\xab\x9e\xf7\xdcV9F\xfe\xf6\x19\xf5\xc6(\xfeib[\x05\x13n\xe0 \xfbN\xfc\x0e\xe7F\xdc\xf3It{\x81\xeeo\x9e~\x8e\xfe\xb1\xf5\x16]\x10\xcf'\x06\x0e\x89\x89\xb2\x17&\xa1\xef\xf3\xba\xf5\xdb]p3D\xbd\xe8\xe3\xa7\xeb\xbe\xa8\xe1\xda\x1f>\x9d}=O\x0e\x9e\x0e}\x8b<\x12\x84Q8\x99\"\x8a\x02\xcb\x19 +\x0c\xe8\x14\xde\xcc\xf2\xaf\xcc\xd8\\='\x02\x0e\x86J\\\x08\xb1`K\xad\xa5\xd5v \xb0\xad\xa5\xb0\xb0\xb7\xe2@8;?\xbb\xdc\xdd\xbe<\xbe\xd8?<:8>;9<\xbd<8>\xde;;:\xd9=>8\xde=9<=\xdf>\xbc<\xd8\xd9\xdf;\xd8?\xd9~wvq~z\xb9{pz\xb4{\xb6w~~txV\xdc\x9a\xe6[q\x15\xfe\x87\xdbg\xf6\xfa\x82\xeb\xa1i\x0e\x8fG\x1a\xd7u=<\xa3'+\x1c\xd2\x88l\xcfw\x1f-\x93\x98y\x91&\x1a\xa2)\xe5}\x95r\xdd \xf7}\xb9\xb9\x94w\xf8\x1ct\xd8.\x9b5\x00\x9a{\x1dh\xee\xbc`y\x00\x7f\x13\xa9\xed]U\xd4\xf6\x9ev\xd4\xf6\x1e\x87\xda\xde\x05j\x1b\xa8\xed\xe6\xc9FA~F2\xed\xf8b\xfb\xf8`g\xef\xf8\xe2dg\xef\xe4d\xefd\xe7d\xf7\xe4\xe0\xdd\xbb\xfd\xb3\xed\xd3\x93\x9d\xed\xa3w;\xefv\xcf/.\xb7/\xf6\x8eN\x8f\x8f\xce/\xb7\x0f\xf7\xf7/ww\x8e\xce\xcf\xde\xed\x9d\xed\x9f\x1c\x1e\x1c6GL\x89\xce\x97O\xe2g%\xc1\x0f\x8f[\x1ch\xf8\xbc\x04\xb6\xbeI\x05\x94e\nG\xc1@v\xc6\xd2\xec\xfe\xf2\xbc\x13\xbc\x17\xa9\xcc7\x94\xd3\x1e\x11\xb6Q\x8b\xaa\x81}\xd2|\xadG\x9d\xb4t\x80e\xfc1M{\x00eG\x8fGn\xe44_\xdeqy\xafY3\xe3\xd7I\xe1L\xe2\xb8#)\x95\xc3\xf7Dc\x8d\xe3\x8d\xff`E]>m>\xe4\x11\x19\xb9\x12\x8fX\xb7U\xa9\xacR\xcb\xfa\xbf\xd8u\xea\xd3\\_~=\xbf\xfa\xf5b{\xb7\x1f\\|\xf6\xf1\xf1u\xd8\xfb\x12\x8c\xcfv\x9e\x8ez\x0f\xb7\xd7\x07\x07\xbfE;{\xc7/\xbf\xf6\xde\x19\xbf=\xef\xff\xe5\xfc\xdd\xf8\xf4j@\x0e~\xfb\xe5s\xff\xe3U\xf4\xf8r\xf6\xfb\xe1\xc9\xf5\xf8\xe1C\xf0pq|\xb3s\xf5d]z\x7f\xb1\xbe\xf6\x0e\xbf\xdd\x98\xa1\xed\x0d\xfe\xf9\x93>:1\x1b\x0b\xb0\xfe\x1a\xc1\xad\x13WT\x860K\xac\xe9|\x8ez\x1f\xc9\xf8\x86\x18\xde\xee\xc1\xe1\xfd\x8e>b|\xc4v$3\xa7\xd3\xc7\x97\xed\xfdo\xc3\xf0\xe3\xcf\xc3\xe3\xd3\xf3\xf3o/\xf6\xd51\xbeu\x83\xf7\xe3m\xeb\xfe\xdd?>^}\xfb\xf0\xeb\xde\xdd\xc7k\xdf\x0d>\xa8\xd9'\xda|:\xd80\xe2\xdd\xb1\x9bX\x9c\xe2\x8fI\xa3\x00\x8f\x80\xac\x9f\x8e)\x87\xbd\x1c%\xb4I\x10\xc4\x96\x8cSO\x0d!?i\xc1\xe4\x0b^\x86O\xcd\xfc\xa4S\xdbF\xe1s\x80F84\x86\xb1YYHTb&\xe8rS\x95\x16,\x89\x160\xd2\xaa\x8d\x91C\x92\x95\x82$\xab\xecJ\xc8\xaeZ\x93\xec\xaa\xb2}\xa1\xa8\xc1\x9b\x98V\xb5\xaf*\xad\xea@\xbb\xb4\xaa\x03NZ\xd5>\xa4UAZU\xf3\xeepA?2=|\xb2kpc\x9f\xd3\\\xa3\x9d\xb2!/\xea\xfc\x16\x1c\xebj\x8c\xd2\xc3\x03\"\x12(\xa7\xcdX\xc5\xcf\x1fms\xa8\x8c@\x14\x19\xe5^#\xc7\xa4\n\x0e3|\x96\x8e\x02\xaa\xb1p@\x1c\x90\xd8\xe8E$\xb66\x89\xa5\xd2\x13o=\xc3Tv\xc4\xf2\xa9\xa6+\xad\x99\x90h\x9aS\"\x91\xc8/H4mAK!\xd1T@`\xcb{\xcd\x9a\x19\xbfN\n\x07\x89\xa6R\x8bb\xdd0\xda\x85\xc3v\xdb|\xc8\x90h\xba\x82/6$\x9aV=\x1dH4\xe5*\x03$\x9a\xaa\xd8'\xda|:\x90h\xba\x88\xe4\xea\xb6k\xf3i\xd5\xcb8]\xe9U\x0d\xf2M\xb5\x98\x04\xe4\x9brg\x00f\xab\xd8\xe8E\x04\x06\xf9\xa6u\xb7'\xc9v\x0b\x1b\xaeKj\xb7\xf88\x97\x9a\xdf\xea\xb9\x81t\x82+k\x93Lee2\\\xd9\xa8\x85S\\\xe9\xe54\xc7\xf5\xccw\xb1i\xe0\x80\x1e\xafj\x0d\x1cb\xa2\xf09\x1f\xa6\xa3 #\xdfA\xb8\x1f\x12?\xbe\x99\xe1\x8eFV\xf8\xe7\xbf\x16\xda\x05c\xc7\x98\xd3\x8c\xf8\xe8|H\x8c\xfb\xdb\xe7?#\xec\x98\x85fxn;\x1a\xaa\x87\xf0\x13\x1e\xff\xb9\x90?\xac>\xf570^\x0fnN?\xdf\xbd/\x04\xb4\xa3\x91\xf3\xe9\xfd\xc3\xbc\xb0\xf6\xd9\xa0\xa39\xc1\xec\xc9V=\xbb1\xa3d\xf3\xb0H0gW\xc9b\xde\xb3-\xad$\xce\xf1\xee\xf7\x91\xed\xf5\xd7\"\x98Q\xb7@~\xb7wG\x8c\xb0\xb0\xef\xa0l\x08\xfc\xb7t*P\xb2\xf0\xd9L\xbaO\xfcV\x0b+f\x85\xc6\x8d\xe8:\x98L[3\xa10\xa8\xb4BBI \x8e\xe9\xb7\xbc\x96d\xb2\xce\x9a\x17\xcf)5N\xdc>ZDN\xc1\xb2\x04\xa5*a\xa9OHw\xe0\xc7\x06\xbb\x92\xcc\xf4\\w\xcdKl\x11A-.'\xefm\x8f\x18\xc3\xbd]D\x9cx\x1f7Qr\xce\xa5|\xbe\x0fC]\x90\xe9#\xb0w\xf2\xd2Ljf\xfa\xdc>O\xb0\xa2\xe5\x0c\x92*\x17\x90!\xd3T\x86\xcc\xb4\xe5\x97\xa4\xc8\x90_\xc2\xb1\xf7!\x97\"\xc3\x8c\xa7\xf8s\xce\xbb\x0eI2\x90$3\xbb|V$\xc90\xf3\xb5\xf5\x1c\x99\xa9\xebk\xe6\xc9\x1c\xaa\xca\x939\xe2\xe6\xc9|\xc6c\xdb\xc5f\x8e\x87\xca=\xad\x86re\x8e8\xb92\x87\x90+\x03\xb92\xcdS\xf9\x82\x1c\xb8|\xf8\xb1f\xf3\x94%\xfd!\x009y\xd5D\xa9y\x08@nAK!\x00Y@`\xcb{\xcd\x9a\x19\xbfN\n\x07\x01\xc8R\x8bbk\xfe\xd16\x1f2\x04 \xaf\xe0\x8b\x0d\x01\xc8UO\x07\x02\x90\xb9\xca\x00\x01\xc8*\xf6\x896\x9f\x0e\x04 /\"\xb9\xba\xedT>-\xc1\x87D=\xcb\xe2\x0f\xa8\x10D\xd2\xda\xa0'\x9eW\xc9E\xb8\x06\x11\xb1<\x8b\x81\xf7\xecw\x16R\xceFlrAy\xe5}\xaf\xe2\xba\x96\x14\x7f6\x89w\x7f\xb0oD\xf8np\xffB\xf0\xe1\x8b7\xb8\x7f\xd8;\x0c\x9d\xbb'\xf3\xe5q\x1f\xf7\x8d=s\xf7h\xa1g\xb3h(!\xfd\x10%\xe6\xd7\xa7z\xd5\xb1*V\xfe\x84\xcb\xca/\xbbz\xd5 \x87\x91?\x06F\x1e\x18\xf9\xe6q\xba\xe0\xfaj\x0c\x89q\xdf\xdd8^\xde\xe0a\x97\xb4nK#\x95\x90dG\x1b/j\x12\xbb_|ys@Kv\xf0r\xb9Z\xb6\xab\x11\x87#\x94\xe3\x94j\xcaA\xae\x94r\xdb\x83\x16\xc8.\xcb*\x92mk2n\xcb\xe9\xcb\xf0}\xf1\xe5\xfah\xca\x9a\xe5\x92\xf1\x1e~\xe1\xc1\xffu\xa1'\xca\xed^\x16\x91kEz\x0b\xaa\x8fIl\xeb\x91\xf8\xb0\x0f\xcf_]\x9b\x90\x8e\xecha\x1fng\xe8\xb0\x0f/q\xdc\xb0\x0f\xf3f\x00\xfb\xb0\xc8~\xba\x8a\xfb\xb0d%\xd3\xcb\xcb\x83w{\xfb\xdb\xfb\xdb{\xfb\xe7\x07\xbb\xfb\x07\xdb;\x87\xbb'g\x07\x87\x97\xdb\x17\x17\xe7{\xc7\xefN/\x0e\x0fv\xdem7X\xf3@t^\xe2\x85J\xb7\x17\x15[M\"t\xf6\xd3\x14\xc8\xa9\xfec\x87e\x96\xd4\xc9\xad\x9ej\x9bLmUr\xac\xa7F/\x9ak]lFs\xae/\xe9\x17\x08\xa3\xc2)\x8c.=\xc9\xe5td9.z\xb2|\x82\xfa\xae?\xc2\xa1\xde'\x0e\x97N\xe5OI\xfa\xb3\xeb#\xc7\x0d\xff\x8c\xfa\xbe;B?\xdf|\xfa%\x9ed\x0f\x07\xe4p\xffu\x9a\x9f\xc4\xe6\x1b\x10\xdf\xc2\xb6\xf5BL\xd4\x1b\x87\xa4$]i\x15\xf2\xbfC7I\xbbZ(SZ,\x89\x0e\xd2\xa5\xf5Hk\xd1-\x91p\x19\xe9\xd2\x90*X[ox\xf9vuS\x05\xd9\x02\xf4\x84\xe9\xb9\xd9\x06 \x82~d\xdbcd\x92$\x0b\xd41\x91O\xd2Ew\xb9)\x845\x8f\x07\xcbMi\x84m\xb6\x17.{\xe85\xb3\x1f\x93\xa4G+M\x82$\x9b\x9e\xfd\xd8I\xb7\xc5\xf9[\x02$A\xd2\x87\xb1bI\x90\x99`yv\x85x\xc8\xc5:\xe5B\xeen+\x8a\xba\xd8\xdd\xe1F]\xb4\x90\x0b\x19\x8f\xaa*\xf2bw\x1b\"/ \xf2\xa2y\x1f\x88 '\xb3q\xbe\x1e\xc8\x85L^5QJ\xad\x91\xb8KY\xa9A.\xa4\xac\x94\xdb\x94\x16\xe4B\n\x8d_'\x85\x83\\H\xa9E\xb1n\xa6\x84V\xee(\xd9\x87\x0c\xb9\x90+\xf8bC.d\xd5\xd3\x81\\H\xae2@.\xa4\x8a}\xa2\xcd\xa7\x03\xb9\x90\x8bHn\xe9\xed\xeaE.H\xf1\x89k\x93\xc2\xb5\xbb\xab\x8aL\xdc\xe3\x92\x89KN\xe1\x8aGTI$\xee\x02\x91\xc8'\x12\x81\x0c\xacK\x06\xf2\x96\xd7\xdb!)\x8d[y=\x1d\xb7\x82\xfa\xaeO\xc3x\xc2gE+r\xbd\x15\xb2t\xcd\x14\x88\xedb\xfe\xe2z\xb1]\x85\xb6\x13\x0d\\\x91\xd8\xae\xc2\xe8\xc5c\xbb\xf2\xcdhl\xd7\x05) \x88\xa2\x01P+\x18\xddU:\x99\xd2\xe8.\xa1\xa8.\x14\xba4\x0cle\xa3\xbb\x98\xb4\x97\x10\xdd\xc5/\x91.\x11\xcdU\xb6\x1c\xce\x84i\xe9\x16\xc7\xc4\x16\xe0\xc2\xf2 qL\xfaD4\xf0\"g\x9a\x89cZn\xf4\x0f\x04.A\xe0R\xba\xe2'\x0d pi]\x02\x97R\xc1\xf2@\xb38\xd1\xb0V\x81K\xfb\xaa\xb8\x86\x03.\xd7\xd0F\xe0\xd2\x01\x87o\xd8\x07\xbe\x01\xf8\x86\xf6\xf8\x86\x9b\xc73\xeb\x1fd\xff\xe3\xe7\x07\xeb\xee\x9f\xbf\xbb\x1f\xdf\xbd\xfbp\xf9\xf2\xf3\xb1\xb1\xfb\xe1\xf3i\xffq\xf7\xf2\xddW\xe3j\xf8\xbc=\xfe\x8c\x07O\x97\xc3\xdb\xf1\xf6\xe3\xe7\xd3\xbf\xbc\x7f?<\xbf\x0c\xec\x8f\xff\xc0\xfb\xa7\xfd\xed\xe8\xec/\xa3\xfe\xcd\xd0\xbd>\x1f|{1\xdf\xbf\xf3\x7f\xffruq}{\xfat9\xf8\xf5\xd7\xa7\x9f\xdd\xebV\xf9 \xa9\x85u}\x18\\UGc\xec\xf2\x8f\xc6X6\x83\xcb9\x16c\x17\x8e\xc5\x10XQ\x93\xffB(h\xd3\xabq\x8d\xc8\xc8\x1a\x13]^\xd0\x16oC\xd156RP\\5B\"k\x88\xabI\xbd\x94\xf5\x01CP\xa4\x80\xc0\x96\xf7~53~\x9d\x14\x0e\x82\"\xa5V\xc3\xba\xa1\x0fZ\x05E\n>[\xcdb!\x05G];\x04r\xc5w\x0e\x08\x82\xacz:\x10\x04\xc9U\x06\x08\x82T\xb1/\xb4\xf9t \x08r\x11\xc9\xd5nW\x8f\n+%\xc7\xb2P\x9d3\xec\xdc\xcf\x89\xc4a?%\x03\x9b\x04\xda\xf4\xffyI\xaeG\x0b\x06\xda\xec\xe4~\xeb\x87\x8f7\x91\x87\xec\xd1\xb5\xff\xe9\xbdp\xa4\x0d\x1b\xddt \x0d\xfd\x96\xc6\xc9\xc4\xff\xfa\xb13\xdc\x11y\x00Y\xc8M\x0f;\xf7\xf1\xa7\x8d\x1d\x83\x04\x7f\xec|ON7\xffOg@\xe6\x05,\xc9t0\xf30\xf5\x88Z\x92\x99B\xd9\x13\x17lK\xe5\xf2\x9e\x844R)YCPzq\x03\x81J\xd5a?\xf1\x98\xb3\x9b~\xc6>\x1e\x91\x90\xf8\x01\x0b\xe1i-\xec&y`*bo\xb2\x93\xf9\xd9\x95E\x1dr\xed\x1e\x0e\xe2\x91\x0d\xad\xeb\xf7O_\x90qc_y\xd7\xc8 \x1f/\xf1\xed\xd6[\x9f#\xaf\xb7 \x94\\\x9e\xd6\xb2\x1b\x82\xce.\xa8\xb3\xa7\xd4\xaas\xfbh\x11\xe5\x0d\xb8\x8d\x93{S#~x\x11},\x8c\x02\x99\x97\x97F\xf8~\xeb\xed\xbf\x90\x15\x92\xd1\x84\\\xfaw\xb3o\x05\xa4A\xd7\xd6L\x1eq\xbf\xbb\xbd[\x87\xb8\xbf\xcd\xa7@\xb3\x0c\xe8\x01q\x88\xbf\xfcD\xe2\x9a9\xd0W\xce#\xb6-\x13\xf9\x0c\xf4,w\xcc\x9b\xe4-i,\xf9\x99R\xe9\xa9m:\xa1\xd2;\x99eZ\xb5\xe5\x80\xeb\x84>\x8c\x95s\x9dT\xcb{v\x0b)\xbe\x00\xe2N\x94uJ\x95\xdeSu\xc6\xc3\x9e\x96g<\xecq\xcex\xd8\x833\x1e\xc0\x97\xb2\x04\x97\x84 \x95\x9f\xf1\x06\x132\x7f\x15g+\xeb\xc1\xe8\xfbR\xfe\x97\x84o\x1b\x9c\xe0\xa1\x7f\xf8<\x1c\x86\x07\xfe\xe8\xe1\x918\x87\xbb\xc7\xce\xbd\xfdlG/\xe3\xc7\xe3\x97\x93\xbb\x87;cd\xe8\xe3\xa7\x91LD\xb9\x89\x97\x94G\x0b\xa3s:]\xf4\xcd\x1d\xe3\x01\xf1\xd1\xff\xfd\xef\xff\xfc?}&e\x0c\xb1\xe5t\xad\xea3\xab\x8b\x13c\xf3y\xfd!\xea\xe93\x8d\x0d\x8d9\xd7('B.e4\x86\xcf\xdb\x1a=\xfb\x01\x0e\xba\xd8\xbc\x8b\x82pD\xa4|\xb1;ov\xf5\x99E\x9f\x90u:\x0d\xbd\x99\xf1\xeb\xb4qB\xe4B6(\x91\x08\x84\x85#\x17\xda|X\x815\x8al\x1cV/\xef=\xd7\xb5 v\xb6\xdeR{\xad\xe6t\x1b\xc9\x02\x13\x9ce\xbd\xdc\xfb\x1a\xf8\x17\x96!\xb1\xd1\x8b\x08\x0d\x96\xa1z\xef\x97d\xbb\x85\xb3\xefk\x06^I\x91ck\x13a\xbc\xa7\xea\xc0\x82=\x91\x03\x0bv\x97\xca\x8aq\x0e,\xd8\x83\x03\x0b\x80\x15[\xc2>#\xb8>C\xb9+\xe9%\xbf\x11\xc4*(.(w%/^\x95b\x92\x1d}=\xc8-\x0dX\x97\xf7~53~\x9d\x14\x0e\x00\xb7\xd4j\xd8\x1a\xe0V\xf9\x90\x05\x9f\xad\xa4\x97\xa1\xe9\xc5Hp\xd4P\xeeJ\\dP\xeej\x9d\x97v(w\x05\xe5\xae\xc4\x1e\x93F\xee\xaf\x1a\xae\xc7vv\xf4E\xa9\xb0Rr\xac*\x071tCl\xcb\xd5w\xca5I&\xb2\x02\xf9\x84\xb9A\x0bd\x0dN\xae\xa6\xb9\x81\xb7\xf1\x9f(\x88<\xcf\xa6Q\xec,M\xd0rh)'\x1aa\xd0L^ \x04\x89\x0b\x04\x8c\xf2\xe2\x95k\x96\xa4\xf9\xf4q%\xc2\xaa\xaf\xd2x\xea$\xbe\xfar\x15\xc2\xaa\x1b,BC\xdf\xdc\xac\x01\x04O\xafM\xf0t\"X\xde^\xb7\x89\x8e U\xa7I\xed\xf1O\x93Zr\xa9\x99=\xceIR{p\x92\x148\x82\x96`$\x0b\x9a\x19t\x8d\x92e\x03jL\x15\xa8j\xb1\xd1\x8b\xc8\x0c\xa8\xea\x9a\x06\xaa\\\xbb\x85\xa9\xea\xa5\x1a\xc4\x7f\xec|\xa7za9t\x18\x92\x05\x90+\xba\x98,\xa2+a0\x97OB\xd4\x80.m]jPc\x14X\xce\x80\xaa\xbf\xe5\xa0|\xa3f\x0c\xeb\x95+\xb8\x93\x7f$\xb3\x80F\xbe\xeaN\xe1\x11\x97b\x1e(\xbd\xa3\xa2\xf4N\x84CwT\\\xfa\xe6\x03\xaa\x8a\x92:\xe73\xefE\xcd\x1a:\xe6\x8c\x89\x04\xc4\xd2z\x13K\x0b\xd6\x18\x98]\x91\x97:z\xa0\xc5\xd4\xd1b\x9d\xe2v\x0c,\xd9\x9a\xb2d3r\xe6\xe1\xe1M$\xcdT\x1d\x16\xbc\xa7\xdda\xc1{\x9c\xc3\x82\xf7\xe0\xb0`\x01\xd2\xacl`\x8b\x11_\xb3\x96.?\xd4\xa9\x11\xab\xf74\n\x87s\xacY\xf6Sn\xc5\xd1\xea\xd4#6\xbai\xf3\x93~K\xcd\xca\xf8_\"\xa7\x1e\xc5\xd7e\x06+\x8e\xc2ai\x9d\xd8\n\xa3_\xa6\x83\x99\x87\xa9\x87\xc9/3\x85\xb2'.\xd8\xb6\xf4\xd4\xa3\\eL\xe4:\xa8g\xbb\xc6}\x83n\xf4\x95\xb3\xf6\xa1\xbc\xeeT+\xadm\xfc\x96\xcb\xeb\x02\x13\xd0\xb8\xc1\xc03Rk2\x01\xa7\xe5\xcba\xbcR\xe6\x96\xc4U0\xb7\x0b\xc5\xfd\xc8\x8a\x14\xf7k\xc6\xdc\x8e\xb7\xc3\x92Jo`l\xaf\x95\xb1=W\xca<\x10\xbe\x89\xa6\xb6\xaa\xa3\x90\xf6\xb4;\ni\x8fs\x14\xd2\x1e\x1c\x85$`jC|\xca\xa2A\x0f\x82\xc1\x02\x92\xb9\x1b\x9a\xe4^M\xa7g\xac\xa2\x80\xa4\xc3:\xea&]4-3\xe9\x89$\xa6\xec\xea\xce\x80\x06\xfb\xcb\xaa\x9ftH\x14\x84t\x89\x8d^Db\x10\xd2\x95\x0dJ.\xc4J\xae]#5\x1cd\x1f\x96\x17\xf5l\xcb\x80,L\x9e\x86\xeb\xb5\xa6\xcaf\\\x96\xbaF\xe4\xb4U\x8b\\\xca\x1ay\x88*\xa7^\xbb]\x13^\xa8\x9b\x10\xdfSZ\xbf\xd4\xc3\x92\xfd\x9a\x0cO;_T6\xc0i\xe7H\xfa\x03;U\x90\xfd!\xe2\x94J.\xcd\xfc*\x01\xfb\xfb\x8f\x1d\x93\xd8d\x80C\xd7\x0fh@e\xf2\xc7\xa9i\xfa\xff\xc9~\xb4\\'\xa8\xf0W)\xea{F\x16z\xb8\xb2\x14\xcdn\x8e \x17\xec6s\x80\xc5vk\xeeGv\xca$FY{\xf0}%\x91\xae\xb9\xe7\xa9\xc2\x03V\xe80\xbd\xbe\xa8\x91\xe0\x07[E?\xd8\x19;S\xf2\xd40N\x93\x83&\xdd>\xba\xc8^'p\x8b5M\xed\xf3\x9cI5\xddb+\x16 \x9b\xad/S\x0e\xd9%\x8d\xbe\xa6\xc7\x0e\x02d3\x8f]\xb2\xafw&\xdbzgjW\xef\xe4\xf6\xed\xacSp\xe4\xad\x83#OV\xf8<\xf3f\x03\xfd{\xfb\xaa\x8e\xe8\xda\xe7\x1f\xd1\xb5d\xff\xde>\xe7x\xae}8\x9e\x0b\xfc{Ka\xf0E\x89\xfb\x1a\x03\xd7\x89\xd7\xcc\x96\xde\xee\xea;\x8e(<\\\x93\xb9\x04C\xec\x93U\x9e@\x0f\xdb\xb8H\xbc\n\xbdN+\xed$\x00?\x98U\x8f\xee^N\xbbII\x84\x06\xe9\xf5\x05\xd8Kv\xf8qC|\xf2\xf4\xc9\xcakF(\xb3\xe9\xa9g\x94\xd9A\xd3\xd4\xb3\x10\xf5FV\x98c\x94\xf3\x16\x04\xd0\xbf@\xff\x02\xfd[\x87\xfe\xadzc\xd2\x93\xb5\xcf\\s\x8c\x02cHF\xf8\x87\x99\xa7d\x9c\x07\x9f\xee<\xd4\xfbf}\xfbzQf\xab%\x13\x8f\xdf2\xa1)\xf7\x87Og_\xcf\xe9\x94\x93\xd9\x11\x84\x1d\xc4v\xc7x\xce\xb6\xf5\x10%\x89\xfa\x01\n]\x84Q\x86<\xf3OA\xfa\x95\xe6\xbe\xcd\xb1\x8dxs\xfa\xf9\xee}\xe1\xbdF#\xe7\xd3\xfb\x87\xf2\xb7;;?X\xf4\xc5N@\xda,$C\xc9kn\x91\xe94\xa9\xa9\xf7?\xbde\xf6r\x95\xf0vw\xbf\x8fl\xaf\xbf\x16\xe4\x9cn\xab\x93\xdb\xbb#FX\xb6: )\xff\x14\xf1W\xfe&K\xa8\xac\xc4\x06\xd4U\x98\x857\xd3i\xf6@4\x13\xd7\xfc\xcdDN\\\xde\xdb\x1e[\x9e\x89\x13\x83[S\x94\xdfQ\x12#QT\xac\x8b\xef'\xec\x86\xb0\x9b\xb4\xa2\xd1\xcb\xd8M\xa6q!\x83\x85\x10\x10 \xa07<_\xf5\x86\x06\x04 \xd7\xcf\xd9\xe9\xc8O\xcc\x88X\xcd\x96=\xb1\x9d:\x13\xfbH\xc6\xc8\xc3A\xf0\xe4\xfa&\xb2\x02\xf4\x14\xb7[\xee\xc87)\xcaa\x9a\x1aK\xc2\x1c\xc8/\xe1\xd8\xfb\x90\x0bs`\\P\xfc9g1\x85@\x87Z\xab\x18\x04:\xa8\x0dt`\xab]\xebq\x0eS\xd7\xd7\x8cuPu\xe8\xf2>\xff\xd0\xe5\xcfxl\xbb\xd8\\j\xbc\x03\xe7\xe0\xe5}8x\x19\xe2\x1d\x96\xe0\xe9\x14\xf4\x10ftbr3Q\xaf\xaef\xb3\x95u\x8c\xf6})\xb7nB\xcc\x0fN\xf0\xd0?|\x1e\x0e\xc3\x03\x7f\xf4\xf0H\x9c\xc3\xddc\xe7\xde~\xb6\xa3\x97\xf1\xe3\xf1\xcb\xc9\xdd\xc3\x9d12\xf4q\xffJ\x1e\x14z\x13/)\x8f\x16F\xe7t\xba\xe8\x9b;\xc6\x03\xe2\xa3\xff\xfb\xdf\xff\xf9\x7f\xfaL\x8a\x96\xf4\xe9Z\xa6\xc4\xc4\xd8|^\x7f\x88z\xfaL\xa3vz\xfaj\x9f \xa8\xd1\x99\x95rGz\xc7Xz[\xa3g?\xc0A\x17\x9bwQ\x10\x8e\x88T\x88\xc7\xce\x9b]}f\xd1'\x04\n\x03\xf0\xc6\xaf\xd3\xc6 \x01Q\xd9\xa0D\x02\x94\x16\x0elj\xf3a\x05\xd6(\xb2qX\xbd\xbc\xf7\\\xd7&\xd8\xd9zK\xed\xb5\x9a\xd3m$\xb3\\p\x96\x8b\xc4\xcb&\xb8\xd0$\xde\xfd\xc1\xbe\x11\xe1\xbb\xc1\xfd\x0b\xc1\x87/\xde\xe0\xfea\xef0t\xee\x9e\xcc\x97\xc7}\xdc7\xf6\xcc\xdd\xa3\xe6\xde\x02\xc1\x99.\x12M\xcbf\xfa\x88\xed\xb8kn\x84\xca\xee\xd3\xbe\xb3k\xb7>\xe1\x99\xb7]h}^q\xd3\x06V\xe8zKO\xedv\xf5BO\xa5\xf8\xbf\xf5ItRu\xd0\xe6\xbev\x07m\xees\x0e\xda\xdc\x87\x836\x81\xf8[\xc2~!\xb8\xce\x8e\x82\xc1\x126\xc6\xe5\x99^\xbcm\x82\xfd\xb5\xd0V\xd1\x08(\x17\x14W\x9fH'\xde\xd4\x10W\x93z)\x0b\x04\xe4\xe8\x992\xf1\xaa\x14\x93\xec\xe8\xebAOij`y\xefW3\xe3\xd7I\xe1\x008K\xad\x86u\x81\xf3\xc2\xc7\xd8\xaa|\xc8\x82\xcfV\xd2\x91\xd2\xf4b$8\xea\xc0\x1a88\x8c\xfcM\xdb9\xca\xe6\xcd\x13\xd9\xf5\xe5\xd7\xf3\xab_/\xb6w\xfb\xc1\xc5g\x1f\x1f_\x87\xbd/\xc1\xf8l\xe7\xe9\xa8\xf7p{}p\xf0[\xb4\xb3w\xfc\xf2k\xef\x9d\xf1\xdb\xf3\xfe_\xce\xdf\x8dO\xaf\x06\xe4\xe0\xb7_>\xf7?^E\x8f/g\xbf\x1f\x9e\\\x8f\x1f>\x04\x0f\x17\xc77;WO\xd6\xa5\xf7\x17\xebk\xef\xf0\xdb\x8d\x19\xda\xde\xe0\x9f?5\xa7\x0c\xb2O\xc7\x8bzP\xeb\xb3Z\x19B\xe2\x98\xc4\x1fYN\xd8\xf9\x1c\xf5>\x92\xf1\x0d1\xbc\xdd\x83\xc3{\x8d\xbcW\xb2\xf5?O\x1f_\xb6\xf7\xbf\x0d\xc3\x8f?\x0f\x8fO\xcf\xcf\xbf\xbd\xd8W\xc7\xf8\xd6\x0d\xde\x8f\xb7\xad\xfbw\xff\xf8x\xf5\xed\xc3\xaf{w\x1f\xaf}7\xf8\xa0f_h\xf3\xe9l\xa8w\xb5\x9d\x1d}Q*\xac\x94\x1cS\x97\x85\xfd\xc7\xce\xf7\x8c\xf9fQz\x0dV\xf9\x9cs\xb3\xe4\xe1\xad]\x96\xf6\x9c\xe9*\xcf\xda.\xbf\x0f\xcd\xe2\xfe5\"\xfe\x98\x9e\xf8dD\xbeO\x9c|B7\xea\x91\xf0\x89\x10'_$\x14Q^)\x97\xe0\xb9\xdaEC\xb9 A\xfc\x14/H\x18\xafh%\x99\x16V\xde\x0f$\x8c\xd7Kf\xe3\xebnaUP\xa1\xbb\x85\x0eAw\x9b\xd6]9\x8f\xb2:\x15\xfe\xe4\x11?\x95r\xa2\xc7\xa5)\xff\xe5z\x0cuo\x17L\x10\xe1%+mp\x9a[\xa6\x86P\x0c\xb7\xe941\x1d\x8a\xe1v\xa6\x80mv\x13\xc8\x19\xdb\xbc\x9c\xb1Ye\x98\xdd\x84\x8a\xef\xcd&\xc6\x90\x1c\xaa\x8a!9\xd2.\x86\xe4\x88\x13Cr\x081$\x10C\xd2<\xbf.\xc8P.\x12:\xab\x89\x8fl\x91\x98XM\xa6\xa0]aY\xc1q\xd7\xac'\xab\xd9\xab\"\xcb\xeaC\x94\x81U\xcf\xb7P\xb7\x9d>>\x89\xc8\xe9\xb9\x8ei9\x83n\x1e\xf2\xa9vFT\xdc%y\\\xeb\xe1\x85\xa8\x98\xa7\x1a\xf7\xc3\xfc\x1b\x14\x0e$\xcb.\x83\xa3\xc9\xf8t-\xb8\x1aV\x9b\xae\xe5\xf2\xb4\xda\xb8\x1a\x80\xa2]\x90\x8f\xe1\x11\x85\x1bJ\xd1.w\xf4\xc0\xc6.\x81\x8d-\xdd\xe8\xb3\xee\x81\x87\xdd\x10\x1ev\x8e\x1a\xf0\x8c\x82Md`\x8fU1\xb0'\xda1\xb0'\x1c\x06\xf6\x18\x18X``\xc3%$\xdf\x88\xe6\xdc\xd4\x18\xb8^|\x98\xbe\x1c\xb2\xec\\t&\x93e\xe7b9Vha\xbb;\xcb\xd2\xae\xdaLV\x7f\x06\x86O\xe8m\xbaC\x12c\xcc\xca\x99$\x11\xefo\xb7u\x18\xf8\xc8r\xba\xa15\xaa~\xf63#\xce\x8dD\x8e\xea\x95k\xa7\xe3\xe1a\xe5\x9c\xa3\xf2c\xc4\xaan\x93<\xb0u&\x89U\x1e-Vq\x87\xfc!c\xd8)%\x8a\xe1\xc4\xb1\xe2\x02\x02\xacny?\xc0\xea\xae\xec\x89c_\xe9k_\x1c\x15\x1c\xb89a\xf4\x93\xa7\xb22\x1c\xb6\x9c\x91\xaf\xd2\xa3\xa1@\x88\x13\xe0IK\x19(\x90d\xb1\xc7\x8d\x11\xe77l\xe7\xc4y\xe3\x1b\xdf\xc4\xb9\xfd\x06}T\xdd\xd0U+\xd4\xd0\xddP\x91^\x04\xa1\x84H\xc1]\xb3 #\xcbs\x1a\xac\x88\xbb\x06|\x1b\xaa|\x1b\x05\\\x96\xb5\x05G\xc5:9*\xa6d<\xbb\xbe\x16\xb5|\x13\xbd\x0e\x87\xaa\xbc\x0eG\xday\x1d\x8e8^\x87C\xf0:\x80\xd7a\x19\x14\xb0(\xf3[c\xe0:q\xbf:\xfbMd\xe721P\x02\xdfX\xab\xf9\x98A\xb8\x06\xf3\xa9\xe9\x1d\x92\xf6\xad4\xbb0\xcc\x9bu\xd9\x8b\x8e\xda\xa3\xa3\xe5\xda\xe9x\xa0^\x91\xa3U~\x90^Y\xf7\xc9\x03Z\x19\n\\z\x82\xc2\x04\xb9l\xcf\x85\x03\xf3\n\xfc\xf9\xd2Yr\xb5\x89\x0e\xaa\xd8\xb8\xc23TA\xc7\x15:,\x87\xb1\x101\xae.b\x9c\x1b*\xaeM\xb6\xc3\n\x1e\xb4w;$(\xa0\x89\xb24M*|F\x96\xd3w\xfd\x11[@\xe0L=8S\xaf\xd5\x95h\x19\xa7 I\xa8\xac\xc4f\xa3\xf2\x18\xb6\x99N\xb3\x07\xa2\x99\xb8\xd49\x81\x16?\x86M\x810K\xcdZE2\x9d\xd77\x88v\xc9\xa2\xcd[\xf8J\xe5\x9a\xeb\x18\x84\xca\x17\xaa*\xb8\xcf\xce\x07V!J\xd6\xd3\xba\xcbN\x06\xd0\xd2\x9f\xc1\x83.\x02\xa9x\xae\xe9\x9a\x1e\xf4\xdbg\xf4\x14[\x96\xd4\x8b\xd5\x8fl{\x8c\x06\xc4!~l\xad/\xd7\xb7\xdeD*d\x9e\xbdh\xf1\xc8\xc0M\n\x1bh\xf3\xe0=\x08*X\xff\xa0\x02q\xf1\xcf\xeeC\xc5\xd7C<\xde`\xad\x0e\xda;V\x15rp\xc2\x0d9h\xe3\xa0\xbd\x13N\xd8\xc11\x84\x1d@\xd8A\xf3\xde{AG*\x1c\xb4'\xe2\xfe\x86\x83\xf6\xf4\x99\x14\x1c\xb4\xa7\xcd\x1cj\x94\x82\xd4\xa8T\xa9\\%w8h\xaf\x89Y\xc0A{\x02\xe3\xd7i\xe3\x84j\xf4\xd9\xa0D\x82\xa1\x16\x0e\xa2j\xf3a\xc1A{<\xedX\xd5\x83\xf6\xa6\xbc\x7f\xb2\x13\x96+y\xa8\xd1\xbc\xeb\x05\xbf\xae\xe4\xa4\x13\xaf\x91\xf8,w\xa6\xd1M\xddw\xb8f\xdc\xa7\x14!\xb66 8\x87\xdb\x8a\xd8\xb0\xc3\x1d.\x1b\xb6\xe4\x04\x9cxDUL\xd8\xe160a\xc0\x845\x0fq\x05\x17L8yNz\xc9o\x04\xa5\n\x8a\x0bN\x9e\x93\x17\xafJ1\xc9\x8e\x1eN\x9e\x13\x1a\xbfN\n\x07\xb6\xbe\xd4j\xb8\xb0\xad/\xd9\xaeM\xa3Y\xd2\xb3\xd0\xf4b$8j8yN\\dp\xf2\xdc:/\xedp\xf2\x1c\x9c<'\xf6\x984ry\xd5p7\xb6\xb3\xa3/J\x85\x95\x92c\x0b\xa6@g$h\xad\x1a\x9fR]'\x0ff=R\x9f\xa7'\xa7&\xedy\xaa\xd7\xa9\x93\xe0&\xbf\xa2p\x88\xc3\xc2\xd9oV\x80z\xaec\x12\x13\x85.\xe4CC>t\xc9l\x16I\xb5(\xef\x07\xf2\xa1\xa1\x0c\xa3\x92\xd0p^\xa2B\xcd$\x92e\x97aT\x9d*\xb2\xdc\xd1oR6H\xb3E$+r\x01&{x\xd6'\xe4\x81lH\x1eH^\xf6\xef]U>\xef=\xed|\xde{\x1c\x9f\xf7.\xf8\xbc\xc1\xe7\xbd\x0cW\x95\xa8\x87\xaa\xc6\xc0u\"2\xdd\xe4\x14\xdc\x95\x0f\xeb\x92\x9d\xb8\x11o\x06N\x10\x05]/\xea\x15\xe9k\xe1\x89\xc7}xQo\xe7\xc5\xb83#\xe2=l?F\xbb/\x83\xfb\xc1\xfd\xfe \xe9\xe3m\xe7\xe1\xe9\xc51\xb1\xf3p0\xda7\x8e<\xbc\x17\xedc\xefe\x7f\xb0\xeb\x9f\x0c\x02\xefap881\x82\xbd\xfb\x13#\xea\xeb\xf3\\\xee\xb0e\x93\xea\xe4\x90,d5\xde\"t\x18s\x10\xe20\xaaV\xdd\x84\xb7}\xbb\xad\xc3x\xe9\x9f2\xafZ\xd3\xfe?\xd9 Lb~\xa5\xc3$\xf5\x9bJ`\xf8\x96G\xef4\x99\x85\xd0\xd2\xbf\xd2\x1e\xac\x91\xebX\xf7R\x9e\x0c\xdd$g\x99\xc4 \xadPf\xe5\xd6m\nO\xa4\x17X\x9c\x04\x01\xbdg\x10\x10#\xf2\xadp\xdc\x8d\x0d\x0cl\xc8\x84\x8b\xe86\x15\x93\x84\xd8\xb2\x17]\xcbr#\x93ru\xb59\xf3\x9e\xeb\x98\xf2\xa7\x1cj\xe4\xd9\xa4\x13\xb0\x9c\xd0\xc7\xdd\xf0\xb9K=\xb5\x9c\xa5M+<09\xf5{\x95\x850\x99\x85\xe4Y\x93;'G\xdb\xaf\xb7w^o\xef\xdcno\xff@\xff\xf7\xbb>\xd32\xdc\xd1\xc8\n\x82M\xc3\x07>/qM[=\x1c\xe1\xe7\xeej\x8f\xde\x18bg@Vx\x12\x91g\xe2\x90\xa8_\x07\xean\xaeKj\xa7c\xe9\xfe \x97\xfe\xc7\xce\xf7\xec\x0f\xc6\xb37\x17\xc82\xe7^\xc9\xa3[\xb7\xc8\x969\xb3U\x1d\xeaR~\x9b|\xec\xcb$\xf2e\xad\x03_ \xe6\x05b^x|\xb361/\xea\xe3\xb5\n\x8b\x80\n\xdd-t\x08\xba\xdb\xb4\xee\xca\xb9L\xd4\xa9\xf0\xd4\x01\xba\xe2*\x0ca[\x0bFr\xf0\"\x8a64l\x0b\xb9~\x0e\xb1@,\xd7\xfa\xc7ru\xa6\x10lv\x0f\x88\xed\xda\xb8\xd8\xaeY]\x98\xdd\x82\x8ao\xcd&\xc6z\xed\xab\x8a\xf5:\xd0.\xd6\xeb\x80\x13\xeb\xb5\x0f\xb1^\x10\xeb\xd5<3.\xc8i\xaeM\xa4\x94\xe0|7%@J\xf0q\xe8\x10\x17%8\xd4\xb6\xc3\xa1\x04\x87I\xff\x94y\x8d\x9a\x0e\x18\x10\x1c\xb7\xc6\xc1O\xc23\xa8\x1d\xf3\xa4\xd9\xda-\xeb\x98\x82\xa8'\x0d\xa6\x00QO\x1aMe}\xa2\x9e\x04'\xac]\xb0\x93\xcc\xb8\xf5\x89q\x12\x1c\xb5\x9e\xa1M\xd2\x83W\x1e\xc9\xd0\xc2l\xea\x072\xad\xf8\xa6\xbf\xbaq4\x10\xca\xd4\xfa$\xd6&\x94i\xa9!I\x8bU\xcbY\xf5\x828\xb5k\xde\x94\x95\xb5yO\xc2bQ\x1bd`\xc7\x8c\xffI\x827\xe8l\x8cL\xd2\xc7\x91\x1d\"+D> #\xdf \x90\xeb\xd8c\x14\x0eI\x1a\xf13\xe9\xf7\xcd\xd2C\x7f\x1e\"\xe2\x8f\xb5\x8a\xfdI\xf8\x91\xe2\xbbS+p\x82\xf5\x94=\x0f\x88z(\x8dz`O\xe9'\xa6\x8b\xc5u,[QrR\xe0\x863\xdc\x0eI\xeem\x88\xbbE\xec\x16o\xd0u\x14\x84\xa8G\x10\xb1\xc2!\xf1\xd1\x7f\xff\xd7\xde\xc9\xdf\xd8}\xe9?\xff\xca\xbea\xb8.\xfb\xce\xf5\xf3_\xc7\xb6M\xfc\xd7\x1b~\\\x84R\xad\xf4\xf0\x80\xa8\xd0\xc9\xb8\x1f]5\xd2rB2 ~\xfb*\x19?\xa4\x9fv\x14\xe9b\xdcYblI)\x8d\xaax0\xdb\x1aY\xa1\n\xd5\xa1\x1d\x81\xeept\x87>%e\xca3\xc2\xcf\xd6(\x1a%\xfa\x83\xdc>\xb2B2\n\x90G|\xaaX\x02\x1a\x05\xe1Y\x0b\x06c\xf0\x82\x84V$<\x0bb\x99T\xc52A\xf1\xa95\x0fP\x82\nS\xd5QG\x87\xaa\xa2\x8e\x8e\xb4\x8b::\xe2D\x1d\x1dB\xd4\x11D\x1d1\xf2\x0c*L) P\xd7&nJv\xe2\x9b\x12@%\xfb\\t\x88\xa4\x92\x1ds\xdb!U\xb2\xe3\xa5\x7f\xca\xbcj\xfa\x85%h\x1bd%?\x95\xda\xd1V+]A\x02b\xad4\x98\x02\xc4Zi4\x95\xf5\x89\xb5\x92\x9d\xb9vAW\xb5&\xa0O\xf4\x95\xec\xf0\xf5\x0c\xc3\xaa?\x0b\xe5\xe1\x18mN\xab~`\xd6J\xe3\x83\xd5\x8d \x82\xb0\xac\xd6'\xb16aYr\xedZ\xaa0\xc5\xabAT;\xbekM\xeaDq'T#\x02\x8c[\xed)\x1c\x12d9}\xd7\x1fQ\xe5@}\xdf\x1d!\x8c\x02\xcb\x19\xd8\xb9\x00\x99\xa5\x07|\xa9\xad\xf5\xa4*H\x02\x8a\xe6T\xb4\xd2:|\xac\x0e\x0b\\\\^\xb3\x85.'onpFR4\xe7SB_\xe7*\xe7L^-\x08\xcdh\xda\x0d\xcd\x8byX\x91\xd0\x8c\x05+\xe7@\x91\x9c\xb5\x0b,\x81J8\x1b\x16h\x02\xe5nD\x02O\x8eU\x05\x9e\x9ch\x17xr\xc2 <9\x86\xc0\x13\x08\x01\x17\x82\xa3\xd63\xceBz\xf0\xca\xdd\xaa-\xcc\xa6~T\xc5\x8ao\xfa\xab\xeb\xd4\x87\xb8\x8a\xd6'\xb16q\x15\xba\xc4Gd\xa7;Y\xae\xb3`1\x1c\x91\xbe\x93G\xb3\x0e\x91\x13%\xb3S\x11F1\xdbm\xa1\xccN\xee\xc74\xa2\x02B) \x94\x02B):\x93GVJ\xa1C(\x85\xe6\x8eV\x9e\x97\x1fB)\x960z\x08\xa5h>\x94\xa2\x93\xdb\xc3\xb3N!\xacb3\xc2*\x8a\xc2\xe7A\xfb\x0d\x0c\xb18\xdaV\x14bq\xb4\xa3[\x88E<\xa2\xaa\x10\x8b\xa3m\x08\xb1\x80\x10\x0b\xc6\x14@m\x0f\x05l\xd1\xc47,\x1f%\xa2\x9bg(\xdbF\xd6`.\xday\xeae'\xd0\xc36v\x0c\"\xcb\xdc\xaft>\xa4I\x1cw$%3|O\xf4\x11\x19\x1e\xb9\x91#\xe3\xf0:\xd8n\x99\"\x96k\xa7_\xea\xdd\x1f;\x13\x8f]\x93$s\xc5]\x92\xc7\xb5\x1ets\xc5<\xd5\x10\xcf\xf3oP\xa0\xa0\xb3\xcb\x80\x8c\x062\x1a\xc8h \xa3\xf3\xcb,\x90\xd1\xb96@F/4z \xa3\x97@F\x97n\xfaY\xf7@Ko\x08-=G\x0dx\x06\xc2&\x12\xd4\xbb\xaa\x08\xea=\xed\x08\xea=\x0eA\xbd\x0b\x045\x10\xd4@P+#\xa5\x80\xa0\xd6s.\x96c\x85\x16\xb6\xbb\xb3<\xef\xaa\xcdd\xf5g`\xf8\x84\xdeF$e\xa1\xd1\x1c\x0b\xd9\x81\x8f,\x87\x1f\xa8<3\xe2\xdcHDh\xdf\x15\xa3\x8b=\xd7\xb5\xeb\x10\xc0\x93v\xc9\x94V\x86\xd2\x9d\x8c\\\x98\xa4\xcd\x9ad\xb4k8$\xc8\x88|?\xc6MA\x88C\x82\xdc>\xfd2i\x83\xe2&\xcd0\xae@\x17 \x98\x8d<&cE\xe8\" \\T\x11.\xf4}\x04\x12e\x1dI\x14&Z\xdeV\xb8\x89\xc4\xc8\xbe*b\xe4@;b\xe4\x80C\x8c\xec\x031\xc2'FV\x87\xdch\x92#\x10\xb4\x1el\xd7\x0dH\x97~\xa9\x93%-8zv\x80\xf5\xca\x0e\xdfr\xfa63:m\x1c\x84|+N\xefI\xac\xde\xd0i\x92/}\xf4\x934\xf9\xaeO\x02\"\x13\xc0\xa5\xc9\\<\x9f\x05 |\x1e\x1e\x90Y\xb4.\x9f\xb7\x17\xf7S\x0e\xe4W;]\xcfrB2 ~a\xbdo%_/~\xc0?\xed\x14\xf7\x9d\xf96FE\x06\xdeg< \xc9&\xcc\xcf\xb4S\x9f1j[#+T\xa1q\xb4#P\xb9\x06U\x8e>\xe1\x9f\x0e\x14\xe8\xdc5~\xb6F\xd1(Q\xbbx)\xb5B2\n\x90G|\xc4V\x0e\x9e\"B\xca\xe7\x82t%\x8f\x1b_\x11\n_Y\xca\xa7\x17\xf5l\xcb@\xf7d\x8c\xfa\xae\x8f\\'\x0b:\x9d\xd9\xe1\x9745\xf0N,\xec\x9dHQj\x01\x93f\x8d\xc1C\xb1\x16\x1e\x8a9B\x9e\xdd<\x8az\xbe\x89^\nU\xe79\x1eiw\x9e\xe3\x11\xe7<\xc7#8\xcfQ\xc0K\x91\xfc\x17r91\xe4r&W\xcc-j\x17b?\x14IR\xe3\x93\xa6\x9cYK\x11\xbe\xb2\xd3\xa0KX\xd7\xed\xf7\xf5\n\xb6\x93\x9d\x06; \xb2\x1b9\xa1e\xaf\xf04FV\x10\x10\xb3\xdb\xb3]\xe3>\x10:f\x8a?\x9f\xdc8\xe5(y\xb9v\x0dg\x18\xce\xe7[95\xceb\xcd\xe8xnP\x83\xcc\x16\xefy\xb2\xe2\xaf\n\xc7->7 \xea[\xb8S\xca\x88\x7f\xa5_ \x8c\xd8\xcb\xdbh-\xb9\\\xabEY\xf0\x1b\xe2\x98(\xf4\xb1\x13`\xaaI(tQ4w*\xf2\x9c8\x14\xb6K;]m\xda\x92\xad\xc5\xed\xb3\x96\xed\x16\xb6\x9bWSlv\xcd\xe7P\x9bU\xaf\xcc\x17\xf2\x10\x91 Dg\xae9F\x811$#\xfc\xc3\xccc2\xce\x83Ow\x1e\xea}\xb3\xbe}\xbd(3M\xd2\x15\xe3@p\xb2\xd9\x9a\xc0\x06\xd8\xd0\xab\x19\x9b77\xa7\x9f\xef\xde\x17^R4r>\xbd\x7f(\x7fU{8 ]\x9f<\x08\xbf\xa5 \\\xcf/\xf4\xact1J\xdeY\x8b\x04s\x00L\xf22\xa7\xb7\xac\xa2\x96\xee~\x1f\xd9^\x7f-\xf8#\xdd\x96\x1a\xb7wG\x8c\xb0l\xa9\x11R\xe4)nJ\xec\xadd/%\xb8\x1a\x04\xf4\x86Gt\xd7t5\xdc>\xa3\xa7x\x7f\xa4\x8cX?\xb2\xed1\x1a\x10\x87\xf81\x00Z.S\xaf\xcc \x81\xd3\xf2\xa7>\x9a,)\xcb\x9c\xc9&\xf9\x1c\xa6M\x97\xc4\xe9@~ \xc7\xde\x87\x9c\xd3\x81!\xf6\xf8s\xce\xea4\xd7\xedPY\x800\x86\xcaU\xfb\x05\xb8\"\xe8\xc3XIW\x84\x80\xe0g\xb7\x9a\xe2+!\xee\x9e`\xd8\xafu\xef\xc4\xd4\xf5\xf5<\x14\xc7\xaa\x8eC:\xe6\x1f\x87\xf4\x19\x8fm\x17\x9b\xcb\xf4R\x1cs\x8eD:\x86#\x91\xc0K\xb1\x04\xb2_\x90\x8e\xcd,\xa9 \x03\xbb\x8a\xb3\x95f\xa1\x83\x81\xec\x8c\xa5\x8f\xbai\xd6\x075o\xc6\x0dq\xe6\xff.\x9b\xcc\xb2}\x07}\xb2Y\x07\x14\x0d\xf0\xa2\x95\x15\xda\x94\xd6\xcc\xf9D\xcd\x08ly\xafY3\xe3\xd7I\xe1\xe4\xf3c\xe0D\xac\x1a\xed\xfe]\xb3\xdd\x7ftx\xc8#2r%\x1e\xb1n\xabR`\x0d\x1c\x1cF\xfef\xed$e\xb3\xe6I\xee\xfa\xf2\xeb\xf9\xd5\xaf\x17\xdb\xbb\xfd\xe0\xe2\xb3\x8f\x8f\xaf\xc3\xde\x97`|\xb6\xf3t\xd4{\xb8\xbd>8\xf8-\xda\xd9;~\xf9\xb5\xf7\xce\xf8\xedy\xff/\xe7\xef\xc6\xa7W\x03r\xf0\xdb/\x9f\xfb\x1f\xaf\xa2\xc7\x97\xb3\xdf\x0fO\xae\xc7\x0f\x1f\x82\x87\x8b\xe3\x9b\x9d\xab'\xeb\xd2\xfb\x8b\xf5\xb5w\xf8\xed\xc6\x0cmo\xf0\xcf\x9f\xf4\xd1 /\xeau\xef\xc9x\xa34\"6\x1d%\x94!$\x8eI\xfc\x91\xe5\x84\x9d\xcfQ\xef#\x19\xdf\x10\xc3\xdb=8\xbc\xdf\xd1G\x8c\xb4f\x90\xc4\x9cN\x1f_\xb6\xf7\xbf\x0d\xc3\x8f?\x0f\x8fO\xcf\xcf\xbf\xbd\xd8W\xc7\xf8\xd6\x0d\xde\x8f\xb7\xad\xfbw\xff\xf8x\xf5\xed\xc3\xaf{w\x1f\xaf}7\xf8\xa0f\x9fh\xf3\xe9`\x83\x06\xdbt\x93d\\\xf1\xc7\xb4\xad\x8f\x84\x03\xf2\x10\x11\xb9\xe2\xef\xed\xec\xf0\x8b\xb7\xab\x17b$\xc5*\xaeM\xd0\xf3\xb1\xaa\x03l\x8e\xb5;\xc0\xe6\x98s\x80\xcd1\x1c`\x03t\xe2\x12\xe0\x85\xe0\x02]\x83W\xab1\xd1\xe5\x99\xfc\xbc\xddEWfMP\\5\x08\xb5\x1a\xe2jR/e\x11\x04Pj\x02\x02[\xde\xfb\xd5\xcc\xf8uR8\xa0\xd4\xa4V\xc3\xba\xc0Y+JM\xf0\xd9j\xc6\xa4 \x8e\xba6\x81\xb6\xe2;\x07PhUO\x07(4\xae2\x00\x85\xa6b_h\xf3\xe9\x00\x85\xb6\x88\xe4j\xb7\xabG\x85\x95\x92c\"\xd9vbu\xfe\xc5\xdb'S\\\xa1\xcc9n\xad\x7f\xe1\xa6\xe5\xd5\xfe\x93\xabQ\xae\xe2\xb4\xfa|8\x08\xdd\x17\x8b\xd3\xe5\xc5\x8b\xd7\x0c\xdd_v\x95\xa0M\nko\xb8\x94\x0eT\xfa_\xf7\xe0u(\xf5_\xedORu\xee\xdf\xb1v\xe7\xfe\x1ds\xce\xfd;\x86s\xff\x04\xfcIe\x03\x03\x9f\xd0<\x9a\x0b?w\xc9\xa3e\xc6VG\x17\xafb\x95\xff\xc0\x1a8\x93\x9a%O\x96c\xbaO\xab7\x8b\x91\xe5t\x93\x99x\xc4_\xd9i\x98n\xd4\xb3 \x9dI\x97\xd5\xd0\xef\x9a\x91\xcfn\xb8\x82\x93yrBkDV\x7f&\x14[t\xfb>\xab\x18\xd2\xcdIi\x0d\xe6\xc2\x84\xb4\xe0D\xb4\xe2?\xde\xc7\xcf\xc4\xc1\x8eA\xe6\x10\x1c\xf9\x0b\x92Ajwx@~\x8c\xd3\x1cE\xee7FBd\x7f\x8b\x1c!0\xb9:\xe38\x06\xee\xe3\x1f;\xb1\xc6\xb8\x01\xb6\x83\xaazK\xa2\x8dg\x1e\xab\x1e\xc4\x90\xe8\xf0\xe7?\xf1\xcav\xec8\x87\xa87\xb2B\x84Q\xfac\x03\x04P^\xbd\x1a(\x88\x14\xccLa\xa6\xec\x8b\xc6\x05]\xbc\xb7Ya\x82\x88\x96Af8\x94\xadX\xe9\x8c\xba\xb1\x18\xd2E\x8c\xfe\x8e\x0c\xec\xa0\x1e)\\\x1d\x92\xe7\xb0p\xd1_\x8b\x9d\xa5\xb6fr\xc8S\xc5\xa5\x81\xdb\x0f\x9f\xb0O\xba\x917\xf0\xb1Y\xbc4\xffx\xa5\x0b\xd1@\x0d\x9a\x15\xe4^6\xb1\x06\x8d\x84\xca\xf2+\x9a\xd1\xff\x08\xebg\x85\xe2\xd1\x8e\xb2\x89k&\x16\x86\xb5VH,& \x0c\xdf\xf2\x18\xcc[\\8\xb9\xee@D\x8aDT\xd8\x01U\x08\xa9\xd0!\x88I\xa9\x98\x88\x92j\x8di_\xeb.\x1c\xefm\x8f\xd5-$N\x8c\xabL\xf1\xaa\x85\xcd\xd7\xf5\xb3\x1c+\xb4\xb0\xdd5\x89\xe7\x06\x12g\x06-\x0e\xad\xa6\xee\x0c\x08kA\x1d?\xa5\x11\xc1\xb1]QK\xd9\x19\xd4\n\xb8\x8d\x93{S\xe6\x7fx\x11},\x8c\x02\x99\x97\x97F\xf8~\xeb\xed\xbf\xd8\xd9C\x99\x8d\xf9\xef\xc5\xdf\xa2\xaa\xf7\x04\xea\x08\xd6\xd6L\x9e\x97\xbff0\xc2\xda\xd4\x11La\x04\x8a5l\xb9#\xdf\xa4\x00\x8b\xc6\xea\x06\x0e\xdc\xc7N\xc6\x87Um2\x10]A\x1f\xc6*EWL\xc9vv\x83(*\xb6x\\\xc5ZU\xff;T\x15Zq\xc4\x0d\xadh\xa3\xfa\xdf\x11'\xbc\xe2\x10\xc2+\xf8\xe1\x15\xc9\x7f!]\x177\x1c\x9a\xb1\xa1\xd5\xff\xfa\xbeTJ\x1e;^`gp\x82\x87\xfe\xe1\xf3p\x18\x1e\xf8\xa3\x87G\xe2\x1c\xee\x1e;\xf7\xf6\xb3\x1d\xbd\x8c\x1f\x8f_N\xee\x1e\xee\x8c\x91\xd1\x9c\xf3Zv\x96\x92\xe9e7\xf1\x92\xf2hatN\xa7\x8b\xbe\xb9c< >\xfa\xbf\xff\xfd\x9f\xff\xa7\xcf\xa4\x8c!\xb6\x9c\xaeeJL\x8c\xcd\xe7\xf5\x87\xa8\xa7\xcf464\x93D\xa3L'\xb9D\xf0\x18*ok\xf4\xec\x078\xe8b\xf3.\n\xc2\x11\x91J\xcf\xddy\xb3\xab\xcf,\xfa\x84\x04\xb2[\x8ft\xc6 $\xb3\x8b\x8d^D`\x90\xcc\x9e\x0dJ.\x84K\xae]#%Ad\x1fV`\x8d\"\x1b\x87\xd5\xcb{\xcfum\x82\x9d\xad\xb7\xd4^\xab9\xddFr;\x05g\xc9\\\xe4\xe2\x1a\xa1I\x84b\xde\x85\xbcr\x83/:W\xc5\x87\x9f\x0f4jy\xf0R\x98-\xb1\x1fL\xe2\xdd\x1f\xec\x1b\x11\xbe\x1b\xdc\xbf\x10|\xf8\xe2\x0d\xee\x1f\xf6\x0eC\xe7\xee\xc9|y\xdc\xc7}c\xcf\xdc=j}\x82\xd3>8\xc9\xfd\xb9\x86i\x08;\xb4\xd8\xe8E\xa4\x07;t\xbd\xadG\xb2\xdd\xc2\xe5fj\x06u\xd3\x0fQ\xdex}\xf2\xf1T\x1dj\x7f\xac\xdd\xa1\xf6\xc7\x9cC\xed\x8f\xe1P{ \x8c\x97\xb0\xcf\x08\xae\xcfP\xdfQz\xc9o\xc4\x98\x13\x14\x17\xd4w\x94\x17\xafJ1\xc9\x8e\x1e\xea;\n\x8d_'\x85\x03\xc0-\xb5\x1a\xb6\x06\xb8U>d\xc1g+\xe9\x80kz1\x12\x1c5\xd4w\x14\x17\x19\xd4w\\\xe7\xa5]\x9a\x9e\x84\xfa\x8e\x8b\xef\x0bm>\x9d\x0d\xf5\xca\xb7\xb3\xa3/J\x85\x95\x92c\x12 \xfc\xf3k;\n\xb6M\xa6\xb6z\xe9\xfb\xa55\x1d\xc5\x9a\xd1\xe4\xfd_#\xe2\x8f\xb3P\xf4&j7\xe6Z-\x9a\xba?5Xd9}\xd7\x1fQ\x1dDOV8\xcc\x17\xa1\x9c\xc9\x80\xa2\x1fUY\xfc\x0fq\xef\xd9\x03\xf8\x9c\xebjx\xd0D\x9a:?%\xee\xd1\x0d\xd5\xe4\xc3\xd1\x8e2\xc14\x96(T6\x12~~\x10[\xc0\n+O\xad4\x1e\x8fM\xb3N\x0e\x9c\x02Y%.6W\x89\xbc\xb2\xce\xd6_f\xd9T\xeb\xc8M,w\x91/\xbc \xc4a4\x9dUXKr\xac\xa7\xf5\x17[\xba\x08#6\xe1\xbf\xa2\\ \x92\xa0\xac\xb2H\"\xe7\xaeG|\xcb5S\x94RR8\xe4\xd1\x0d-g\xc0\xbf\xce\xc3A@\xaa.\xf0\xc9\x1d\xf5\xdb\x14.\xe1k\xd7t\xc6_~\xf7\x80\xbc?\x81\x8c ^\xf2Y\xcd\xbc\xbfe\x17!^0\xbb\xef\x81a\x95i@\xb2\xa4\xc1oR\x82_3\x15\x94!\xbb\x0f\xb2\xfb\xca\x17\xfeM\x88\xd28\xd9V\x14\xa5q\xb2\xa3[\x94F<\xa2\xaa(\x8d\x93m\x88\xd2\x80(\x8de8WE}\xaa5\x06\xae\x13\xf5\x9e\xae\xb4\xbcL\xaf\x84\xa9}\xbb\xad\x03\xf5\xaa[,\xb9\xec\xf8\xf5\x0c*\x97\x9d\x85W3\xba\\\xdby$D\xc3\xea\xce\xa4o9\xb18\xb0m\x8f\xbb> \"\xbb\xf9\x08\x17\x9d\xd6\xb21\x91\x11\xde\xf6\x9b\xed\xec\xff\xf4\x11!\xee\x05!\xb6d\x96\x05=\xe7\xe1\xc8\x04d\xe8:\x85\xee\x93\x15\x0e\xbb\x8f$T3\x99\xdc \xa5\xfcvm>\x04V|\xb9\xab\xa0*{\x9b\xb3\x08\xdd\xb0~\xa2\x8d\xf4\x9a\xd8,0\xcd\xcf\xbd\x99\xf1\xeb\xb4\xa6C\xd4_\xbd5C\xb2]#\xb1\xd3\xb2\x0f+q.\x04!\xf6\x95\xac8\x92\xcf`\xe1g\xd7N|Er\x14dR\xf4}\xa1\xe3\x12J\xbbJ&\xber\xd1\x17\xa5\x93\x91\x0e\xc6(\xeb%9k\x93\x955Dx\xe2G@\xec\xaaI\xf1\xc0\xdcI\x06z\x07oH\xcff\xb5\x8e`\xb8\x1d\x92\x8ay\xf5\xe2a\x85C\x1c\"\xc3ub\xf4\x1dPNl\xbaA\x00\x07#\xc0\xc1\x08\xed\x86\x08\xc0\xc1\x08l\xe2\x9a\x89\x85\x81\x8f\x15\x12\x0b\x1c\x8c\xa0\xbd\x88<\xa8\xb8/-\x1c\x15\x15\xf7\xb9\xa2\x93\xdf\xa7\x97_d\x1f\x8a\xeb\xabQ\xe7M.\xae/\x1b\xc8)\xff^$\xb0z\x89\xefE\x06\xe4\xe1\xbd\x80\xf7\xa2\xe6{\x01\x87N\xd4\xd6L^`d\xcd\xe0\xd3\xd8\xba\xcf\x9f\x19 'P,8\xf2M\nP]\xce \x14\x9d<\x8bX\xb5\xfd@\xc0*}\x18+\x1b\xb0:%\xe8\xd9}\xa4\xa8\xf2\xe2\xd1\xab\xebt6\xc5\xc9\xae\xaa\x00\xd6=n\x00k\x0bgS\xc4\xa3\xaa\x0cb\xdd\x85 V\x08bm\xde\xd7.\xe8v\x85\xb3)D\x1c\xccp6\x85>\x93\x82\xb3)\xb4\x99C\x8d*\x18\x1aUi\x91+b\x07gS41\x0b8\x9bB`\xfc:m\x9c\x10\x92\x97\x0dJ$C\xe7\x17e-\xaa?\xaa\xbb\xbc\xd5m\xb7p\xf1\xed\x9a)(\xf4C\xd4\x13\xb5>uT\xf6U\xb9\xa1\x0e\xb8n\xa8e\xd7Q9\xe0\xb8\xa0\xf6\xc1\x05\x05.\xa8\xe6wy\xc1\x85\x19N\xbb\x91^\xf2\xdbD\xd0p\xda\x8d\xbcxU\x8aIv\xf4p\xda\x8d\xd0\xf8uR8\xe0!\xa4V\xc3\xd6\x00\xb7\xca\x87,\xf8l%]\xfaM/F\x82\xa3\x86\xd3n\xc4E\x06\xa7\xdd\xac\xf3\xd2.Y.\x0dN\xbbQ\xb1/\xb4\xf9t64\xce\xa7\x9d\x1d}Q*\xac\x94\x1c\x93\xa9\xc6\xf2=\xfd\xf7\x95\xf9\x9fE\xce\xbe)\xeb)\x99\xf6\n\xd6b\x99\x9dK~=\xaf\xdbI\xee\x94\x1c\x9c%\xcc\xe8]iez\xb4\xa87F\x96Y\xe3D\x9c\xf8!\xa9;\x10G,\xc7S4m=\x96\xd0,}X7q=\xee-\xbd\xb8\xf8\xb8]\xbb\x87i~\xe0\xd0\xba~\xff\xf4\x05\x197\xf6\x95w\x8d\x0c\xf2\xf1\x12\xdfn\xbd\xf5\xc9Cd\xf9\xc4L\x1flc\xf9\x90eS\xe1\xa7A\xb2\xe5\xb2\xb0\xce\xa1\xaa\xbb\xd3\xd69*\xfe\xf2\x99R\xf0?\xe4s\xb5\xe2\xaefJ\xebL\xc6a\xdc_\x7f\xbb\x0d\x93q\xdc\x7f|w\xfaa\xb4\xf5v\xb7\xb8\xd4f\x8b\x1eW\xadk\xe5K\xe6\xd5\x1b\xb2&\x05\xb2\xa6x\xd9z5\xb3&W\xec\xc8\x8el\xbd\xb4\x96\x9c\xc6\xb9I\xc9\x90K8\xad\xa3\x93\xdf\xc4\xb3\x0e \x13r\xfd2!\x8b\x82\xe6A\xecM\xf4?\x1f\xaa\xf2?\x1fi\xe7\x7f>\xe2\xf8\x9f\x0f\xc1\xff\x0c\xfe\xe7\xe6\xb99Av#]\xa9x9e\x8d\x9e\x82!8V\x08V_\xfe\xe03\xfd\x90\xe4nu\x1b\xbev'\\\x08N`\xf1\x83-4[\x97d\xe9W8\xdaB\x9fy\xc0\xd1\x16z\x1em!8w=O\xb4\x10\x1c\xfcB\x07Y\xd4X\x03!\xa4Gl\xf4\"\xb2\x83\x90\x9ezk\x84d\xbb6\x03#\xb59\xc1B\x03\xdfg\xfa\x03\xf1\xd5yA\xa7\xfbL\x1e\xc5\x8a\xfbC\xa7g\xb5\xa0gt\xaa\xbb\x9c\x8f4\xfd~\x15<\xa4}\xd7G\xe1\x90dc\xa6_\xe4\x9c\xbc\xe00-\xacD\xe00-\xe9\x07\x1c\xa6\xe00\xdd\xdax\x87\xe9\xd5\xc5r\xc7\x0d\x0e\xd3\xe6\x1c\xa6\x9dl\x0bO{\x02\xcf\xe9z{Ns\x12\xe7!\xf5Mt\xa1\x1e\xabr\xa1\x9eh\xe7B=\xe1\xb8P\x8f\xc1\x85\xcaw\xa1\x96\x0d\x0c\xdc\xa0\xc5\x06\xeb\xcd\xe9\xe7\xbb\xf7\x857\x0b\x8d\x9cO\xef\x1f\xca\xdf\xaf\xec\x84S\xd1\xb7+\xc1\xf2\xb3\xc8\x1d%\xef\x9aE\x829\x10$y \xd3[fJ^\xc2\x1e\xde\xfd>\xb2\xbd\xfeZP\x84\xba\xad\x12n\xef\x8e\x18a\xd9*!\xa4\xc3B\xde# \x95\xe5o\x01\x13\xa4*\xaa\xa3\x15\xca\x97u\x96=\x00\xcd\xc43\x7f\x11\x97\x13\x8f\xf7\xb6G\x8c\xe1\xde.\"N\x0c\x85M\x84M\xd3'A\xc0_Me7q\xf9E'17E\xc5\xb9\xf8\x92\xc3n\x08\x0b\xce\x82\x1a}J \xb7\x8f\xea\xa96[y\x02n\xe3\xe4\xde\x94\x9b\x1d^D\x1f\x0b\xa3@\xe6\xe5\xa5\x11\xbe\xdfz\xfb/d\x85d4\xf1\x1b\xfc{\xf1wF\x06c0\x88\x01\xaep\x01\xcd\xe4\xf9j7\xce\x15\x8e\\?\xb3\xdeb\xadZ\xf6\xb8\xf7\x9bw\xb9\n\xfa\xad2\xc2*\xb9\x99\xa8{\\\xb3\xd9\xca\xba\xeb\xfa\xbe\x94\x7f9\xf1\xd4\x0dN\xf0\xd0?|\x1e\x0e\xc3\x03\x7f\xf4\xf0H\x9c\xc3\xddc\xe7\xde~\xb6\xa3\x97\xf1\xe3\xf1\xcb\xc9\xdd\xc3\x9d12\xf4qJJ\x9e\xdfs\x13/)\x8f\x16F\xe7t\xba\xe8\x9b;\xc6\x03\xe2\xa3\xff\xfb\xdf\xff\xf9\x7f\xfaL\xca\x18b\xcb\x91s\x16\xb3\xf9\xbc\xfe\x10\xf5\xf4\x99\xc6\x86\x1e\xd5\xa1\xd1Q2r'\xed\xedjVXm\x80\x83.6\xef\xa2 \x1c\x11\xa9X\x93\x9d7\xbb\xfa\xcc\xa2O\xe4\x8fG\x97\x8el\x82\xc8,\xb1\xd1\x8b\x08\x0c\"\xb3\xb2A\x89\x04\xd0,\x1cx\xd3\xe6\xc3\n\xacQd\xe3\xb0zy\xef\xb9\xaeM\xb0\xb3\xf5\x96\x9al5\xa7\xdbf\x95\xc6%Gn\xb50\xc3z\x01\xb05\x10>,\xb4b\xa3\x17\x11\x1a,\xb4\xf5V\x10\xc9v\x0b\x1f\xcbZ32R\x8a\x02\\\xa3\xd4\x9e}e\xfc\xdf\x01\x97\xff[zj\xcf\xff\xcf\xde\x9bn\xb7\x91#\xff\x82\xdf\xe7)py\xcfi\xdb\xff\x96)K^K\xdd\xaesU\xdeJ]e[m\xc9\xae\xdb\xfff]\x1a\xcc\x04\xc9\xb42\x01:\x81\x94D\xfb\xb8\xcf<\xc7|\x99W\x9cG\x98\x83-w2\x17\xae\x12\xa3?t\xc9\xccL \x00\x04\x02\x11\xbfX\xf0\xb8\n\xfb{\x04\xd8\x1f`\x7f\xab?kj\xca\xe8\x80\x8fn\x95RPu\xc4\xe8\x7f-t\xcc\xacD/\xaf\xb9\\C\xb2k7Z7Ch\xca\x96w\x99\xcb\xd4\x94\xfavjwc\xa5u}\xfbk5\xf4o\x13\xc3\x81\xd2\xddH\x1anL\xe9^\xe6$\xd7\x9c\xdb\x86\xbe\x94U\x0b\xa3\x9aTsoD\xb1\x88\xc2];9\xca\xc6]\xb5do_}|q\xf2\xcf\x97\x0f\x0e\x87\xfc\xe5i\x88\x9f\xbd\x15\x83\x0f|\xfa\xcb\xc1\xd5\xd3\xc1\xd7\xf3\xb7\x8f\x1f\xff\x11\x1d<|\xf6\xed\x9f\x83\xd7\xce\x1f\xd7\x8f\xfe\xfa\xe2\xf5\xf4\xf8dD\x1e\xff\xf1\xeet\xf8\xdbIt\xf9\xed\x97\xff~\xf2\xd3\xdb\xe9\xd7_\xf9\xd7\x97\xcf\xce\x0eN\xae\xbcW\x93\xbfz\x1f\x07O>\x9d\xb9\xc2\x9f\x8c\xfe\xf5|u\xcc\xd0tv&\xd1\xa0\x7fA\xa6My\xe2F\x8b\xf6\x86\xf7i B]\x12\x06\x1e\x15\xfb\xa7\xd1\xe072=#\xce\xe4\xf0\xf1\x93\x8b-r`]b?j2\xa6\xe3\xcbo\x0f\x1e}\x1a\x8b\xdf\xfe1~v\xfc\xe2\xc5\xa7o\xfe\xc93|\xce\xf8\x9b\xe9\x03\xef\xe2\xf5\xff\xfe\xed\xe4\xd3\xaf\xff|\xf8\xe5\xb7\xb7!\xe3\xbf.\xe7\\\xd8\xe4\xec\xec\xa8\x83u3'\xfa\xa2pX)@\xb6x\xa2\xf0\x7f\x0e\xbe\xc7\xf0\xfe\x8fUT\xaa,\xe9\xc0L\xd2\xadI .\x19\xe2\xd2\x92\x89\x8bm\x17\x0bZnw&q\x86\xd4l9K\x84\xa9\x8b\xe2\xe1\xcdN\x18R\xff\xb7\xbeT\xe2\xca\x04\xa4\xea\x14\xb2 d\x11\x97}\xd50\x01\xad\xbc\x9d[\x93E\xdc4\xef\xad\x9a\xedV\x9b\xb9\x08L\xb7|\xa63~\xf2'\xd7S\x12LH0\x99\xfctx\xfd\xd3x\xfa\xed\xdbOW\xe1h\xf8\xd3\xa3\xf0\xc9\x97\x9f\xc6\x8f\x87\x0f\x9eL\xae\xaf/\x97\xc0\xa0\xbf\xe8\x1c\xcd\x1aB7\xcf\xadP\xa0u\xc1\\\x8f\xaad\xa3]\xceJ+0\xe2\xda\x06\xf3\xa8\xcd`^\xb3\x88\xba\x88\xc6%Q\xd6K\xf4.e\xa5m\xac\xd4\xec~J\xef\x8e[\x85\xf4\xb4\x1dIO\xcb\xae~\xf1T\xcc\xee\x8c\x9d\x8cSy\xb2\xb48\x95\xa7\xdb\x17\xa7\xf2\xb4*N\xe5 \xc4\xa9@\x9c\xca\xea1\xfc\x9a(h;Gz\x8b\xb1\x82+\xbd\x1e\xf5u\x16\x0d\\\xe9^;\x00\xbd\xd9w\x9b\x0cH\xb2\xaaE\xb3d\xbc-\xf1\x8c\xaf9\xec\xbf\xe1\xb2n\x99?\xe5\x92 \xb2\xd4\x9b\xbeR\x0d\x9aI\xb8\xf1\xfe\x92\xd4\x90\x16\xf6\x8f$m\xa5\xfc!\xf2\xc7\xf0F\\\xef\xa5)E\x1e\x1d\xb20P\x1c\x0d\x17}\x95\x89:p\x84\xcc\xe9}U\x98\xf4\xda\x1d!\x00-/\x88\xd3T!\x86;\x07-\xaf\x97n\x00dW\x08\xc8\xaa\x93>n\x06\x10\xd8[\x8e\xc0\x9a\xe5\xae\xd2\xd4w\x12r]\xd6\x05\xeb\x07\x0f\xb6\xee\x86uE\xd2|\xc8\x15\xeeX\x07\xc8u-0d]\xf4\xb1\x05\xe1\xdb\x84?*\x1b\xb4\x01\xb6\xb3jX\xaa)\xfd\xdb \xae5\x1d\x05\x9b\xa8N\x16\x1b@\x8a\xb0f\xd8Y\xb3\xef\xb6\xec\xb2#\x8d\x01-\xf3\xa6\xa3t\x8b\x89\x0c\xbc\x0d\xa8\xdb\x92\xee8J5\xa6p\xb7OL\x90\x1b}\xa7\xd1en\x00\x80\xbbe\xa4\x15\xe0n\xbb\x87\xbbm\xf15F\x93\x9f5\xd2\xa3\xf2\xba\xd4\xbd\x10\xea \xd2\x87\xa1>I\xed\xc1\xa8\x1e \xb5)\x90\x83)\x1a\x90\xcc\xcbS\xc23o\xeee\x9eR6\xf7a\xff\xca\x13\xe3\xfe%\x11\xd9\xd7T:C\xfaM<\xe0\x02{Y\x92\xd2\xab\xd2X:T\n\x86\xe6W\xa3\xc0}L\xabFn\xb6M\xdc\xdd\xb8\xfb\x98\xb4\xa1R\x97?\xe70\x9ej(\x1e\xf8\x96-\xcb\xecS\xa8\xd9\xb2\xac\xef\x1e\xa6\xea\x953\xc6\xcd\x12\x96N\xb7t\xdb\xd7\xae\xc9a\xad\xcfjp\x8f\xd5\x10\xc5U\xfe\x9b\x9ds\x8f!\x16j\xcb\x07.\x03\xaaO\xf9.y\xf96q\x19\x108\xfa\xc0\xd1Wd\xff\xfa\x8e\xbe[u\x0d\xd0\xc1\x83e\xf9\xfa\x0e\x0e*}}\x9b\xb8\x06H\x925\xd7\xdfw\xf0\x00\xfc}\xe0\xef[\xbd\xdb\xac\xa6\x9f\x06\xae\x01\xaa\xe3\x9c\x82k\x80\xb6gPp\x0d\xd0\xd6\x8c\xa1E\x95\xaa-\xaa\xa2\xd6\xac\xc8,\\\x03\xb4\x8aQ\xc05@5\xe8\xdf\xa6\x83\x13\xb2\xfbb\xa2\xea\x84\x96,\x1c\x92\xb2\xc9\xc9\xda\x8dk\x80\x9a\xc6\x8b-\x90\x0b\xb8\x81\xd15\x8e\xc3Jy\x90\x17[\xca\x96\xc1T\x8d\xb0\x91\xdb\x13\x04}\xb0\xb4\xfb\x91\x0f\xaa\xefG^w\x10\xf4A\xd5\xdd\xc8\x07p72\x80\"k\xd0vj\nM\xb8\x1f\xa5\xb1\xd8_\x89\xc2Rs\xb9\xe0~\x94\xe6\xcb\xbb\xccejJ}\xbb\xb2.\x8d\xcd\xa6\xf5\xed\xaf\xd5\xd0\xbfM\x0c\x07f_#i\xb8\xb0\xd9\xd7\xf0\xbbM\xdaO\x0dA\xe6U\x0b\xa3\x9aT\xc3\xfd(\xf5\x97\x0c\xeeG\xb9\xcd\xa2\x1d\xeeG\x81\xfbQ\xeaM\xd3\x16y?Zx\x9e6s\xa2/\n\x87\x95\x02d\x0b\xe6\x16\xfe\xe7\xe0\xbb\x02=\x97z1JY\xcbfZnG\xaeanl\xcb\xc99\xcc6\x9a\xab\xf9\xb5\xddi\x87 \x9d\xb3\xea}!s\x15\x8a\x1a!\\\x83R\x10j\x90\x85X\xd2\xce\xad\xc9B\\~\xda\xc9j\x12\x86\x80\xd9\x96\xcfl\x1b\xba\xfe\xa4B\xd0\xe69\x14\xea\xd3-\x18\xdc^\x95Z\xb1\xb3 87\xf4\xda\x13\xa5t\xad\x95\xe2]J\xbe\xd9L\x89\xbd}\xa3`\xc7\xcdA\x06\xce.d\xe0$\xcb^<\x00\xb3{a'\xa3M\x1e--\xda\xe4\xf1\xf6E\x9b<\xae\x8a6y\x04\xd1&\xd5\xd1&e\x84A\xc4\xc8\x92\x82\x08\xb7\xc4\x0bf\xc5f\xb3t\x8a-!\xbeqhc\x19\xdd)zn \x9c+\xb0\xefO\x97\x89\xe2\xa6\x1aL\x1d\xc47\x1a\xbcM\x0dia\xcc6iKA\xb5o\x88H\x15Y\xfb\xcb\xff\xbc>|\xfa7\x8e\xd4K($<\xf2\x05\xc2\x02\x891AN\x14\x86\xea\xb4\xf0\x82-\x87u\xdf\x10\xc13\x83z\xf8S\x8d1u\xd1\xc9P\xfd\x98\x18\x83\x1cM\x08u=:\xb2\xb7Irt\xd7\xeb\x12\xc4\x05\x16\x11G\xaa\xe1\x97\xfa\xc9) =\xe6\xaa_\xee!O\xa0\x90\x88(\xa4\x1ca\x8aH0\x91;?\xd5}w\xe3\x08\xf2\xb2\xf0<\x80\x91K\xbf\xdajdo\xed02\x80t\x0b\xda\xbfU\x10\xcc\xce\x81t\xeb\xa5\x1b\x10\xae\x15\"\\\xea\\\x04dkW\x90-\xb3\xdcU\xf6\xc4N\"ZK\xbb\xb7\xf7`\xfb\xee\xed=\xa8\xba\xb7\xf7\x00\xee\xed\x05Dk\xb9\x88\xd6\x944I1y\xd0}\x10\xffo\xe3\xc0\x90\xa9O|S\xc9\xa7M\xc2\xe9\xb7\x8c\xf2\xa4\x84\xf4R\xc6\x90\xa2m\x8b\xd1\xb9\x18O\xf8\xcf\x81\x81:\xda@r\xb3ZId\xd5\xcd\xc0\xe1f\x8d\xa36\xf86\xa3\x81Tp\xe4(\xfe\xd4bK(\xf9j\xbb\xe1\xb5\x1a\x03\xe8\xa2\xf31A\x01\xbe\xee\x9bg\xfd\x89\xc2\xc7PD=\xc1\x11\x0e \xf2(\xa2\x982N\x1cF]>\x13\x11\x03|\xa0\x86\x15Qe\xc0\xden|\xe0\xefL\x8cI\xd8\x97;\xf0g\xe4qD\x99@\x18i\xcc\xe0\xab\xe2\xd5\xd0T\xa0T\x18\xea\x9a\x87\xb4X8O\x89lX+\xfd\x00},\x05\xfa\x88Wo\xdf,(\x00\x1e\xb7\x0f\xf0(Y\xe4*\xc5l'a\x8e\xa5\xdd\x95y\xb0}we\x1eT\xdd\x95y\x00we\xd6\x809\xcc\x7f\xa1L\xcc\xaa!\x92\xc0\xa3VEo\x9a1\xdcb\xc0P\xce\xa2\x1e\xf5uV\x0e\xcaYx\xedp\x95f\xdfm\xb2(P\xd1~n0_\xcf\x9e L\xed\xcd\xb6*\x9c\x00\x10\xa6\x9b\x8a0\xcd\xd8&k\xa2\x1e\xf0\xa5%\xe3KV\xae\x03\xc0t\x9b\x01\xa6d\x95\xab\xd4\xac]D\x98\x0e\x97vC\xd3a\xf5\x0dM\xebF\x98\x0e\xabng:\x84\xdb\x99j Le\x84\x01J4\xab\xbe\xda8$|\xcc\xfc&\xf6\xe7\x83\xee\xe3\xed\x89\xeah\x1c\xcd\xf1\xf0\xe1\xa3m\xa1=1i\xfa\x13B\xb1/\xa6\x8dF\xf2\xe0\xe0\x96`\x00\x97L,\x8e\x00\xa4\x1bI\x1d\xbd7\xcd\xfeO\x0f\xa3\x8d\xf5\x9f\xfa\xbe\xdc\xf6\xd7/\xdc\\\xe3\xbf@\xbf\x8eH\xd1?C0\xca*\x15\xf0*\x93\x0f\xa0\x82\x9b\n\x15\x14\x85\xc2Z\xc9\x07\xac`\xc9X\x81^O@\nn3R`\xd7\xb8J\x15\xdbI\x9c`i\x17\x16\x1dn\xdf\x85E\x87U\x17\x16\x1d\xc2\x85E\x80\x13,\x17'\xc8\xa8\xd7\x0d\xac\xd4\x1b\xe3\xab~\xe9I\xc2\x07\x91\xea\xab\xdc\n\xcd\xbe\x92\x12\xda\xda\xc6\x1c\xfe\xeb\x15y\x1b,hc\x1e\xa4\x9e\x0d\xc5\xe5Y4A~\xf06|\xff\xa6\xb6\x91\x99\xa52oBf\x9e*\x031\xfd\xcb\xdf\xf7\xc7\x07M&*6C\xdd\xd4\x8f\xff9p\x89OFX0i\x8f~\x8f\xffq\xec\xba\xe1\x8f\xff\x1c\x84\xe4\n\x87.\x9fc\xed/\xb5\x87\xc22m\x07\x14\xb0\xd41\xce[\xe4E\x1b\x8fK\xc9\x881A\x82 ,\x0f0\xf5\x18\x0d\xb0\xaf,\xf2a\xc8\x02\x15\xa9g\xda\xf1\x18\xddrP\xc1\x8e\x87G\x01bCE\xbb\xfc\xa7\x1d\x18\xc1!%.\x1aL\xd3#\x92\xff\xc4\x88{t\xe4\x13\x14\xcf\xd8\xad)\xf7\x92\xe1\x81\xa2r\xd0\xbc\xe2K\xa6\xc1r\x05\x02\x8a\xbe,\xa3\xe8\x8b-\xe7\xfc\xf4\xea\xa7'\xc2\xbd\x0c\xf07|\xe1^]\\\x1dF\x8f\x9f\x1e\x1e>%n\x14\xf9\xf8\xd0\x99>~z\xe8\x0f\xb3g\xefl\x0d\xa8\xba\x9c\xf3\xb1\xe3\x1c\xeb2\xbar\x0b\xbd\x9c\xbd!R\xab\x075c\x96a\xddV\xa1)\xb7\x1b\x86\xb35cb\xf9\xb2\x99j\xce\x00Y-\nY\xa5\x15\x92\xfdD\x1f\xd9\xcf\xa9#\xfb\xe6T\x060\xebV\x81Y\x8dW\xbf\xca\x92\xdbI\x98ki\x95\x92\x0f\xb7\xafR\xf2aU\xa5\xe4C\xa8\x94\\\x03\xe62\xff\x85\x84\xabUCdFRA\xb2U%\xfd\xab\\\xac\xa6\xd9JJ\x99\x94\xc7M\xdf\xa8\x91\x0d\xc0Mmy]b_6]y\x9f\xce\xe1\xd5#z\xe8\xaf.\xe8\xa8\xe9\xc85\xbf6e\xd7\xc6\x8b\x0d\xccZ\x8f\xfa:K\x06\x99\x81^;\x8fA\xb3\xef\x16\xbe\xe8\xba\xe1w\x9b\xccDT\x90nS!\x00gV5\xfd \x06@\x0c\xac\xdaQ\xb9\x88sg\xc2\xf8\xaa\x1dp\xba\x0b3Q\xb7\xd5\x03\xa7\x07\xb9*\x17\x9cj]\xf9\xe0\xfe\xf0\xc4\xd8\x0d\xf1U\xec\xad\x8a?\xb1W;$\xce*\xeb\xc9\xdan/\xdc\xbc\x11\xa9{\x1dJ\x06\x04\xee\xb6\xbct\x05w[y;\xe0n\x9b\xe7n\x9b\xb7c>\x980\xe6_\x98;E\xdc\x19\x93\x00\x1f\x15f\xc9y\xc1\xdf\x7f\x99\xa0\xc1'\xef\xd3\xc7\x97e\xa8\x98\x15\x1b\x8fk\x0e9\x16\x0c\x9a\xc0\x15\xedL\xee\xdc\x1f\x9d\x1d\x9f~y\x93\xd9\xa3(\xa0\xef\xdf|-\xdf\xa9\x03\xccI?$_koR\xa3\x7f\x16\xb5Md\xb6\xacG\xf8\x0cM\xc9\xece\xdbe\xbcQJ\\\x1e_\xfe;\xf0'\xc3[\xe1\xd7\xd86I\xc3\x06_\x88#\xca$M-F\xce\xf9L\xea\xedJ\xbd)\xc1\xfd]\x83o\xaa<\xb3\xe0\xfe^\x0b\xf5\x07m\xa8\xff\x8dL\xd1\x04s~\xc5B\x17y\x1c]\xc9\xef\xd6K\xf9.9\xee\xf3\x06\x98\xf1\xdc\x93wb:\xf95\xe5\xb9\xd7V\x86\xfc\xff\x19\x12\x13|\xf7\xedd\x15\xf8\xee\x97\xec\xbb\xd7\x9a\xe9\xc6]\xf7\xb9\xf7\xdb\xba\xef\x97v-\xcca\xf5\xb50\xa7x\xea3\xec\xae\xd7\x85_u5\xcc!\\\x0d\x03.\xfc5 \xec5\x91\xe9\xd8\xd6K\xb0\xe9\x9b8\xda\xa6\x80\xfc0l\xe4N0\x08\xc8\xe8'<\x0e\x9f\\\x8f\xc7\xe2q\x18|\xbd$\xf4\xc9\xe13z\xe1_\xfb\xd1\xb7\xe9\xe5\xb3o?}\xf9\xfa\xc5 \x9c\xedq;\x04$hR)\xe4L\x8a\x94K\x0f\xa3\x17j\xb8\xe8\x13\x9b\xe2\x11 \xd1\xff\xf7\xff\xfe?\xff\xf7\xf6\x0c\xca\x19c\x8f6\xbb [\x8f\xe7\xfe\xaf\xd1`{\x86\x81\x1d\x87ET\xf4i\x14\x0c\x1a]U\xbe\xc2\".M\xc7\xc0\xa5rB\x1d\xd2\x80\xfa\x83\xed\xa1~\x84\x9bD\xbe\x1c\xae\xb8\x80N\x0b\xea\xfb\xd8\xfd\x12q\x11\x90F\xae\xc5\x83\xee\xe1\xf6\x8cbHH\xe3\xf0\xb1\xc6\x8elp\xc4\xd7\xa3\xbe\xce\x82\x81#>&\xaa\x99c\xbc\xd9w+\x89\x8fi:Y\xdc\x0b\"\x1f\x8b\xf9\xe2}\xc0\x98O0\xed\xfc\xacL\xb6\x96\xc3m;M\x8b\xc6\x1d42\xc4oQ\x10\xfd\xd2n-9\xdc\xbe[K\x0e\xabn-9\x84[K\xc0\x02_\xc3\xd1ZS\xca\x06|\xd4T\x03j1\xd0\xf5\xe9@U'\xaa\xfe\xd7B\xa7\xeaJN\xc7\x9a\xcb5$d\x0d\xcb\xb5J\xbel\xaa\x064\xb3\x93\xca\x96w\x99\xcb\xd4\x94\xfa\x82\xc6Wk\xc9\x1a\xeb\xe8\xeb\xdb_\xab\xa1\x7f\x9b\x18\x0el\x8cF\xd2\xb0\xad\xf2\xbcp\xb0\xef2'\xb9\xe6\xdc6D4W-\x8cjR\xcd\xbd\x11\xc5\"\nw\xed\xe4(\x1bw\xd5\x92\xbd}\xf5\xf1\xc5\xc9?_>8\x1c\xf2\x97\xa7!~\xf6V\x0c>\xf0\xe9/\x07WO\x07_\xcf\xdf>~\xfcGt\xf0\xf0\xd9\xb7\x7f\x0e^;\x7f\\?\xfa\xeb\x8b\xd7\xd3\xe3\x93\x11y\xfc\xc7\xbb\xd3\xe1o'\xd1\xe5\xb7_\xfe\xfb\xc9Oo\xa7_\x7f\xe5__>;;8\xb9\xf2^M\xfe\xea}\x1c<\xf9t\xe6\n\x7f2\xfa\xd7\xf3\xd51C\xd3\xd9\x99D\x83\xfe\x05\x996\xe5\x89\x1b-\xda\xa5\xb9\xd4\x80\x19\x04\xa1. \x03\x8f\x8a\xfd\xd3h\xf0\x1b\x99\x9e\x11gr\xf8\xf8\xc9\xc5\x16\xc1\xc8\x97\xd8\x8f\x9a\x8c\xe9\xf8\xf2\xdb\x83G\x9f\xc6\xe2\xb7\x7f\x8c\x9f\x1d\xbfx\xf1\xe9\x9b\x7f\xf2\x0c\x9f3\xfef\xfa\xc0\xbbx\xfd\xbf\x7f;\xf9\xf4\xeb?\x1f~\xf9\xedm\xc8\xf8\xaf\xcb9\x1769;;\xea\xe6\xd8\xcc\x89\xbe(\x1cV\n\x90-;\x0d\xe7?\x07\xdf\xe3\x0cd\x1d4\xb3\xf2\xbax3\xba4\x13yK\xd3tf\x0czEi;\xe5\xbd\xa5\xea\xf1\xe3bn\xcbv\xe7\xeaX\xb2\xb3\xf5\xef\x12\xeauu\xc2C\xe7\xa1{\xf84\x87\xba\xdc\x08\x14d\x85u{f\xf4\x95\x92\xae\xb7\x1a\x07YM\x9d\x9e\xf2n\x14\x12\xf2\x81L|\xec\x90\x1b\x8d\x86\xa4\xc7\xd0\x00\x11AC\xa9M#J\xae\x10\xa3\xa4\x0b\xd8\x06`\x1b\x80m,\x01\xdb\xb8}\x85N*7%\xd48\xd9>\xb3q\xdb\x84\xcc:j\x9c,\xff0\xc9\xab\x0e\xb5\xf9u\x0e#\xce\x828\xb6m\xc5f\x1f\x0b\xcdVl\xf2\xf3@\x0bZB\xa5z\xef\xe6 \xbc\x06\x02V\xcbW\x80\x8dk\xc8\x81*Ds\xd7`c\x16\xc6*\xf0f d(Vs\x13\xc0\xef\x8d\x17\xab\x01\xfc\x1b\xf0\xef\x15\xe3\xdf\xb7\xab<\xcd\xb3\xa5A\xe0?UB\xe0\x1b)O\xf3S\x15\x0c\xfe\x0c`\xf0j\x18\xdc\xfc\x17\x92\xe3p\xdb\xc0\xe1\x9a\xa1\x97P\x9e\xa6N\xb4)\x94\xa7\xd9\x9eAAy\x9a\xad\x19C\x8b\xb8\xed-\xca+h\x96v \xe5iV1\n(OS\x83\xfem:8!u4&\xaaY\xc2H\xb3\xefV\x92\x80\xdft\xb26P\x9ef\x99\xc3\xad9\xca\x82\xcf\xa0>s,\x12:\xd3r\x82Z\x86\xdc4B\x1cnO\xc4\xdd\xa3\xa5\xdd\x0f\xf9h\xfb\xee\x87|Tu?\xe4#\xb8\x1f\x12\xa0\x865\xe8\x105\x05-\xd4\xe1i,\xf6W\xa2\x06\xd4\\.\xa8\xc3\xd3|y\x97\xb9LM\xa9\x87:<\xb5\xe8\xdf&\x86\x03c\xaa\x914\\\xd8\x98j\xf8\xdd&\xad\x92\x86\xd0\xed\xaa\x85QM\xaa\xa1\x0eO\xfd%\x83:<\xb7Y\xb4C\x1d\x1e\xa8\xc3So\x9a\xb6\xc8\xa7\xd0\xc2\x9f\xb3\x99\x13}Q8\xac\x14 k\x92\x81\x16\xdfFUr\x9d\xf8BUw*\x1b6\x93r\x03s\xcb*\x87\xd6\"\x91\xac\xaaM\x955\xf6\xc9\xfe\x8e\xd2\x1f#\x8f\x0eY\x18(\x8e\xda\xee\x8c\xb1\x7fF$\x9c\xea|\xb1\x19\xf4#6\xdc\xc6\xfb\xdc\x97\x15\xd6\x0f\x17c\xcf\xf9\xaaa2@y;\xab\xcd\x11\xbbM\x17c\xeb-\x04I\x0d5b\x82\xab\"\xd5w#\xa9!\xe6\xb8\xcd$2\xecR:\xc0\x1aj\xe1$\n\x07\\P\xbb;\xa1\xff\xf3V\xbd\xca\xac\xd8I\xbf\xfb\xd2n\xa1}T}\x0b\xed\xda\xfd\xeeU7\xd0>\x82\x1bh\xc1\xef\xbe\x06L\xb2&\xaa\xc3\x8c\x16\xdc:\xc0\xa9\x99\xfa\xbe:8\xab\xe6x9\xf1\x87\xfd\x01\xa3n\xdfTSi\n<\xb7Xf\xf0\x8a\xd6\xa3\xbe\xce\xfa\x81W\xd4k\x87\x856\xfbn\x93\xb1%\x97\xd8\xef;,\x08<.u^\xd8\x9f\x95\xf4\xc3\xfe\\\x1a\xf97n\x7f6\xfcn\x9b}#\xff9`\x91\xe0\x02S\xd7\xa3#{<\xaf\xcca2\xa773}\xb7\xcb\x8b2g\xbc\xcbu\xad\xcc\xeeH\xf9[^\x93\x9c\xa7\"\xf5v\\\xe1\xae\xdcc\xb1|?\x0c\xf8;\xc0\xdfQl\x07\xfc\x1d?\xa7W\x12\xfc\x1d\xcb\x00B\xab\xa0\xf8\x1b\xe2\xef\x00\x8f\xc1\x9a<\x06\xfb%\xa7h\xdc\x03x\x11v\xc8\x8bP\xce UJ\xf9Nz\x16\x96v\xb3\xfe\xa3\xed\xbbY\xffQ\xd5\xcd\xfa\x8f\xe0f}\xf0,\xac\x05\xd2\xaa\x8bd\xb5 \x1c\xb0\xac\xa5\x91\x7f\xf3\xb0\xacm\xc4\xa4V\x8fC\xed\x02\xf6\xb4R\xbc\xa9\x801\xbd\x88\xbd\x07H\xcaxN\xfc\xe1\xfd\xe46\x85\xb5\xa3L\xa9\xaf\x96\x17\xed\xeb\xd4\x1ec<\xb4\xdbs/\x04``\x80\x81U\xef\x1b\xc0\xc0\xb6\xcc\x8c\xaf\x02\x97n\x08\x06\x061\xbf\x80\xe0\xd5\xc1m\x00\xb5\xdbe\xd4\x0e\x90\xbayH\xdd\xd2n\xbb|\xb4}\xb7]>\xaa\xba\xed\xf2\x11\xdcv H\x1d u\xcb\x83\xba\x00\xa9\xf3\x9a n\xb7\x1b\xa9[\xecJ\xd7\x06]$\xa2\xe5Vbu\xad/p\xad\xdf\xbaB\xeb\xfe\xb0w9\x89q\n\x87\xfb\xcb\xff\xbc>|\xfa7n\x81\xac\xed\x86\xe5f\x0d\xe1\xe1O\x7f\xe3\x05hN\x1ef z\x97\x8c\x10\xc0\xb9\xbc\x9c\x04p\xae\xbc\x1d\x00\xe7\xea\x82s\xb7\xef\x02\xd7z\xbb\x14nq\xdd>\x14d\xdb\xa4\xce:nq\x85[?[\xf3M\x15\x8e\x0b`\xf9Z\xa8\x87\x9b>\xb7\x1f\xe6_\xcfM\x9fu\xb0\xde\xd9\x07\x19 \xfdj2\x00\xe9O:\xdf\x95{=\x1f-\xed^\xcfG\xdby\xaf\xe7\xa3\xaa{=\x1f\xc1\xbd\x9e\x00\xf8\xaf\x017\xaf\x897\xc3\xbd\x9eu@v\xb8\xd7s{\x06\x05\xf7zn\xcd\x18Z\xd4\x81\xde\xa2:\xe5\xcd\xaeq\x81{=W1\n\xb8\xd7\xb3\x06\xfd\xdbtp\x82{=&\xaa\x8e\x9b|a\xf7\xfa&'k\x03\xf7z\xb6\xfe\xae]\x14B#C\xfc\xf6\x84\xdc=^\xdau\x97\x8f\xb7\xef\xba\xcb\xc7U\xd7]>\x86\xeb.\xc1\x02_\xc3\xd1ZS\xca\xc2u\x97\x8d\xc5\xfeJN\xc7\x9a\xcb\x05\xd7]6_\xdee.SS\xea\xe1\xba\xcbZ\xf4o\x13\xc3\x81\x8d\xd1H\x1a\xb6U\x9e\x17.\x1c\xb9\xccI\xae9\xb7\x0d\x11\xcdU\x0b\xa3\x9aT\xc3u\x97\xf5\x97\x0c\xae\xbb\xbc\xcd\xa2\x1d\xae\xbb\x84\xeb.\xebM\xd3\x16A\xed-\xdc\x1c\x9b9\xd1\x17\x85\xc3J\x01\xb2&I9\x0e\x0b\x82\x88zb\xda\x9f0\xe6/V(\xa7\xac-3\xf4\x1b\x98fS6\x9a\x16\xf94%\xcd\xc4en\xd4\xefH\xfe\x8e&I\x02\xc8\xf2\x93e j\xb7^$\\UX\xe6\x0d\x89\xda\xdd\xa5\xe8\xd15\x14\x89\xc8\xee\xe0\xb8\x05\x08\x13\xbdua\xa2\xf9\x95\xae:hw\xd2\x13\xb5\xb4\x0b\xe0\x1eo\xdf\x05p\x8f\xab.\x80{\x0c\x17\xc0\x81'j-\x00r]\xdc\xb8\x05\xe1\xdb\x04/\x00r\xdc\xd2^l\xf6\xdd\xc6\x8b?$\xf6\xcdb6f\xbe\x9dDH\xdc4\xfb2?\x92\x16\xb6e\xae\x89\xf2+z\xc0\xb2\xdc\x02\xe5\xb9\xcad\x03\xcbr\x17-\xcb\xd4\xd6\x04\xab\xf2\xd6Z\x95\xe9U\xae:Rw\xd2\xa2\\\xda\xc5\x1f\x8f\xb7\xef\xe2\x8f\xc7U\x17\x7f<\x86\x8b?jX\x947\xc7*\\\xa5qU\xd3(Q\x19\x82\xf2!\xe3$4\x97\x0e50Q\xf8v\x84`\x0c\x18\x8d\xf8\xcd\x1fF\x82)\n|\xbd \xf9\x0d\x8d\xbe\xd5:\x17\xdfzt\x96\x1d\xa7\x1f\xa5\xceJm\x9a\x0d\xff\xf5\x8a\xbc\x0d\x164\xcd\x0eR\xcf\x86\xe2\xf2,\x9a ?x\x1b\xbe\x7fS\xdb6\xd3\xd4\xe5\xcd-\xf5\xab\xb2\xa0\xe4_\x7f\xdf\x1f\x1f\xd4\x99\x80\xd80\x0b<*<:\xaai\xe8\xd6\xfb\xb40\x81\xdba\xdb\xd6#\xbel~+\xbf\x8a\xe7\xdf\xa3#\x1407\xf2 \xd8\xaf\xdb\xa0\xa6W\x19\x86`\xbf\xee\x88\xfdjv.\x98\xae\xb7\xd5t-[\xe0*\x9d`'\xad\xd6\xa5\x15\xc1\x7f\xbc}E\xf0\x1fW\x15\xc1\x7f\x0cE\xf0\xc1j]\xae\xd5*\x05O\xbf\xb9;p+\x8c<\x8f\x0e}\xd5|?\xc4\x82\xf4\x9d1\xa6\xa3&\xc1\xa7[7\x8c`a[u\xb3\xe4{\xf4\xe6\x91?b\xd8\xef\x0f\x18u\xc9\x0d\x849\x06>s.x\x7fB\xc2\xfe\x94\xe0&a\xe37\x02\xe8(Z\xae1\xb356\xf3s_&G\xc3\x0d\xb0\xf2s\xb4\xd73\xf2\xb3\x1f\xe9\xe8\xe7(\x0c\xe5\xd1o\xdeA\xf1+H%g\x80\xa5\xbf1\xab\xa6\xca\x84\x06K\x7f\xc7,\xfdxk\x82\xa1\x7f+\x0d\xfd\xd4\xfaV\x1d\x89;i\xe7/\xad\xfe\xed\xe3\xea\xfa\xb7k\xb7\xf3\xabj\xdf>\x86\xda\xb7\x1b\xb1\xf3[)\xcd\xebS~1\xa5\x11\xf6\xefOBv\xe9\xa9{\x90\x1a+\xc13ZH\xc9\xae\xedW\x86g\x8c\xa1\x9eR\\\xfeq\xa9r\xac_E\xc9\xab\xa0$oX#\xa8\xd2>AI\xde1%\xb9\xb0\x9bAY\xbe\x95\xcar\xc9:W\x1d\xa5\xbb\xa84?YZ\xb9\xca'\xdbW\xae\xf2IU\xb9\xca'P\xaer\xb7\x95\xe6?0\x0ffh\xc3\xfaQJ\xealUh\x9c\xa6.\xaf\xc0\xaa_\xf5m\xaf\x98\x07uB\xe3\xe4{\xb1\xca{\x85y\xf0\x9f\x039\xcf\xf3n\xf7\x9d\xffIa\xc2\xb6\xc3.\x98Ot\xd9<\xce|[\xcd\xef\x1bBI\x88\x05A\xf2)\xe2\x82\x85\x04\xc9WP@8\xc7#\x92>\x13\x0eo\xe3\x05\x99p7\xe6\x0d\xd4\xf4v\xf1n\xcc\xa6w\xbaV\xdf\xbc,\xb7|\x7f0\x15\x05\xe6\x9a\xcd\xa9sX0i-\x9e\x87-[%}\x1a\xafv\x95\xe0\x06\xd3\xd6\xbb\xbb\n;\xb8!\x10G\xcb\x1bL\x7f\xc1.\n\xf5 \xba^zw \x92Y\xd9\xcd\x9fR\xf8)\xc5\x1eP\x98[\x85\xc2\xa4\xd6u\x86\x15\x96\xda\x96uQ\x97[u[\xe7\x93\xa5UgzR]\x9di\x13\xb7u>\xa9\xaa\xd0\xf4\x04*4\xd5\x00_\xcc\x7foy\x85\xa6-\x88j\x86\xdb:\xeb\xc4\x80\xc2m\x9d\xdb3(\xb8\xadsk\xc6\xd0\xa2\x8c\xf5\x16\x95Yov\x0b\x0d\xdc\xd6\xb9\x8aQ\xc0m\x9d5\xe8\xdf\xa6\x83\xb3y\x02\x14\xd4Cl\xf1\xddJ\xee#k:Y\x1b\xb8\xads\x99\xc3\xad9\xca\x14\xae]\x9f-\xd6\x7f\xe5FKGp#\xa8\xe1\x16\x05x,\xadf\xd7\x93\xed\xab\xd9\xf5\xa4\xaaf\xd7\x13\xa8\xd9\x05\x18\xc3\x1a\x94\x87\x9a\x12\x16\xee#m,\xf6Wr\xfe\xd7\\.\xb8\x8f\xb4\xf9\xf2.s\x99\x9aR\x0f\xf7\x91\xd6\xa2\x7f\x9b\x18\x0e\xac\xa8F\xd2pa+\xaa\xe1w\x9b4G\x1ab\xb6\xab\x16F5\xa9\x86\xfbH\xeb/\x19\xdcGz\x9bE;\xdcG\xba\x01pd\x93\xb3\xb3\xa3\x8e\x9c\xcd\x9c\xe8\x8b\xc2a\xa5\x00YeZ\xc0\xec\xe4\xe1\xb9_\x98a\xdc\x94\xa4\x80\xd2\xe4\xe0y/\xab\x94\x80\xdf=.t\x0e\x80G\x87,\x97\x00\xa0f\x18\xe2Y\xebD\xc4U\x05^\xae$\x9eu\x0eB\xb7\xb6(\xcb\xd5$\xbeB\x88%\x84X\xee\xa2\xdfciU_\x9fl_\xd5\xd7'UU_\x9f@\xd5W\xf0{\xac\xc1&\xac\xa9U\x8f\x89\x862\xac\xb0#fT\xc7\xd0&\xea\x9c\x12\x19\xb2\xdf\xf8\x9b\xd3\xd4}'\xe3\xc7-JW,\xab\x0e\x80\x1ex\xd1\x8cj^\x03@\xb7d_\xccr\x00\xf3\x07\x98K\xba\xc6\xde\xdb7W\x1f\x90s\xe6\x9fL\xde\"\x87\xfc\xf6\n\x9fw~\x0e\xc9\xd7\xc8\x0b\x89k\x99}\xcbj\x07\xe8\x93;#\x05Z\xd5\x0e\x98\xa89B'/\xd1\x94E\xe8\nK\xb3\x94!/a4\x03\xee\x15w\xff\xcc\x12\x03\xfb\x95l\x07\x95Y\xa02\xcb\x9a\xa0\xc9m\xdb\xb7\xeb\xad\xcc\xb2\x02\x96\xf5\xa8'\xfa\x0e\xf3h\xfd\"-\x8b3m\xd2)\xb0\xed\x82l{\xac\x8ce6D\x8b\xf0/\xaf\xfc\xd8\xf4\xad0\xc7\xf1\xcb\xe8\xb7\x0c\x15\xc8}\xf5\xca\x11o:?\xff\x1by\x82\x04 \x1e\xfe\xe7\xba6\xc6\xb2T\x15\xc5\x98\x01\x1f\xd5\xde\x0bUL\x1e\xf0\xa4 \xd0\xcax\xa0r\xf5VZ\xaeh\xf2\xb3<\xbf\xd1\x90\x85\x01\x16\x82\xb8\xc86\xdcT\xd1\xd0z\x06\xf8~k\x08\x96\x8d\xf8~\xe7Nx\xab\xda@P\xcb\xa8\x9c\xf2\xbcA\x9ej|m^\xf6\xd5\xd72\xda\xb7&\xf1<%\x00<\xeej2n\xa4\xc7=\xb5\xc0\xc5c \xcb\xe2\xf5]\xef\xb7\xab\xba\xd1\xd2\xeebyR}\x17\xcbF\xaa\x1bU\xdd\xc7\xf2\x04\xeec\x01\x0f\xfc\x1a\xfd\xe7\xb1^\xa0\xe6\x95\xf3\xabZ2\xc3\xbe\x11\xc8i\xd5Xj\x81\xa7\x15\x8d(\xfc\xf4\xd55q\xa2\xdb^\\?3\xfa\xe5 \xa6\x99&\xed\x17\xb7 :\xd5R/#GZC\xa7\x86\xab\x8c\xe8\xcd`\xa8D\xf3_[\x14\x15j\xee\xd7(`\x0e5\xf7W\x0d\x1an\xdb\xe6\xbd\xf15\xf7\xd7]n\x1f*\xed/\x83Y\xa1\xd2\xfe2\xf5\x16y4.\xab\xd2\xbem+\x9e\x83\x95\xf1@\xe5\xea\xadT\xdbh\xa2Ah\x05\x02<\xb05d\xc7F<\xb0s'\xbcUqz(\xa6_Ny\xde`O5\xbe6_\xf7\xaa\x8b\xe9k\x1bd\xbf`\x0b\xcf;\xf4\xc1\xe3\xad&\xe3\x06z\xbcg\xafv\xf1\x80\xc82\x7f}\xa7\xf7\xad*\xb3\xffti\x97\xdc?\xad\xbe\xe4~\x13e\xf6\x9fV]t\xff\x14.\xba\x07\xdf\xf7\x1a|\\5\xfd\x14Pf\xbf\x8eo\x06\xca\xeco\xcf\xa0\xa0\xcc\xfe\xd6\x8c\xa1E\xb5\x88-\xaaf\xd2\xac\xd8\x1b\x94\xd9_\xc5(\xa0\xcc~\x0d\xfa\xb7\xe9\xe0\x84\x82u1Q\xcd\"\x1d\x9a}\xb7\x92\xb2\x9fM'k7\xca\xecC\x85\xfdz\xf4\x83\x14Z\x1a\xf9;-\x85j\xceQ\xec\x96\xaa?KPa\xbf9\xac\xb7\x84T\x96\xa5\xdd\x9c\xf9\xb4\xfa\xe6\xcc\xb5\xa7\xb2T\xdd\x9a\xf9\x14n\xcd\x048o\x0d'dM\xa9 \x15\xf6\x1b\x8b\xfdM\x1erPa\xbf\xf9\xf2.s\x99\x9aR\x0f\x15\xf6k\xd1\xbfM\x0c\x07\xa6B#i\xb8\xb0\xa9\xd0\xf0\xbbMZ\xfe\x0d\xdd#\xab\x16F5\xa9\x86\n\xfb\xf5\x97\x0c*\xec\xdff\xd1\x0e\x15\xf6\xa1\xc2~\xbdi\xda\"\xbf]\x0b\x9f\xe9fN\xf4E\xe1\xb0R\x80\xace\x92\xa6\xae\xd1v\x7f\x8c\xf9\xb8i\x95\xbb\xfam\x9a\xa9\xb8\xd9\x89\x9b\x85Q-\x96\xc2\x99o..\x86\xc7\x05\x0b\x89\x1b\xa7r\xaa7T\x85\xbc0P\xfc\x039\x9dyA\x009\x9d3P\xbc\xb69\x9d>c\x17\xd1\xa4mJg%G\xea\xb2{[\xc7\x92\x8a\xace\xe5\xeb\xc4\x8d\xed\x16\x1b\x96\xb7\xa3\xbeN9i^]+\xe7\xccQ:7B6UH\xeeM\xe8p.\xde~:\x17\x86\x8e\x8b\xdf^\x1f\xff\x1a\xa4&\xf9\xf9\xf7\xdcY\xdcjO|\xe1\x8c\"-g\x05quuH\xa4\x96p\x91\x8d\x00\xf9I5r\x19\xaa\x12iV\x92\x9f\x94\xd7\xa0R-\xad-kf\xa5\x15\"g%Q\xec\xc7\xaaG\xdc\x1e$\xcf\xec@\xf2Lz\xddgX\x12\xb3$\xd7N8\xdc\x9f-\xedJ\xfbg\xdbw\xa5\xfd\xb3\xaa+\xed\x9f\xc1\x95\xf65\x1c\xeee\x84\x81\xd3|\x06$\xb3u%\x05k\xd2]\xa8$\xd8\x86\xee\x14=7\x0f\x15R\xca\xef\x7f\x0e\xbe\xab\xff6\xbe\x94\xb1a\xc3\xa9\xd3\xed&\xe3CeC[\x14$*i3\x8f\x14\xa5\xb0!}O\x82\xfa\x1d]\x90\xe9f\xa1\xa2%\x98\xe4\x80\x12\x95\xaa\xfb\xad\xcd\xf3f\xea\xe9\x92P\xa2\x15!5\xcb`\x06s\x01\x04\xb0\xc0l\x16\x18\x93kD\xa8<\x92\\u\x00\xa0!\x0b\xd5\xc5\xb2K\xb8<\xe3\xe6a\x84j&\xd4\xb9\xbf8\xf3\xd9\xb6\xe2U\xba\xb5\x90\xd1\xdf\xf7\xc7\x075\xc6\xbe/\xf9C\x1fG\x8e\xd4k(\x8f\xf8}\x8f\xdd'\xd7\xce\xf8\xfe$\x1a\\\x90\xe9\xec\xe9\xa9\xf5qa\x063\xf8Q\xa1\xe9:M\xd6}\xaf\xed\xf2,\x0cN\xd5\x9d\x9b\x92\x05\xac\xf3]\x02I\x8d\xb1'w\xcb\xc0\xf7\x9c\xf2\x18\xbe4\xa3\xfd\xf1\x85\x9f\x8d\xd1 \xfa\xed\xfd\xdba]U=\xbe\xe0pR\xdea\x01\xb5(\xea\xd2\x80G\x00\x1e\x01xD\x1e\x8f\x08\xc9h\xe6\x06\x07P\xe2V\x81\x12\xf3\x97\xba\x86\xbeR\xb5\x17\xbc\xd7W\xbf\x8d~G\x17^\xf4\xdf\x1f~\xeb\x94\xbc\xff\x7f!\x84\xd0\xdf\xb9\x13z\x13\xa1\xff!\xe9\x11\xa8\xdfWFV\x9f\x0b,\x08z\x8e\xbew\x02B\xa3\xce\xd1\xf7\x0ev\x84wIN\x04 N\xdc\xeb\xce\xd1\xfd\x83\x1f{\x1d>!\x8e|&\xcfl\xf9_6!\x14O\xbc\xceQ\xe7a\xf7A\xf7Ag\xaf\xe3\xd1!\x93O\x94k\xa1s\xd49#NH\x04zG\xc4\x15\x0b/\xd0}4\xfap\xfa\x02\xbd\xc1\x82\\\xe1)r\x99\xc3;{\x1d\x97h\xc2\xa4\xb2w\xd49F\x1f^\x9d\x9d#\x8f\n\x12\x0e\xb1CT\x08\xe9\xd7\x88\x84\x1e\xe1H\x9a\xa0\"\xc4\x94c\xa50\xf0\x1e\xed\xd1\xff\x89\x8e#1&T\x18\xb3Z\xfe\xa6\xe4\xd1\x07\xf2\x929\xf7O\xe8\x17\xe2\x08\xa9\xe1\x12'\n=1\xbd\xef\x92\xa1G=\xf5\xfd\xcfRhu\xf6:f\xc7t\x8e:\x97\x07\xdd\x87\xdd\x83\xce\x8f\xbd\x8er\x0f\xc9\xc1\xec\xebkG\xf6q$\xc6\xfb\x97\x07\x03\"\xf0\xc1\xbe\xa9\x81\xa2^\x90;\xff\xe8{\x87GA\x80\xc3\xa9\x1c\x83y\x88B\"\xa2\x90re\x17\x8b1A\xe4\xda\xe3\xc2\xa3#\x14\x7f\x9e\x1f\xfe\x99G\x1dr\x84t\x97\xf7\xb9{\x81\x1et\x1f=\xec\xec%\xfa\xce\x89\x9b\xea\xa1\xb3'Uy}\xa0J\x1a\x0e\x1f\x1aD\xc3! \xed\xbd\xe7]t>\xf6\xb8\xb1wP\x10q\xa1\xeaiHE\x07\x0b\xe4\x13\xccE\x8f2JP\xaf\xb3\xdf\xebH\x15(\xc4\x8e \xa1\xfc\x8e \xe5\x86\xe3d\x14\x10*l\xa7\x1f?\xfc~\x87#\xc9@\xba\xb9\x90LB\xc2 \x15=*\x1f\x0f#\xdf\x9f\xa2\xaf\x11\xf6%\xcd\xae\x1e\x91\xf9T\xd1~\x17s\xe4\xd1\x1e\xfd,\x9b\xd8\x1f16\xf2IWQ?\x88\x86\xdd\x97\x91f\x84\xcf\xf74\x05\xeas>f\x91\xef\xa2\x01A\x92l\xe4`\xca\xa8\xe7`_\xa5\xa8\xf7\xe8]\xd2\x1du\xf7\xe4`Thm\xaf\xd3\xedu\x90\xc7\x11eB\xf2\"\x99\x08\xe2\xde\xeb\xca\xadsB\xd1D\x8e\xcfs\xc8\x1e\x12\x04\x07\x1cE<\xc2\x92\xe2IH\x1c\x16L<_v\"\x98\xa2w\xe0Q\x1cN5\x83O'j\x01\xb0\x90O\xa6=J\xae'\xc4\x11\xc8SN\xae\x88+\xd2\xe47\x8a\xed\xae\xd5l\x1d\xd3i\x17\xfd\xca\xae\xc8% \xf7\xd4V\xff\xf8\xe1w\x8e\xae\xc6\x9e3V\x9f\x881\xe9Q\xc5\x95\x04}\x96'\xd5\xe7=\xfd_\xfey\x0f\xb1\x10Q\xa6/\xfb&{H.\x91\x83)b\x8aq\x14\xc5\x9c\x08\x14M\x10V\xb4\xf5(\xd77$*\x12\x03<\xe1z\xb6U\x8f\x82Yv@)\xf9\x800GC\xe6\xfb\xec\x8a\x1f\xc9\xc9\xf9/t2L\xba\x94\x138 \xd9\xa5\xe7\x127\xa6J\xfe\x889\x8f\x02\xe2v\xe5\x07\xc7\x14\xfdz~~\x8a\xde\xbc:G\x8cZ\xf6\xd0|1\xf5\x88\xef\"\x8c\xfe\x9d_\xe2\xf3\xe9\x84\xfc\xf9\xef?{\x14!\x15\xf6 g\xce\xcc\xb4N\xdfQc\x9f\x84\xcc\x8d\x1c\x820E$\x0cY\xa8\xfbK\x00F\x8ep\xa809vE\\9B\x07;\x92cU*\x06\xd2\x10\x00G\x03\xcc\x89kH\x93\x1d~\xfc\xf0\xbbj}\x8c/\xd5\xf4\x07\xa9uw\xf5\xc2cK\x8c\xfc\xfb\x92y.\xc2t*\xbf\xd5M+\xb6\x0c\xc9\x90\x85d\xcf\xbe)\x1b\xc0\xc2\x1bx\xbe'\xa6\x88\x12\xe2\xaa9\x1f\x10\xa4\xb6Fx)7(\x92d8cLGD=U\x1c\xd5Ew?rb\x95\x1a9\x10\xb9h\x92\xe9\xf5\xaaa\x8aG\x8a\xf0AH\xf0\x85\xe4n\xd3B\xf7\x9e\\\xb2wL\x90#$\xe4\x0e\x1fF\xd4\xd1\xac!i0\xdc\xefDaH\xa8\xf0\xa7\x08_b\xcfWh\x8a\xe1S6\x1cz\x8e\x87}#9\x06\xd1\x10\x85D\xca\x03\xb2\xa7N\"O\xd8F\"9\x85*\xd7!f\xa8\x01\x19y\x94Jr\xae<1\xeeQ\xf9\xa4\xab\xd7\x19O<\xdeuX\xa0\xf6\xdb\x99b%\x8e\x98\x18k\xd6\xa4y>GwM\x12\x05 &\xc2\xdcmO\xee\xa1@\xaa|h@zT\xf5\xae\x92\xb9\xbc`\xe2\x13)\x89t\x82\x97<\xb0\xbd\xa1\xe7 N\x02,\x0fH\xde\x95'\x9b\x8e\xa4)\x91\xbb\x9a\xb7:G\x9d\xc1T\x90\x82\x1c~+Yv@\x10\x96<\xe9\xb9)\xd1\x8a\xf2\x92\xd5\x083<`\x97\xc4RaV\xae\xdb\xf9\xf1#\xdf\xf2\xe7c:\xfdl\x85\xae<\xe5\x11\x0e\x07\x9e\x08%\xe3\xcc\xe9\xc5nX\xec33\xcd\x08\xf7\xa8\xdc]j\x87\xeb>\x06s\x0f\x85\xf8\x0c\x90KqjW\xd9\xf7\x06\xaao\xb3\xb9\xb9M7\x90\xfc6\xc1\xce\xc5~D\xe5\x7f\xa4\xf4\xd2\xfb\x93[\x96\xd1\xd2\x96\x0dQ$4\xa7[\x9e\xe3rKa\xd7\xf54\x03\xa2\x11\xa1\xf2\xc6\xbe\x1cN\xaa\xfb\x98\xfe|c\xb6%o\x98k\xe7#\x0d\x92\x96T?j9\xd5[\xff\xe39\xa2\x9e\x9f,Z\xaay\xb5:R\xb3Q#\xb2\xfb\xc3\x9e\xb4h0E\x93\xfcN\xbd\xf2|_>p\xc9\x10G\xbe\x12\xc8=z\xa7D\xe6\xeeK\xe5\xab\xab\x1e\xc8#\xe4\x8e<\xe1c\xf1 E\x8721\xc6\xc4\xccg\x8f\xc6\xdb\x93\xfaS\xab\x91\x144\xb8\xf8HBx(\x88\x96\xd6J1\xbc\xb3\x7f\xa7G\x8dl\xb0]h=\x87\x985\xecu\x86\x8cu\x078T\xd4]\xefO\xbb\xdfz\x1d=\x1e\xad\x1eh\xd5E5\xde\xeb\xa8\xa7\x8a z\xf4\x1fg\xef\xdf\xf5\xe8\xf3\xe7\xcf\x9f\xeb\xd9\x92\xffNTM}\x020\xc9jH\xcbW\xadID\xdc\x08\xc4\x90\x8c\"\x1f\x87=Z\xfcD>vI\"%\xf7\x10 \x06\xc4u\x13y\xb9g\xc4-\xed\xd1\x94PS\x81e\xe8\xf3\xff\x92$\x7f6J\\,\xd5\xd3S\xd0\xb5,|d\x19TN\xb6\xe4\xdaD\x13\x1az>1\xdb\xd5\xb2\xf4) 9\xa3 \xcf\x18\x95}\xe8\x85\\\xf4\xd5\x0c=G\x07\x7f\xcb=\x95\xeb`\x1f\x1ef\xf6?BIS\xbd\x8e\xa2\xba\xd79B\xbdN\x19\xdfd \xebjRz\x9d\xbd\xa4\x01E\xc6;\x1c\xa8F\xfe\xae{\xff9\xf5\\\x12\x92\x7f\x9c\"\xe7dh\x0e\xf9\xecL\xeb9\xf38\xba\"\xbe\x7f\xff\x82\xb2+\xaaxt\x8c\xb9\xd4\xf3#.X\x804+d\x17rO\x9f\x82\xb9\xd5\xd5\x1b%\xd5\x8d\\>i\x90\xea\xc5\xeb\xd1\xcf\x8aM\xec\xea\x8d\x99\xef\xea\xa5K\xf5\xa4L\x0c\xb3\xea\xc8\xd8\x01f\xd1{T5\x13\xaf/\xba+y\xdd\x0e\xa5\xa0\xe7ZS\xe6\xcf\x7f\xffy\xefh\x915\xc96\x97Y\x165\x1e\xdd\xc6A\xf7\xf0\xe0\x90\xf7:f\xd6\xa5.d\x91\nk\xd0*\x95\xb9\xdcTW\x98\xc0\xc8\xa3\xda-U\xb0\xb2\x93g\xda\x820\xdb,\xf5\xb3\x91\x03i\x0b|\xbe\x8dL\xc9\xb5P\xe5\x84k\xe8jv \xf6\x1b\xc92\xb27\xf9\xa7Q\xb41\xe7\xda\x0e8\xc5#bn\xb4\xee\xea\xe7=\xaa\xd3,\xe5\x17\xb2\x05I6A\x01\xe3\x02\x11\xa5\x05+\x15YM\x18\x13\xb8\xd4h\x8f \x8a<*\x9eQ\xf4\xa8?t0\xa5\x943\xd6\x04Ii\xde\xc3\x0cq\xba\xce\xac\xfa\xacG\xaf0\x97\x06\xdd\x1e\xf2\x04\xb7f\x11G\x11\xd5\xb3\xedj\x0d\xfa\xca\xe3\xa4\xf3\xe3GQ\xc7\xfc\xa7\x1c\x9f\x85M\xe2(\x1e\x8fg\x96Do6\x9b\xb4\xac>\xd9\x8f\xc1\x9c\x0f\xa7/\xcca\xa4\x15\xf7r\xa4\xc6\xf6\xad\xce\xa1\x12,\x86\xa2\xc8\x18\xc6\xc4\xd5f\xdb\x92 \x19\xd5Vqa~\xec\xa9\x08\xdf\xd4\x03\x8f\n2\"az\xc9<*\x1e\x1e\xcaW\xcdN-m\xc6%\x02{>@>\x00\xf9\x00\xe4\x03\x90\x0f@>\x00\xf9\x00\xe4\x03\x90\x0f@>\x00\xf9\x00\xe4\x03\x90\x0f@>\x00\xf9\xdc\x04\xc8\xc7\xfco\xaf3\x89\x13p;G\xff\xfe\xdeQ)\xaci\x14\xa7{A\xa6\x05\x85\xc8\x00+\xd8\xec,\x1d\xdf\xa1td\x83[\x18K>Fa\x94\xc2;\x92\x96\x9d\x02X\xe4\xbc\xcf\xc7X\xba\xe8\xbd\x14;\xd2\xb2aC\xa9\x8fJ\x83\x86\x85\xe8B\x9aW\x89\xc9\xc7\x89\xe8\xaa\x80\x9b\xce\x91\xa9p\xb7\xd7\xb1I\xb4\x9d#\x95\xb1\xb3W\x84\x0ef\xa8}?~\xec\x95M\x80\xee\xbc0\x07\x86&5\x0d4\nH\xe89\x96N\xc5~\xd2 \x1b\x10\xad _\x8d Ef\xd2\"\x1a\xab\xdb\xdd\x1e=Q-\xf8\x84\xf3d\xf4Z\x17\x8e\xb8\x9c\xa5\x0b2o*\x8c\xf1\xdb\xa3K\x9c\n\x83[\xcd\x98\x0c\xdf\x0b\xbc\xe2\\\xa8_-\x8a4\x0b\xde\xd2FO\x9aW\x0c\xe6$\x8f\xad\x89VEO\x86\xc8'Ca\x14~O\xe8]k\xcf6e\x80i\x96\xd3\x8d\xc9\x99\x18L\x11\xc1\xce\x18\xe1\xc9d\x0d\xe3OAq\x85YH=\x93s\xa18\x81!\x11F\x04\xc9?<\xeaJ\xf3\x94\xc4@\x81\x1d\xbb|\xd1\xb0\xb4G\x1d?rI\x8fb\xa4Z\x8b\xc1\x91\xdc\x9c*\xa8)e\xb7IY\x93\x85X?\x9e\xf0n\x8f\xe6HRGyH\xb8\xc1\xdd\x14[&|,Y\xb5\x8b4Gz#\xaa\n\xa5Z\xce\xedQ=\xa2\x16S<`\xcc'\x98\xce\x9a\xd1\x90H\x03\xb7ht\x99\xdf\xf33\xe9\xa5\xf0\xd2\x90\xcc`*\xd9\x12\xa1\xba|^\xe8\x92p\x1eR\xb9\xc0x\xfe\xdc\xeb\x08<\x92\x82S\xe3\xaa\x9d?\xa5D\x9d\x1b(\xb7\xff\xdd\x94\x05\xfd\xd1\x99\x132\x97D\xcc\x99\x7f\x1b\xd01\x81,L+\xddY!q\x1b\x8e\x88\xab~Q\x00\n\n((\xa0\xa0\x80\x82\x02\n\n((\xa0\xa0\x80\x82\x02\n\n(\xa8\xfe\x1bPP@A\x01\x05\x05\x14\xb4\xc1\x9a\xb4EA\xe7\x85G\xb5\x88\x8eJ\x07GA\x08\x14\x18\xff`\xfc\x83\xf1\x0f\xc6?\x18\xff%\x87\x17\x18\xff`\xfc\x83\xf1\x0f\xc6?\x18\xff\x08\x8c\x7f0\xfe\xc1\xf8\x07\xe3\xbf\xed\x9a\xb45\xfe\xe7\x87@\x19\x0f{A\x13\xb2\xd7z\xa6\xb3\xdb\xeco\xb6\x8a\xbd\xdc\xe4q\xa4\x84\xb4\xe32\x81\x05\"\x8c\xe6\x84\xa24\n+P\xa4\x97W\xdfQ7+\xf0\xa4f\x90\xef\xa3d\xa0\xc5\xb8\x81nw\xbf\xdb\xdd\x17\xc1\xe4>\xbf\xc2\xa3\x11 \xef\x8f\x08-\xedS\x8d\xb0k\xde\xea~\xe1\x8c\xea\xae6\x15r\x90\xccA>\x13QM@6\x0b\xd1N\x80\x95t\x01s#\xbfF\x0eb\x80\xaf\xfb\x01 X?F\x00\xf8\\%\xdaF\x11\xedu\xc4u\x9f{\xa3\xbe\x0e\x9cj\xf0\xc97\xd2w\x18\x17\xfd \xfbJ%\xaf\xf7\xad\xec\xeb\x92\x84\xdep\xaa?'\xee\xe1\xe3\xc7\x07?\xb5\xfc\x9a\x13gr\xf8\xf8\xc9\xc5A\xad\xefg\xe5\x1bj\xfeh\x82\xa7\x19\xe6\x058\x0d\xe04\x80\xd3\x00N\x038\x0d\xe04\x80\xd3\x00N\x038\x0d\xe0\xb4\x02\xfd\x00\xa7\x01\x9c\x06p\x1a\xc0i)r\x00N[`M\x16\x85\xd3*\xb0\xabo1\x904\n\xf1\xac\xd2\xd1\x1fL\xfe\x8b\xefqe\xdb|>\x8e\xc4\x98\x85\xde7m\xad\xed!\xf5\xad\xd6\xc4\xe5\x94\xe9\x7f\x12)\xb6\x92\x7f\x86E\x94\xeb\x8d\xeerCHU2`\xd1\xca\xce\xc7\xe9I\xa8~]\x00,\x00\xb0\x00\xc0\x02\x00\x0b\x00,\x00\xb0\x00\xc0\x02\x00\x0b\x00,\x00\xb0\x80\xfe\x1b`\x01\x80\x05\x00\x16\x00X\xa0\xc1\x9a\xb4\x84\x05\xf6:\xe4z\xe2\x85y\x93\xb5\xa8\x10\xb9X\x90\xfb\xc2\x0bH\x89\xf6\xa2\xccv4\xf2. G\x13\x12\x06\x1e\xe7\xea\xc0\x17\x0c\x91k\xe2D\x82h\xb3\xcf\x080#\xd0\xf4\x06J\xbaG\xb2\xf5n\xa7\xd0z\xc6\xac\xe6\xca\xba\x88\x81\x07m\xb2\xc7p\x83\x9c\xea\x14\xd6\x10\xe3\x0c\xcd\x8bbc\x9a.\xd8b\xa3\x1f\xa0(\xf6\xc6\x8abkh\xa8I\x90\xcaq\x96o X\xa5\x16\x88%\x00\x95\x02T\nP)@\xa5\x00\x95\x02T\nP)@\xa5\x00\x95\x02TJ\xff\x0d\xa8\x14\xa0R\x80J\x01*\xd5`MZ\xa2R\x15\xb9_\x06\xd7i^\x1b\xd6\xda\xc9\xa9R\xb7\x06.ZJ[\x01\x1f\xf5\x85\xb5\x9f\xf3\xca\xd4{c\xfe\xec\xa1\xf4k{\xba\x84\xaf\x02G\x14\x0fh0GI5\x03n\x05X8c\xc9\x0b#\xef\x92P\xf9\xb5Q\xd8\x96A2T\x12\x87J\xe2PI\x1c*\x89C%\xf1\xc5*\x89\xe7\xc3&\xf7\xcd\xb9\xb2\xff\xdd\xfcQ^P\xfc\x8d~\xa8\xc1\xed\xa4\xacx\x12X\xa9\x9ed\xa3+\x13\xcf\x86:\x03\xb2\x93Y:\xf6\xc7\xdd\xc3\xf2PK\xdb\xf3M\x8d\xb8\xb4\x8a@\x19\x12n\x0f\xf6\xb2g\x10\xa9 \x988`\xe2\x80\x89\x03&\x0e\x988`\xe2\x80\x89\x03&\x0e\x988`\xe2\x80\x89\x03&n\x9e\x03&\xbeu\x98\xf8R\"5\xe7\xc0\x036\xe4\xaf\x888 r-\x08u\xe5\x1a*\xa3Z\xef\xa7\x01\x13c\xad9\xe9\xeaj$V\x0bl\x04\xa6\\z\x1b\x82i\x01P\xa5\xffyT\xe9\x14\xdc\xe3z>\xd4\x9b\xban\x99\xfaw1\x06\xd4@\xe1\xf3b?\xb3\xa9\xa6\x10\xf3y[b>-F\xd5$\xf43\x0b\xabA\xe4g-0M\x00\xca\x05(\x17\xa0\\\x80r\x01\xca\x05(\x17\xa0\\\x80r\x01\xca\x05(\x97\xfe\x1bP.@\xb9\x00\xe5\x02\x94\xab\xc1\x9a\xb4D\xb9jE~\x92\xd6\xb5\xfb!\xf0\x11\x02\x1f!\xf0\x11\x02\x1f!\xf0\xb1\xdexZ\x07>\x866\xf01\x9c\x17\xf8\x18\xe6\x02\x1f\xe7\x85=&E%\xd3\x95\x1d\x1a88\xca\xe2\x1fC\x88\x7f\x84\xf8G@\x86\x01\x19\x06d\x18\x90a@\x86\x01\x19\x16\x80\x0c\x032\x0c\xc80 \xc3\x80\x0c\x032\x0c\xc8\xf0\x16!\xc3\x10\xff8?\xfe1\x7f\xb7\x06\xc4?\xde\x92\xf8\xc7\xb0m\xfcc\x08\xf1\x8fM\xc04\x01(\x17\xa0\\\x80r\x01\xca\x05(\x17\xa0\\\x80r\x01\xca\x05(\x17\xa0\\\xfao@\xb9\x00\xe5\x02\x94\x0bP\xae\x06k\xd2\x12\xe5\xaa\x15\xff\x18B\xfcc\xe3\xa07\x88\x7f\xac\x19\xff\x07\xf1\x8f\x10\xff\xd8p\x8aw5\xfeq\x80\xe9E\x1c\xfe8\xc0>\xa6\x0e\xe1\xfb\xdf\x8dC\xa0<\xf0\xf1\xd8\xf7\x7f1o*\xc8\xdfB\x84\xe6s\xa5\x1f\xf9>r\x98\xd4P\xe4\xa2c$\xc5\x84O\x10v\xd4Z\x17o\xcdN5\xb9\xa9@F;\xf8\xf6\xe8\xabK(\x0bJ\x81]\x1c\xc8a\x97\x9ef\xb9\x81\xbd`^\xca\x9b\x81\x04\xbb \xd4\xa8\x85H\xb5ow\x8fTW\xa4M\xafZV\xac\xf3\xee\xfd\xf9\xab#\x05^\xea\x1f\x8d\xe6\xe8)\xdb\xff\x84\n\xa3}\xc4pFF\x05\xd1\x1ay\x8froD\xb1\x88B\xc2\x91e2\x15\xac\xcaFLi\x04%\x97\x9b\xd9\x89\xb3\xa25\xfe\xb7\xe1\x03\x8dNz\x94\xb7q\xe8\x08e\xb1\xa4e\x86\x00\x87\xce&\x1d:\xa9\x9d\xda\xc4\x9d\x93\x96\x19\x1fN_X\x13\x10\xbc9\xad\xbc9\xf5\xf1\xc6\x1f?\xaa\xf4q#\xea\x0bG\x9b\xf9\xdd.\xae\xfd\xa7`\xa6\xbe{\xbc\xcd\x87,\xec\x826\xdfX\x85\x03m\xbe\xa66\x0b\xdaRO\xdc\xe1z8=z`\xc6\xf5\x1c\x1d\xfc\x9f\xb8\xab\xa4E\x13\xc0f\xcf\xa8TWl\xa8g \xffrB\"\xd5H\x9ct#_\xba#_\xbacbq\xe2\x1e\x9e\xa3'{H\x8c#~\x84\x0e\x90|C\x12\xf0\xe0\xff\xa7\xaa\x19Z\x1a|y\x8e\xcd6\x16\x1flq\xc8V\xea\xd4\xf3\xa8\x16~6\xce\xde\"\xbd\xa9\xc3O\xb5\x0b\xa8\xefm@}\xb3:J\x13S!\xa7?\x01\xf6[O\xcdY\x8f\xc9\x00\x98+`\xae\x80\xb9\x02\xe6\n\x98\xeb\x920\xd7\x1c\xa2\xb0\xff]\xfdP\x1eF\xd1\x00YP\xf0kb\x11d\x10\x85\x19\x80\xc2\xb6\xe0 \xd5o\x02l\x00\xb0\x01\xc0\x06\x00\x1b\x00lp3a\x839\x16ck\x83\x11\xec\xc5\x86\xe7\xdbz\xecE-\x11\x1b\xbbv\xe4\xefi/I{/S\x03UL\x8d@\xcdMA\xf3:U\x8f2\x1aW2^\xb9\xd5\xafUS(`n\xe4\x93\xa2\x82\xd5\xed\xeew\xbb\xfb\"\x98\xdc\xe7Wx4\"\xe1\xfd\x11\xa1\xa5D\xe8\x8a\x18\xe6\xad\xee\x17\xce\xa8\xee{SZY2)\xf3\xdf\xe3\x84\xba}B\xa5\xd1\xe1\xb6g\xca\x19J\x97T\x8f\nM\xa7\xcc\x87\xbc\xc4&\xd4}\xa5\xdf\xd7 \xe6Y\x16\xc3(M,\xe2\x02\x8b\x88\xa3\xbbWc\xa2\x92\x7f\x8d\xf3\x1dy\xbcG\xe5\x8b\xf2\xad{Vj)A\xd2\x9f1\xd8\xd9\x14\x19\xfe\xc9\xa2\x951\xffXq\x96a\xa1\x19RR\xb7\x14\x8b\xc7t\x8bE\x19\x19c*\x86=\x93>A4\xaeQ4\xd6\x15@|b\xd8\xad_3\xae\xfe\xcc~P\x1a]/\x9bS @e\x98}\x8f\xce\x0c\xc8)t\xb1)A\x04\xd1\xf65cv\x8a\xcaz6\xda>\xe62\x88\xbb\xbf\xd5\x1e\x98\xc2\xce-=4F\x1fN_$'\x87V\xe0\xa30{|\xf4\xa8\xe4d-!\xee\xf0\x12\x06\x82\xd3d\x8d\xa7\xc9rc\xb9J\xa4\xc1B\xfa6\x84\xe7\x83\xab\x08\\E\xe0*\x02WQ\xbd\xf14\xc0'x4\x99\xf8J?*\x18\x02\xe7ru\xce\xd4\xf3\x8c \xa0WM\x7f\x98Q\xff\x8b\x8a~\xaa\x89M\xa9\xf8\xc9\x00\xdb\x9d\xb4;\xa3\xe0[e\xd3,\xacU\xec\xe3e\x8e\x15\xf9\xe5\xeb\xf1sw\x01h\xf8\xab\xd3\xf0m\xf7JJ\xa46k\x13\xa4<-&R89h\xef\x9b\xd6\xdeAW\x06]\x19te\xd0\x95AW^\xaa\xae<7\x9aJ\x9f\x83\xef\x87Y\xcc\x90\xfe%\x13\xa4_\xbfk\xf5z\x1d\x06QO\x8b\x9c@h\x14H\xdd\xf1\xec\xe4\xcd\xbbW/\xfbo\xcf\xde\xf4\xcf\xffu\xfa\xaa\xff\xf1\xddo\xef\xde\xff\xf1\xae\xb3Wxr\xfa\xe1\xd5\xa7\xf7\xe7\xaf\xca\x9f\xbcx\xff\xf6\xed\xc9y\xe9\xb3\xf7\xa7\xef\xcf\x8e\x7f\xef\xfc\x992U\xe6\xf4\x9ae\xc83oD\x89\xfb\x96\x8f\xceM\xa5s\x1c_\xd6\xc1\xd5\xa3\xf4\x95\x06\x99\x83^\xdf\x86p\x1f\xcd\x18\xc5\x11\xfa\xc4\x04\xe13^\xd1$\x1f\xa1S%\x05\xb0\xcf\x9b\x9e\xc0!\x8b\xa8[y\x94iC\x08\x8e\xde\x97Vi\xe1\x02\x07\xf3\x15\xbf\x8c\xe6\x12\x9f\\\x0d\xa4t\xfa+\x8f\xba\xe4\xbar\xd4z\x95bs\xbfF\x1f\x05\xb9*y-\x9b\x94 \xcfa&\xc8\x9e\xb9@)\xf0\xf4\xb5M\xfaO$\x1f\xe93;9\x9c\xa5\xce\xda\xa3 \x7f\xab\xa1H!0\xa8\xb1\xbc \x04@\x08T\xb6\x0cB\xa0j\x95\xb6R\x08\xa8e\x93\xea\x83GG}\x95`Y\x8f=\x93)h\xf0Q\xe3\x05*\xa6\x1dZ\x8dG\xce\xc7+\xa3\xef$\xda\x9a\xd5\x80\xb4\x82\x1c\xd3hw\xba\xb8b\xf2\xdd\xa1\xef9r\xbcj\x92\xf44\xf8rc\xf6u&]\x1f\x0b\x81\x9d\x8b\x06\xeaT\xaa\xcd~M\xecDST{w\xd5}\x0f\xa0\x16\x80ZvA\xd4\x03\xd4R\xa3G\x80Z\xea\x9d\xad\x8bA-\x9a\x0b\xabwM\x13\xc1\x00\xca_c\x89\x90xTS\x8d7\xc4S\xecT\xf6\x87>\x1e\x95\xd1hM\x9e_~\x7f\xff\xe2\xb7\xfe\xc9\xcb\xfe\xeb\xdf\x8f\xdf\xa4L\x8f\xec\xef\xc7\xbf\x9c\xbdzw^\xf896t\xb2?\xbf;\xc9Y8\xb3:\xc9\x0e\xde}\xed\xe3Q\xaa|\x80\xf6>\xff\xe2;\xec\xe2\xe4\xa5\xe6e;3\xd2\xfa\x19\xb2\xb0\xbd\xde\xdbX\x7f[P\xe9}\xa1\xb6\xd6\x997\xd2v\x9bdK{^+}8\x0d\xc2a\xa4\xdfV\x9e\xed\xf2\x86\xb2\xa8^\xac+*\xac\xd0j\x16W\x98\x1b\x15\xda\\\xc6\x8f-\xfc\x97\x88_\xd3E2\x87\x9c\xd4\xd8\xff\xc9\xf7\xed\x19\xb4\xc9bM\xa2A.4u\x16\x0e\xe9\x1e>~|\xf0S\xadF9q&\x87\x8f\x9f\\\x1c\xd4x;\xbd\x83\xa3\x81\xef9\xbf\x91iF\xc8^\x90i>\x02)\xe2D\x87a\xa4$\xee\xa7d\xe24j\xd1\xd0T\x89\x8f\x88I\xe8\xb1\xd0\x13\xf3\xa3u\xad\xc2\xfa#\xf5e\xf5\x1c\xc2\xc2\xacoa\xda\x1a\xadzM\xe5\xe6f\xb4\xdf\xe44\x1eL\xbfa*\xb2\x01uM\xc2Es1|\x104Zk\xb3\x8a\x99A\xa3\xf9\x959F\x1f?\xfc\xbe\x1f\x12\xce\xa2\xd01\xa5\xd5\xd4\xa2G\xd4\xfb\x1a\x11\x7f\x8a$'\x08o\x18\xa7<\x1a\x7f\x95\x8eE\xb0w\xa7\xf7\xa8\x8a\x14v\x98\x8f\x06\xd1pH\xe2\xdb\xb0Mq4\xdd\xbb*\x8bh9\x0da\x81|\x82\xb9\xe8QF \xeau\xf6{\x1d\xe4\x8cq\x88\x1dA\xc2\xae\njV\xb7\xcbs2\nH\x92;\xf0\xf1\xc3\xefw8\x9a`1\xd6\xcd\xc5~\x88\x1e\x15%\x97\xd6g\x8a\xc5I\xda\xefb\x8e<\xda\xa3\x9fe\x133/\xd7\xfe|OS\xa0>O\x12t\xd4fr0e\xd4s\xb0/y\xd5\x96_\xdc\x93\x83Q\x88o\xaf\xd3\xedu$o\xab@\x12\xc7!\x13A\xdc{\xca\x81wB\xd1D\x8e\xcfs\xc8\x1e\x12\x04\x07<.1\xa7\x1d'\x13\xcf\x97\x9d\x98\xeb\xc6\x07\x1e\xc5\xe1T\x07\xa3L'\x84\xc7\xa9\x16\xd3\x9e\xe1l\xe4\xa9T\x02\xa9\xe5$\x1eCA\xae\xd5l\x1d\xd3i\x17\xfd\xca\xae\xc8% \xf5u\xfc\x1f?\xfcn\xa5\xa0\xb9\xe4\xbfG\x15\xd7\x13\xf4y,\xc4\xe4\xf3\x9e\xfe/\xff\xac\xdc7\x94!\xfd4) \xc9\x14\xe3\xe8\xa2xD\xa0hb\\\x98=\xcaIxIBM\xa2\xaa\n%\xcc5\xf8*U\xc6\xfa5\x95\xba\xe6\xe9\xb0\x15,E\xae\xef\xb3+\xaenE\xff/t2L\xba\x94\x13h\xca\xdc\xbb1UJ\xd6q\x1e\x05\xc4\xed\xca\x0f\x8e)\xfa\xf5\xfc\xfc\x14\xbdyun\xa3p>~\xf8]\xf3\xc5TE\xc2\xe3\xe2u\xec\xe7\xd3 \xf9\xf3\xdf\x7f\xf6(\xb2y\x81\xd4\xce\xb4\xde\xa6j\xec\x93\x90\xb9\x91C\x10\xa6Zv\xe8\xfe\x12`^\xe7k`I\xbeN\x93t\xb0#9\x96\xb1\x8bh\x12\xe7t\x0c0'\xae!Mv\xf8\xf1\xc3\xef\xaa\xf51\xbeT\xd3\x1f\xa4\xd6\xdd\xd5\x0b\x8f-1\xf2\xefK\xe6\xb9\x08\xd3\xa9\xfcV7\xad\xd82$C\x16\x92=\xfb\xa6l\x00\x0bo\xe0\xf9\x9e\x98\"J\x88k\xd3\x93\xd4\xd6\x08/\xe5\x06E\x92\x0c[\xbdP2\x98\xe4\xa8.\xba\xfb\x91\x13d<5r r\xd1$\xd3\xebU\xc3\x14\x8f\x14\xe1\x83\x90\xe0\x0b\xc9\xdd\xa6\x85\xee=\x95~\xc0\x049BB\xee\xf0aD\x1d\xcd\x1a\x92\x06\xc3\xfdN\x14\x86*\xff-\x9d\xb4i\xa2\xa5Tz\x18\xf6\x8d\xe4\x18DC\x14\x12)\x0f\xc8\x9er\x8a\xe8\x04,\xd9\x88J9S\xa7B\xccP*\xf9\x8eJrt\xcdRQ\xbc6_\xe7\xc8(V\xe2:\xd9S\xe7\xa1\xe5\xf8\x1c\xdd5\xc7\x8dN\xd1\xd2\xbcw\x0f\x05J\xa7\x1d\x90\x1e\xd5 o\xd2\x82\x88\x93(t2\x06\x9f\x10\xc7\x1bz\x0e\xe2$\x90\x16\x99c\x02\x19\xea\x85\xe4\xe7\xe5\xf0[\xc9\xb2\x03b\x1d\x85)\xd1\x8a\xf2\x92\xd5:\x89\x06\xec\x92X*\xcc\xca\x95ej|>\xa6\xd3\xcf\xc9\xf1\x8e)\xc2\xe1\xc0\x13\xa1d\x9c9\xbd\xd8\x0d\x8b}f\xa6\x19\xe1\x1e\x95\xbb+WOu\xf6\xa1\x10\x9f\x01r)N\xed*\xfb\xde@\xf5\x1d\xdfa\xc1\xa3\xc9\x84\x85J\x8eM\xb0s\xb1\x1fQ\xf9\x1f)\xbd\xf4\xfe\xe4\x96e\xb4\xb4eC\x14 \xcd\xe9\x96\xe7\xb8\xdcR\xd8u=\xcd\x80hD( \xb1P\x14H]!v\xac\xc96\xd5\xa6?\xdf\x98m\xc9\x1b\xe6\xda\xf9H\x83\xa4%\xd5\x8fZN\xf5\xd6\xffx\x8e\xa8\xe7'\x8b\x96j^\xad\xce\xb9*B\xe0\\\xc4\xfb\xc3\x9e\xb4R\xab\x9f\xe4w\xaa\x0e\xa1\x9d\xc6y\xab\x11'=z\xa7D\xe6\xeeK\xe5\xab\xab\x1e\xc8#\xe4\x8e-\x81k\x05w\xec\xed\xd6\xf3i\xf3\xe3M\"\xa7\xd1H\n\x1a\\|$!<\x14DKk\xa5\x18\xde\xd9\xbf\xd3\xa3F6\xd8.\xb4\x9eC\xcc\x1a\xf6:C\xc6\xba\x03\x1c*\xea\xae\xf7\xa7\xddo\xbd\x8e\x1e\x8fV\x0f\xb4\xea\xa2\x1a\xefu\xd4S\xc5\x04=\xfa\x8f\xb3\xf7\xefz\xf4\xf9\xf3\xe7\xcf\xf5l\xc9\x7f'\xaa\xa6>\x01\x98d5\xa4\xe5\xab\xd6$\"\x1e\xd7\x8a\x1cE>\x0e{\xb4\xf8\x89\xd0 \x9d\xb1\x94\xdcC$\x18\x10\xd7M\xe4\xe5\x9e\x11\xb7\xb4GSBMg\xf6}\xfe_\x92\xe4\xcfF\x89\xcb\x18mv\n\xba\x96\x85\x8f,\x83\xca\xc9\x96\\\x9bhBC\xcf'f\xbbZ\x96>%!g4\xe1\x19\xa3\xb2\xabx\xe6\xbe\x9a\xa1\xe7\xe8\xe0o\xb9\xa7\n\xe51\x0f\x0f3\xfb\x1f\xa1\xa4\xa9^GQ\xdd\xeb\x1c\xa1^\xa7\x8co\xb2\x84u5)\xbd\xce^\xd2\x80\"\xe3\x1d\x0eT#\x7f\xd7\xbd\xff\x9cz. \xc9?N\x91s24\x87|v\xa6\xf5\x9cy\x1c]\x11\xdf\xbf\x7fA\xd9\x95N\xb2\x1cciS\x9b4I\xcd\n\xd9\x85\xdc\xd3\xa7`num\xacy\xdc\x8d\\>\x15)\xa2\x16\xafG?+6\xb1\xab7f\xbe\x9bI\xc8TL&M\x0c\xb3\xea\xc8\xd8\x01f\xd1{T5\x13\xaf/\xba+y\xdd\x0e\xa5\xa0\xe7ZS\xe6\xcf\x7f\xffy\xefh\x915\xc96\x97Y\x165\x1e\xdd\xc6A\xf7\xf0\xe0\x90\xf7:f\xd6;I\xca\xa1M\xee;#\xe1\xa5\xe7\x90F\xe9}\xdf54X\x9eb\xfc\x86hX\xe0\x97\xa9\x0e\xe2\x8fS\x8d5^!gG\x97_\xd7\x8d\x94&\xfae\x1a\x80T\xbf*\xf0b\xa58e\xcdp\xb5\xba#\x82\xf83\x88?\xdb\x85m\x03\xf1g5z\x84\xf8\xb3z~\x85\xc5\xe2\xcf \xd5\x0fR\xfd\xe6|\x08\xa9~\x90\xe5s\xab\x8e\xde\x16^\xdfv\xee\xe5[\x94\xe5\x03\xa9~ \x04@\x08\xec\xb8\x10h\x1b \x07\xa9~)\xde\x87T\xbf\xaa7\x01j\x99\xb5\x1f\xean\x05\x80Z\x00ji\xd8#@-\xf5\xce\xd6\xc5\xa0\x16\x88\xad\xde\n\x89\x00\xb1\xd5\x10[\xbd\xce\xd8jH\xf5\xabz\xfb\xe6\xa7 M \xd5o\x0b\x17\xa6\xad\xd1\n\xa9~;\xc7*\xady\xa5\xc5Y\x07\xa9~\xa0\x8e\x82:\n\xea\xe8f\xd4\xd1\xb2T\xbfLH]\xc3d\xbfl<\x1f\xa4\xfb\xd5\xda\xb0\x02\xd2\xfd \xdd\x0f\xd2\xfd \xdd\x0f\xd2\xfd \xdd\x0f\xd2\xfd \xdd\x0f\xd2\xfd \xddO\xff\x0d\xe9~\x90\xee\x07\xe9~\x90\xee\xd7`M\x16M\xf7+\xbfapl\x13\xec\xda\xdc\x11X\x82\xb1\xfe\xd92\xaf\x902\x97\xf4\x95\x17\x7fFF\xe1;\xe6\x92\x13:d\x99{K\x8df\x8b\xe4\xd7*\x06\xa04\x97\xd0~\xba\xa94B#\xb1\xfb\x991\xce\xff\xc4\xea\x81\xfdt\x04\xd7\xfc/\x0e\xeb\x85^\x15\xd3\xf9\xe6\xbd[;\xa0+\xc1\x80\xcc0\xcb\xc3\xa1|\x8f\x0bB\x15\xacW\xfa\x9c\x12q\xc5\xc2\x12\xea\xa4N_\x98\x8a\x14\xe43\xc6\x94\x12\xbf\x1eP\x180\xea]\x94\x01\xff?\xf6:\xcaF\xa9\x9emq]\x88\xf5L\xda\x08'\xcel\xe0\xd2\xec\xc6T\x80Y\xfd5\xd6{\xb6\xa4G<\x99\xf4g>\x9c7o#\xaf\xc4E\x90<\x1eD\x9e\xef\xf6\xf5\x86.\xfb\x9a\x95\xd0\x9e\xff\xda%\x93\x0504%\x91J\x16\xd5\xc2\xcc\x01s#\x9f( j\xeeX\x0b_\xd87\x7f\xecI93\xef\x03gL\x9c\x0b\xf9N\x1a\xdb\x7f\xab[\xf1R\x87\xbe<\x06>\xe9V\x95\xb4\xd1\xeeE)\xf5\xfa\xdc\xbd\x98=SI\xa33\xee\x8e.Z\x93\xa9n\n$\xc8\x7f\xa4\x84^\x0c\xf4Z3\xb0\xa4\xb9\xb2\xd7c\\\xf8kD\xb8\x98\x01\x0b\xc7B\x19\x10\xe1Z\xdc,\x00\x11\x06D\x18\x10a@\x84\x01\x11\x06D\x18\x10a@\x84\x01\x11\x06DX\xff\x0d\x880 \xc2\x80\x08\x03\"\xdc`M\x16E\x84[\x01\xb5|J\x1d\xa98\xcd\x80i\xcf\xf4\xe3\x18\xa5U\xc8\xac\xf9\xa6\x14\x9c5\x1fl\n\x9bM\x0d\xc7\xbc8`\xcc'\x98\x96\xc3$\x86\xda\x86\xd1svR\x00%\x01\x94\x04P\x12@I\x00%\x01\x94\x04P\x12@I\x00%\x01\x94\xa4@?\xa0$\x80\x92\x00J\x02(I\x8a\x1c@I\x16X\x93\x8d\xa0$I:\x1e\x11|\xdfWW\xe5\xcd\x82L\xf4EzqJ\xf4\x19I\n\xe6\xeb\x0f\x93\xe4\xbe\xfb\x9c\x94\x97\xcb/\xb6\xb1)@Eg\xa96I'^i\x16}\x93\xacy\x01\xb8\x03\xe0\x0e\x80;\x00\xee\x00\xb8\x03\xe0\x0e\x80;\x00\xee\x00\xb8\x03\xe0\x0e\xfao\xc0\x1d\x00w\x00\xdc\x01p\x87\x06k\xd2\x12wX_9\xb4BRI\\\x1f\xbd,\xa5$\x87A\xe8\x8c\xc2\x91G\xb10I-\xd9\xc6\x92gq}8LQ\xeaW\xdbn\x1au\x10s\xcdsU\xf58k\xc8\xcfT\x13mF\x8d\xfd\xc6\x0eI\xfeit|\xcc\xb96AN\xf1\x88|\xd0i.]\xfd\xbcG\xbfFD\xda\x12\xd2\x94\x95f\xe1D\xb2J\xc0\xb8@D)\xe0J;\xef\xd8rrs 2\x19r I\xea\x13E\x8f\xfa\x83F\xc1@\xab\xa7\xd6\xfaI)\xfd\xc3\x0cq\x0e\x8b\xa8\xe8\xab\xcfz\xf4\nsiK\xee!Opk\x91q\x14Q=\xdb\xaeV\xde\xaf\xecQp\x15\xd4\xe2U1\xd3UP\x1f\xcc\xfa\xf1\xa3X\x04U\xadI\x0d\x89\xe2\x12\x9f\x8cT\x80\xee\xfe\xf7\xf8o{)\xf2\x8f\xfd\x90\\\xe1\xd0\xe5\xa5\x92\xe6\xa5~\xddc\xf4\\\x9e\x11\x1f\xf4\xab\x19\x91\xa3\x0f\x0f\xd3\x08\xc2\x8e\x13F\x9a{\xb1:w{4\xf6<\x16\x05Qy\xf3\x9b\x92H\xa9\x89h\xb7\xd0\xf1H\xe7\xdc8\xbdg\xbai\xdf\xcb\xce\x89\xbe2\xf2-\xdf\xbc\xb4\xfc\xacy'1\x17ug\xc9\xcc)TS\x0e\xc3\xbc\x7f\x87\xdb\xbf\xe5\x18\xf5\x9a\x94\x88Y\xcb\xd7\xf1D\xf9\xbe\x91\x92%\xfc\x1e7\xde-\xf3-\xc327;\xe1\xb4`\xb1\xa4+\xdc;\n\x14\"\x94]\x83\x99\xc7\\\xb9t\xa9u\xde\xf5\xa8>\xf0f\xc8?8\xf8j\xb1\xf0\xb2\x0f\xber\x94\xa3p\xa4\x15L\x85\xc2\x1b\x19\xae\x8a\x9f\"\xfbT0\xa4\x03H\x86\xfa\xd0j\x03\x9fd\xb4\xff\xe5\x9e\xd4\xfb\xdf\x0b\x07My\xaeR\xc2\xbd\x0d\x0f\xeeD2\xce;\xb3o\xfaq\xbd\xf3\x126\x7f\xb8U\x1dl\x8a\x1f*\x85\xedbr\x16Dl#\x1e\xdem\x11\x9b\x00FE\xd5;Oa\xe1\x8d\x0c\x85\xf1\xd3%S\xb8\xfcC \x9bn9K\xe6\xb30\x0e\xee\xcbJ\xfd\xe4s\x94U\x88\x8b\x92\xbe\xdb\xdd\xefv\xf7E0\xb9\xcf\xaf\xf0hD\xc2\xfb#B\xe7\x92\xae&\xack\xde\xee~\xe1)\xfd?\x93\xb0#.p\xa8\xaa\xbd\xc5\xa9\xb69\x99\x94}\x9e\xa1\xce\xd6\xf9A\xf6%S\">!2%\xc1\xba\xcd\xf3\xd0f\x9f&\xa9\x01\xe8,\xb8\x85\xc87\x89t\x1b \x1e\xb2\x90!\x0b\x19\xb2\x90!\x0b\x19\xb2\x90\xe7\x8dg\xbe\xb5G.=\x97P\x87\xc4\x96\x9e\xfd\xa1Sf\xcb\x1d\xfb\xfe+\xf3<\xf1\xa0\xf8>\xb2\x1f\x15\xed\xb6\xd4\x17\x9b2\xd9\xd2#Z\xb6\xba\x93\xe7\x07(\xf6\x08\xc5\x1e\xa1\xd8#\x14{\x84b\x8fP\xec\x11\x8a=B\xb1G(\xf6\x08\xc5\x1e\xa1\xd8#\x14{\x84b\x8fP\xecq\xc1b\x8fyE\xc4\x9a\xb5\x06W\xc8\x1a\xe2\x1c|[\xb7\xc0\xb7\x95\x02Oj\xb9\xb5Lls\x1a\xa5\xf9p\xfa\xc2\x9e\x0b\xe0\xd1\x02\x88\x07 \x1e\x80x\x00\xe2\x01\x88\x07 \x1e\x80x\x00\xe2\x01\x88\x07\x01\xc4\x03\x10\x0f@<\x00\xf1\x00\xc4\xb3\x05\x10OE<$\xc4\xbbA\xbc\x1b\xc4\xbbA\xbc\x1b\xc4\xbb\xad \xdem\xff\xbb\xfd\xab?\xc6|\\^Q\xb7\x10\xfc\x16\x83\xf01l\x11\xff\"[)\xc6\xc3ma0\x1c \xa2\x80\x88\x02\"\n\x88( \xa2\x80\x88\x02\"\n\x88h5\x99\x80\x88\x02\"\n\x88( \xa2\x80\x88\x02\"ZsM\xda\"\xa2\xa5qQm\x82\xa2\xd2\x11Q\x90\xe2_M\xa1\x00\xf3\x1f\xcc\x7f0\xff\xc1\xfc\x07\xf3\x1f\xcc\x7f0\xff\xc1\xfc\x07\xf3\x1f\xcc\x7f\xfd7\x98\xff`\xfe\x83\xf9\x0f\xe6\x7f\x835ik\xfe\xcf\x0f\x88\xcax\xec\x0b\xfaP\xe6i&\xc9M\xfd`\xf6Q\xa8s\xb7\xa4}\x9f*b\xd3\xa60\\1ri~(\xc2\x90\x90Q\x88\xa9\x88C\x11\x94%\x80U,\x82z@\xc2\x1f\xf6/R\x1e\x8fpl\xbf\x88\x93\x00\x87\x84 \xfd\x89k\x97\xde\xb4 \xc5o\xf2\xcf\x92\x12\xabqc\x9b\x8aM\x88\xc7_\xec-~\xa4C\xbb\x92\x7f\xda\xb1J6N\x0d45\xc8\xf9}\x9a\x17\xabQ\x0e\xf3\xa2\x85\x9aR\xb7J\xa9\xd3\x88\x13\xd3\xbf\xda\xac4E\xa1~\xc3\x0b\xa5\xaa\xe9j\x05\xdf\x10Z\xb7S2\xaf\xd3\x01\x91=\xdai\xc8\xf7\x8c\xa9\xb6[\xe4\xabwx\x8a\x84Zsm\xa2\xe5\xa4\xf2\xc4\x86\xd2\x10\xf5\x1c%\xdb\x86\x9e/H(g\x9d\x90\xa4\xbf\xea\xc9\x16\x80)\x01\xa6\x04\x98\x12`J\x80)\xed\x1c\xa6\x94\xbe\xf9\xe6\x8d<\xadT\x0c\xa9P\xf1\xacf\xee\x7f\xfbt\xa6J\x8c\x0b\x86$\xf7\x85r\x9b\xa8\x83M\x0fT\x8aP+Gfy\x86b\x1d\xa6\x89k(\xd1\xa2\xc07\x04\xbe!8\xc7\xe1\x1c\x87s\x1c\xceq8\xc7\xc17\x04\xbe!\xf0\x0d\x15\xe8\x07\xdf\x10\xf8\x86\xc07\x04\xbe\xa1\x149\xe0\x1bZ`MV\xe3\x1b\xb2\xc0\xfe\xcap\xfcvN\xa2t\xbe\xadu\x03\xac \xf5oKp[/\x16\xaf\xeb\xbc\xe2\x99\x12\x96\xc2\xfa\xa8\xb8\x92\xb53\xef|M>\xdf\xb8\xbfj\x01(\x05\xfcO\xe0\x7f\x02\xdc\np+\xc0\xad\x00\xb7\x12\x80[\xad\x0e\xb7Z\xb6\xff)Oi\xa2\x0c$;@\xfe\xf3\x0e\xaf\x8cQi^\xa9\x1b\xd3ta\x19\xeb\xcd\x82J\xdd\x9b\xac\xd4mV\xbf\x95\xe3\x11.\x9e\xad\xa9.\x83\x06\x07\x1a\x1chp\xa0\xc1\x81\x06\xb7{\x1a\x1cx\x1e\xc1\xf3\x08\x9eG\xf0<\x82\xe7\x11<\x8f\xe0y\x04\xcf\xe3v{\x1eIk\x7f[iA^(\xf8\x0d\x05\xbf\xa1\xe07\x14\xfc\x86\x82\xdf\x85\xf1\xcc\x8fO\x18\xb1\xcb84A\xc9k\xbe\xff]\xff\xb7/[*\x0fM8U/\xc4U\xbe\xb1\xef\xa3D\xd6[n\x18\xb1K\x1407\xf2I18\xa1\xdb\xdd\xefv\xf7E0\xb9\xcf\xaf\xf0hD\xc2\xfb#B\xcbHR\x03\xee\x9a\x97\xba_8\xa3\xba\xefM\xc54\\2\xe1\xd1Q_\xcfP\xb1\xc7\xcc\xe3\xdc\xc5\xa1\xf1\xfc\x84\xc4\xc7&\xffX\xbf_\xed\x90\xb0\xed\x92\xd0cn5\xb8\xfb;\xa1#\x11\xa7p\xeb\x8f\x91\xfeX\xc1\xe7\xf2\xfd \xe3\x9e\x989\x90\xec\xf3\x1a#1\x1fT\x0f%\xf0h\xdf\xbc\xdc\x1e\xe7v eA)\x84\x8e\x03)LJ\xf5\x86\xdc\x10_0/\xe51B\x82]\x10j\x14p\xa4\xda\xb7rJ*\x86\x98\"\xdd\xb2\xda\xa4\xef\xde\x9f\xbf:R0\xb1\xfe\xd1\xe8\xe8\x9eBYN\xa80z^\x0c\x1ce\x94=m\xfb\xf4(\xf7F\x14\x8b(T\xf1=z;+\xb7\x17\x1b1\xa5{u\x8bN\xb4\xb7\x1e\xf5\x82(\xb0\x93\xad\x03\x80\xa4\xdd6a\x1c\xfbr\x19\x88\n\x82\xc9\xaf\xf8^'\xc0\xd7\xfdxMkr\xd1[|\xadz\xd3\xef\xab\xce\x8e\xe5\x00\xa4\xfa*W?Yu$g)\xa6\xa3\x8bN\xa8'<\xec\xebS\xf0\x08\x1d\xf6(\n\x18\x15cn\xb8O`\xdf\x9f\xce\xe4\xbd\xf4\xd3\x1a\x9c\xa7^\xaf\xe6\xbb\xaf\x11\x0b\xa3\x12\x9e\xa9\x04\xe8\xcc\x9cOH\xe8H\x85\x7f\xa4\x01/uXq\x81/\x88\xc2]\xe3\xedL\xcc\xa2\x98SSI\xfe\x1e\x95\x06\x1b\xf7\\\x15\x94\xa3p>\xb5(b\x1c\x12.gs\x01\xaa\xe4\x9c\x87\xd6\xc4\xfc\x17\xe1\x8a\x06\x1d\x1a\x96\xe6\x8b \xe6\xbc\x8b^\x1a\x15\xc5\xac\xcb\x83\xeec\x0d]\x12\xc1\xfaK F+=l\x88>\x113\x19\x8aI\xce\xd5\\\xe9\x7f\xaa3\xa0@\x9d\x9a\"I\x85<\xdasD\x1e\xec?\xec\xcev,\xea\xd3\xa0\x89S\xd1\x9c]\xe0P\xac%h\x058\x14\xc1\xa1\x08\x0eEp(\x82C\x11\x1c\x8a\xe0P\x04\x87\"8\x14\xc1\xa1\xa8\xff\x06\x87\"8\x14\xc1\xa1\x08\x0e\xc5\x06k\xb2\x1a\x87b\n\xae.hC\xa9g1\x94\xa4\xe7,\x05& \x86t\x14\xf6\x90\x85{\xd6%fO\x05\xa8\xc5\x013\xbau\xe4F\xa1\x8dP\xb7(\x145\x11_\xa5\x1dgV\xb0\xd8o\xe6q\xbdn\x0d26\xb7W\xcd\x17\xc5\xee\xf4\xefs\xfa\xc9\xac\x97\x96 c\xcc{TWS(\xef\xcc\xf2Z\xb1;\xfb\xa4E\x87\x03B(\n\xc9\x17\x15\xfeS\xde\xaff\xe4b\xaf\xfa\xf7\x16}\x0e\xb1\xb4Z\x95\xd53\xf4(\xf6\xfb:&N\xdb\xbe\xd5 \xd5\x94\x94\x88\x86\x1f{\x1d<\xe0\xf2P+}F\xd9\x8c\x9f\xfb\xf2\xc8\xec_\x12Q\xf6B\xc1&:\x97\x84~\xd0\xc1o\xc9\xb8\xb9\xc0\xd4\xc5\xa1\xab\x83\xf5L\x88\xdc\x88]\x92\x90\xaaJV\xf1\xbeT\xb2-\x1a\x04\x9e\xe8\x0b/\x98o\xed\xb9X\x90\xfb\xea\xadT@+\xa1n\xc3/U(\x1f\x84\xa4\xd6\x0cI\x95v\xb8\x0eF\xe6\x02\x87MW\xc9|\xdat\x91\n\x13e%\x7fF\x0e;,$f\xd8\x81\xd4\x13B\xb3\xbf\xca\xf9\xacyU\x19\xa1T\xfbt\xfa\x82\x80\xaa2\x9b\xac*\x13\xbb*\x1a\xc5\x7f\xc6\x0e\x91\x0f\xa7/\xac\x9d\x041\xa0\xe0\xf2\x00\x97\x07\xb8<\xc0\xe5\x01.\x0fpy\x80\xcb\x03\\\x1e\xe0\xf2@\xe0\xf2\x00\x97\x07\xb8<\xc0\xe5\x01.\x8f-pyT\xc5\x80\xda\x88?\xe3\x18)\xc4\x81f\x9fg0\x9d\x04\x8b\x95\xff\x8a\xc3\x0f\xc1G\x00>\x82\xba\x1dn\xd2G\xd0\xb84\xc8.\xb8\n\xd3e\\.Y\xd9E7\xea\xd7\xcc\x1e\xd5\xbf\xd8K<,j\x98\xc8\x83\xd63\x9d&\xc6lCV$(~\x92\x13\x1c\xba\xc2\x82!\x8bp4\x0cY\xb0\n\xca\xa0\x9a\x16T\xd3\x82jZPM\x0b\xaai-\xa9\x9a\x96\x15\xcf\xfb\xdf'I>\xca\x8c\x82Z\xf6x\xb7\xa9;\x93\xc4\xc1\xa9\xbc7 \xf6k_=y9;wg\xd3\xa9;\xf5\xdf\x84\x0c\x1dpW\x81\xbb\n\xdcU\xe0\xae\x02w\x15\xb8\xab\xc0]\x05\xee*pW\x81\xbb\n\xdcU\xe0\xae\x02w\xd5MvWA\x86\x0ed\xe8\x80\xf7m\x07\xbco\x90\xa13\xc7\xda\x83\x0c\x1d\xc8\xd0Y(CgN\xd2G\x9b\x9c\x0f\xa8\xfa]o\xa7\x08\x80\xd0\x01B\x07\x08\x1d t\x80\xd0\x01B\x07\x08\x1d t\x80\xd0\x01B\xd7\x7f\x03\x84\x0e\x10:@\xe8\x00\xa17X\x93\x96\x10z\xdd\x8c\x0f\xcf\x9d\x9d\xed\xe1\xb9\x19\xfcA\x1b\xa5\xc8s\xf3\xc9\x1em\xabw\x97\xc5\x90.\x1c!\xb8o\x90\xae\xf22\xdf/\xcd\xc3L\x95o\xfb\x85\x86S\xb8GG~vp\xd98A\xdb\xc6\xa6\xe2\x04\xd3\x03\x14\xad\x10\x8a\xe6\xf1\x83I\xe0}-\x04\xb0!=\xbb\x82-\x16\x886\xac\x94\xd0m\xe9\xb2<\xa9\x1b\x91?;:\xbc\xd9&XH\xfbT\xfe*\xbcK\xa2\xac\xb8\x14\xee\x07\x95ynve\x1e+`\x9a\x80\xb4\xb1`\x03\x90\xb6\x96\xc8\x11\x00\xd2\x02H\x0b -\x80\xb4\x00\xd2\x02H\x0b -\x80\xb4\x00\xd2\x02H\xab\xff\x06\x90\x16@Z\x00i\x01\xa4m\xb0&;\x06\xd2B\xd9\x0b({\x01e/\xa0\xec\x05\x94\xbd\xa87\x9e\xe59\xb5\xf6\xbf\xc7\x9e\x98\xf2Z\x18\xd6\xa3`\xfd[\xc6\x9be\x0b!yT\xf3\xaf\\|\x8d\xbc\xd8nN^\xee\xd9\xb7\x8e]7\x9c\xe9\xf6\xda\xb0\xd7\xab\xfaEpn\xddj\xe7\xd6l\x7fI\x0bw xK\xea\xf1\xb0\x00o xK\xc0[\x02\xde\x12\xf0\x96\x80\xb7\x04\xbc%\xe0-\x01o xK\xf4\xdf\xe0-\x01o xK\xc0[\xd2`Mv\xd6[\xb2\xd2\xf2\xe5\x0d)]\x06*\xa9\xaa]\x94\xc2\x90\xe92\x19\x16\x8aT2EYz\xd9\xb2 \x97L\x90\"\xdc\x98jaS\x90c<\xbc\xf9\xaf\xdd\xe4j$\xe5\x80Z\xaa\xd9&\xa0\x9a\xfa\x0c 5\x80\xd4\x00R\x03H\x0d 5\x80\xd4\x00R\x03H\x0d 5\x80\xd4\x8a\xf4\x03\xa4\x06\x90\x1a@j\x00\xa9\xa5\xc8\x01Hm\x815\xd91Hmq\xe8\xea\x92 R^\"\xe2\x93|\x12\x83V\xea=\x0dX\x8d\xbcKB\xe7\xd4\x85P\x1fn\n\xab\x8a\xc7#Z\xa1\x11\xcd\x83\xe6\xf4\xbd\x90e\xd0\x083\xc3\xcc\x8f\xfa\xa5\xdc\x89\x8e\xd4\xf9\x8e\xd0iH\xa4\x06k\xec\xe2\xcf\xfa\x13i\xa1wM\x1b\xf7\xd0\xf3\xe7\xe8\xe0\xb39\xc7\xb00\xe6\xb0\x92\x17WD\xd9\x0c\x07]tB\xa5]\xd8\xa3\xda\xeap0'|\xcf\x18I\xaa\xcf|8\xf1\xa7\xf7\xe7\xaf\xfa\xefO\xcfO\xde\xbfK\xd7\xc9N\x15G\x88\xe7\xca\x16(\x9f\xf1Ig/\xf3\xe4_\xaf\xcer\xbf\x1c\xffrv~|\xf2.\xf7\xeb\xbb\xf7\x85\x1f\xfa\x7f\x9c\x9c\xff\xda\xff\xf4\xea\xfc}\xb6\xc4\xf8\xac\x8e\xe3\xa5Y\x80O\x92\xb5\xbd1\xc3\xce\x0b.\xb9M\xdfk\x9e(\xad\xa8.\x19\xdb0\x0d\xb7\xd8\xa9\xda\xf9e\x08\xaa\x92\xd9\xf7g\xb1\xc7\xd1\xac\x07)\xb0\x96\xb2\xfbl\x92\xee\xb4[h\xf1_\xaf\xce\x8e\xf2?\xa4Z\x98\x1a15\xf3{3\xb5Ge?f\xa235`=\xbf\xb1w\xef\x8fr\xff\xce\x0c\xa6\xea\xe3d\xf5\xf2\xcd$O\xb2\x0d*E\xeb\x92\x88l\xd3\x92\x9b\xf5v.\x91A\x05\x03\xfb\x0f\xf5&qSk\x9f\xf4\x11QOaq\xaay\xb9\xe0\xea\x0f>\xf1=1/\x1e\xfcGR:d\xd6\x1b\x05:d\xff\xa9\x9e\xf5\x80\xe8\x0ct\xbeG\x8f\x91\xfa\xc0a\x94{\\\xe4\xcb\xa9\x9f\xbc\xdc\xd3l+%\xf1^\xac\xb8\xe7g)K\x81>\xcfl1\x12\xf9\xbe\x16\xaa\x9a\xef5>\x02\xf5cnv\xfd\x18\xa5\x884q\xdch\x95\x07\x1c7\xb5\x8e@\x01\x8e\x1bp\xdc\x80\xe3\x06\x1c7\xe0\xb8\x01\xc7\x0d8n\xc0q\x03\x8e\x1bp\xdc\xe8\xbf\xc1q\x03\x8e\x1bp\xdc\x80\xe3\xa6\xc1\x9a\xec\x98\xe3\x06*\xc7@\xe5\x18\xa8\x1c\x03\x95c\xa0rL\xbd\xf1,\xc9\xd1\xbd\xff]9 \xcaK\xc6(\x1fC\xda\xdf\xed\x96\x94\x89a\x89\xe7\xfb\xe4\xe5\x9e\xf69\x94\xd7\x89\x91\xcdm\xd2\x0b^\xfd\x168\xbb\xc1\xd9]\x07\xe9\x07g78\xbb\xc1\xd9}\x83\x9c\xdd\xb3\xdd\xa1M\xbd\xa1\xe0\x0c\xad'\"\x058C\xc1\x19\n\xcePp\x86\x823\x14\x9c\xa1\xe0\x0c\x05g(8C\xc1\x19\xaa\xff\x06g(8C\xc1\x19\n\xce\xd0\x06k\xb2\xb3\xceP\x8d/\x97\xc5\xeag\x0bB\xa9\x1fl\x95l\x8bZLV]\n*\xf0\xa8\x88\xfd\x0c\x98\xd2\x08\xfb}%\xc7\xb9\xc5W\x0b>\x85c\xf5\xd6i\xfc\x92U\xd0\x91lKq\xaaz\x01%\xcdh\xc1Vt'\xe4[\xda\x94k\xa1t\xdc\xcdT\xefB\x13\x16\x8d\xaa=93\x10\xae\xfc\x1c\xd5B\xbbzT\xc3]\x85\xa5\x02\xe8kA\xe8\xab\xbeq\xf6\xe3G\"\xbc\xean@\x8f\x0e\xfd89\xa7\xb0\xf1N\xecS\xe3\xb1,g\xb0\xb8\x8dY\xbb.nfS\xdb-3\xcaf\xdb,\x19\xdc\x8c\xedU\x18\xfd\x8cm\x15OB\xad\xfdd\xd0\xe3d\x01>\x9c\xbe\xb0\x8a'l\xa4-\xdcHJ[(?\xbeN\xd5\xa3\xcc\x16\xd2\x11\x0e*0f\x18sR\xa2p\x14\xb7P\xb7\xbb\xdf\xed\xee\x8b`r\x9f_\xe1\xd1\x88\x84\xf7G\x84\x96\x12\xa2\x02\x03\xba\xe6\xad\xee\x17\xce\xa8\xee\x7fS{/\x99\x98\x9c\xb2\xa4g%\x9b\xf7g'\xc0*J\x01s#\xbfF\xd6\x9f\x9c\x81\xfe\x8c\xbbQRIu\x06\xefq\x98\xa7\x94T\xf9\x95d\x8bx\x0b\xf7C,H_c\x85\xf3\x1a\n\xf0\xb5\x17D\x81=Z\xf5\x07R\x05N\x84\x81l)\xdbv\x80\xaf\xeb\xb49\xb7\x89\xb2\x02\x90\xa9&<:\xa3\x89\x11\xc3~\x7f\xc0\xa8KJ\x83\x14l\x03\xf259A\x13\x12:R\xc6\xe9/\x10\x16,\xe0\xb2\x99\x81\xcf\x9c\x0b\xde\x9f\x90\xb0?%\xb8D\x10\xccKi\x8c\x05\x92nEv\x82T+3S\x0f5\xe36\x91\x97f\xab\x81\xd2\xb1m\xb2R\xef\xf6\x06\xd2\xd2\x86\x10\xe1\x04\xb1\x8e\xc5\x83\xf6\xe6j\xd9\xb0gB\x0c<\xc1\x11\x8f\x06|\x82\x95\xf7\xc3\xed\xd1\x0b2m(GsDn\xa5$\x9d!H3r\xd4&a\xc7\x13V-@\xed\xd4\x95\xb2Bi:\xf5l\x16i\xb0\x9fa/o\xeb^.G?b6\xc9\xafo\xbc\xf5\xd2|\xa8w\xa8\x9d\xe97N\xe4\x0b\xa9\x8bA\xd5\x8f*\xd4[ig\xbe\xaf#\x02\xb0`!/\x88\xa8t\x1b\x9b\x124\x92\xd4\xf6kd`\xf3\xf2\xbd/p(\xfa\xe3\x19!\x96\x05\x91\x94l\xae_u\x905\xb6\xd7h\xc63\x88\xae0\xd7.-\x1d\xc7\xe5\xca\x9f z\xffA=\x88\xa8\x94G\xc4\xd5\xb6\xa2K\xae\xfb&\x05\xa8N\xdf\xd9y>\x91\x9f\xdbK<9\xf2\xa8\x13\xaa\xd8\x11\xb9\x07\xb13FR\x08\xa9m\x9d%\x0d\x1bKQ\xf95\xb16\xf0\x94G*\xc0S\x1d4\xa4\x05\xae\x8a\xc1$\x0e\x0b\x02O\xe8H-a\"\xed<\x8a\x1cF\xbf\x98\xc8\x08\xedIT\xb0\xf2\xe73\xf5\xe5/J\xce\xff\xa1d\xf5gdU^A\xc2 >\xe2\xd5\xd0\xed\x99\xfe\xf9\xad\xc7\xb9\xfd\xec\x17O\x1c\xcb\xe5\xfd\xacB]\xf4d\xf5#*\xbc\xf9Ey\xe4\x1c\xdfWb7?M\xe7^@\xb8\xc0\xc1\x04\xa9V\xcc\x84e\xe7\xc5\xe3H\xf7\x84\\\x9d\xff\xe3K;\x85p\x8e\xac4W\xd4\x08\x16\x0c\xb8`4c\x98\xdb\x94\x8dB0\xee\x98\xa8\x90 =u6\xeaFu7\xc6\x1c\x0d\x08\xa1(i\x10\xdd\xbd\xf0|I\x00\x8bt\x94n\xfc2'\xe2\x9e\xcd\x9c\xe1D\x852:\xf9u\xd5\xab\xa4\"o\xa4\x1at\xc9\x1c\xe3\x0b\x0euh7\x9d\x9a\xf8$\x87\xd1\xa17\x8aB\xe2\xa2\xc0\xe3\x032\xf6\xf0\xa5T\xed\xd4Q+\x17\xc1\x1e\xd2*\xb9\xa7,\xf3\xa1\x92-\x8f\x91\xf9\x16]\x90\x89HB\xcc\"J\x89\x94\n*\xdcP\xae0\n vyW\x87xig\xe7\xe7\xb3(\xb8[\xc6\x0d\xf7>#\xec_\xe1)\x97\xe3\xc3>\xcf\xf2\xcc\x0b\xdd\xe1\xe72<\xf7\x93\x9d\xa4\x94\x1cK\xc7&\xdb\xc7wr\x82Q\xf9=\x19\xf5\x04\x0bMF\xa1\x17\xf6h\xcc\x17\xea\x8aZOL5_\x18\x99\xa0>4'l\x85\x94-\x14\xdb\x9a/\xc2\xa0RV\xdbJYE\x15k\x94\x8d g\x19w\xbaG\xd1Hj>\xb1\x82d\xb4\x07\x8e\xae\xc6$4\xf1\xac\x0e\x0b\xf5s\xe5z\x0f5\x89\xb1\x97\\\xeen\xa5\xa7\xa5\xe9W\xceq\xfb\xc6\x19\x0b\x12\x1a\x92\x08\x1a$\x15?\xa2\x82\xca~\xc1a<'\xe9\x98\x08\x842I\xb0zqL\\\xc4\x8f\xa2\xf2\x97>\xbb\x9b\xa8\x80\x19\xbd!\xe5\xcd\x00Mp}\x9a\xe0\x8c\x90\x06H\x9e\x86\xe4iH\x9e\x86\xe4iH\x9en\x9d<=\xdf\x90\xde\xff\xee0\xca\xfb\xc6h,O\x9cN\xeb\x92i\xf0/\xaf\xf4iw\x87\xa3R9\x8c\x11:\xc7\xbc\xde\x94u}\x89\xfd~z\n\xaa\xbf\x00\x8b\x1a,j\xb0\xa8\xc1\xa2^\x8dE\x9d\x88\x84\xbcd\x9ae\\\x1b\x13\x8c\xb8\xb2\xf7\xac\xbc\x9dg\x13\xb54\x89\xc0\"\xda&\x8b(}Z\x97h~\xc9C\xbb\xca\xf6\x9f\xb1\xab3\xc7M+\x8a\xa5\xe6Be7\xc6J\x87K|2RB\x85\xef\x7f7\xff`\xa1\"\xb6\\\xe9xi\xdfy\x99|\x99\x84^(m<\xf9=uoI\xdc\xb6\x1dy1\xd2\xa2\xac\xe9Mi#\xc9(\xfa\x99\xfe\xdb\xf1`\xd2Z\xedw\xcd\"\x94\xea7y\xfe*|b\x99l@\x9c\xf1\xc3\xc3\xfb\x84\xca\xcd\xe8\xc6<\x17'\xe7\x98\xcfl>\xa7\x96\x98\xf5\xfb-|R\xaf\xdf\xf83\xd5/\x1f\xe3\x90\xd4\xe8L\xbfgD|\x9a~\x95\xa3\xaa\x1f\x86\xc4!\xde%q\xcb\x0e\x8c\x84\xa9\xf2\x9eM\xa97\x19m\x87]\x10\xca\xd1\x98\xf8*A\x0cS\x84\x1du\xea\x99\x83\xbaG\xd9\x15\xd5\xc9c\xd2\xde\x8e'\xd0d\xf2\xaa\x9cm\xe6x\n<\xb3\xea\x13\xbad:V\x93]i\xe3\x8cQ\xd2\xa3\xd99\x18`\x1fS\xa7F\xe9\xa0\x19\x01\x8b?\xf6:8\x90t\x96 \x84\xfcD\xbc`^\xba\"\x87\x1a\xb3I\xc4B\xaa}k&\xca1\xc9)P-+\x1b\xe9\xdd\xfb\xf3WG\xaa\\\x80\xfe1)\x1a\x84):\xa1Vg\x8e\x13\x883I?\xfa\xa8\xeaQ)\xe8\xb0\x88\xf4zi\xa9&'t\xc4FL\xe5\xe0\xcc_\xbc\xf4i\xa9t\"\xec+L\x84\xa1\xd4\x02\x93kG\xe9(R\xf7\xf0D*'\xb8G\xcdT\xe7\xb3\x8f\x0c\x03\xc5Zw\xc0B\x82x\xe4\x89\xd8~v|\x05\xbe\xc4\xd2\xa0\xe4r\x8b2\xa1\x91\xcc\xb4\xef\xe7\xb8\x96\xdfIp\xf9\xdcf\x84+0n\x08\xb0?#n\xad\xec(\xab\x8cb\xb3\x191\xa5G,\x04\xb5\xd5:igk{E{\x06\n\xc2@A\x18(\x08\x03\x05a\xa0 \x0c\x14\x84\x81\x820P\x10\x06\n\xc2@A\x18(\x08\x03\x05a\x8c\xca\x0e\x05a\xa0 \xccJ\n\xc2d\xe1\xda\n47\x83\xf1\x14@\xf4\xc4}\x90\xce\x8dj\xec3\x80k1 \xb2\x0b\"\xbb \xb2\x0b\"\xbb\xea\x8d\xa7\x95\x8f\x95\x85E\x17\xeb~HR\xfe\x80N\x99\xc3\xf5C\xfa\x8d\xd8\xd3\x9a\xf9. \xf2\x9a\xe9[\xcd\xb4\xb2)\xa7j\x9a\xe8e\xb8U\xd3\xedU\xbf\xbdy\xc7*\x0f\x9d\xfa}\x97~f\xfbOB\x84\xd2s\x80\x0c\x96\xad\x97>\xedj\xcf\x90\xe1r\xd1\x86\x8c\xd4g\x15d\xb8\x84\x0b+\x91Ji!T\x84\xde\"+\xef\x84DsQ\x83\x08\xbf\x9c\xcc\xce\xb6\x802z\x96\xf9- )\xcb\x0cO0v\x81&\xbe\xca\xffV\xae\x0f\xa9\x92\xaa\xb6*3ng\x87\xb3\xe5Z\xc9W\x03\xbc\xd6a\x7f\xc3\xfcT'\x9fuu\xe8\xa1'<\xec\xf7\x8b\x0e\xe5\x19\xcb\x9b\xfb \xd3\xady\x86\xec3u$d\xf9M\xe0P(w\xbb\xf5\xe3K.\xa9\xee5y7\x0e\x87 \xec\xa9\x97b\x9e\xfb\xa9h9\xed\x9fU\xab\xa6\x8d\xf54!e\xe8_Z\xe2\xbd\xa2\"\x9c\xa6|\xde\x99Ah\x16\xd3\x96gH|r\x89\xa9@\x01\x11\xd8\xc5\x02\x97xy\x0d\xf3\xeaS(\xcf\x1b\xe6a\x15AY\xfb\xd5\xf7\xb8\xd0^\xe0 \x0e\x85\xe7H\x03:\x11\"w\xd2\xd2\x9e\x8eT\xb8\x02\xef\xd1a\xc8\x82\xec\x17f\xf7'\x93\xa6\xd4\xa6L\x93\xc9\xbe\xcc\x06 ,\xbc!3\xa2]\xb66\xad\xfe\x0661l\xe2\xf5m\xe2\x99\xb3Y\xa3\xd7\xd9A'\x18\x15I\xccF\x9fH]\xdcz \xd0\x82\xd1'=\x9a\x0e?\x99Ox]\x9as\xe4r+\xc2b\xba\x97N6\x84\xb7\xdc\xf4\xf0\x96\x8c5Q\x19\xd7bb\x97\xb3\x86\x0cT\xa7\xacw\xb0\n\x08h\x81\x80\x16\x08h\x81\x80\x16\x08h\x81\x80\x16\x08h\x81\x80\x16\x08h\x81\x80\x16\xfd7\x04\xb4@@\x0b\x04\xb4@@K\x835\xd9\xbd\x80\x16\x1e:\xfdl\x9eb\x11\xc8,\xbc\x92\xa11\xc1/S4\xc6\xe0#A\xc3\x90\x05-\xbc\xe3%\xb4\xba\\T\xd1Z|\xa5\x11\xad\x82-\x87R\x08\x13\x820!\x08\x13\x820!\x08\x13ZO\x98PD\x07\xba\xcec?\x85\xa1w\xe6\xd6g\xf8h?\x99U\xa8!nsF\xc9\x86\x1e-\x9c\xcesj6\x94u\xb7\xa98\xa3d\xb6\x96\x10d\x94]\x8aZ13\x85O\x16\x0b\x1b\xaa\xdd\xefR\xea1,\x1c\n\xb0|\xb7\xbe7\xc3\xa1\x9fp\xf0Z\xbc\xf9^\x99#?\xa1a\x95^|S\x98\xc2\xbc\xe2kt\xd3\x8d|\x8dW\x9b\xb2\x17Hj\x15Y\"jw>\xa7\xd39\x1d\x14\x10\xca\x12)\x90s\xdb\xd3\xd4\x8cU;\xed\xdd\xb9\x917e\x12l^\x04N u\x88\x0b\x16\x1a\x81\xa8D\x9f\xd4\xaa|\x92\x89\xbeI\xba\xb1\xa17R\"\xda7S\xd5\xc6\xa4\xc5\xa98\xe3\xbe:U\x88\xab\"{\xc0\xe5}\x1b\\\xdey\xdeiW\xdaan+P\xe3\xa1\xde\x01#\xc0%\x0e.qp\x89\x83K\x1c\\\xe2\xe0\x12\x07\x978\xb8\xc4\xc1%\x0e.q\xfd7\xb8\xc4\xc1%\x0e.qp\x897X\x93\xdds\x89\x83\xf3\x16\x9c\xb7\xe0\xbc\x05\xe7-8o\xd7\xe3\xbc\x8d=\x04\x15\x1e\xdb\xf8J\x8b\xac\x9f6\xf9<\xb9\xc1\"WS_\xa9R\xe5\x0e\xda\xf9w{\xe7F\xa1\xe6)s\xb5w q\x9b\xf2\xeaf\xa7Q\xb4\x82\x8em5\x82\xfa>\xd5\xfc\x17\x99\xb3z\x96#\xf5\x0e\x8f\xeb\x1e\xfcM9_\x91u\xbdJ[\xf6\xec\xfd;\xe3\xa5\xa4\x9cP\x1e\xf1\xfe$\x1ad}5\x80|\x03\xf2\x0d\xc87 \xdf\x80|\x03\xf2\x0d\xc87 \xdf\xd5d\x02\xf2\x0d\xc87 \xdf\x80|\x03\xf2\x0d\xc8w\xcd5i\x89|\xdb\xdb[KP\x93\xbc\x8eb/_5avW\xe6\xea\xd4\x8c\xad\x9c\xdc\x9aj\xdeV\x85\xcd\xf4]\xb6\x88\x0b,\"n\xaf\xa9\xed\xe8\x8b}E\xc4\x8b\x80\x83y\xb3P\x98\xd0\xfc~W7\x98\x04\xd2\x9b\xbf\xa4\x05\x97\x04S\xc6J\x1d\xa1Q\xd09\xfaw\xe7\x97\xf7\xef^\xf6\xcf\xce\x8f\xcf?\x9e\xf5?\xbe;;}\xf5\xe2\xe4\xf5\xc9\xab\x97\x9d\xbd\xdc\x13\xf9\xaf\x19?\x9f\xbc{\x93\xfb\xdd\xbc\xfcg*\xbcofG*l\xf2\x82\xd0\x1aH\x85 \xd7-^\x90\xa7\xec\x18\xf5\xec\xaeG\x1d\xbf\x8b8\xf1\x87\xf7\x93\x90\xd9{&\xd4\xd6\xa2Vuo\xe4\xcb\x7f\x91@#\n\x924?z\x9cG\xda\x92\xca\xde\xca\x9a f\xc5H\xdf\xfc\xe2\xa6\xfe\x95\xf3\x95$\xbf\x0b\x12\x06<.9\x94\x8ai\xaf\n\x95\x0d\x18\xf5.\xca\xaf\xc4\xcdRa^L\x95 \x1bG\x01\xa6\xf7C\x82]e\x02)\x81YB\xc1\x8f\xbd\x8eF[Di\xebK[\xb0\xe4(\xc8\xbfQZ\x0f1\xd5\xbb~I\x03+1(\xa1sP\xd4!\xdf@\x96\xc8\xa6\xaaYT\xbeeO\xaa\x1c\x1d\n)\x1diy\x99H\xc8=\xa4\x14\x97\xa1\xc2\x18MjG\x80\xaf\xfb\xf5\xba\xb3of\xe6!\xc0\xd7^\x10\x05\x85\xfe\xf3\xb7\xde;\x98\"rIBC\xd8,J4|\xd4\x80\xa0\xd4\x07\xa5t\xb9\xd8\xf3\xa7\xfa\xf2{\xccI\x01aO\xd1]$Im\xed\x89\xdc\x0b\x0b\xed\x98\xa4\x05\xbbX\xca<\x89\xef\xdf/L\x1d\xe6\x06Fs\x0d\x11\x81G\xfb\xf2\xb0Me\xed\xd5\x98\x9d\xe2G\x05\xb5\xe6\x0eW\x878r\x89\xe3c}\xeb;U\xd3f~\xb5\x1f\xce\xbd9=u\x90\xc5\x0d\xef!\xc1FZK\x8b/\xb0\xd5\xc7yR\xdcSa\x9e\x9fR\xa4\xa8\x0bt\xcdqoLAO\x1akz2\xf4\xe4(\xd1\xe1Q\xdeEg>\xe6c\xb9\xb3,\x98\xeaI\x83H\x0eE/\xb5\xb1\xfc2\x9f\xefiDV\xa7Y\x85!q\x04r\xb0\xefD~l~\x0d#y\x1a\xf6hD\xd3\xd9\x8cr\x0c,\x12\xc8\x13\xca'FG\x88]\x920\xad{\xa0?\xc6\x84j\xd2\x14\xf2\x9b\xd6\x99z4+\xa1\xf7r<\xe8\xa9Z\xa6\xae\x17_\xf7\x8b\xd3\x89HWc\xc6I\xe2\xd6\xed\xd1\xf44yY\x0c95\xbb\x9a\x94\x84\x0c\xd7\x8b-xmR(\xe8\xb5G3\xf3\xd3E\x9f\xd2\xb7\x0c\x9b\xf0\x04;E\xd2b\xb1Z\x99U\xac\x15\x19=\x1aD\xbe\xf0&\xbe\xa7;\xc8\xb6YL\xc0J\xb9\"3\x89b\xe9Y\x81[mom\x0eT\x893\xb8v\xe6S\x99\x97\x1b\xf2\x9dj9\xad\x05x}\xc1\xeb\x0b^_\xf0\xfa\x82\xd7\x17\xbc\xbe\xe0\xf5\x05\xaf/x}\xc1\xeb\xab\xff\x06\xaf/x}\xc1\xeb\x0b^\xdf\x06k\xd2\xd2\xeb\x0b\xf9N\x90\xef\x04\xf9N\x90\xef\x04\xf9N\x90\xefT;\xdfi\xff{\xb6$\xe1\x8fN\xbd\x04\xa88\xff)]\\\xad<\xf5)y\xa5G'\xd8\x0b\xe7\x94\xa8\x8c\x9b\xdfx\x06S\xf5\xab\x90\xa8\x04\x905@\xd6\x00Y\x03d\x0d\x905@\xd6\x00Y\xd7\xc0\x82\x01\xb2\x06\xc8\x1a k\x80\xac\x8d5\x0e\x90u+x\x14 \xeb[\x03YC\xa2\x12$*\xe5\xbc\x0f\x90\xa8\x04\x89Js\x9a\x87D%HT\x82D\xa5\x94\xdb\x02\x12\x95 Q \x12\x95 Qi\xdb\x13\x95\xea\xe6\xab\xc4\xe9*\x0dsU U\x05RU\xc0\xef\x07~?\xf0\xfb\x81\xdf\x0f\xfc~\xe0\xf7\x03\xbf\x1f\xf8\xfd\x8a\xf4\x83\xdf\x0f\xfc~\xe0\xf7\x03\xbf_\x8a\x1c\xf0\xfb-\xb0&-\xfd~78U%\x1b.]\xa0-\xfb8C[\x02\xf6,\x97\xb6fa\xe1c\x8f\x0b\x16J\x13\xb5\xef\xd1!\xdb\xff\xae= \xe5q\xdf\xbf\xc6/\x9f\xd0!\x8bc\xbe\xe5h\x92v\xf2\x81\xdf\xba\xc1b\x94w\xb6\xb1MExK\xba\x8b\x1d\xc9_3\x8b\x95\x1f\x9eI\xa1\xc8\x8f\xb0\xa2/\x82]R#\x94\xdc\xd8X\xeaESRf\x80\xb9\xe7\xa0\x81\xcf\x9c\x0bE@e_\xea\xd5\xb9\xc6\x85\xcd4\xd9\xeb\xe0\xc9\xa4\xd6\x9b\x05\x83\xe1\x85\x0d3G\x0e\x9e\x88(\x8c\xdd/\xf6\xe70\xf2\x89\xf6\x9cNB&\x17N\xcb8;\x0e\x0d]\xc8\x7f8c\xec\xd1=yF;~\xa4%\xa1\x14\x90\xf1#\xe4b\x81\xe5Q\x129\xba\x1f\xab\x1f\xe8\x1e\xac\xa1\x93\x18\xddwx\x8fr\xa1\xe0\xe1\x10S\xae\x85d\x80\x9d\xb1Gu\x9d$\xd5l\xdfsKa\xb5\xda>\xbb\x1f{\x9d\x06~\x80\x1f{\xea\xf4\xe9\xabq\xd9\xbe\xcd\nOBr\xd9d\x81\xc7\x98\x8f\xab\x8dG-SE\x9f\x13\xd1\xaf\xcb~\xf9\x8aG\xe5\xd8\xa4\x1e|M*~$\xc5\x91Nq(8\x11\xbfjb\x94\xd4Ws\xa2\\\x1e\xa2_\xaf\xc1\xa49\xf9\xbef\x00=w\x92O\x140\x8a\x05\xae\xd9\x986\xc5M\x02L\xcdo\n\x04\xa8\xd0\x12\xc3\x83\x88Eb\x12\x89\xe4\xb7dmeg*-\xb1q\x8f\x99\xac\x8e\xda\x9f\xe0\xc9\xa4\xfe\xcbj\x1d\x0c\x1eU\xff+\"\xcd\x01\xea\x90\x9a_$3\x97\x88 \xc5\xf0?4\x1f2N\xe6\xe6\xd0\x149++\x934ce\x84w,6\x94\x1e\x8e\xce uI\x18xT\x18\x9e\xd1\x1b\xc3b2\x9c\xa47~C8\x1d\xb2\x80\xc0\x1b\x00\xde\x00\xf0\x06\x807\x00\xbc\x01\xe0\x0d\x00o@\x0d\x98\x1d\xbc\x01\xe0\x0d\x00o\x00x\x034\x9c\x01\xde\x80v\xc83x\x03n\x8d7\x00\xb2\x80 \x0b(\xe7\xd8\x81, \xc8\x02\x9a\xd3\xe5\xc3\xe9\x0b\x0b\x15@\x0e\x10x\xfd\xc0\xeb\x07^?\xf0\xfa\x81\xd7\x0f\xbc~\xe0\xf5\x03\xaf\x1fx\xfd\x10x\xfd\xc0\xeb\x07^?\xf0\xfa\x81\xd7o\x0b\xbc~\x159@\x06?\xcf\xab+YLH\xde\xcd\xf8\x12\xe4\xcf\xcaJu\x98G\x91zn\xef\x95\x99}'\xb7\xdeiu!M\xfd6T3\x02$\x13\x90L@2\x01\xc9\x04$\x13\x90L@2\x01\xc9\x04$\xb3H? \x99\x80d\x02\x92 Hf\x8a\x1c@2\x17X\x93E\x91\xcc&\x98 c~9\"\xc8\x98\x9f\xc1\x02\xe5\x9b1~\x99\x85\x00\xe5\xbb\x1bC\xf0\xcc\x00r\xf8\x9d$6\x8d\x98d\xa8\x9f\xdf\"e\xa2\xaf\x83\xc9\xfa\xb32\x14\x0c\x8a3\xef\x8d\x99(\x0cc~m\x0cF\x12\x0d\x08\x0c 0\x80\xc0\x00\x02\x03\x08\x0c 0\x80\xc0\x00\x02\x03\x08\x0c 0\x05\xfa\x01\x81\x01\x04\x06\x10\x18@`R\xe4\x00\x02\xb3\xc0\x9a\xac\x11\x81\xc9F\xec\x14p\x98OI8\x8eEc\xa4q\x94\x8a\xd21\xe6\x87ptR\xa3.\x0d\xac\xabC\x14\xa1\x9a\xa4\xb9M\x016\xa5\x11J\x0d\x8d}\xa8v X\x05`\x15\x80U\x00V\x01X\x05`\x15\x80U\xd4\x00\x01\x00\xab\x00\xac\x02\xb0\n\xc0*\x00\xabX\xc4.\x06\xac\xe2\xd6`\x15P\xed\x12\xaa]\xaa\x0e\xa1\xda%T\xbb\x84j\x97P\xed\x12\xaa]B\xb5K\xa8v \xd5.\xa1\xda\xe5m\xabv\x99g\x9d\x94\xf30\x01\x1eM\x91\x03\xeddt\xf3)\xfe\x13<2\x19\xe6EA\x9d<\xcb\x86\\'?\x1b^H;\x10\xe7\x0b`uUa\xd6\x97\xf6\xff\xb3\xf7\xef\xdbm\xe4\xc8\x9e(\xfc*\xf88\xb3\xc6\xf6n\x89\x94d\xcb\xb7=5\xdf\xc8\x92\\\xa5\xae\xb2\xad\x96\xe5\xaa\xdd\xdd\xaca\x81\x99 \x99\xa5$@'\x90\x92h/\xadu\x9e\xe3\xfcs^\xf1<\xc2Y\x08\x00\x99\xc8\x1b\x99\xa4\xaee\xc7\xcc^]2\x13\x97\x00\x10\x88\xcb/\x02@#R\xeb\x9e\xf5su\xdc.\xd3\x7fZ\x98\x9dJid\xf11\x1d\xb3\x13\xf69eRu\xcd\xf7>\xcf/\xea\xd0-h\xb2\x19\x99\n\xa9\x08\x03\x0c\x1c\x00rc\xc0\x17\x9f\xa7\xac\x12\x94:\xdb\xc2\x91d\xd6*r\x8b\x96\xdf\x12\xe0\xf6\x8c\x87\xbb\x8f\n\xc4\x05\x9a\x8f\x06P\xad\xcf\xb5D\x92Lm\x90HI\x17\x14\x91Do\x11\xe3\x90\x81qt\x11If\x13\xc4]\xf7\x10}\xce#\xbem\xd3\xce\xbd\x90s\x9e|\x8e\xb9\xe7\x18\xcf\xc5x.\xc6s1\x9e\x8b\xf1\\\x85\xf1\\\x8c\xe7b<\xb7\x0d\x99\x18\xcf\xc5x.\xc6s1\x9e\x8b\xf1\\\x8c\xe7\xb6\\\x935\xe3\xb9K\xee1\xb5\x01\xd7JL\xc7\xc4U\x19\xd7\xc6\"\x18\xa1\x06\x0e\xd1C\xf5`\"H/7s[\xce/\x87\xabL\xa1R\xe1.\xd3\x11\x8d\xe5\x82\xcbL\xaf\xae62\xd2r\xa0\xa8{\xc6\xe6\x15\x12-\xa4C\xed\xa6O\x98J\x13nr\xb0\x0dbbA\x86\x0c\xff\x01[|\xac\x9dN K\x93\xbd\x18\xdd\xe9\x92\x0fZ\"j\xa7K\x8c\xb4\xa9\xac}-\x91\x903\xed\xf9\xe5\xde\xa8dj\xfd\x01\x97-\xd2\x86 0\x9dW\xd3\xd7\x0dM0\x0d<\x9d\xb2$\n\x1c\x9d\xb03,Rh\xac\xe7 \xe3\xc4NZ\xca3O\xa0\xdb\xe7G\xd0B\xcc\xa4\xccGo\xcc\xf4T\xeaY:c\x8b\xa6\xc2\xfa\xe5}~\x83S\x91\xba\x9blk'#\x8e\xa6Qu.\xe0W\x07\xf25\x01k\xc6\x1f\xf3y\xc5\x02\x90Z\xa3\xce\x8c\x95|4\"1\x1b)\xeb\x8bD\xca\x08\x14\xa7v]\xa4;e\xb61=\x13\xc39a4\x98\x10:\x9b\xdd\xc1\xf8=\x10\xb02\x0b\xde7=\x17\xc0 \x82\xa8$eD\xff\x11\xf1P{\xce,\xc30\xdc\xd8uA\xcb\xd2\x11\x0f\xe24d}NI\xe0\x05\x05*s\n(\x98\xe7Rj\xd9P\x04w?\x1d\xc9n\x9f\x97H\x02+#a\xd2B\x82\xc0\x969\x1fkV\xed\x12\xc3\x91\xd1\x98\x8b\xc4\xe3\xdc>7#Zc\x8a]\nK\xc3\x8c&L\xfb\xdeU\x7f\xd0\xfe^\x9e\xc9\xc8Cj\x13\xd6\xc0T\xba%fn\xa5\x15I\xc8\x12\xe3\nG<`\xaf\x899\xf3\xb3)\xc33\xb2\xd5}\xf6\xf4:\xe3Y\xed\xae\xe7\\v\xf7\xbef\x7f\xc3\xe1\x97\xab\xce\xc2cF\xd9)#/>\xc2G\x02\x16\xdd\x88\xfe\xfc\x83=7\xb3\xe0\x94\xd1\xbd\x1f2Z^\x14\xcf\x12!\xf6\x8c\xd83b\xcf\x88=#\xf6\x8c\xd83b\xcf-@]\xc4\x9e\x11{F\xec\x19\xb1g\xebW#\xf6\xbc\x16\xce\x89\xd8\xf37\x83=\xe3Y\"\x0c\xf0a\x80\x0f\x03|\x18\xe0\xc3\x00\x1f\x06\xf80\xc0W\xa1\x1f\x03|\x18\xe0\xc3\x00\x1f\x06\xf8\xfd\xe0\xc6\x98\x8f \x0bXtn\x10\xe7r\xfd\x9c\xa9r\x81g\xa9\x15\xdc:G62<\xd1:j8\x07/#\x80\xb3\x1d\xf6\xbcF_\xcbVc_\x08\xeeM\xa0u\xf6\xc0\xad\x17AD3\x0c\x14\x86\xeb\x83\x91b\xa4k\xf6yq\x0e\x864\xa6<`m\x98\x83\x8bi-\xdaf0\xd3:\x81P\x9e\x88}\x11q\x0f\xed\x861\xe7\x88-\x17Sw\xbcE\x8fIO\x01\xb4\x0c\x16\xc5\xfb\x0f\xa7\x87\xaf\x01Q\xb2\x10\xadQ\xe7\x118dG\xdc\x85\xf22\x1f\xb3\xa0\x17\x8c\x99\xd4\xe7Y\xb4V\xaf\x97\x91jzB\xc7b,@L/^<\x1fl\xd5\xb5\xcfi\x0cg\xb9\x04\xf1\x16\x98]\x06lf\x0f\x88E\xcas\x1b\xfb\xdcNuYAY\x06\xb2\xf4K2\x15 #2\x8dTv\xee'\x88\xe1\xd0X&\x0d\x0c\x99x;\xd4_\xfev(O\xdb,E\xf2\xfb\xbc\x04\xe5\xfb\xaa\x0fQ\xfd6\xbaP!\xaa\x8f\xa8>\xa2\xfa\x88\xea#\xaa\x8f\xa8>\xa2\xfa\x88\xea#\xaa\x8f\xa8\xbe\xf9\x1bQ}D\xf5\x11\xd5GT\x7f\x855\xf9^P}\xbc3\n\xef\x8c\xc2;\xa3\xf0\xce(\xbc3\xaa\xddxn%\n\xda\xfbZ\x8c\xb4\xd5_(\xe5\xc5!Z\x07C\xf3P\x12\x99\xd1\xa8&6\x9a7\xfa\x80\"\xa2\xabTj]v\x95\x00$\x06>1\xf0\x89\x81\xcf{ |\x16\xc9\x04\x19[O\xeb\xa2\x131\x1e\xe5y\xf0\xac\x8b\xd13\x8c\x9ea\xf4\x0c\xa3g\x18=\xc3\xe8\x99\xc2\xe8\x19F\xcf0z\xd6\x86L\x8c\x9ea\xf4\x0c\xa3g\x18=\xc3\xe8\x19F\xcfZ\xae\xc9\xf7\x17=+\"\x86K\x00\xc5\xd2\xf5j\x0e\xa1\xbdY\xda\xee\x06\xa9\xce\xef\xfa+]\xbfS\x81\xaf?\xb9\x8258v\xd6H\x0b \xbb\xcf\xeb\x91\xec\x9a\xf6\xef\x0b\xd26\xc3Y^\xee{C\xa6\x19WIt\x9d\xf3N\xe6\xbe0\xc1\xd7\xbfI\xae\xd4\x82\x1b\x85\xfd\x97\xbb1\xce\xbbx\x8d(!\xce\xc8,\xa6\x01sw\xb0\xcdb\x06M\\\xe3\xda\xabR+\x8e\x8c\x94G\x97\xf9\xb5p9\x0dyqs\xcf\xa1\xb9^mPE\xb9\x1bV\xafT\xa1 \x7f,Do\x8b\xc4\xc6\xa3\x0d\xd3\xd8`\x146\x00@\xa8*\x13\xd1\xba\xf3\x05\x9d.\xe8\xa0\xe2\x95\xd6\xec\xefC\xae\x92\xc2\x15\x8e\xf9\x8c\x19\x062fQ\xc2bvN\xb9\xd2\xb6+\x0d\xa9\xa2\xd5\xbb0\x1dk\x9a\x00ca\xfd\xbd\xa0\x88-\xd4\x92:\"\x95\x80\xcb\xba\xe2\x18\x0c?\"#>\x8e\xbd\xbd\xf8\xc8\x17|\xfa\xbf\xb2\xcf\xf5\xbag%s\xe9\xa7U\xbc\xb90p\x13\xa2\x9b,$q$\xd5\x0dB\xe65\x03\xe8s\x04\xcf[\x89%\x85\xe09\x82\xe7\x08\x9e#x\x8e\xe09\x82\xe7\x08\x9e#x\x8e\xe09\x82\xe7\xe6o\x04\xcf\x11\x16*\xba\xa5\xb1\x90\xca5\\\xb5\xaa\x18\xa3\"\xad\x14\x8c\xc2\xa8\x08FE0*\x82Q\x11\x8c\x8a`T\x04\xa3\"\x18\x15\xc1\xa8\x08FE\xcc\xdf\x18\x15\xc1\xa8\x08FE0*\xb2\xc2\x9a|\x7fQ\x11\xbc\x90\x0b/\xe4\xc2\x0b\xb9\xf0B.\xbc\x90k\xfd\x0b\xb9\xd2\xd98\xa1!\xcb\"\xb5t\x06\xcf0\x0ff1\xe5\xbd\xafz\"\xea\xef\xda\xda3\xe5\x8ec\x9a\x1fR\xa2d\x96\xb0\xf3H\xa42\x9e\x13\xdb\x10\xb1\x1d\x10\xdd\xa0\xde\x06\x91\x92`&VC\xb0^\x93\xf7\x15p];\xd2W\x0c\xf0\x0dc\x11\x9c\xb90\x1f\xf5#}0\x0b\x17\xdan1\x83m<\x9f\xe0M\x86\x0f\xca+/xR\x00\xe6\xed!\x05\x7fYN\x8e\xf7\x9d\xed\x8e0<\xc2\xf0\x08\xc3#\x0c\x8f0<\xc2\xf0\x08\xc3#\x0c\x8f0<\xc2\xf0\x04ax\x84\xe1\x11\x86G\x18\x1ea\xf8\x87\x0f\xc3\xc3\x7f\xca\xc6\n\xb0\x92\x05\x05|\xcf\xcdA/\x006\xdc\x0c\xe8\xbe\x1a\x88d-Y\x00\x91j\xd1\xa3}S\xa0\x80\x1e\x99\xa5\x85\xdf\x0b\xa0Q\x15(\xf2j\xdf\x17P\xe4FV\xca\x7f\xd5\xe3\x89\x16\x0feq\xbbf\xb9\x97\xe1\x10\x1f\x99\xf2V\xdd!@\xb6'\x0b\"\xc0'\xb7\xc7\xc0.\x1f\xce\xfdba\x9f[G&\xb3E\xc5H]X\xb8R\xb3\x90\xb1\x80\xc0f\xa61\xe9w\x04\xdf\xb4u\xfb\x1d\xedEM)\x0f% SM\xa2\x85\x13\xb4\xdc!o\xb4\xbf\xf1\x06 0\xa3\xb2\x1f1e\x8f\xdbh\xb1\xd3\x12Y[\xf1\xf6\xaa5\xcf\x1d\xe6\x87c\xdc\xd0\xcc\xf9\x98\xdeW\xd8u\xe6\xc8P\xfd}V\x9fl\xd5}W\xf3\xa3\xaeX<\x9c\x98\xcd\x174j\xf8\x19\x18\x18\x1c\x86>\x87-\xa0\x92Tj;\xea\x8c%\x9c\xc5\x19l\x03\x97\x08\x16 \xaeH\x128\x1a\x04\x07\xe0\xa0\x19\x90\xe9\xda\x82\x86\xb7\xacP\x06\xa8\xf2\xdb\xaf\x00\xa7\xca\xee\xe3\xd1s\xafg,1o\x9b\x02b\x06\xe6h\xf1a\xe4\x94\x87,\xb1\xb3\x0e\xb8Y\x19y\x03\x17U$,\\\xf3>\xb3\xca\x05C\x8d@c4\x0czt6\x93\xbd\x88+\x96\xc0h\x064\x80\x07\x0bdO\xef\xe7D\xc41Kz\xe7\xdb=\x98\xb7\xfa\xc4\xc4c\xf8\x94\xdf\x93\x1f\xc7$\x9fe7eG\xfb{$o\x91\xc8th \xd5\xea\xfdg\xf5x\x97%5\xf3xZ\x90\\\xc5\xc2\x0c\xa5\xf7\x85}\xe5SX\xec\xca\xfc^zS\xb8<\x7f\xf9l-\xee$\x9f\x82\x01\xe3\xda\xc7 =\xc2\xdc\xb3 e\x16\xafV\"\xe6\xbf`\xcc\x86\x914\x7f;\x97\xbe\xba\x86\x8d\x87_\xcd\x8c\xaf\x82\xb6YnBp\xed\x9a\xe0Z{\xf7\xef\xeajq\xce\xf2B)1\x11R\xdd\x94|\xd0m\xdd\x92dpd~\x972A\x0f~\x05i\xe0\x17o\x94\x03\xe5\xb5\xba\xda\xe8\x00\xfe4\xb0\xec\xde\x86\xa7\xfd}\xe0\x13Pl(\x7f\x94>\x8b\xc6\xc9\xf0\xac`5\x01\x0e\xe3\xc1_\xda\xec\xb9dA\xaa\x0c\xdeE\x0d\xb5&\xaa\x84\xb2\xea\xbb\x90U*\xa1\\\x8e\x8c!\x102.\xa6\x83 \x95\x13&{_UB\x83\x86g\x7f\x0et\xc1\x9f\xa8\x9cx\x8f\xfe@e\xf7\xa8\x93n\x03nB\xd44E\xa2\xe6\xf6\xd6\xac\x89\xfb\x92(\x9a\xc4\xbay,\xedq=\x90\xc7\x11'\x13vi\x91\xe6'\xb9C\xe8\x8d\x18f\xab8\xe4\x86\xed\x93\x8d|\x95\x1d\x94\xcf8\xdeqq?\xbb\xa8\xde!\x82e\xaf\xbd\x99\xb4\x86;\x1e\xff{&\x125\x88\xc2\xdf{\xff\x0e&\x94s\x16\xeb\x7f<\xf9[\xef\xdfP\xfa\xf75\x1d\x99\xe5~Ku\x97\x03E\xf5v\x08\xf0\xda)|/\x18#\xd5\x11\xc9\x86}m*\xdf\xd7\xce.\x0fp=\xfe\x815X*\x1f \xa4\xe9[\x1f\xc6\xd5\x15#\xa2\x97\xbagW9\x8f\xc7&\xd2\x0b\x8d$40\xb95\xac\xcfm,\xd7\x8a\x96Q\xca\xc7\xd10fD\x893f\xae\xc9\x1dR\xc9\x060\xb4\xe5T\xe9\xb2\xc5\xe5\xb2\xed&,\xa6s\xdd}\xb9\xfd\x8a\xa8\xca\xd7\xb1\x08XU\x9b\xd6C9\xda\xff\xb8\xb3UjU:\xe40\x1b\x9c\x1b\xb0'%!&\xdc\xad\x9a6\xfe\x1a\xda'\xf3\xaaL(k\xa5\xee\x86\xf7b_\x95\xdf\xbc\x97\x07\x8bF\xa3\xff \xa1/\x8d\x97\x9b\x8d\xee\xe5\xd0\xe5\xf2\xc4;?\xe7^\x1b\xb5\xb2?{x\x94\xcc\xa8\x94\xc6:3\xcf\x93\x02F\xd25\xdf\xed\x93\xa4P\xa3\xf9=R=\x05\xe6\xd5\xc7E\x04U\xce\xe0e//6=\x8a\xe9\x85\x03G\x05\xe2\xbc\x97\x1b\xfb\xfc\x82\xc2#\x88\x1b\x90.dc\xb5\x12\xc0\x1c=\xdb\xa1 \xeb]D\x92-\xb8 Jp\xceL\x90he\x1di\xe5\x16j\xc9vR\xeen\xb4$>\xd1\x8bO\xf4\xe2\x13\xbd\xf8D/>\xd1\xbb\xc6\x13\xbdK\x8d\xf8\xdeW\xed\xa5.\xf0\xd4\x8d\x19\xd7\xe0\xaa\xd7\x98P\xcd6\xfd\x030\xe9\x97\x17F\xcb\xfd.-\xf7\x05 \x07\x10\xb1\x9e\x05\x87\x06\xdc\x832\xe0&\x06\xa8\xbb9l\xec.\x80\x8e\xeb\x86Z\xa2a\xb0\xe9\xda#\xd7\x8c\xb5\xf8t}\x97\xb1\x15\xc9x\xb8Bl\xc5/^\x1b[\xd1K\x16$BJ\xf3\xb2\x8e\x11\\\xc4M\xb3t\x8f\x13E\xb2\xcf]!\x18X\xf96de\x93$2'\x97\x8c\x01\xa17\xbc\xfd\xb3^\x14\xed\xdb\x8f\x05a\xa4W\xf8\xe8\xcd>q5!m\xcd\x05\xe6*\x0f\xe1\xb9\xe6\xefI~\xf8\xc3[oa\xf2\xa3M\xee>(\x9b8d\x12}\\6\x915\xc9\x18\x0fsq\x93-\x13\xe3\xe9T/\xc6\xc7\xd3\xbd\xd3\xc3\xc1\xa7\xf7G\xef\x8fN\x8f\xf6~9\xfa\xd7\xe1\xc1\xe0\xd3\xfb\x8f\xc7\x87\xfbGo\x8f\x0e\x0f:\x1b\xb6\x84\xfe\x9e\xfd\xe3\xf4\xe4\x9f\x1f\x8e\x0f\xdfg\xff.\xfcc\xff\x97\x0f\x1f\x0f\x0f:\xbf{\xbb\xaaE/\xc5i7\x07\xf2\x9c(\x8d\xecj\x1a\x0b\x13r\xa5\xad?\x0e&$\x9c\xaf\xd0\xe6\x16\x0c_\xbe\xeesC\xc2\x06\xd1\xddm\x10K\xed\x06\xd1\xff\xabEQ\x81\x0e\x93\x11\xbbI\x96\x90\xf8\x9a\x1cX?\xd8\x1e\xd3\xca\xaa\xe8\n\xaf\xc9^F\xe0\x84J\xf2g*a5\xe0\x14\xa1&R\xcc\x18\xe4\xf2O(\x0f\xe5\x84\x9eiw;k\xc1\x12Xn\x84\x06g\\\\\xc4,\x1c\xdbF\xb2\xcaD*6s\xa7A\xc0\xcbd\xc9\x8c&j\x9e\x1dq\xcc\xda\xaek8\x10\xd3Y\xccT\xb9\xd5.\xf90c<\xdfD4a\xf0\xf0^\x08\x08\x92V1`\xe8Z\x19\x0f\x19\x97LI\xbf33\xef\xe5\xee\xe0\x15\xbc \x16\xd2\xbe\xdf\x17PN\xb8 \xb1\xe0c\x96d(\x8d\xeb\x02\x04,\xf4\xd0\xe7\xae\x0b-p\xc0\x95\xd4\xbc\xeb\xf1\xbd{\xe9\xd0gw\xedh\xeb\xa2\x0c\x9aJ\xb9\xfd\xc7\x82-\xf0\xe1\xe4\xe0\xf0d\xf0\xfe\xc3\xfb\xc3\x12O\x9a\x0f\x9f\xde\xc3\x7f\xbd_\xdc\xbf\x0b,\xde\xd8J\x91\xb37I}\xc1\xd7\xe4\x0bK\xc4\xa6\xc1W\xb4\xd6r\xe3q\xe3\x86i.Q\xf4\xda-\x82\xc3\xbbB\x16G\xe70\xf6\x88CN9\xd4\xde\xb0i\x81S:'a\x04G\x1f\xb2\xc7\x08\xa1\x00\x1c\x16\xcb^\x04\x9c\x93\x0b\x96\x98\xbc\xc3\xae\xd7k\xa5O\x9a\xf8\x1d\xb2K\x1a\xa8x\x9e\x9d}I\xf2t\xc4b\x9bF\xc5\xe5<[\x10d%^\xae\n\xb0&\xa3\xccD\n\xeb\x14R\xc9J\x13\x89j\xde9\x96`qa\x9d@s\xa8\x06\xd8\xb2 T\x81#\xf3\x98d]\xb7\xd9\x90\xf2Q4\xf7\xdb\x01\x05\x19d@\xfe`\"fm\x14D\xae\x8f]w.\x97%o\xcb\xf7\xc97@v\x1a\x9e\xb0\xa7^`\xc0nI!\xd7T\xf0>w\xe7\xa5\x81t\x80\x01UB\xcfY\xdcY|e\xa1\xa3B\xcc\xe8\xe74\xdf\x93\xb6\x86\xe3\xc3H\x12:N\x18\xbc\x99)\xb8}\x0c\xb5(\x8b .\xd5\xbc\xa6\xae\x1fX\xcd||\xab\xaf\x8a_\xb7be\x1e\xb9\x8f\xa1\xb5\x19\xbc\x9c\xa1|n\xd4\xc4?\x97\x03\x14\x81\x943\x05\xfa<\xef\xc2\xa4H\xcb\x9a\xf8]\x96\x81d\xce\xb0\xfbvL\x86\xb5\xd4\xc4\xea\xb2i\xc8\xc1Gg\xa3,\xdd1\x18\x86[7\x0cW^\xfd`\xb7\xb8\x12\x1f\xc54\xa7!?\x13CH\xc2f\x0c\x8e\x89\xbd\xa1I6'\xfe)\x07B\nQ#\xb38\xf6\xa4\xc3U\xa7\xf8\xe0\xac\x9ds\xb3\x9cCx\xac8\xcbn_\xccm ;\x8f\xb4\x08\x18\x98\x05Zq\x8d\xc1\xad3\x0d\xe4\xf8\xbd\xb9\xeb@Ox~\x04Sp\xe3\xb7\xda\xceZ\xbc\x95[\xdb\x99M\xa9\xd7{\xdb\xaa3\xf3V\xb2k\xb8\x86 \xde\xeb\x06\xe3\xd8p\xf9\x89-\x97=`L\"\x1e$p\xb0\xd2\xdcP\x011\x13\xd7\xcb$\x8a\xf5Vb3\xd0\xf2\xae\xee{\xc3\xc9\xba9I\xa7,;\xe5L\xa4\x98\xfa\xd7j\xd0x,\x92HM\xa6\x12\xf4{0\x11B;\xbfB\x9bn&\x1c\x96\x8d'\xe2$` \x1cL\x0f4\xa7\x01\xd6BXw\xdc%\x13\x9a\x00V{&7\x8c\x19\xbd9\xa5\xc1$\xe2\xac\xcf\xcb\xc7b\xc9\x11L\x89d$\xa0\x92\xc9\x8d\xc2\x88-\xd5\xa5\x11K\x01\xcb\xd6\xe7\x96\x10\xed79\xf5\xda\x1e$\x92i\x0fP1\x93\x9c\x00\xab!\x1d\xa1 \x85m \x10T\x0e\x03\xf15\x03\x93S\x8c\xfa\\Z#+\xdb\x12\xb0\xc8\xe5rV\xa0y\x05MbN\"\xc4h\xb9W\x96\xcf\xea\x94%g1#PO7\xcb.#\xa9\x18\x0fX\xd6\xda\xa0\x9aya\xe3\xe7T\xe5\x9b\xd1\xb6pA\xe1\xe0\x7f\x12\xb1s\xb6|\x87a:\x06\xa6c\xdcW:\xc6\x1a\xd9\x18\xa4\xf0R\xef\x1b&!\x9a\xa3\x8b\xed\xe7\x02y\x03\x02y\xc6\xe5\x94\x84\xda}\xe1p`;TP\x95\xd9\xde\x81\x88`y\xf3`\xba\xc7\x02\n\x15\xa6{`\xba\x07\xa6{`\xba\x07\xa6{`\xba\x07\xa6{`\xba\x07\xa6{`\xba\x87\xf9\x1b\xd3=0\xdd\x03\xd3=0\xddc\x855\xb9\x9dt\x0f\x0f\xca\xad\x04\xb5-\\`|P\xff\xf4\xdf\xba7\xacxQ`\x8bZ\xd7\x82\xd47\xd7\xe1M\x87i\xed\x9b\xb1\xf9{\xa9M1\xdb}(W|\xe1\xd7\xa15\x16\xfc3!\xcb\xec\xc7J\xa4\xb4\xcf\xb3Pi\xa6\x17\xb2PO\x0el7\x86\x81=\x12\xee+\"\x9c\x91\x19\x0e\xca\x13\x97\x05 \xfc\xc9\xa8\x0b\x13\x07YP{q_\xb6\x83%! \x8b\xbb\x16\x0f\xc1\x96ICP\x07A\x1d\x04u\x10\xd4AP\x07A\x1d\x04u\x10\xd4AP'\xa3\x1fA\x1d\x04u\x10\xd4AP\xc7#\x07A\x9dk\xac\xc9z\xa0N\xc5\xa15\xbe\xeb\xc2K\x99<@\xc2\xbb\x98\xc9\xf7\xbe\xed\xce\xf0\xb5\xbd\xf9^\xbd\x96 \xb3\xb8\x14fqa\x16W1\x8b\xcb\xad\x9f\x9f\xbf\xe5m\xbbr*\xd7I]*W\x9f\x9b\\\xae\x866\xbc\xdc.L\xbcB\x8c\x0e1:\xc4\xe8\x10\xa3C\x8c\xae\xc6\xc6D\x8c\x0e1:\xc4\xe8\x10\xa3C\x8c\x8e F\x87\x18\x1dbt\n1\xba5\xd7d=\x8c\x0e\x13\xafn6\xf1\xca\xc1M&O\xa7\xe7\x80\xb0\xde\xd7\x12\xb0w\xd53\x10\x8f\xf7\xc1\xfc\xb0\xf0\x8e\x8d}\xd7|C\xcaV\x06v\xd5fm\xf5y]\xe6\xd2zY[\x05B\xee+q\xab4\xdb\xcb+(D\\\x10qA\xc4\x05\x11\x17D\\\x10qA\xc4\x05\x11\x17D\\\x10q1\x7f#\xe2\x82\x88\x0b\".\x88\xb8\xac\xb0&\xeb!.^VT\xc9]_t\xae(?\x00\xd4\xea\xe8\xd0\xd1A}k\xc5\x1e1=\n\xd3\xa30=\n\xd3\xa30=\n\xc1:\x04\xeb\x10\xacC\xb0\x0e\xc1:\x04\xeb\x14\x82u\x08\xd6!X\x87`\x1d\x82u\x08\xd6\xad\x05\x0c!X\xf7\xad\x80u\xdfwzT\xdea\x19w+w\x9c\xc1j\xf9\x0bP\xaa\x06o\\\x8f\x90\xc5o_\x95Q\xbaF\xd2,ht\xeb\xa4\xddxR\x19\x9c\xdf\xe8Xd0j\x89\xb3\xcd2\xbb&\xa0\xbd\x90\xaa\xc5\xe1\x89Z'%\x93k\xbazI\x02J\xc7N\x80\\\xd69\"\x86U\x8a\x97uj6\x04k=\n\xac\x9eg\x9a#\xac\xfb\xeb\xa0m\x90\xc9R\x89${C^\xbb\xbc\xd3H\xc1\"oT8\xd8x\x90\x00\xd7\xcf\xe0E\xfb}\x1a\xc7\x06\x11\xb5|\x16iOTKO]1\xb2\xafU;\xe8\xa4@C\x04O{'\x00\xe2F\xb2\xcf]\xee\xbd\xde\x14\x19\x0d\x15\x12\xc0\xc9\xa7\x8e\x043\x1b3:\x8e85\x93\x91\x83\xfb\xf9\xaf\xd9\x1eX\n\xe4Cd\xe3\x8c\xcd\xdb\xac\xa0\x1f\xca\xd0u\x1c\n\xab\xff\xb4\x18\x01\x95\xf6\xc1\xfec:f'\x06\x9d\xed\x9a\xef}\xfeYK/\xa8\x01\xc1\x90\x99V5S!\x15a\xe0\xc0\x83w\xaf9J Ek\xf1\xc6\x05(\xbf\xae\x02\xf4\xc0\x1fy,\xd0\xa1'\x1eh0*\x10\x07/\xae\x0f\xa0Z\x9f_PI$S\x1b$R\xd2!:\x92\xa4\xdc\xf0Xh\x9c\xff\x8bH\xd6]%k\x1a\xf5\xf0iQ\xd0\xdf\x11'\xe3\x93\xe3\xfd\xfc\x81b\xabl%\xb9\x98\xb0\xc4\x02h\x81H\xccw\xd0\xf5\x0e\xddvjY\x9b\x12\x80!\xf8\xf4\x836v%>\x8aiNCn\xb2\x13\xbd\xb7\x18x\xb1oh\x92\xcd\x89o\x84\x11B\n\x03\x80\xc5\xb1\x86\xd8\x95^\x94j,\xc9,'\xbc\x8dN\xb2\x08\xe8bn\xc3\xb0\x11\x86\x8d\xee0lTcQ(\xb9r\x0c\xa9\xc1\x04\xc2\xf0Q\x1b\xe3Ga\xf8\x08\xc3G\x18>\xc2\xf0\x11\x86\x8f0|\x84\xe1#\x0c\x1fa\xf8\x08\xc3G\xe6o\x0c\x1fa\xf8\x08\xc3G\x18>ZaM0|t\xad\x0e3|\xb8{\xc6\xe6\x95~-\xa2K\xad\x041!\x1e\x83\\\xfa\xd0`7\x83\x7f\xc1\xb0\x1fk\x0f\x16\xa0@\x87}7\x83\xbb]\xf2\x81\x03<\x07&\x9a\x18\x8d\xb4\xe3&\x12r\xa6\xdd\xc8\xdc\xb5\x95Lu\xddp\xa1\xe5\xc2xG4\x96\xed\xceE\x80y\xdb0\x01\xa6\xf3\xca\x1cX\x9a`\x1ax:\x85`\x82\xfd\x0d\xb6\x99v<\x87\xcc8\x02\x17\x13\xc6\x89\x9d\xb4\x94gnE\xb7\xcf\x8f\xa0\x85\x98I\x99\x8f\xde\xd8\xfc)\xe0Ygl\xd1TX'\xbf\xcfop*jN\xafx\x93\x11G\xd3\xa8:\x17\xf0\xabC\xc9\x9apu\xe3\xdc\xf9\xbcb\x94\x8e\xfe\nL\xd0\x05\x91\x17\xb3\x91\xb2\x8eM\xa4\x8ctr:\x1c\x1cM\xc3r\xa61=\x13\xc3\xb9\x01G\xe9lv\x07\xe3\xf7b\x00U \x90\x7f\xd3s\x01\x9c \x88\xdet\xc4\xc4tB\xed\x86\xb3\x1c\x90\xb6c\xd7\x05-KG<\x88\xd3\x90\xf59%\xd0Z\x06\x02\x95\xe6\x14 5\xcf?\xd52\xd5\x8b\xe9D\x9c|:\x92\xdd>/\x91\x04&K\xc2\xa4\xc5\x17\x81-s>\xd6\xac\xda%\x86#\xa31\x17\x89\xc7\xb9}nF\xb4\xc6\x14\x0f\x85\x88\x19\xe5M3\x9a0\xed\xc8W\x9dK\xfb{y&#/P\x93\xb0\x06\xa6\xd2-1\x13\x19\x11I\xc8\x12\xe3WG<`\xafI \xe4T\xc8M\x19\x9e\x91\xad\xee\xb3\xa775\x1e\x88\x93\xe7\xb1\xb9\xec\x08\x90\xac\xd9,\x12\xd6\xb5\x14!\x95\xcb\xa7\x96]\xceb\x00k\x1b\x04y\x13\xe0\xba\x80\xc9o3e@\xf6\xbe\xba\xc1\xd5_\x18^\x0b\x97g\x17\x86S\x13|\x0d\x1b2\x06\xb4\xbd3i\x99\x1a\xf0@2\x03\x96\xab\xa0\x0d/Bk\x06]sA\x9a\x0bC\x80a%\xf1D\x18\x86\xf60\xb4\xb7Zh\x8f\xab,\xb4\xe7\xe7\x84X.2\xd1\xea,\xfa\x0e'P\xb3\x14\x10\xc3\xfa4\x96\xc2)k-\xa9\xcc6pH\x81\x1d\xd9(\x11\xd3|\xab\x00f\\\xd9+\x18\x0f\xc4x \xc6\x031\x1e\x88\xf1@\x8c\x07b<\x10\xe3\x81\x18\x0flC&\xc6\x031\x1e\x88\xf1@\x8c\x07b<\x10\xe3\x81-\xd7\x04\xe3\x81\xd7\xe90; \xb4\xe4\x98\xcf\x9a]\xdd\xc9\x0de\x15\x8c~\xd11\xb6\xfd\xbcT\xd3 6\xaf!\xc0\xa2\xd9:g\xd8\xbc~\xee\x0b\xa4.M\x88Z\x0b\xac\xc1\x93kxr\x0dO\xae\xe1\xc95<\xb9\x86\xe1-\x0co\xdd}x\xcb\xb3#\xd6<\xb5\xe6[\x93\x91\xb7\xb9\xf0\x85\x8c\xbc\xa5\xfbB\x94sB\xdb8\x0c\xf8.\xc6r\xe4\x18aj\x84\xa9\xdb\xc3\xd4e9\xb0\xea\x93\x18V\xe0\xf4\xf9\xdaOb\xe4\xbbD/\x04>\x89\xb1\x94B\x85\xc86\"\xdb\x88l#\xb2\x8d\xc86\"\xdb\x88l#\xb2\x8d\xc86\"\xdb\xe6oD\xb6\x11\xd9Fd\x1b\x91\xed\x15\xd6\x04\x91\xed\xebt\xf8\x0d=\x89\xe1n\xfeo\x87A\x9f\x98\xd2\x19\x00\xad5\xb3\xc5\xfeJC\x87\xfd6d\x00\n\xda\x1c_\xe72\x99\xca\xa1v;\"\xde\x00Q\xdb\x8e\xee\x0b\x9fv4{%\xddM*9\x92f{%\xa3\x98\x8eAE\xc1u/f\x82\x00\x16l}\"\x83\x0f:\x85\xe08\x9eq\x0f\x04\xceV\x98\xf1t\xaa\x17\xf3\xe3\xe9\xde\xe9\xe1\xe0\xd3\xfb\xa3\xf7G\xa7G{\xbf\x1c\xfd\xeb\xf0`\xf0\xe9\xfd\xc7\xe3\xc3\xfd\xa3\xb7G\x87\x07\x9d\x0d[B\x7f\xcf\xfeqz\xf2\xcf\x0f\xc7\x87\xef\xb3\x7f\x17\xfe\xb1\xff\xcb\x87\x8f\x87\x07\x9d\xdf=\x1c\xadE/\xc5i/\xbe\x83\x0c1\x077\x1c\x000\xdds\x03\xc6\x84\xd7\x0e\xb3\x96\x890|\xed\xf8\x1b\x126\x88\xeen\x83Xj7\x88\xfe_m\xd6\x17\xe80\x16\xda&YB\xe2kr`M\x15\xa0\xcd\xab\xa2+\xbc&{\x19\x81Z\xd0\xff\xa9]/\xa9h\xa2Y\x14\\\xd3\x19\x03\xdfrBy('\xf4L\xbb\x0bY\x0b\x96\xc0r#\xde%>\x16\xc8t\x95\x89Tl\xe6\xd0 \xb8D\x9f%3\x9a\xa8\xb9\x89\xb0\xf8m\xd75\xac}\xfb\x98\xa9r\xab]\xf2a\xc6\xb8\xb7\xcb\x12\xa6u\x14\x0d\x017\x90\x8c\x87\xa0\xc8l\xa4\xc4]w\xe3wf\xe6\xbd\xdc\x1d\xc4\x84\x82Xh\xafW7\x10PN\xb8 \xda dI\xf6\x08\x85\xeb\x02 U\xe8\xc1=gm\x9c`\xb8)_\xf3\xae\xc7\xf7\x17\x13f\xbdp\xe6\xf3\x07\x14e\xd0T\xca\xed?\x16l\x81\x0f'\x07\x87'\x83\xf7\x1f\xde\x1f\x96x\xd2|\xf8\xf4\x1e\xfe\xeb\xfd\xe2\xfe]`\xf1\xc6V\x8a\x9c\xbdI\xea\x0b\xbe&_X\"6\x8d\xcd\xa7u\xb0\x1b\x8f\x1b7Ls\x89\xa2\xd7\xd9\x9dC\xf69\x8f\x90\xc5\xd19\x8c]\xab|>7\xb57\xacq0\xa5s\x12F\xe0\x8a\x03\x18\x0e\x8c\xa9\x0b\x00x\x99A\xe3sr\xc1\x12\xedts\xd5\xf5z\xad\xf4I\x13\xbfCvI\x03\x051\x02\xaf\xdd\xba6\x0d\xa8\x9d\xf3lA\x90\x95x\xb9*\xc0\xae\xfb\"=\xe8\xe4\xc6\x9dc \x16\x17\xd6\xfe5 \x0f\xb0eA\xa8\xb6x\xc0>\x1bR>\x8a\xe6~;`\xd4\xe4Jl0\x11\xb36\n\"\xc7\xf7\xcb7-\xe5my\xa6\x87\xdc\x00\xd9ix\xc2\xa200`\xb7\xa4\x12@q\xde\xe7\x80\xbf9\xd2\xc1\x06U =g1\xc0Q\x06\xd9[4h1\xa3\xda\xe8q\x0d\xd8\x1a\x8e\x0f#I\xe88a,$\xe9Lp\x12\xa6`\xf7\x17d\x11D>\x9b\xd74;\x1f\xa4W\xd33\xadV^\x15\xbfn\x05\xe6:r\x1fCk3d\x1a\x89zs\xa3\xed\x8f\xdc\xa5\x02\x8a@\xca\x99\x02}\x9ewa\xcf*u;\x95\x9e\xb2Ukc\xe1@}|/\x1f\xdf\xcb\xc7\xf7\xf2\x8d8\xc5t\x03L7hH7\xa8\xba}\xe5\xeb\xd9N\x16]\xcf\xd6\xd0\x06^\xcd\xd6\xcaOU\x982\x80)\x03\x982\x80)\x03\x982\x80)\x03\x982\x80)\x03\x982\x80)\x03\xe6oL\x19\xc0\x94\x01L\x19\xc0\x94\x81\x15\xd6\xe4\x96R\x062\xe7\xbe\xe6\xc1\xec\x0cB\xbf\x8d >>b\x8f\x8f\xd8\xe3#\xf6\xf8\x88=>b\xbf\xee#\xf6\x80\xfb\xf7\xce\xb7{ \xda\x1b\xd2\x8a\xa0\xd01\x14($\x14\xe5\xea\xc01@4\x0cl,\xa1&}\xc8k\xe6\xbe\x12\x87\xf2Q\x96\x93\xbe`p\xfe\x19\xba\xea\xe0\xa6\"Lc `q'\x16J\x1a\x98\x89h\x03\xfe\xfa\x80\xb1OV\xa9\xa5\x02}\xd9;U\x16\xb8\xb2!\x1c\x93\xbfd\x1c\x8b\x0cX\xf7\xdb4x\xbc\xb7\x16\xad\x1e[!\x06\xcc/\xb0\xc2\xc9\xf1\xbe3\xfc\xbb\x88\xe1#\x86\x8f\x18>b\xf8\x88\xe1#\x86_\xe3\x83\"\x86\xaf\x10\xc3G\x0c\x1f1|\xc4\xf0\x11\xc3G\x0c\x1f1|\x85\x18\xfe\x9akr]\x0c\x7f\xf1\x11\xb4\x0c\x0f2\x7f\x0d\xccy\xa0\x05\xb0\x10\x1c\xe5\xa9\x9e3;z\xb3Ob\x93\x9fh\xb1\x0baO E\xbc \x1a2M\xdd\x174T\x19\xb0Z\xcb\xd9\xb7\xcd,I\x9d\xb7\xe9\xb6\xc5\xac{\x8f\x80\xe5\xfd(\x04\x15\x10T@P\x01A\x05\x04\x15\x10T@P\x01A\x05\x04\x15\x10T0\x7f#\xa8\x80\xa0\x02\x82\n\x08*\xac\xb0&\xeb\x81\n\x15\x87\xd6\xf8\xae\x0bO\x81\xe7\x9e\xbe\x7f\x12\xdc\xcf]\xb0;\xc3\xd7\xf6\xe6{\xf5\x1c\xf8\x82c\xe0\xf6\x8d\xcf\x02H\x91_@\x10\xe1 p<\x01~\x0f'\xc0\x17e\xe3\x18&]=\x1b\xc727f\xe3\xb4\x03\xe8\x14\x02g\x08\x9c!p\x86\xc0\x19\x02g\x08\x9c!p\x86\xc0\x19\x02g\x08\x9c\x99\xbf\x118C\xe0\x0c\x813\x04\xceVX\x93\xf5\x80\xb3e'j\xf1\\+\x9ek\xc5s\xadx\xae\x15\xcf\xb5\xae{\xaeuA2c\xefk\x96\xa3W\xffj\xab\x1f\xa3\xc8\xf2\x1ay%\xa5qa\x1a\xe3C\xc8b\\^Z!\x16\x8aX(b\xa1\x88\x85\"\x16\x8aX(b\xa1\x88\x85\"\x16\x8aX\xa8\xf9\x1b\xb1P\xc4B\x11\x0bE,t\x855Y\x0f\x0b\xadO\"\xac\xbc\xdebv\x8bI\xe4*\x9e\x9b\x9b%B\x8c\xdaXR\xae\x9f)K\xcebm\xf3\n\x00\xf4\x08\xbb\x8c\xa4\x82\xb7\xfe\\k\x83\xea;\x1d\xf6\xb5\x05\xaa\xf2\x07\x99l\x0b\x17T\x92\x84\xa9$b\xe7l\xf9+K\xf8x\x07>\xdeq\xbb\x8fw,N0\\3\xbf\xb0\x90^H\xde0 &\xb9\xc7}0W\x1b\xe0\x8e\x19\x10UKF\xb3A\x9c6\xb7c\x1e%b\xea=\x95V\xb7\x8b0\x81\x11A;\x04\xed\x10\xb4C\xd0\x0eA;\x04\xed\x10\xb4C\xd0\x0eA;\x82\xa0\x1d\x82v\x08\xda!h\x87\xa0\xdd\xfd\x83v\xcb\x12\x18\xf3[\xb0*YZ>\xc8wso\x82\xac\x95\x0b\x94.\xcf\x05\xfa\x08\xc5\xb24 \xb0\x81\xccOF@\x1c\xbd\xd9o\x91\x0e\x94\xde\xdb\xadf\x86\xd8\xba\x19[\x02\x14\xa5k\x9eDM\x8b'Q\xc9\x91\xb2\xe9an3\x80\xd3\xe0M\xa2\xb2\xb7\xc5\xb9YD\xe4\x07\x91\x1fD~\x10\xf9A\xe4\x07\x91\x1fD~\x10\xf9A\xe4\xa7\x0d\x99\x88\xfc \xf2\x83\xc8\x0f\"?\x88\xfc \xf2\xd3rM\xee \xf9\xb9\x17\xcc\xc7% \xb5>\x02\xe6*4\\o\x9fg\x1d\xd5g\xabQ\x93'\xd5\xe7\x8d\xd8P\xb1\x83\xfb\x82\x87\xca\x13\xb3>6Q\xcd\x98+\xcf\x91-\x81 r\x98 w\x8f r\x1be\x9e_\xce\xda\na7\x84\xdd\x10vC\xd8\x0da7\x84\xdd\x10vC\xd8\x0da7\x84\xdd\xcc\xdf\x08\xbb!\xec\x86\xb0\x1b\xc2n+\xac\xc9z\xb0\xdbF\x13\xacRc\xa3\x14\xb1\xa5\xdf\"5\xb1\xe8\x82\xf7\xe0B \x9b\xa9ysab\x9d\xe7\xfc\xa1\x85\x06\nd\xedY\xcd\xd2\x19M|h\x01\x1fZ\xb8\xe3\x87\x16\xdcT\x9b\xc4\xb6\"\xde\xda*\xb7\xad\xcfmr[ \x0c\xd6\xb3bt-&\xab!j\x86\xa8\x19\xa2f\x88\x9a!jVc\xf5!j\x86\xa8\x19\xa2f\x88\x9a!jF\x105C\xd4\x0cQ3D\xcd\xd6]\x93\xf5P\xb3k'\xab\xdd@\x96Z\xed\xad\xeb\xf8\xaa\x03\xbe\xea\x80\xaf:\xe0\xab\x0e\xf8\xaaCe<7\x93\xd5\xdbs \x98\xbd\xaf\xa5\x84\xd2\xab\x9e\x89lx\x1f\xcc\x0fm2\x81\xf3D\xe0\x16)\xc0\xc5\xfb,\x95\xe6?\x93\x1cj\xfa[\x96\x14\xfc@r\x82\x97WP\x88\xf4\"\xd2\x8bH/\"\xbd\x88\xf4\"\xd2\x8bH/\"\xbd\x88\xf4\"\xd2k\xfeF\xa4\x17\x91^Dz\x11\xe9]aM\xd6Cz\x1b\xb3\x13k\x93\x13+\xe8.\xb1\xe0\x91\xef\x9f\xe3\xdb\x12xt\x16\x8f\xce\x16\xdf\x96X\x90S\xd9*\xa5\x92\xd4eT\xf69fTbF%\xe2l\x88\xb3!\xce\x868\x1b\xe2l\x88\xb3!\xce\x868[\x99~\xc4\xd9\x10gC\x9c\x0dq6\x8f\x1c\xc4\xd9\xae\xb1&\xeb\xe1l\x0f+\xa3\xb2\x0cxU\x93\xc7\x8aX`\x86oe\xe5\xd7\xa1`q^[\x19\x17kMSV\xfe\xe6i\x8a\xa9bR5QT\xf8J\xc49K\x92${\xde\xd3=\xdai\xfc.\x1e\x16\x9e\xc205\x89T\"\xd1\xceH\x11\xd6\xb9VV[\xfb,\xb0t6Nh\xc8\xc2\x81\xf7\xb0\x87\xc1K*\xb9\\\x9flQ\xff]\xd3,\xa1\x8b\x13\xf7\x19\x9e\xa3\x88\x0d\x86\xd6p}cMK\xf7\x95\xaeU;\xfe\xe5\xd5\x14\x82I\x08&!\x98\x84`\x12\x82I\x08&!\x98\x84`\x12\x82I\x08&\x99\xbf\x11LB0 \xc1$\x04\x93VX\x93\xf5\xc0$/i\xabpT\xaa&c\xcb]-\xe6_+W\xff\x84e\x8dk\xde*5\xc5\xdd\xf6U\x07\x12\xe4\xf9)\xf8>%b\n\x88) \xa6\x80\x98\x02b\n\x88) \xa6\x80\x98\x02b\n\x041\x05\xc4\x14\x10S@L\x011\x85\xfb\xc7\x14\xf2\x04\x95\x95\xf3\x07D\xf5-\xc4\xe6\x14\x82\x86kaJY\x04\xa5d\x8fj\"A\xb7\xdb\xebv{j:\xdb\x94\x17t\xa4\xe0S'\xe3(\x00\x83\x0d\\\xcbU\xa6\xa9\xfbP\xee\x07\xcel<\xbc\x1f\x18\xef\x07~P\xf7\x03\x97\xe5\xc5J\xb8gU\x9a\xe1-\xc1\x88x\"\xe2\x89\x88'\"\x9e\x88x\"\xe2\x89\x88'\"\x9e\x88x\x96\xe9G\xc4\x13\x11OD<\x11\xf1\xf4\xc8A\xc4\xf3\x1akr]\xc4\xf3\xda\xb7\x04\xd7\xe1o\x19&\xb0\xe6e\xb9-\xae\x97-b\xb1\x1e\xe4\xd9\xf0Fx\x05rux\xa2=\x05\x96}\xd7\x82C\x1b\xd2\x11\xaf}\xff\xfb\xe1@\xab\xd7\x80 \xa2p9\xf8\xe0\xe1\xac\xf9b\x83\x15\x9d3\xc7\xf2F\x0c\xb7Ts\xf4\"\xe9M\xba\xb1\xcd\x8d\x9bs\xadQe\xd9~5\x849\xe4\xcb`'\xce\xab*\xa4\x08ntF\x8c\xaa4am\x88\xc8\x11!\xd7r\x1cIp\xed]#\x99\xeb\x17\xb3<51\xf7 \x16&'\xfej\xc9\x03\x97\xdc\xea-K\xb2\x16Z\xd6\x0d\x07\xffG \xc2\xd9X(=\xbf\x19G\x9f\xb3$\xd2\x1a#\xe2\x06y\xf1VsBy('\xf4\x8cu}\xe2m%\xe8\xd4\xea/\xca\xb5\xbc\x04{\xde\xf6\x13jA1\x8d8#\x8c\x07B\x8bOi\xddqpO\xa4\xd6\xef}\xae\xbdP\xceb\xf3\x89\x06gLI\xdb\x8a&\xbd\xb4\xf6\x9a\x86\xec\x1cb\x89y\x8c\x83j\xf3<\xadv\xf6\x06\xc2x\xd8\xcd!\xf5l\xa1\x19O\xa7Zn|<\xdd;=\x1c|z\x7f\xf4\xfe\xe8\xf4h\xef\x97\xa3\x7f\x1d\x1e\x0c>\xbd\xffx|\xb8\x7f\xf4\xf6\xe8\xf0\xa0\xb3aK\xe8\xef\xd9?NO\xfe\xf9\xe1\xf8\xf0}\xf6o\xf8\xc7\xef\x1e\x92\xb9\xb4Y@\x1aS\xaeX2\xa3\x89\x9a\xd7\x0c\xcb\xfbj\x04\xcd\xf2\xfd\xb1,p\xb0\xc2\x96,A\x86v\x87\n\x07P-\xa5\x8d\x1a\x94\xbf\xcfK\xfb\xd7\x8b\xf9\xacCFaYW!\xa7\xcfM\xd4\xa1D\xce,a\xa3\xe8\xb2n\xf6\xa7\xd3H\x01f\x99\x85zt\xc9\x9c\xbf\xca].\x9f\xfd36\x1f\xe4\xfd\x95\xc7]\xc4\x16|\x10\xfe\x1d\x10pl\xfa\x8fdF\x10U\x13K\x95\xd9v\x9a\xae36\xef\x1ak7\x10\\\xaa$\x05\xe4\xfc\x8c\xcd\xc9(\x11S(rL\xc10\x0d]\xf9\xcc\xe4\xa1\xb3\x19\xe3\xe1c\xfd\xbd\xfb3\x9b\xeb\xffn\xf4y\xf9W\xe8p\x03:\xeav\x9f<\xe9X\x04?\xa6\xf3\xc1\x8c%\x91\xa8]\xd4j\x84\xa88\xddP\x9f\x98\xfa\xcb\xd9\xbc*\x07\x8f\x1c\x9b\x84\xb9\xee\xcd\x84\xa2oiXn\xc8M\xf2\xfcS\x9f{\xd6\x8a\xb1\xd2\xaaqF'\xbc\xcdU\xf9e\x8b\x008\xc30\x03\xd8L\xe3\x88SS1\x0f\x02\xe6\xbff\xaa~)\xe7pv\xa9\x06gl\xbe\x9cor\xaequ\\\x90F\xffi\x01E*\xad\xa0>\xa6cvb\x92\xe0\xbb\xe6{\x9f\xc3\x01u\xa8\xa1[ 3m\x97N\x85T\x84\x01\xda\x07P h\x04\xa1hmpbA4PW\x01z\xe0\x0f\x13\xbd\xd4\xf3\xe6\xa0V\x0fa\x1c\x15\x88\x83\xed6\x80j}~A%\x91Lm\x90HI\x07\xffJ\x92r\xb3\xde\xa1A\n/\"\xc9j\x18\xc54\xea\x85\xafD\xc1\xd8\x8f8\x19\x9f\x1c\xef\xe7\x11-k\x99Kr1a\x89E\xdb\x03\x91\x98\xef\xe0\x18\xb8C\x04\xce\x86\xd7~\x07(\\\x9f~0\xdd]\x89\x8fb\x9a\xd3\x90\xfb\xf7D\xbb\"\x0c\xd8\xfe\x0dM\xb29\xf1=6BHa\x00\xb08\xd6k\xbb\xd2\x8bR\x8d9\x9b\xe5\x1c\xc6\"8\xcb_\xa6X\xccm\x18^\xc6\xf0\xf2\xed\x86\x97kN\xd8\xac\x1a^\xce_\xa0\xf5\xe3\xca\x0e\x8e\xc2\xb34\x0b(T\x18Y\xc6\xc82F\x961\xb2\x8c\x91e\x8c,cd\x19#\xcb\x18Y\xc6\xc8\xb2\xf9\x1b#\xcb\x18Y\xc6\xc82F\x96WX\x93\xdb\x89,\xe7(i\xf7\x8c\xcd+\x06\x91\xc55\xa9\xddY Si\xc2\x0d~\xe7\x03d\xdd\x0c\x04\x05\x83w\xac=;\x00\xc4L\x84i\x11\xc4\xd9%\x1f8\x80T`\xba\x88\xd1H;4\"!g\xda\xbd\xca]>\xc9\xd4\x1a\xef\xa36\x83\xfeu\x13`:\xaf\xcc\x81\xa5 \xa6\x81\xa7S\x96D\x81\xa3\x13\xd8\xcf\x05\xe6\xc0D\x9d0N\xec\xa4\xa5<3\xb7\xbb}~\x04-\xc4L\xca|\xf4\xc6\x16N\x01\xd59c\x8b\xa6\xc2:\xbf}~\x83SQ\xf3\xee\xad7\x19q4\x8dj\x9e\xbe\xd5\xbf:\xbc\xa8 ]6N\x8f\xcf+\x16]\xd2jkfL\xd1\xa3\x11\x89\xd9HY\x83?Rf\xd7:\xdd\x06\x0e\x98a9\xd3\x98\x9e\x89\xe1\xdc@\x84t6\xbb\x83\xf1{HxM,>\xfb\xa6\xe7\x028A\x10\x95\xa4\x8c\xe8?\"\x1ej\xf7\x94\xe5\xb0\xac\x1d\xbb.hY:\xe2A\x9c\x86\xac\xcf\xa9 qe\xe0HiN\x01j\xf2\xfc\xb6\x11\x04q\xb3\xc8F\xc4\xc9\xa7#\xd9\xed\xf3\x12I\xa0\xca\x13&-\xee\x06l\x99\xf3\xb1f\xd5.1\x1c\x19\x8d9DX\x1c\xe7\xf6\xb9\x19\xd1\x1aS\x9c\xbfF\\;\xa3 \xd3\x0en\xd5\xe9\xb2\xbf\x97g2\xf2\xc2\x15 k`*\xdd\x123\xf1\x01\x91\x84,1\xfef\xc4\x03\xf6\x9a\x04BN\x85\xdc\x94\xe1\x19\xd9\xea>{z\x9d\xf1\xac\x9d\xfe\xd2\xfbZ\x88\xc36\x9cC\xcc\xa3f\xde\xbd\xc8\xc5D\x18\x17]oJ\x80\xb9\xff\xfc\x17?\x18\xe2\xd1\xdd\xf2>\xa8e\xb1\x92\x15\"\xea\x98\xe4\xf2\xd0\x93\\J1\xe5{Ju\xe9b\xae\x0b\xe6\xba`\xae\xcb\xf7\x91\xebb\x02\"\xa9T\x90\x95A\x86\x00\xdd\x9b\x8c\x95\xc2\xf5\x85\xbe1\x0f\"\xc5\x88\x91M-\xdbF6\xe8@\xde\x7f8=|M\n\xed\xc7b\x1c\x05\x99\xe5\x95\x81\xd4\x06\xcb\x91b\xca\xfa\xdc\xb0\xbb\xacC\x87s=~\xc8C/\x9f\x06h\xd2\xca\xda\xac\xbe\xe6M\x9b\x0c\xebx\xce\xac\x12\xe5\x80\xad\xf7\xb9d\xda\xcd\xd3\"\x8bk+\xdb\x10\xaa \xa5\x02\x06\x0f\xd4\x0d\x19\xd9!.\x89\xa3\xd05\xd8\xeeL*:\x8c#91\xc6i\xb69\x86L]0\xc6\x89\xba\x10\x86\x06\xf9`\x8e\xf4'L%\x11;\xc7#\xfd\x98s\xf1\xb0s.\xd6K\xb9(d\\\x907LB\xc4\xa6\xaa\xbb6 ^g\xcc\x06qb\xd9\x8eY\xcb\xec>_\xb8\x8b0\xabc\x01\x85\n\xb3:0\xab\x03\xb3:0\xab\x03\xb3:0\xab\x03\xb3:0\xab\x03\xb3:0\xab\xc3\xfc\x8dY\x1d\x98\xd5\x81Y\x1d\x98\xd5\xb1\xc2\x9a\xdcNVG\x11\x10\xaf\x86\xaf3\xd0\xc0\x06\xa6\n\x81\xb8;\xbe!\xa0\x1c\"u7\xb9f\x91\x99\x05\xf1Rs\xe7a\xf1IY\x95Cr\x8d/\xd2\x14#\x08\xcdQU\xaf\xfd\xfb\n\xb0fK\x13\x0e\xca\x13\x93E[\x97\x8c\x96\xd8\xb0\xd8Rpta(\xa7\xd4[1\x86Y!\x0d!\x14\x84P\x10BA\x08\x05!\x14\x84P\x10BA\x08\x05!\x94\x8c~\x84P\x10BA\x08\x05!\x14\x8f\x1c\x84P\xae\xb1&\xebA(\x15\x87\xd6\xf8\xae\x0b\xaf<\xf2\xd0\x06\xef\xce#\xdf\xfb\xb6;\xa3p\xf1\x91}$\xa6\xf6\xd2#L\x9e\xc2\xe4)L\x9ejz\x0f\xa5\x0e\x87k\x95A\x95\xbd\x89R\x8b\x14\xe2\xbb(\x98\xe7\x84 \x1d\x82t\x08\xd2!H\x87 \x1d\x82t\x08\xd2!HW\xa6\x1fA:\x04\xe9\x10\xa4C\x90\xce#\x07A\xbak\xac\xc9z \xdd\x8d\xe59=\xac\x04'\x07\xfb\x98|\x99\x9e\x03\xa4z_K\x00\xdbU\xcf@-\xde\x07\xf3\xc3\xb2{$\xf6]\x0f5\xa9Q\xa5\x03\xaf\xd7\xc9\x8e*\xf4r_ R\xa5\xd9\\^A!\xb0\x81\xc0\x06\x02\x1b\x08l \xb0\x81\xc0\x06\x02\x1b\x08l \xb0\x81\xc0\x86\xf9\x1b\x81\x0d\x046\x10\xd8@`c\x855Y\x0f\xd8\xd8\xf0\xafJ\\\xe6\x8fg\xe7w\x96=\xf6Y\xcah::\xa8o\xad\xd8#\xa6!a\x1a\x12\xa6!\xb5KC*\x00^\xebf\"\x15\xb19LF\xc2d$\xc4\xec\x10\xb3C\xcc\x0e1;\xc4\xec\x10\xb3C\xcc\x0e1\xbb2\xfd\x88\xd9!f\x87\x98\x1dbv\x1e9\x88\xd9]cM\xd6\xc3\xec\x1eR2R\xfe\xc0N\x19\x0c[\xaf\xc5\xc5\xcf\"\x951\xb0\x9b\xeb\xa3!\xa9J\xdb\xff\xa9b\xbd\xf3\xed!St\xbb\xe7`\x88J\xca\x13T\x02\x7fRK\x0e\xed\x89\x12]V\x0b\xe0M\xb8\xa3\xbe&})d\xf2\xfer\x95B6\x88\xf8H\\\x03\n1m\xb4z\x11\xe1j\xa3\x13$\x8c\xaa:p\xa7\xf28\xc4F'\xa4\x8a\x0e&TNZ\x956\x00K-\xdc3L\xa38\xac\x03f\xaf\xf2=\x840\x17\xc2\\\x08s!\xcc\x850\x17\xc2\\\x08s!\xcc\x850\x17\xc2\\\x08s!\xcc\x850\x17\xc2\\99\x08s]cM\xae\x0bs\xb5Efz_-&Q\x7f,\xcdb4\xb9\xe1U\x80jj\x01\x9a{\xc7g\xda\x16\xfd\xcb\xc20\xa6\x9b\x16= \\\x83p\x0d\xc25\x08\xd7 \\\x83pM\x8d\xb9\x81p\x0d\xc25\x08\xd7 \\\x83p\x0dA\xb8\x06\xe1\x1a\x84k\x10\xaeYwM\xae\x0b\xd74e%\x19\x9c\xe2^rvrd\xa8\xe7@\x1f\xb9\x00#re\xea\xee\x1c2\x95\xdf\xcc\xef\x17\x1e2d\\7\x85\x87\x86a\xc2\xa4\\n\xbe^mdC?\xbagT*\xa6CV\x0bt\xb8\xb3r\xba\xa0$4\x9cF\x9c\xfc@\x9e\x92\x7f?\x1e\x8b\xb1\x00\xbe\xee\x06T*]\xef \xf9\x81\xf4;\xe3HM\xd2!p\x7f \xe4TH\xfb\x9fM\x19\x9e\xf5\x8c\xd6\xdd\x0b\x82=3I\xfd\xce\xef\xff\x99\xd1\xca\xcc\xc8l\x8f\xdc\x1ca\x9c\x88\x0b\xe3\x1bE\x1cn\xba\x9a;\xb7p\x83\xfc\xa9\xcd}\xad\xf0\xf4\x0e\x96\"Qp*\xf2\xb1\xf1\xa7.&\x8c\x93\x14\x8e\x06\xfe\xa9E\xb2\xa2c\xd2\xefl\xf6;\x84N#.H\xc2F\xe0\x95(\x91\x1b\xdb$R\xda`ZzDu\x18\x8b\xe0\xac\xcd\x91\xd1\xf2\x89\xd17\xbab~\xd4\x13\xe0 \xfdS\x06:\x00pzA%\xb1\x13B\xa8\xd2\xd3\xa3.\x07\x11\x0f\xd9e\x9b\x95\xcf{;\xbd<\xd2\x95\xc0\xdf'S\xc1\x05\x1c\x9c$\x81H\xb96\x01\xbc3\xab\x86\x88\xc74P)\x8d\x89J(\x97\xd4f3\xea\x16\xc0\xdb\x1ek\xaa\x04\x07\xdc\xe0\x89=\xcd\xe8z\xf2\xd9\x98H%\x12x;\xe1\xb7\xbd\x8f\xef\xf2QE\\*\ng\x88\x1b*\xfe\x16\xa9\x89e\x0b-\xbc\xcd\xf4\xd8\xcdD\x1e\x9f\xb1\xf9\x13'\xca\x0b\xdd\x15\xd5G\x07S\xd0\x10\xd3DL\x131M\xc44\x11\xd3DL\x131M\xc44\x11\xd3t\xf4#\xa6\x89\x98&b\x9a\x88iz\xe4 \xa6y\x8d5\xf9\xe60M\x03+\xf4\xbeZ\xd4aQ\xc6\xdbR4\x13 \xbd{\x822[C\x909\x12\xe3\x80\x96\xa8\x88\xbbX\xb9\x94\x8d\x161K\xc4,\xbfs\xcc\xd2]\x1b\x97\xd5nuU\x1c\xc9n\x8a\xcb{\xc5\xdb\xe1\x10\xb3D\xcc\x121K\xc4,\x11\xb3D\xcc\x121K\xc4,\x11\xb3,\xd3\x8f\x98%b\x96\x88Y\"f\xe9\x91\x83\x98\xe55\xd6\xe4v0K\x07\xb8\x95\xed\x95v\xa8\x9a\x9e\x1a\xc0\x89\xae\x8fy\xdac\x9dk#\x9e=9\xa5\x89Z\x07\xf7\xfc\xa8+:x\xe3^\xdf\x8c\xc4\xb3\xaf\x88\xb9 \xe6\x82\x98\x0bb.\x88\xb9 \xe6\x82\x98\x0bb.\x88\xb9 \xe6\x82\x98\x0bb.\x88\xb9 \xe6\x82\x98\x8b\xc3/n\x06j\xc9/\xd2\x07\x08g\x00\xe8\x83m\xdc\x81:y\xeb#\x1a\xcb\x95\x9ao@r\xa64U\x93\x0c\xc7\xb1c\xdcTb3\nh3zs\xc4\x15K\xe0\xe6\xfc\xbd\x00Rj\xb4\x91\xe1\xce\xdc%L\xa5\x89\x15\x05QVP;\xa0\xba$\x88E\xf3\xb6\xa5\xb8\xe0,\xc9\xe7U{\xb4\xe6\x83\xf7\n\xc2\x8cFI\x05\"Z\xd4\xfd}\x81E\xf9H\x07v\xa4\x83\xc6\xec\xb9J\x16\xd0\xa2\x01eYAjIJP\xa5\x11\xb7 '\xc7\xfb\x98\x17\xb4\x0eF\xd5\xde\x8b\xba\xbaZ&e\x80\xd9\xd7\xde\xcf\xbex(\xbf \xb2n\x8b\x0d\x12!a\xe3H*\xb3\xdb2\xc1\xc0x\x90\xccg\x8a\x85\x9b\x92\xb1\xb0\xf7u\x96\x0e\x07gl^\x9f\xd8z\xe2 \x80\xac\"\xd1\x15\x81c)1]\xb0\x84\x85\x84\x8b\x90\x81\xad\x97\x0e\xe3( gl^\xd9\xed\x87\xae\x89\x8f\x0c\x9e\xfd\xbd\x97\xed\x9d\x8dc\xa0\xc7\xd1\x96!p\xc7\xdd\xe3\x8e\xb39\x0d\x82\xeb\xfe\x93Y\xd0\xec]\xfb\xc5U0{\xdd\xebmu\xe1\xff\xc3\x8c\xbc(\x88\xaa\xdd\xba\x8d\xff\x96B\x10\xd4%\xd3\x18\x1f\xc5\n\x02S\xad'\xe7<\xd0}\xd5\xe9\xd0\x8f\xe6\x1b\xd4\x80`TI\x10y\xb3\xae=\xf3\xdf\xcb\xb8\xd3\x8fL\x91\xc8\x083\xe89\x92^\xf8R\xce\xb3h\xa3\x0d&\xf2\xd6O\x15\x1a\x81\xe6Qw\x93\x82\xcd\x9b\x11[p(D\xcc(\xef,\x9c\xeb\x8f&X\x0f\xe8 \xa7\xb1\xd1\xbcn\x96aC\xca^L\x15\x93\xf5\xb9Dz\xae\x0c\x0c\xaf\x8b\x98\xb3\\\x0b\xa7z\xf9,\x9dV\x9b\xbb\xa1)2G\xe7\xa6L\xb5(;a\xb4x)\x7f\xd3\xb1H@\x9c\xea\xcfE\xe6\xdb\xc0\x9cB\x9c\xa4C#l*\xa7\xf7\xb2WAsI\x07\x10U\x9d\xd4\xf7\xdb\xdd\xd9\xda~\xb1\xb9\xbd\xb3\xf9t\xebtk\xf7\xf5\xee\xd3\xd7[\xaf\xba;/_\xfcmk\xfb\xf5\x16\x08\n\x9eN\x07\xeaR.\xecj\x0b\xce`J50\xf3S\x18K\xd3\xec4\xbc{\x90Svx\xb8\xfb\xf6\xe9\xb3\xadg[O\x9f\xed\xef\xee<\xdb\xdd\xda~\xbe\xf3\xea\xcd\xee\xf3\xc3\xad\x83\x83\xfd\xa7/\xdf\xee\x1d<\xdf\xdd~\xbb\x05\x87Eg4Qm\xcc$\xa1h\xbct$7I\x9a5\xa7t\xbfKg\xf1\xe9\xae\x9bF\xa3\xfe\x1b\xdf\x86X\x87\x90%\xcfM\xac\xd7d\xa6\xc6\xe5\x0d7\xcc\xd9\xa5\x1a\xdcZ\xeb\x81\x16\x1f\\\xa67\xdd.\x9d\xcdn\xb8E\xe0\x06\x9b\x00t\xc3M\xb3\xf3(d<`7\xdc\xac\xdepB\xb2d\x91r/J\xeb!\x0b&Ow\x08\xe3\xda\x99\nI\x1e\xcb)\x0b\xbf\xed\x90\xcd\xcev\x9f\x05)\xfds|\xf6\x85\xd1\xe7_f\xe3\xb3\xcfO\x9f+\xfe\xe7E\xf8\xe5\xfc\x19\x1d\x05O\xc3\x9d\x17\xf5F\xed\"\x81\xbep\xf4\xad\x0d\xc6+g\x7f\xa2\xfc+\xca\xbf\xab\x1a\xc3\x1cu&\xeaL\xd4\x997\xda0\xeaL\xd4\x99\x7fE\x9dY\xdc\xe2M\xc0\xa7\xad\x7f\xe5\xad\xc2j\xb5\xde:\xd9\xeb\x9d\x1e\xcc\x9e\xa7\xbdW;{\x9f\x93\x7f\x8d\xfe\xeb\xef\x1fgo\xfe\xf1\xc3\x0f\x1e\xd0x=\xfc\xeb\xab\xe1\xce\xfad\x8b\x1f\x99\"\xd4^bD\xf5\x9f\x01K\xe0T\x93e\xe9E`X)n\xee\x87\xc9m\x0c=k\xa4H5\xdc\xe5\x94\xf7P\x8e\xa9\xe7\xa2\xbc&\xbenW\x1f\xe2\xe9\xed\xd08op\xd9Y\x87\xaco\xc4\xe6\xd6\x15-\xe8g\\\x874\xf43\xd6j\x18\xfd\x0c\xf43\xfe\x8a~\x06\xca?\xc4\xe6Pg^\x934\xd4\x99k5\x8c:\x13u\xe6_Qg\"6\xf7\x97\x91\xc9\x88\xcd\xada\x0c\x98\xaa\x0b\xd6\n\xb1\xb9\xbf\n6\xf7\xac\x0e{:\xe2\xe6\n\x0c\xcb\x80P\xecY\xb5\xd8 \xfb\x9cf\xd9b\xb60 \x05\x93\xfc\x11TZ\x1d\xf7\xcbu=S\xab\xa4\xbfe\xf5\x88d\x8b\x91\xbfv\xc0[\xa1=B\xab\xa9v\xb7\x04\xc35\xed\xf8\x82\x91\xb5\xbe\xa0\xbaye|Nc\xdd\xc1\xf6\xf3\xcb9\x9b\xce\xd8t6{\xb5s\xf9j2\xff\xf2\xe5\xd5E2\x1e\xbdz\x96<\xff\xf3\xd5dw\xb4s\xf1\x8c\xef\xc4\xb0=\xed\xe1\xa4\x85\xdc\x9f5\xaem\xb4Y:\xdc\xfe\x12\xfc\x19\xa6l\xf6y\xeb<\xdd\xf92>\x1b\x9f={\xc5Ft\x8b\x7f\xbe\xf8\xc2C\xca?\xefN\x9f\x05/f\xf4i\xfa\x8c\xce\xbe<\x1b\xef$\xaf\xc6r\xf6y\xfc|\xfc*\x90O\xcf^\x05\xe9\x08\xe6P\xa8\x88\x8f\x073q\xb1,\xd3z{\xcbH\xba\xcc\x8e\x99%\x91H\"\xb5\x84nS-\xdf]\xd7\xdd\x01-\x00\xf0\x12\xab~\x83(xe3zh8nF\xdc\x8cm7\xe3uT\xdd\x1b\x17\x89\xb1Z\x0e.\x96s\x17j\xad\xa7\xeb\xd4\xa5\xde\xdfTN\xfc\xdd\x1d2m\x90\x9aWQ\xec1\xcd\xd2~?\xbd$\xc39\x01\xbb\xc4\xdb\xdb\xfe!\xb5J^\xfd SI\xc4\xce\x19\xa1\x85W>\xcc;)\x91\x92\xd0Z\xb7\xd3J \x98~K\x9b\xf4\xd2\xd1\xd3( :o\xf6\xdf\x1c\xeel\x1d\xbeJ\xcf\xbf\xbc\xf9\xd7\xf3W\xef\xe6\x9f\x7f\x92\x9f\x0f^~\xdc>\xba\x88\x0eg\x7f\x8b>\x0d\x9f\xff\xfa1T\xf1l\xfc\xcf\x1f\xea%{\x93\x1f\x04_\x17\x91\xab2\xc3\xa1w\x9c\x0e\x7ff\xf3\x8f,\x98\xed\xec>?\xdb\xee,:&\x997\xb0w\xfee\xeb\xd9\xaf\x13\xf5\xf3\xdf'/\xf7\xf6\xf7\x7f\xfd\x12\x1f\xbd\xa4\xa7B\xfe8\xdf\x8a\xce\xde\xfe\xd7\xcfG\xbf\xfe\xf4\x8f\xa7\x7f\xfe\xfc.\x11\xf2's~\xce]$b9{a\xeb\xa0\x1a\xa4vE\x8a\x00J}Q\xb3\xd8\x06K[>9\xb1\x18\xd7\xf2\xc4\x98\xca\xc1\x05\xe5\xaa\xfeB\x04\xdf\x93\xde\xb2\xbaK\xd7H\xe5\xd2\xf2\xcf\x9f\xee\x82\x13[:\x02\xb9\xe26\xa9U\xe9\xcdkUp\x08k\x15\xd9\x91\xd3`V\xa3\x1d\x96\x14Yg\x91\x06kRR\xde\xc11F\x93`R>j]\xd6\xa5\x952Z\x11\xb2s\xc6\x95lR^\xeer\x10\xab\xbd\xdcm\x88\xa6~\xa5\x0b_9\x9av\x89L\x83 \xa1\x92<*V\xfdA2\x1e>\xb2\x97H\xb9\x9bF\xb3;\x12\xe3X\\h\xd5\xcax8\x13\x11W\xaf\xc9\xa3\x1f\x0fO\x89\x9e\xa8\xff\x7f];]mN\xd8K\x7f\x19\x0d&d*\xc24f$\x14A:\x052\xb4\x92\x16\x17\x8e\xaa.\\D\n\xa7\xd3//\x07\xf6\xb7i\x98\xdf?\x9b\x18m\x087_y\xef\xb0\x85\"\x90=m:\x930JX\xa0\x04\xcc\x8d':\x19\x0f\x17\xea\xd9\x8d\xc5\xd3*AP,\x9cV\xcd\x0bF\x0d\x9b\xc2K\xa6\xe6\x7f\x14\x9b\xfe\xc1\"\xc0\xcb\x0c\xdc\xad\xe7\xb3\xcb\xcb\xf3G5Vl\xcb\xaa\xeb\xcc\xc2\x8c\x8e\xab\x97\x8a\x1e\xd31#5A\xb9\x9a\xf6\xdd)\xf8\xc6\x0e\xe2h\x1aU}\xb1w\xf42\x9a\xa6S\xdb \x11#\x02B\x82\xccXB,I\xd7\xebV]v\xa7\x11o\xf0\x04\x0b\xdbQp\xe3\x8f\xd9\x15\xb6\xa6\xf2\x18\x1e\xb5K\x88H\x08\xfb\x0c/\xcdM\"in\xeb+@\x86\xbb\xeb\x12G/\xd7'.fR\x9a[i\x97\x90\xf7\x12$\xf9B\x12[Y\xa1{qL\xd4\xa5$S\xaa\x82\x89\xde\x9f\x05s\xd4\xec\xe5\x9b3HM\xc41(\x19B\xf5A\xe2v\xa54KU\xd5\xf2\x82\xb2\xcbq\xd6m8\xe8]\x0cb\xd4\x98\xb4[\xad\x03+h\x9d/n\x15\xad\xf3E\xbd\xa2u\x8e\xd6\xf9\x03\xb5\xce\x97\xc3X\xd2X\xc9V\x8f\xacl\xceotf\xc2D\\\x96\x1b\xedo\x12A\xc3\x80J\xc0c\xa31\\]\x7fY\x85\x8a\xebJ\xc1\xc5\xfap\xcb\xb0\xbb\"\"1\xa1\xa47\"\x84\xb9\xb9)\xf5\x87\"\x16E\xec2\x9a\xbfK\x11;-\xde\xc0US\xd4\xa4\xc4x-\xb7\x91x5\xedl\xbbM3\x18'Z&\xd7\x0ef\xcd\x80G\xebT 3\xe8jhI]\x9a\x97J\xe0\xd9\x07+\x9e>\xaa\xf0\xf4\xd2<=c\xdfE`!\x19fbL\xcf\x9c\xf6\xf5\x838\x0d\x19\xf9\xa3o&\xaa\xdf\xf9\xe3\xb1\xb9\xfe\xd7]\x91~IL^\xc9\x93\x0d]H\xceyP(\xc3\x12\xb2?a\xc1\xd9\xe9\xe5\x13\xb8\xef\xfa\x8f~\x87\x96\n%\xe0\xa1\xd0\x0b:\x7f\xd2\xad`\xebWm\x9c\x8d\xd3\xcb\x9cp\xedkX\xc5zc\xeeE\xa0G0h#e\x1bn|\xb3\xf9\x88\xb5b\xa7F'{\xd5ju\xbc\xf7=*\xbe\xad\x9f7\xdbd4\xdc\xbdN\xf7\xf8\xd9M\xd0\x96\x9b\x8f\x8e\xbd\x04\x1b\xa8\x85\xff\xf5'd\x17\\Q\x7f\n\xb6\x8dwjFm\xfe\x93\x03o\x9d\x8d\x8e\xb9\x8c.dqt\xce\x12\\\xb1\x9b[\xb1\xdd\xdb]\xb1\xe5>k\xfb\xfc\xa3\x1a\xdf4\x07/\xae\x01\xfe\xf6\x8c\xa0\xd6\x15\x9d\xf5\xb8\x0e\x08|\x08\xad\x94b\x94\xf6\xfa\xfd\xbdi\xc4\x05\xb9\x88\x12f\x1f\x88\xaa\xe8\x8c\xda\xda\x8f\xadH\x87\x87\xb4\xd4\x132J\xdc\x15\xffJ\xc0\xc3P\xcf\x9fm:-c\xba\xf0\x9e\xce\x19\xce\x95\xbd^\x0cM\xd36\x1b\nMS4M\xafo\x9a.\xb0\xd4\x94\xb0&\xe1\x9a\xc6\x90i\xe5\x82J\xef*\xdexNBf\xcdL\x1e\x92\x849ypsF\x92Z\x92\xea\x0b\x07}kd\xd1fY\x16e\xaf\x1e\xa8\xcb\xceB0\xc0\x1b\xe9\x94\xc6F`\xb2\xb0\x11\x0dX\x9a\xa5bf\xa8sM\xf9~\xc0j$4H\xe4v\x12\xbe\xb6~\xad\x84o%\xd95;iUp7\x12\xbef\xdd?\x9e\xbf\x89\xfe\x8b=\xfb\xf9\xf8s\xf4\xe7?\xff%~~\xfb\xf6\xa7\xc3/\x7f\x7f\x19\xec\xfct\xbc7:\xdf9|\xfb)8\x9a\\n\xcd\x8f\xe9\xf8\xe2pr:\xdf:?\xde\xfb\xdb\x8f?N\xf6\x0fe\xfc\xf3\x7f\xd1g{\xa3\xad\xf4\xcd\xdf\xa6\xa3\x8f\x13\xf1n\x7f\xfc\xeb\x97\xf0\xc7\xb7\xc9\xbfN\x8e\x0e\xde\x9d\xee]\x1c\x8e\xff\xf1\x8f\x8b\xbf\x8bw\x0b=\x1f%,\xef\xdf\xca~\xba\xb9\x0d\x84j\x10\xd5\xe0w\xa8\x06\xef@\xb8\x0f)?\xeb\x0diLy\xc0d\xfe\x84u\xa7}>\"\xbc\x0fe\xdf7r\x0dy~\xcc\x1b\xca\xcf\xdae\x1a7\xbdEe_\xf4\xc9\x1eK\x8a8\xb1\xf0P\xa6&\x9a\x93\x0eo.\xe6\xdf.\xb6[\x9d\x88UE\xe0C\x116\xeb\xb3\x93\xe5\x06\x8f\x9dz\xa0\xb0G\xcc$K7\x9b\x10~>\x10\x0fI \".\x8dB\x17<\xe72%\x08\xe5\xe6\x1a\xeeo\x95\xcfn\xc3\x1a\xd16\xd1 a\x9f\x97\x97\xd43\xbe\x98K\xecp\xc7\xaf\xe8$y~9\x99\xa8\xddd\xfa\xf9\x9c\xf1\xe7;/\xf9Y|\x19\xa7_\xe6\xe7/\xbf\xbc\xfa\xf3\xf3\x9f\xc14\xa8I\xe4\xd2\xb2:\x7f\xfd,!?\xb3\xb9&\xcf>}.\xb2\xc7c\x8b\xb6^\xa7Q\x03\x16\xac*\xc6\x159\x8f(\xd9\x07\"\xc9\xafbN\xc7,!\xff\xef\xff\xf3\x7f\xff_\x1ds\xdd|\x8bc\xf6\xa6\xf2\xe6O\xe9\xb0s{\xa2~\xdb\xa2b\x8bK\x15\x83\x944\xfc3\x95j\xca\x96m\xe4\xed.\xdc\x0f0b\xad`\xfb\xbb\x95.\xda^\x99\xa61U\xfe\xfc\xb8;\xd3\xbd\xf2\xf6\x1d\xaf\x12\xce#U\xa45\x1e\x19Si\x1f\xd5*\xf8\x03\x01\xe5\\\x00\xa0\x0f/\xb8D\xf0\xa6\xde\x9f\xf6\x95b\x93\xfa\xe3\xd8k x<\x7fb\xb5\xf9C\xb5\xfa\xea\xadwi\xf7\x10\x87h\xaa\xf7\xf0@\x0bS~\xa7*\xd5O}3\xdeX\xf1\xd9\x03\xcek(1\xb4\xe3\xd1\x8eG;~\x89\x1d\xef26\xac\xba\xbf\x86\x01\x9fe\xd8\xb5\xb0\xd9OuY\x88k\xc6s\"F\xd6\xc8r\x89\xc3Z7\xd6XU\xcb-\xdf\x0f?\xdf\x9c\x98('\x0c>\x94}\xbbf\x80$_\xa2\xdeW\xa0-\xe20/\xe0e-\xb7W\xfd*\x15Sj_D\x9c\x94J4[\xa9)Ub\xba\xcc\xfa\\\x83\x87(\x91\x11\x1f\xc7\x0c\x98\xa9L\xce\x1d\xf1R6\x84\xa5\xfb\xadJ\xe4Z\xcb\n\xaf\x07W}\x9d\x96\xdb\xb0\xec:\x97\x9e\x0e\x82\x94\x82\xf2n\xdcK\xd5\xe4F}\x9c\xbbti\x96-\xfa^\xfdD(w \xa6\x9b\x8cU\xf9b%MT\xa3b\x1a\xea/S\x1aZ\xb6,\xb8\n\x04\xa4\xee\x83\x13q\xa0\xc9\xe3(\xb8\x8e2_\x18@_\xa4;\x97\x88\xd8\x82\x16d%-\xa8\x07\x1b\xf1q/d1\x1b\xc3\xa9l-j\xed\xdf{a\x98\\\xb9O\x10\x95h)w\xbd\xfa\xd5\xacF\x03\x0d\xec\x05\x81{jZ\x8c\xc8\x81\xabrw\x1b\xab\xa5\xa8\xa1qL\xbc\x190\xa0\n%\xa1Gp\xf6X\xa0\x99\xcb[\x14\xd5+3\xbb%\xb2\xe5\xe5:\x8bJ\xc9 MX\xfd'\x8b\xd9\xb5\xa1\xe7V6_\x1bS1\x9b\x8aL\x82\xaf\xac\xba\xf2\x04_\x0fmK\x87\xd3Hy\x0crk!1\x04\xa1\x10\x84Z}\xff\xdf\xca~{\x88 T\x0bQw\xfb\xa9\xb2\xadd\xe9\xdad\xac~EIeM\xef\x96Oj\x008\xab\xe7\x19\xa1\x9c\x98\x96\xb4\xf6\x8f\xa3\xcfi\xe4\xa2\x16p\xbe!\x9b\xc7\xce\xd5]\xeaWD\xdf\x16\xad&\xa2o\xcd\xe4~\x87\xe8[\xc5\xa4\xd2\xa6@n 9t\x8e\x0c\xb5!\x04\x8dmW\x1b\xfb\x99\xcd\xc9\x8cJy!\x92\x90D\x92\\$\xc2p\xd4j\xb6\xd9\xea\xaeL\xefk&c\xe0[\xe7[qm6j /\x0c\xb6\x89\xf0\x0f\xf0@\xbf)c\xa9\xcf\x05\xf1r\xeaWTP\xd7\xf7\xcf\xe0\xadx\x03\xbf\x9a\xb7\x8e}\xf6\x1b2u\xc1\x18\xf7}5\x08\xfa\xd0\xc2\x98\xee]\xb7\xb40\\\xda\xd9\x15\x0f\xdfG[G\x9e\xe4\x17\xd8\xad\xed\xb7\xb5\x94\x0d)\x1f\x9ak?\x06\x08xds\x81\xd0\x07\x9c\xae\x89TD\xe3Au\x0f-\xda_\xf9\xb7 a0\xb8\xea\xad\x88\xde\x11\x9ei\xc4\x07\xa5\xb7\x06\x8a'LV\xde>\xab\xef\x94\x05\x08\x07\xe5\xb5L\x81p\x07\xc2\x1d\x08w \xdcq\x0bd\xachM>H\xb8\xe3\x13\x88\xcc\"\xd8\xa1\x7fa!1\xb6\x9a\xd3\xa9\x88w\xb4\xe8\xf0\xae\x97\x13\xf1\x8efr\x11\xef0\xb6@\x9dQ\xf4\x10\x91\x8fZ\xef\x061\x90o\x05\x03iv\xda\xbeC\x18\x84q\x95D\xd71$o\xcf\xe1\xcb\xcb\xd4\xf8{\xd9\xca_C\x1e\xdd0^\x92\xb0\x16`H\xe9^I\x1f\x1fX[6Xcz\xf9\x16/u\x9es\x08\xf8\x85\x0d\x14\xfcJc\x8f\x82\x8fI\xf0k\xed\x16\xbf>\x11J\xb4#\xe1@\xaa5Ih'%\x1c\xb0SXO\xf2x\x14\xc5\x8a%d8'0\x02\x02\xab+\x9f\xdc\xa9@\xa8\xec\xcd\xff\x9e\xb0Q\xe7u\xe7\xbf\xf5\x021\x9d \xce\xb8\x92=SK\xf6N<\xfa;v\x93\xac\xcf\xdd\x0b\xf4e+\xc6\xff\xcb\xe9\xc5\xdf7\xda\x9d!\xb3\x98O\x81]\x10\xeaA\xa8\x07\xa1\x1e\x84z\x062 \x1c)7K\xcd\x8a\xb6s\x81\xa8P\xaa[\x98\x9f\xd5)j\n\xc1\x15v\xc0Vv\x97`\x91\xae\xc5\xc7\xd3\xd6E\x86\xf0\x84\xda\x9d\xc9\x0f\xc4\x8c\x16\x91\x8b\x98\x911*|\xab\xaa\x82\x15\xdd\x8a5\x9b\xc9\xc9o\xca\x94m\xe1\xf7\xe4\xe8H>\x05\xe6\xb1\x10\x1f\x0f\x89\xa4C\xe5\x95\xb8_\xdfg\xf1\x16\x13\x16\x9bz\x10\x9a.\x7f\x02|\x96\x0e\xef\xeb!\xbc?i\x143\xdfbv\xc6\x9a\xde\xca\x8a\xaa\xd4\x9f#/\xda\xae\xc4\x19\xe3\xf5\xaa%\xb7\xb7\x16\xa4\xd3\x14fy\xd9\xb2M\x05\x8f\xce\x1a\x8e:E!\xe3\xaa\xf69\xbe\xab\x8d\xce\x05\x1b\xcaH\xd5cL\x92\x05i\x12\xa9\xf9@\xf3\x1c\x0d\xeaA\xa6\x90)\x1a\xc5\xb5\n\xf8j\xa3\xa3y\xbe\x11\xa2\xaaHF(\x1dq\x95\xd0\x81\xba4\xefb\x14\xc6\xe4f\xd7\xab\xb8u\xb5\xd1\xc9\x81\xe7\xd6=\xe5U\xea\x01\xb2\x82-\xf5\xea\xc5\xd6\xe6\xd6\xf6\xe6\xd6\xf6\xe9\xd6\xd6k\xf8\xbf\x7f\x19\xee\x9cN#\xd9\xee\x05\xf3\x84\xd6\xcdq\x85\xac)\xbd\x1c\xacP4\x98P>fmk\xa4\xb3P\xdb\xfd\xeb\x0ex]ut\x07\x1a\x07\x83\x0cK\xc1\xbf\x15\x08_QN\xdf\x98\x06\xf5\x80\xe5\x87\xa3>QM\xa2\x9aD5\x89j\xb2\xf5\x80\xd7\xd4\x92\xb7\x10X+zd-\xe4\xb0\x8b\xe0\xe4t\x04\x94\x87\xfaO&\xbb\xe4\xcd\x9c\x84lD\xd3X\x91H\x11\xf3\x08\x82$\x82\xc7&=\xde\x8a\xe7\xbc\xd3\x96\x8f>Z\xd9P\x87S\xe5t@\x8a\x93)\xd9%\xef\xec\x93\x10,R\x13\x96\x90G\xa6\xe7G\x1b\xe4\x91aW\xf8[$\xee\x9f\x11\x1f?\xea\x16\x16\xce\x14j\xa5x\xdb<\"\xa8I\x9d\xe5\x0f \x16\xfaZ\xebI\xbf\xfa\x97\x04u7\xd3%\xaf \xae\xd0\xf7\xefw\xa9E\xd1 E\xed\x8a\xda\x15\xb5\xebMi\xd7\x1b\xd2\x8b\xeb\xf9\x8d\xad\xdc\xaf\xbff\x8e\x97V\xe4\xfe\x1d?6u\xd8^ \xf5\xa0\xb2\xb9PG\xa0\x8e@\x1d\xd1Bd~\xaf:b\x89\x07vk\xceVY\xa9\xac~\xb9\xd57\xa9`\x16\\tu?zeE\x9f\xa4E\x8eL\xeb\xec\xe1\x07~\x88\xfa\xe1l\x9dk\x1c\x98\xfe\xa67\xd1\xc2\xc3\xd3\xdf\xddv\xba\xbd\\\xfa\x9b<<}\xc3\xbbf&D\xdb[\x85\xddu\xa6\xee\x06\x0bm\x0c2\xcd\xeb\xfaG\xdb\x1e\x81\xf6\xee\x92a\x1a\x18#\x16B\xb2\xc1\x02\x9b\xd4\xa0w\x8bJD|\x14\x9b\x05\x8d\xa9TMG \xbcr\xb5_\xc1\x06\x81\x06r\xfbi\x900\xc9\xea\xcd\xcbY\xc2\xce\x07\x96\xb6F\xf9~m\xdf\xd5\x97{\xeb\xae\xbdYn\xd7\x10\x81\xa4(\xf9\x10\x96>_7HP5F\xe3\x92\x15\x9e\xd2\x9aw\xbc\x8a%\xa2\xfa\xf5\x1d\x0b-2\x0c\x14\\\xf7}\x99\xe5mM\xdb\"\xca^\x95\x1b\xe0*4(\xebk\xf0CL\xe5D3\x84\x8c\xc6\\\xd3\xa8\xbd\xf6UxB\xd7\x03W_\xcb\x81qt\xcex)\x85\xa9\xa22+\xb5*\xe53\x06\xb2\xc45]\x87\xdc\x06T?\xce\x01\xf5E\x8a\xf8\x06\xf1\xf5wK\xb0\xf5Ed\xec.\x83\xdaoi#\xad\xa8t\xa5\xa2\x89Ztb,\xe2!\xbb\x1c\x88\xd1\xa8I\xca\x19\x8ca\x90r\x15\xc5\xf5[\"\x92\x92\x85\x03\xb8\x15Z\xd6x\xc6\x05\xceo\xaf2\xcd\xd5\xc7\xe4\x8c\xcd!\xed]\xf0L\x7fy\x1cx\xbd\x9d\xb4\xd0\x0c\xd5\xe3\xee\xb4|\x1e\xe9\x13\x94&\x94\x98\xc9*\xd8cE\xc2\xe0!\xa5\xd2{\xba\xe9\x82\xda-6X\xad\x99[5=\x1a\xcd\xe42\x8b\xfb\x96\xf5\xed\x9a\xbf\xf7}\xf2\x07\xb3\xcb\xed\x96\xc4\xec\xf2&r\xbf\xc5\xec\xf2\xab\xf2\x9eo\xf7\xba(\x1e\xf8\xc0-\x89[\xf2v\xb6dk\xab\xc8\xcb\x1d\xca\xf4\xdc\xf5\x8c\xa0\xeb\xfb\x97\xb6%\xe2\xb5To\xb8,\x172k\x99\xc4M\xa2\x84^\x0e\xd8y\x14\xeau\x18\xd0\x06\xb7\xd2\xbcV\xed\x8c\xd7\x8b\x88\x87\xe2\xa2\xb6\xe04\xe2\x03[x\xc6\x92E%C\x91\x0ec\x06\x85\x07\xc6\xa3\x1c\x84i\xb2\x00u\x10\x17\\\xfb\x9b\xad\n\xc3d\x0fF\x89\xb1\x1e\x07^_\xed\x8a\x9b\xaej\xca\xae\xed\x97\x8e\xc5yOO\xbc\x90\xd4\x84\xda\xda\x18\xcc\xd9YpW\xb3\x95\xa1,kj9>\xfbQ\x9ck\x1a\xf5\x9e{\x00\x96%\x9e)\xc73\xe5\xb7j\"<\xc43\xe5*Rq\xbd\x94\xad\xcf\x17\xc8\xbf\xbb\xfd\xa89[b\x0dou\xb7\xb2\xff\x07\xeac(\x15\xad\x0b\x99.\xaa\xc4\x97\xf8\x10\xd5\xf2\x03\xbd\x95\x07\xe7L\xadT\x13L]\xf0\xfb\x9a\x83\xb2\xf0\x98\xef\x83\xb5\xc56\xdc^2\xb1\xb8\x85\xd73.\x11\xd6\xde}zF\xd4\xad,\xaf+\x1e\xbb\xc1\x7f\xbc\xc8{\x1b\xf7\xfd\xc7\xdc\xb9\xcc\xb3\nL\x13\xb9B\xf1\xdd\xcejdy\xe5\x06\xd0\xd1GG\x1f\x1d}S\xfca:\xfa\x1b\x9d\xcb\xcd\x9c\xfec\xbd\xaf\xc9\xbe\x91+\xcb\x14f\xb1\xea'\xc8\x06'SzY\x8a\xf5\xdf\xaf\xd3\xffp\x15\x8c\x91\x9c\xd7`^\x99\x0e\xe5\x8c.\xdb\x836\x93L\x93\xb7\xf4\xc4\xcb;z\xf9ka\xedd\x8bc2u^\x96\xa5\xb8 \xd50Gq\x9bT\x88vj\xcc\xd5\x12pN$\xe2\x12r\x98\xca\x15\xaa/\xaf\xb7\xc3-&\xac\xb0\x9f\x10\xc4\xb8\x1b\x86G\x10c\x11\xb9\x08b\\\xdf(\xfe\xea\xfe<\n\xe1\x88hk\x90cAD\xab\\\x80\x0c\xe7$\n\xdb\x02\x1a.s2\xa3\xabu\xe6\xd6\xce\xf24\xace\x82n-_\x1c}n\xf4\xb9\x97N\xdc-i\x88\x15|\xee\xb6\xa2%\noZ\xb0\xf4|s\xb6\xb5\x84\xc9*\xd5\xcb\x97\x11\xdc\xa5\xc5\xb2b\xd6\xec\x9f-\x8b\x98\x7f_\xe2\xa6,\x11\x9a\x13\x96\xdb\xb2\xc7\xd1\xc1\x8d\xb3\x87\xdd\\r%\xf6\xc8*\xd5\xb3\x87\xfb\xac\x95Oaq\xbfQ\xaeXQ\x1c=P\x83wc)\x1b\xe71\x87\x9a\xf6n\xdb5^m\xa7\xac#H\xdb\xbd0q`&\x81\x98\x83b\xe6\xcd\xffFs\xac.\xc1(\\\xdc@\xab=\xd2\x10\x84\x01K\xefV\xf7\x0f\x02\xa1\x08\x84\xe6\xfc\x82@\xe8\x1d\x00\xa1\xf7*u\x1f0)5(\x1e\xfa$)\xd7\x1b\x86&Z\xc9\x11N\xb9\x90,\x10<\x94\xcd\xbb\xe0n\xf9o\x1a\xf1\x07\x9ckX\x9d\xd0\xc5\x15_>\x7f\xb6\xd5\x96\x1f\xff\xa7P\x13\x96\x0c\xb4\x80\xf8_Z\xcai\xdf\xd2^\xf8m\x8f\x03Z\xb8\x86\x80\x0cY\xaa/j\x18\xe9&\xd8\x1bD\xa7\x1e\xe7\x9a\xfcmD\xef*\xdc]S\xe3n8\xb5\xe4\x1aL\x12&'\"^\xb2\xe4[\xdd\xdd\x82\xe8j#\xb2\x9e>}\xe6\xd5\xc8\x87>\x981N\xe3\xbaGSJ\"o\xfb~X\xac\xb227\xc1`&\x9fw]\xf62\xb5W\xe2\xafJ\x15#<\x0b\xe7\xe2\x1f\x80\xdc\xac\x98\xb09u\x0fW\x08U\x97c-\x16 #=\xaea\nS\xb3\xe0\xd9\xe8\x84]\xd0$\x84 \xaa\xbb&\xe2\x8e\xdf\x88~q\xf1\xea\xb9\n\xcf\xa7\xf4\x0b=\x0b/\xce.v\xd2\xdd\x17;;/X\x98\xa61\xdd \xe6\xbb/v\xe2\xd12\xf3\xaf\xc5&p\xf7\xf4A\xa6>\xb1s@\xec\xab\x08\xf6\xe5\x88\xe2\xeb,u\x96\xb9y1 \x9d\xba\xeb\xbf\xf5?][\x8c&\x9c\x85\xda\x17\xf6\xdf\xa4\x18\xce\xf3\xf7\xc3Bof\xdc~8\xf0V\xed6v\xc4b#\xc0\xe3\x85\xf5\xac\x88\xecD\xea\x83x\x86\xcc\x0cg\xfd\xd1\xdc\x92M\x04\xfb\x13\x18\xef!\x92\xb6\xd4\xf8\xbf\x81\x17\xed\xdb\x05\x13\x7f\x8b\xd4$L\xe8E\xb6\xb5\xb2\x9e\x1fIoS\xb9\x1dW\xe1\xac\xd5\xeb7\xef\xc2B\xd0\xef\xbf'l\xd4y\xdd\xf9o\xbd@Lg\x823\xaed//\x121\xd9s]\x9fx\x15\x11\x99\xbf\x1f\x8eFd\xbe\x99\xdc\xef\x10\x99\xaf\x15_\xb7\x0d\xc9\xafh\x8c\xad\xf7\x10\xeb\xad\x1bg\xd7\x87\xad7\xbe\x9f\xb7\xc9\xdc\x89\xe6\x8a\xa2i<\xfb\\4\x0b\xf3\n\xc6h\xbcGk\xf1\xa1H\xf2\xb5\xb6\xf6j\x9buU\xcb\xa4\xc5\xf2V\x0b\xd7\x1b -^\x17F\xbb\x04\xed\x12\xb4K\xbe\x13\xbb\xc4d\x12gB\xe2\xae\xb2\x07\xda\x9a*\x17V\x94\xf8\x9e\xfe\x03\xb0Q\xee\x1a@rp\x8f\x9b\x0e\x1a{\x10F=`\xe4\xe1A\x8f\x16\xd4\xef\x92\xd3I$\xf5j\xeaJ\x8e)\"N.&Q0\x81\x1fS\xc9\x12r\x11\xc51IX\xc0\xa2s\xe6\x91DF)_\xe2\xd4\xde\x8a\xd0\x97\xd7\x84yZ\xe7\xe6\xad\xb1\xa5V\xdf\x11\xed\xec\x81\x136\x8bi\xc0Ve\x08\xbfZK\xa6\xb0I\x95\x9c]\x10\xc1Y\xb7\xbdm\xd0z\x19g\x98\x98\x8c\x89\xc9\x98\x98\xdc.1\xb9N \xde\x83\x1c\xbcB\x1b\xfe>8\x12m\xf8E\xe4~\xd76\xbcH2\xe5}o8c~=\xeczx\xe27 \xcbe\xf7\xae\x12\x7f\xae\xfc\xf4\xe5\x06|\x0e\x8c\xb4\x86*\x10\xff]\x0d\xb8\xb9Ka-\xec\x1a\xdd\x82\x96Zq\xfd`\xcb\xc5#xg|p\xedh\xf3-\x89u\x10N\xde+\xf7\x0f\x8e\xc06\xa2(\xe3\xc2\xf5}\x9f\x15\x04JO\xa4J*j\xde\x87_)\xa3\xe4\x9b\x142oYIVx\xd3\x939w\x0fDf<\x18\x96\xbeM\xf6D\x96\xdc\xcf\xc4\x19\x9c\xc7\xd1Rx\xb3\x9a\x03\xd1\xc8\x94M\x1a1h\xddl\xd6\xdab\xd0\xe2[\xe7\xf1\xdb\x16\xda\xed\x00\xab,&\xa5\xd70\xeb\xf5\x91\\\x9eKS\xaeP^q\xcd\x059SHL\xaeA\x07x9y\xe8\x00\x7f#\x0ep\xad\x00\xbbS\xa7W\xcb\x9e\x94Gj>\x98 \x01 \x96-\x95#T\"\xbaR\xfd\xb9\x89\xefOU]s%|C\xab\xd5*T\xac\xe6{Y\x87\x9a\xf8\xc7\x0c\x8e\xbb\xb1dPI(\xce\xa5\xddP\xf0T\xb6*\x99s\xa8\xa2\x975%\xd6\x9e}-i\xd6z\xb4\xfe\x9d\xa9H\xa6\"LcV?\xed\xba\xcc\xedO\xb7\x1e\xc2\xa0\x81\xa7\xe1e\xe1Q\x0c\x0d\x0d\x00\x88\xcf\xdfe[PrZ;\xc9\x85\x12uG1\xe1P\x11\x8d\x01\xa9`\x0dKn\xde\xc5\x9f\xb1d0gt\xc1%\xe9\xeb/eFd\xcb\x95\xdc\xb7\xe7\x80m}\x92\xd57\x97\x90\xdc\xc1zVg\xe0:\xe3\xa7\x9c\xa74\xde\x9c%\xe2<\x02{r\xcdy0\xed\x90\xbc\x9d\xbf\xd8|\\P9\xed\x05\"\x04fw\x06~\xcd\x93\x83\xba\x1c\x91J$\xda3\x0b\x19\x992)\xe9\xd8\x1f\xe7oTN\xaf\x13\x1e^\xac\x8e0\\\x8c\xe1\xe2\x07b\xc2<\xc8p1\x95\xd3\xc1p\xae\xd8\x92\xd5X\xd5\xf0\xc7\x00\xf0\xfd\xf0\x18\xfa\xbf\x8b\xc8\xfd\x8e\xfc\xdf74t\xa7|W\xf7a3\xfc6W\xe8\xbfDR\x19\x0d\x1e\xf1\x91\xa8U\xdfw\xb9\xd9',\x1aOj\xb6\x84\x91:\xad\x1e\x01[\xa5\x89\x157wA\xcd\xda\x95\xd7:8a\xb4\xf6\xce\xe0\xab\x8dNH\x15\x1dL\xa8\x9c\xd4\xef\\\x91&u,\xa1m\xfe4\x8a\xc3\xe6\x07\x91r6\xc9M\xb6\xdeW\xfd\xbfG\x07&\xea^\xb1\xdd\x8e\xb8T\x94\xab(3\xdf\xf4\x9a%4P\x0b\x8c\xb7\xe51\x0c\xd3e\xc5*\x02\x96:: s\x91\x92\x0b\xca\x95\xb6\x83\xa2\x9c\x80\x9a\xc0E\x85E\xdc\x04\xe3e\xa8hD\xa2\x11y\x0fFd\xc4#5\x08D\xc4\x1f\xe2t\x01qE\xdb0+^\x9c\x1d-\x15\x88\xc9\xa0Q,$5\x8d~\xbdB\xdb\xf6\xfe\xd6\x12m\xdbE\xe4\xa2m\xbb\xb6m\xfb#\xf3L[\"F6\x8f\x00\x0c\x93\xdb\xb6u\xe0>\x9e\xd5\xad\x9c\xbb\x14>\xab\x18\xca\x0dM\xe8\x917[\xb7\xcdv\xf1\x12\xfb\xb5\xe7,S#\xce\xea\xd6\x15\x96\x94\x0eE\xaa\xe0\xd2\x8d\xac\x02 \xd9,\x16s\x16\x1a\xb5Fq\xbdor\xbdWibE\xe5\xa2'us\x0d\x07+\xa6C\x16\xd7~i\xccAm\xf2\xa0\x0c\x0bi.4\x7f\xd9\x8c\xab\x06w\xea\xf0\x92\x05\xe9\x0d\xbbR\x85~k\xf8\xcev\xe2\xdc\x04\x9f\x01\x99!\xa7\x0d\x0bf\xd3\x80\x8e\x15:V\xe8X\xdd\xbdc\xf5P}*-C\x9a|*\xf4\x96\x1e\xc6*\xa1\xb7\xb4\x88\\\xf4\x96\xdayK-\xac\x1e0\xc97\x9dq_k\x84C\xfc?\xcc\x8c\x1f(\\:\xe0t\xc7VP,\xc4Y:[\xc9\x08r7E9\x0b\xde\x92\x01\xff\x04a\xb8\x04O27\xaf\x9a\x82\xcd\xc9\xf8_\xaf\x96\xa5\xd6\xdf\xad,]\xc5\x92/\x9b\xcd-x\x07&\xa5\xf7\x15\xfes\xb5\x8c\x7f\xfc\xf3m\xa03M^\x89\x16 \x7f%\x06*R\xe1\xd8\xa9\xd8\xf7\x84]fg\xddB\xaa(\x18\x15j\xc2\xda\xfb\x8f\xcb\xf8\x16Z\x8fj`P\xf7\xc1\x01!\x86o\x81\x88\xc7\xda6!\x9a6\x99\xcef\"Q,|R\xa0\xc5\x1aG\x7fQ\xfemh\xa2\xa8r\xf2\xfa\x0dZ\xa2\xd6e\xf4A\x8b\x85\xa2\xd2a\x060\xdfPr=\xd6F@b\xed&J\xeb\xd8p;\xf6{\xa1\x08\xdc\x90\xed\xd4d\xc2\xc6Z\xd2I\xc6e*7#\xb1\xc9.\x83\xc9\xe6,\x1dZ\xfe\xb1\xcb\xed\x16\xf3\x84\x8d\xf5Z\x96V_\xfb\x81d\x96\x0e\xe3(\xb0r\xad\xd8kC!\x01g\xbf\"\xc1\x8fB#\xb8\xea\xa9Xg\xe1\xfe\xa3\xf7\x1f\xab\xac\xd5\xcd-CSl]\x1c^\x06\x93\xe3lZ\x1buO\x8bU3\xb9\xcf\xf6LO\x07\xae\x9b\xf6\x8e\xf5\xe8\x1f\xeaN\xf6\xac\x02\x7f \xdc\x81p\x07\xc2\x1d\xad\xe0\x0e\xb7o%\x0b\xd2$R\xf3\x8fz\x13Y\x0d\\\x98\xa8\x89R3g$\x03\xd5TF\x01\xf8\xf1f\xdfI\xb3C5\xf3ti\xaa&\xdd\xf3\xed!St\xbb{\xac\xf5f\x8b)\x9f\xd2\xcb\x81f\xf2A0\xa1\xda\x00\xb4\xe7\x16\xcasj\x8c\xd1\xce\xebN\x1aq\xf5\xfc\x99^\x00u9\x90\xd1x\x10G\xd3\xa8v\x19\x9a\xaa|a\x83@Hx\x8e\x06\xb21[\xd6\xd5}\x9d\xb3$\x1a\xcdMu\x16\xee\xec\xeen\xbfZ\xb3\xb6\xcc\\\xe06\xf5+O\x8b\x9a\xd9%!\x1bE\x9c\x99+\xe2rC%\xb3_\xf5\x82\xd8c\x1d]\x10\x055\xeb\x04\x87y\xf7\xcc~?\xb1\nk\xf9\xaaY\x01\xb1\xbc\xa0\xfe:H\x93\x9a`@yH{\xe4\xd3\xc9/\xbd\x84\x99\xf4++\x1a'T\x91\x94G\x9fS\x16\xcfI\x142\xae\xa2Qd\x07\xac\x9bsv\xb3dID\xe3\xe8\x0b\x0b\xfb|\x96\x08%\x02\x11\x93a:\x1a\xb1\xc4\xa1\xff\xf6B=\xd3;\x99\xa6\x90b\xc7\x95V\xefT\x91\x98Q\xa9\xfa\\pF\xfa\x9d^\xbfC2v4o\x9b\xc4T*\"\xd9X\x0b\"\xd7\xe9\xa7\x93_\x1eIx\xd6\xc34\x97\xb0Y\xc2$\xe3\xaa\xcf\xf5\xe7Q\x1a\xc7s\xf29\xa5\xb1\xa694#\xb2U\x81\xf6\xc7T\x92\x88\xf7\xf9\x1f\xba\x89\xdeX\x88q\xcc\xba@\xfd0\x1du\x0fRce\xfc\xf1\xc4P\x00\xd5\xe5D\xa4q\xa87\xbb&\x9b\x04\x94\x0b\x1e\x054\x06\xd7\xb7\xcf\x1f\xb3\xee\xb8\xbb\xa1\x07\x03NE\xbf\xd3\xedw\xb2GI\x82\x80\xcd\xb4\x13\xd1\xed\xf3>?\xe2d\xa6\xc7\x17\x05l\x83(\xa6\x99)\x95\xa9y\x9d&aZQG\xb1\xeeD \xa0w\x18q\x9a\xcc\xcdU\xfa\xf3\x19,\x80y{n\xde\xe7\xecr\xc6\x02E\"\xb0pS \xa4\x99\xa0.W\xec\x12fk\x8f\xcf\xbb\xe4'q\xc1\xceY\xb2\x01\xec\xf9\xe9\xe4\x17i\xaf2\xd4U\xd4\x84\xf5\xb9\x112\xe4\x0f-s\xfe\xd80\xff\x95\x7flh\x85\xc9\x051_7\x88^\xa2\x80rb\x1e\x16\x04\x8a%S$\x9di\xc18\x9f\xe9v\x0c\xae\x02$N\xe9L\x9a\xd9\x86\x1e\x95p\xec`\xf6N\xa4\xe08\x08H\xd68\x16\x17\xf2\xb5\x9e\x9c\xff G\xa3\xbcKx@/\x11\xe7Q\xc8\xc2\x8c*\xfd#\x952\x9d\xb2\xb0\xab+\xecq\xf2\xd3\xe9\xe91\xf9\xf1\xf0\x94\x08\xee\xd8\xc3\xf0\xc5\x1c\xde\xfa\xa5\xe4\xdf\xe5%>\x9d\xcf\xd8\xef\xff\xfe\xbd\xcf\x89}%8\xe2n\xa6\x8d\x08\x80\xb1\xcf\x12\x11\xa6\x01\x83\xb7\xf8\x92D$\xa6\xbf\xdc\x122\x8f\xecPM>\x0b\xf5\x08\x03\x1ah\x8e\x05\xa7\xd9>\xd9'\x89\xb67BK\x9a\xee\xf0\xd3\xc9/\xd0\xfa\x84\x9a{#\xa7\xde\xba\x87f\xe1\xa9#F\xff}.\xa2\x90P>\xd7uM\xd3\xc0\x96 \x1b\x89\x84m\xb8\x92\xba\x01\xaa\xa2a\x14GjN8c!\xcc\xf9\x90\x11\xd8\x1a\xc9\xb9\xde\xa0D\x93aNo\xc1W\xe0\xa8.y\xfcI2r\xce\x12\x19 \xae\x07\xa2\x17M3\xbdY5\xca\xe9\x18\x08\x1f&\x8c\x9ei\xee\xb6-t\x9f\xe8%{/\x14{M\x94\xde\xe1#\xab\xfb(\xd0`\xb9\xdf>\x91\x18\xcf =\xa7QL\x87q\xc6\xa7b4\x8a\x82\x88\xc6Vr\x0c\xd3\x11I\x98\x96\x07l\x03\xce\xb3G\xca5\x02\n\x16\x84k\xc6PC6\x8e8\xd7\xe4hM\xdb\xe7\xfaK\xd7\xac3\x9dE\xb2\x1b\x88)\xec7\xab` \xbc\x16\xa4Y\x93\x97\xf9\x9c<\xb6R\xdb<\xb8hx\xef \x99j#\x9e\x0cY\x9fC\xef\xa0\xcf#m.hId\xe0\x199cA4\x8a\x02\"\xd9\x94r\x15\x05\xb2\xbb\x10X\xcd\xd4\x0bh\xbf\xb2\x1c~\xa7Yv\xc8\xb2G\x8cr\xd1J\xca\x92\xd5\n3:\x14\xe7\xccQaW\xae[\xa3\xb4\xfe\xd8\xe3\xf3?\x9c\xd0\x85\xb7%i2\x8cT\xa2\x19gA/n\xc3\xd2X\xd8i&\xb4\xcf\xf5\xee\x82\x1dn\xfa\x18.T\n\x99\x0e\xd0Kq\xecV9\x8e\x86\xd0\xb7\xdd\xdc\xd2\x01-\x9a\xdff48\xeb\xa5\\\xffGK/\xb3?\xa5c\x19#m\xc5\x88\xa4\xcap\xba\xe39\xb0\xeei\x18F\x86\x013\xcbKS\xa0&\xc2\xdc\x85\xa1[\xd0m\xc2\x1e \xf1\xc4\xfe\xde\xedv\xcd\x1f\xd1\x88<\xd6\x85>AW\xa7\xe2\xf1\xff\xd0\xa5\x9e\x90\xaf\xe6\xb3W\xf2\xca\xa7rg \x95\x7f\xa7\xe7\xb4\x0d\x99\xe4\x07\xd0\x0b\xba\x81\x85\xe4E\xf2\xf1[!\xbaAL\xa5\xf4\xa93\xcd\xea\x12\x86\n\xaf\xd4\x7fzd\x13G\xf7\xd3%t\x1f\xcf\xd5D\xf0\x8cr\xd3\xfc[!\x1ew\xbbZ\xc6\xd8)5T?~R\x9cc\x18@\x95~\xfd\xf9\xc8\x90\x7fp\xf8q\xff\xe4\xe8\xf8\xf4\xc3\xc9\x93\xd7n\x04\xf9\xe4{\xf5m\x0b\x1e\xe1\xcf\x96\x10\xfe\xa3p4\x03\xd1\xaf\x7f \xffc6\xec\xbe\x15\xe2k\xb7\xdb\xbd\xb2_(\x9foh\xfd\xa1?\xcf\x8c\xc4}G\x139\xa1\xb1\x1e\x8e\xd7}F\x7f\xb91\xd7R4*\xb5\xf3\x89O\xf3\x96\xa0\x1fXN(\xf5\xff\xfb\x81\xf0(\xce\x17\xcdk\x1eV\xe7\x14,\xd7\xe0,\xdb\x1fN\xd3\xdag\xa4\x8b;\x15.;\x867\xb5F4\x8dA \xf7\xf9\xa3\x1a\x99\xdb\xd3\xc6W\x17>h\x15\xf2Hk\xf8L\xb7\xb2\xc1ua\xec\x1c\xeb\xdb\x91~g$DwH\x13\xa0\xee\xb27\xef~\xe9w\xccx\x8cy`L\x17h\xbc\xdf\x81\xaf\xc0\x04}\xfe\xf7\x8f\x1f\xde\xf7\xf9\x0f?\xfc\xf0\x83\x99-\xfd\xef\xdc\xd44\x1a@hV#F\xbe\x1aK\"\x95V &l\x9c\xc64\xe9\xf3j\x15s\xf1p.%7\x08\x9b\x0eY\x18\xe6\xf2r\xc3\x8a[\xde\xe7\x9eP\x1b\x01\xc1\x7f\xfcoM\xf2\x1f\xd6\x88\xcb\xa4\xba?\x05]\xc7\xc2\xaf\x1d\x83\xea\xc9\xd6\\\x9b[B\xa3(fv\xbb:\x96>f\x89\x14<\xe7\x19k\xb2\x8f\xa2D\xaa\x01\xcc\xd0\x0fd\xfb?K_\xf5:\xb8\x8f;\x85\xfdOH\xdeT\xbf\x03T\xf7;\xafI\xbfS\xc77E\xc2\xba\x86\x94~g#o\x00\xc8xO\xa7\xd0\xc8\xff4\xbd\xff/\xef\xbb&\xa4\xfc\xd9#\xc7\xbe\xce\\\x9ei3g\x91$\x17,\x8e7\xcf\xb8\xb80\x97\xe9L\xa8\xd4v~*\x95\x98\x12\xc3\n\xc5\x85\xdc0Z\xb0\xb4\xbaf\xa3x\xdd\xe8\xe5\xe3cB\xcd\xe2\xf5\xf9\x1f\xc0&n\xf5&\"\x0e\xcd\xd2y=\x81\x8baW\x9dX?\xc0.z\x9fC3\xd9\xfa\x92\xc7\x9a\xd7\xddP*v\xaese~\xff\xf7\xefO^_gM\x8a\xcd\x15\x96\x05\xc6c\xda\xd8\xee\xeel\xef\xc8~\xc7\xcez\x8d%R\xe7\xf4\xba\xab\xd6\x1djkV\xc4\xb9\xd2P\xa3g\xab\x90\x93\xe3}+\xb0Z\xf9\xd5re\xc7\xfa\x1a\x18\x96B\x8f\x1b=n\xf4\xb8\xd1\xe3F\x8f\x1b=n\xf4\xb8\xd1\xe3F\x8f\x1b=n\xf37z\xdc\xe8q\xa3\xc7\x8d\x1e\xf7\nk\xb2\xa6\xc7\xbd\xd1Q\x91\x82\x14\x08\xe7\xd0\x82\xc9\x0c\xebp\x19Is+\x9bsu\xaf6:3:\x8e\xb8IO\xae\xa4\x11\xe5\xdfJ\xf1\xee\xecg+\x07\x9c\xe7\x0eWL/\xf4\x919\xbbT\x83\xda\x9c\xa6\xaa\xad\xe6\x06\xe2\xea8\x9c@\xffi\x0dm*\xa5\xf1\x03\x8e\xe9\x98\xd9\xec\xa5\xae\xf9\xde\xe7\x9f\xb3\xdb\xb2u\x0b\x9alF\xa6B*\xc2\xc0\n\x06\x13\xb9S\xf3$|c6@N\x12T\x01z\xe0\x0f\x93\xad\xa3\xe5\x8csA<\xcb{T \xce\xa4\xf7@\xb5>\xbf\xa0R;t\x1b$R\xd2\xb9E\x92\xa4\xdc\xccvh,\xe8\x8bH2\x9b\xcc\xd2\x8c\xa5\xc85\xc0\x14\xe9\xa3)`\xb8G<`\xaf\x89\x01U6exF\xb6\xba\xcf\x9e.\xc4YL:D{\x94e\x96%\xa7\x94YmQZ\x85\x15\xe0.\xa1b\x19\x93afK\x8b\xfaM\x0cU\\\xd16\xecdSb\xea\xa19\xed\x8bwa'z J\xd9vX\xce0-eEq VXP\xbb\xa7\x12\xa6\xd2\x84\x9b\x14-\xd3\xb9\x15W\x99d\x01q2\x8e\xb8\x15\x1aZH.\x96\x1b]\xf2A[O\x82\x83\x07&F#\xc9\x94\xf6\x87\xce\xd8\xbc\xcfs\xe4J2\x05\x93a\n\xb4Y\x97\xf2Pl\xd30\x1a\x9eNY\x12\x05\xae;P\x86\x01\xe5Y\x06\xda\xc5\x84qb\xc7\x9e\xf2L\x04u\xfb\xfc\x08Z\x88\x99\x94\xf9 \x8cg\x9eJ=\xd83\xb6hD\x16\x8a\xebsoD\xad\xb7Hy@P\xd1\xb1U\x93\xf84\xe2\xdd_7\xcb\x84\xda\x12\x9e\x19\xef\xf6hDb6R\x16C\x88\x941\x04\x9c\xb9\x0c\x98\x8eY~\xd3\x98\x1e\xcepN\x18\x0d&\x84\xcef\x96G3a\xdc\xa9\xcb\x0f,\xe7\x95g\xa55\xfd\xb0\x04\x82\xa8$e\x84\xc0}Na\x14P\xc52\xbc\xd0\xd1\xab\x0bZ\x96\x88x\x10\xa7!\xebsJ\x0c\x9e\xed0\xd2\xd2<\x00\xe2\xec)\x11\xbd\xe1\x8aj\xf7\xd3\x91\xec\xf6y\x89$\xb0\xe8\xf5Ve\x81r\xfc\x903\x90\xe6\x91.1\xac\x10\x8d9\x1c6q,\xd3\xe7fD]\x93\xa4|\xce\x12Y\x9f2Y\x9c\x12[\xb2<\x1d\x91\xa7\x08\x13\xd6\xb0\x9a\xba%f\x9ef\x11I\xc8\x92\x85*\xa8\"\xab\x9c\x01\xf6QL\x9d0\xf1\x9bU\xedLC\x93\x0c\x98\xed\xb6>\xcf\xfb\xd0\xb6\xe4\xeb62\xb2\xadVE\xabj]\xab\xaa\x9a\xde\x99\xcf\xfb\xc2\xb5\xb6E\xb2\xc5\xbe\x98\xb0\xc4b\xfb\x81H\xccw\xfb\xecP\x81-\xc0\xcb\x01i\xed\xd3\x0f\x8eB\x91\xa5m\x07>O'l\xc6\x00`{C\x93lNj\xb9\xdaV\x86\xc5\xc9\x18\x1a\xae\xd6.\xba\x17{\xbc\xe59S\x8cka\\\x0b\xe3Z\x18\xd7\xc2\xb8\x16\xc6\xb50\xae\x85q-\x8ck\xd9\x11`\\\x0b\xe3Z\x18\xd7\xc2\xb8\x16\xc6\xb5Z\xae\xc9\xdaq\xadq2\x0b\xbac\xaa\xd8\x05\x9dw\x93\x94\xabh\xca\xba\xe6\n\x9f\xa5.,+\x15\xb3v\x14@0\xa1o`E\\\xb11K|\x0b+\xe2\xea)\x9cp\xb6sS\xdbL\xc8\x14\x8dbL\x1eE'\x1b\x9dlt\xb2\xd1\xc9F'\x1b\x9dlt\xb2\xd1\xc9F'\x1b\x9dlt\xb2\xd1\xc9F'\xfb\xaf\xe0d\xdb\xbb\xe2\xb2\\\xbf/Y>\xc2\x8f ms\xe9\x90\xae$\x92\xe8K\x96P\xba\xb8\xb8B\xa7\x17\x9d^tz\xd1\xe9E\xa7\x17\x9d^tz\xd1\xe9E\xa7\x17\x9d^\xf37:\xbd\xe8\xf4\xa2\xd3\x8bN\xef\nk\xb2\xa6\xd3\xbb\xd1a\x97\xb3()\xbb\xacU\x83(\xa4\x8am\xaahZ\x977\x0e\xfe1\x19G\xe7L\x92\x19K\xa6\x91\x94\xa0\xf0\xf3\xa7\xe8\x8c\xdbg\x05\x98\x15hf\x03\xe5\xdd\x13\x88iw\x16:\xe1{\xab\xb9\xd8c]\xa7\xf6\xe1\xf4\x0d\xfb\xad>\xa0\x8d\x9e\x1d3qa\x16r{\x8bd\xdfA\\\n\xce\xc07\xef\xf3\x84FV\xdbk\x0fy`\xa8\x83\xe7\xb6\xcd\xb3\xd1\xb0\xbf\xb5 \xe0\x0d!\x9b\xc2G\xd2\x0c\xa7\xcf\xb7\xed\xb8~ \xdb\xff'\xeb*o\xd1B3V\x9d\xfa]i'B\xcf@\x0el\x04 \xa3J\xfb_Y7\xba\xd0#]\xe8\x91\xf52\xb3\x1e~ \xcf\xb5\x02H\xe5k\xb2Mt M\xc0\xd6\xffy\xee\xcf*\x8d#*Y\x1b\xc8/O6s[\xc3\xd6-\xca#\xbb\xb4\xee\x9bcHoyk\xc4g>\x18o\x81\xa8n+\x0dT\xd9\x93\xa3\xa6\xb1>\x87\xd6\x9c\x80J\xedT\xd8\xc5\x8a\x02\xa2\xc4\x19\xe3\x8d\x9c\xfe\x8e)\x1aRE\xdb0\xbaGj\xcdt\x00\x19\x03\xdd\x7f\x9bi\xc4\xdd\x84\xbb\xe9\xaf\xbd\x9b\x1c\xc1\x1e\xdf\x979\xd2\x91\xef\xaf\x9e\xa6\xddvF\x02\x11q\xdd\x94^\x9c\xe5L\xafK\x95{\x80\xdf\xcc\xb2>\xceqo\xfd%\x1f\xbd\xb3\xae\xdc\xfam\x99E\n#9\x8bi\xad]R\xdal\xa6 \x89x\x18\x05TY\x9fI\xa6\xe31\x93\xda\xd6\xb2\x0c\xac\xe73#\xa1\xcfm-\x13\x15\x0cbm|\x18\xc8M\xef\xcf\xe5\x9d\xd6\x064\x9f\xfa6\x92\xde\xe6\xceHS\x0e\xfbw\xa1\x03\xbdJ\xe41\x1b\xbf&\xfb\xd0\x02\xd9\xd3\xcc\xa9\xbb\x97\xf3\xe9P\xb4\x08\xb5\x98r\xce\xbc0\x0d\xda\xdf\\\x10@N\xb4\x07\x02qT\x87\xd4B\x97{\xa7\x1f\xde=\xb1\xa1\x94@\xfb\x85vI$x\xc5\xa6A;=\x06\xf7\xac\x1fk\x95\xa3\x9d\xb0n\xc1\xd0}N[\xc9\xffc\x9a\xd06\x82Y2\x1e\x0e\x18\xd7\x06^\xd8b_\xaf&\xde\xb5 \xae4=\x14\"f\x94\xd7\x05\xbb\x19\x0f\x0fMy\x13\xbb\xd0\xfb\x88dr\x94\x12\x9fX\"\x15U\xa9$\x8f/&\x0cpejKF\xb2\xcfuA]\xea\x89\x83b\x012\x194\x0c\xb6\x99\"3\x8b\x05v\x9c\xe9\x9f\x98bI.\xae\xf4\xc4\x93\xa9\x08\xd3\x985\xae\x07X\xac{q\xfc\x86\xc6\x94\x07l\x85\xa0\xe5\xd0\xd6\xb8\x8d\xd5\xa1Sm\xc4\xd7|\xaa\xcc\xc4\xbeY\n\xeb;\xd9}cuPA\xb4j\xc7\x9drbZ\x86m\xf0\xfe\xc3\xe9\xe1k\x08\xe3\x99\x1f-\x86\x12\x81\x0fv\xc4\x95\xf5\xc33`\xbf\xe0\x8c\x1b\x83\xbe\xcfe4\xe6T\xa5 \xd3\xc2\xf8s\x1a%\x06%\x1b\x8b\xb1\x00\xdf\xb8\xc6\xadt\x13\xe7\xf6z\xf6o12\xc1<\x88\xd3E\\\xae\xe3>\x1aV\xc8~\xb6\xf8\x17\xba\x8f\xf7\xe6>\xd6\xec\xadV>d^M;\x90\x0e\x0c]\xbc\x8fm\x8d\x95\xf7\xf0\xf2\x82\xdf\xc9V\xad_\xc2\xd2\xb4\xb6Y>[\xa5\x8d\xef\x0f\x15\xc0zr\xea\xb6\xfd\xfaM\xd1\x9bBo\n\xbd)\xf4\xa6\xd0\x9b\xfa\xc6\xbd\xa9z\xcdT\xab6\xda\xe8\xa7B\xc5\xf6\x06\x06T\x93\xeb\xeb\xa96B\x05\x15\x18*0T`\xa8\xc0P\x81}S\n\xac\xdc\x98S y\xa6\x9f\xa6\xcb\xac\x14\x89\xb8\x11~.\x04\xee`\x91\x84\x8d#\xa9X\x02\x98\xc2\x19C\x88\xe4\x9b\x80H\xea\xad\x8a\xd6f\x8c\\\xdd\x8e1\xf8i{\xfbe\x86\xa8\xf5=\xa1\xd6\xf5\x1cS\\\xbfB\x8bUv\x81=\xa4\xf5\xf7e\x0f\xda\xce\xfb\\\xcc$\x1fgv\xdc\x88\x8d\xdf\x1a\xe0\xb6\x0c\x1b\x97n\x0d\x10%\xff\xa6U@\xe3^+,\xd9\xf8\xe4x?\xdf\xe0\xc6\xf0H\x93\xe2.\xefs\xcd\xc9\x01\x10\xf8H\xd60\xd0\x92M\x9f\xcef\xf1\xfc\xc3\xa8\xfd^\xaf\xec\xc7\xef{G7\xacoiZ\xdb(wW\xa75\x88~\xaa\xd9\xd1\xd4j\xbf|\x12\xca\xa3\xa0^*\xa8\x9d\xd00\x13\x96 h\xf3/\xeb\xf8\x80@\xbeyy\xbc\xc0KAI}\x9b\x92\xdau\xdf\xb4\xbd\xdalc\xaf\x9ao\xa07\xedd\xcfl\xbd\xce\xe6[\xc5.\xbd\x1dK\xd9\x1b\x9ed\xd9\xf0\xf4V\xbf\xce\xb8\xbe1\xa1\xe2O\x91b\xd0\x92\xb9p\x08V2\x13O\xd3\x82\x97\xda\xcb\x01l#aA\xea\xfbl\xb4|\xf6kJ\xae\xeaE\xa6F?\xb0\xc1\xb9Pl\xd0\xbek(\xde\x86A\xe0k\x95\x13\x18O\xa7\x9d\xd7\xff\xee|<\xfa\xf1\xfd\xe1\xc1\xe0\xdd\xc7\x1f\x07\xa7\xff<>\x1c|z\xff\xf3\xfb\x0f\xbf\xbd\xeflT\xbe\x1c\x9f\x1c\xfe\xfa\xe1\xf4\xb0\xfe\xcb\xfe\x87w\xef\x8eNk\xbf}8\xfe\xf0q\xef\x97\xce\xef\x19\x80\xac-\xef\xc6^\xcb\xe1\xb81g\xe1;9>\xb5'riv\xa9\x84\x84O\xfe\xd1\xfb\x82\xa27\xa7\xf67I\xc3(^\x93_\x85b\xb2\xa1\x88!\xf959\x06)@c\xb9\xaa\x06ND\xca\xc3\xa5\xaa\xec\xe9Nf\xaa\xa1\xea\xd5\xe6\x88Tt\xba\xd8\xf0+X.\x99\xe6ZAJ\xfb\xb5\"\x1e\xb2\xcb\xa5\xa36\xab\x94y5-\xfa\xa8\xc8U\xcdk\xc5\xe0\xa9\xd6\xc3B\xb1\x0d{\xd1\xcf42\xd7\x0b\x99?\x89\xfedtv\xae\x9c\xb5\xcd\xda\xe79\x7f\xc3P\xb4\x10\x18\xb6X^\x14\x02(\x04\x96\xb6\x8cB`\xd9*=H!\x00\xcb\xa6\xcd\x87\x88\x8f\x07\x90\x08\xd6\x8e=\xf3)X\xa1\xd2\xca\x0bTM\x8fr\x16\x8f\x9e\x8fCk\xef\xe4\xd6\x9a\xb3\x80\x8c\x81\x9c\xd1\xe8v\xba\xba\x10\xba\xec(\x8e\x02=^\x98$3\x0d\xb1\xde\x98\x03\x93G2\xa0J\xd1\xe0l\x05s\xcaks\xd0\x12;1\x14\xb5\xde]m\xcb!\xd4\x82P\xcb\xf7 \xea\x11ji\xd1#B-\xedt\xeb\xf5\xa0\x16\xc3\x85\xcbw\xcd*\x82\x01\x8d\xbf\x95%B\x1e8\xf2\x1a_\x11OqS9\x18\xc5t\\G\xa3sy\xde\xfc\xf2a\xff\xe7\xc1\xd1\xc1\xe0\xed/{?z\xaeG\xf1\xf7\xbd7\x1f\x0f\xdf\x9fV~\xce\x1c\x9d\xe2\xcf\xef\x8fJ\x1eNS'\xc5\xc1\x87oc:\xf6\xd2\x9cM\x90\xedM\x1c\x88\xb3\xa3\x03\xc3\xcbnf\xb4\xf73\x12\xc9\xfav\xef\xca\xf6\xdb5\x8d\xde}\xd8Z\x1f\xa3\xb1\xf1\xdb4[:}\x0d\xf6\xb0\x0f\xc2QbJw;5\xd9B\xe6S\x11\xd5\xcblE\xc0\n\x9deqA\xa55\xa1\xed\xad\xee\xd4\xc1\x7f\xb9\xf8\xb5]\xe4s(Y\x8b\xfd\x9f\xd7_\x9fAWY\xacY:,\xa504\xe1\x90\xe1\xce\xee\xee\xf6\xabV\x8dJ\x16\xccvv\x9f\x9fm\xb7(\xed\xef\xe0t\x18G\xc1\xcfl^\x10\xb2gl\xee\xa7 h[/\x95\xccD\x9b=\x89\xfbk>q\x06\xb5X\xd1U\xc9T\xc4,\x89D\x12\xa9\xc5Y\x1d\xce`\xbd\xf2j.\x9fC\\\x98\xbb[\x98u\x9dV\xb3\xa6zs\x0b>XE\x1b\x0f\xe7_(W\x11g\x03\xdc\xc3\x7f-VY\x9bW\xd6\xd0u\x15\xa5\xf3\x8b\xe6\xb0}\x80\x14\xf6\x00QX\x86WT\x14\x0d\xa1J\xb1\xe9\x0c\xb0\n%\xc84\x921\xa3!\x1c1\x1bO\x94=\xf6\xd25\x9c]t\x8a\x96s\xcc*\x1b\x00\xcdQ4G\xd1\x1c}\xd0\xe6h\xa5\x8f\xa6$\xb86\xc9\x97\xe5\xba\x8d\xb9\xd4\x8d\xf9w\xbf\xe8\xc57\x8d`\xf6\xdd\x8a\xa2\xa3%\x82\xdcvD\x08 #$\xfc=l\x1b\x84\x84[\xf4\x88\x90p;U\x7f=H\x18\xb3\xef0\xfbnAE\xcc\xbe\xc3\xc4\x9boJ\xf5\xae\xe1\x88\xad\xe7\xf1}C\x897\x98}\x87B\x00\x85\xc0w.\x04\xd6\x05\xa71\xfb\xce\xe3}\xcc\xbe[V\x12\xa1\x96\xa6\xfd\xd0v+ \xd4\x82P\xcb\x8a=\"\xd4\xd2N\xb7^\x0fj\xc1p\xe7\x83\x90\x08\x18\xee\xc4p\xe7]\x86;1\xfbnY\xe9\xbf~\xe6\xce\x0c\xb3\xef\x1e\xe0\xc2\xac\xeb\xb4b\xf6\xddw\xc7*k\xf3\xca\x1a\xba\x0e\xb3\xef\xd0\x1cEs\x14\xcd\xd1\xfb1G\xeb\xb2\xefjR\xe0Z\xe6\xdey5\xd7\xcd\xbc\xcb$\xfeG\xb6\xf2\xf5w\xab\xc8\xa6[U\xc9\xab\xa8`\xfdu\x90&-\xdeH\xd8#\x9fN~\xe9%L\x8a4 \xec\x0b\x0c\xb0\xea)\x8f>\xa7,\x9e\x13\xcd\n*\x1aEV\xc9*\x1b\xb02\xc9\x08\xc9\xff\xc7\xde\x9f/\xb7\x91+\x0d\xe2\xe8\xab`to|m\xcf)\xd3\xdc\x17\x9d\xf1\xc4\xc8\x92\xdc\xd6\xe9\xb6\xadO\x92\xddsN\xb3\x83\x06\x8b Y\xad\"@\xd7\xa2\xc5\x1d\xee\xb8\xcfq\xff\xb9\xafx\x1f\xe1\x17H\x00\xb5\x17\xabH\xc9\xb6l\xe7\xc47\xa7e\x16\x90H$rG\x02p\xa8\xeb|d\xb31\x87\xfb\x08m\xe1\x92i8\x9f3\xcf\xecd\xe97\x14\xd4\xe8\xf0z\x8aa5B\x03\xe22\xea\x07c.8#\xe3\xbd\xa7\xe3=b/\xa9G\xed\x80y\x0d\xb8:QZ\x11\xe2\xb3\xc5\x8a\xf1\x88\xbd\xdf\x9e\xfd\xfa\x93O\xd64X*p\xd1F\xc4\x98\xcb\xcf\xf3\xd0uo\xc9\x87\x90\xba\x12\xe7Y\xfaM \x89\xfb#\xea\x13\x87\x8f\xf9{ \xe2\xe9B\x88\x85\xcb\x1a\x80\xfd4\x9c7\x8eB\x0f\x12\xaf\xef\x1f+\x0c\xa0{\xfc,\x07H\x93M\xb9\xe0\x8eM]\xc9\xac\xe6\x95\x16KN\x06R\xbe\xe3\xbd\xc6xO27T\x92\xd86[\x07l\xf6\x18v\xf0N8Y\xcb\xf996\xb3H\xc0\xe8\xca\x8f^\xa2P;'k\xc7\x95\x83\x04B\xe5\x94\x1dN\xbd[U\x8dr\xbbf\xba\x94$X\xb2[x\xcd\x85\xd9\x01q\x02i\x8d\xa5\x9b\x13o\x19\x06\xec\x06\xa8u\xc0o\x1b\xe4\xa5\xb8fW\xcc\xb3@\xb0\xde\x9e\xfdj\xd4`\xa8\x1e\xb0\x19s\xdf^\xb2\x15#\xef\x97A\xb0~o\xa9\xff\xfa\xefa\xff\x86\x0b\xa2\xbe\xc6\xef\xcc\x08`\x1c\xf5v\x06\x0bH\xb8\xd6{\x98c\xee3\xef\x8ay\nE\xb8\x01\x14\xa8\x0d#J\x7fAol\x82\xbf\xe6\xa8\xba\x15*u\xae\xeb\x8ak\x7f_\x12\xe7\x7f\x92\x93y<\xa4$\xa0~\xd6b\x16a\x05\xca\xce\xf7\xc3\x15\x9b5d\x87\x03N^^\\\x9c\x92\x9f\x8f/L\x19\xce\xdb\xb3_\x15_\xdc\xc2}\x9b\x94\xfc\x9e]\xe2\x8b\xdb5\xfb\xe3\xf7?\xc6\x9c\x98\xeb[\xb9\xa1\xb4\x12i\x98\xfb\xda\x13\xb3\xd0f\x84r\xc29\x95\x03J\xae\xd3c\xd3d!\xc6\xe1?\xfe\xa1\xca/\x08!/\x84 s!\xc83\xd2h4\xfe\xa9~\x93@)\xbf\xd5\xff\xa2\xfc\xb6!\xc1\xbd\xf0\xc4\xea\xd1\\\x88\xc7\xfa\xf7F\xa3\xa1\xfep\xe6\xe4\x91l\xf4\x16\x86\xba\x10\x8f\xfeK\xb6zL\xfeR\x9f\x13-?%\xb1lW`\xf9/zE\xeb\xa0I\x9e\x81]\x90\x006\xa2\xe7\xf8\x8f^\x08\xd1\xb0]\xea\xfbI\xec\x14X\xd9Ba\x91h\xf5\xcf\x04\xda\xc4\xe0\xdd\xa9\xc0\xfb\xf46X\n\x1ea\xae\xc0\xbf\x10\xe2Q\xa3!u\x8c&\xa9\xc2\xfa\xd1\xe34\x8da\x02y\xfc\xe5\xe7\x13\x85\xfe\xd1\xf1\xf9\xe1\xd9\xc9\xe9\xc5\x9b\xb3\xc7\xfbf\x061\xf1\x13\xfd5\x84\x04\xe2\xdd\n\xc4\x7f\x16\x06g@z\xff\x19\xf9\xaf\xf5\xb4\xf1B\x88\xbf\x1a\x8d\xc6'\xfd\x85\xf2[K\xda\x0f\xf9y\xad4\xee+\xea\xf9K\xea\xca\xe9$\x86\x8f\xf0\xcf\x023\x90\x9cy\x06\xce[\xbe\x8a!\xc18\xb0\x9c\xd0\xea\x7f<#\xdcq\xe3EK\x80\x87\xd5\xb9\x80\xbb\xe2\xed\xcbH>\x8c\xa5\x95n\xfd:+\xa9\xaa\x86\x16r-2\xfe\x92\ny\xcc\x7f*\xd0\xb9O\xa5\xf3\xd5\x80\x0f\xd2\x84\xfcd^\xca2\x8a;\xda\xeeV\xf44\xd7\x98\xfbDp\xf7\xd6x$9\x0f.2I\x84\xce\x03\xa6\xb458\x86?=\xfdi\xcc\xb5n0C(?\x87\xe95\x1c\xef\xcd\x85hL\xa9\x07\xd8\xdd<\xbdm|\x1c\xef\xa9\xf9(\xf7@\xb9.\x00|\xbc\x07_\x81 \xc6\xfc_\xe7o^\x8f\xf9\xb3g\xcf\x9e)j\xc9\x7f\xc7\xae\xa6\xb2\x00B\xb2\x1aQ\xfaUy\x12\xa1\x1f\xbd\xa0\xb3\x08]\xea\x8dy\xbe\x8b\xfc\xe6 \xa5\xa6\xee\x0f\x7f\xff\x7f$\xca\xef\xb5\x13\x97\x8a\xda\x0c \x1a\x86\x85\xf7\x0d\x83JbK\xae\x8d=\xa1\xb9\xe32-\xae\x86\xa5O\x99\xe7\x0b\x1e\xf3\x8cv\xd9\xa1\xa0y\x02\x14zFZ\xff\xcc|\x854\x8f\xfe\xd8N\xc9?!1\xa8\xf1\x1e`=\xde\xdb'\xe3\xbd\"\xbeI#\xd6P\xa8\x8c\xf7\xac\x18\x00\xa0\xf1\x9a\xae\x00\xc8\xffR\xa3\xff\xef\xc4w\x89H\xf6s\x02\x9d\x93\xb96\xf2iJ+\x9a9>\xb9f\xae\xfb\xe4\x92\x8bku\x95\xfb\x92\xca\xa0Z_\xc6\xaeX!\xbd\x90\x96\xb2\x82\x99\xd55\xc5\xe6\xd10r\xf9\xa0T\x04\x16o\xcc\xdf\x03\x9b\x98\xd5[\nw\xa6KM\xe2\x91 \xc4\xd0\xabNt\x1c\xa0\x17}\xcc\x01L\xb4\xbe\xe4\x91\xe4u3\x95\x9c\x9fkB\x99?~\xff\xe3\xf1\xfe]\xd6$\x0d.\xb5,0\x1f\x05\xa3\xd5h\xb7\xda\xfexOS\xfdK\xe6Vs\x05jQ\xb1\x95\x93\x10\x0d\x93Y\x88\xa2\xf4'>\x0b\x94\xc7\xb4\xe5S\x1b\x94'_\xda0p\xf1\xe9\xa3/\xf3\xa0FIn\xa9(\xc9S3\xc5\x94\xec\xba\xfb)\xcf\xd7b\xc6N\xf8\\\xd4\xcf0\x99W\xe0\xb8\x98\xb1 T\x91Tv1n\xfa$Y]\xb7\xb9G\xbb^Y\\\xfe\xa8\xe5\xa6\xb6\xb5\x8b\xed>Y\x99i\x16\x97\xaa\xb9\x8e\x1f0\x0e)\xd7\xc2\xef\x9c\x05\xd7\xc2+\xc0N\xaa\x99\x1c)\xe2o2\\\xe5\xcc\xad\x97\xc4] \xee\\\x16\xa9\xaaO\xd6\x1epa5\xb5\x83\x9b\\\x1dn\x0c\xc3[\xdb\xe5Ie\xbdq\x92(\xfe\xab\xbf\xc6\xc5\x0f\xb2\xea\x02\xaa\xd2\x8f\x9b\xe8\xb6p\n\xb6o\xe2\xcf\xd3\xd0qg\x93\x80.\x8a\x13\x95\x0bQ\x80{\xb6\xf7\x8c\xad\xef\x90']\xd3\xa0p\xaf\xc4('\xf5\xfa!\xe4 7\xce5\xd7\xc3\xb4\xfcd\xed\xf9a\xe1C\xd6Q\x05\xd8\x92\xd9\x97\xb2Mr\xdf\xe5\x95\x82\x925<\xef\x14\xd4\x13(\x15\x8b\xd4\xc9\xc4\x9f]\x96S*\x06Z\xfby\xd9\xc40\x85\xb6\xaf@MEQz\x01\xb8\xa2\xe6\x91J\x05U^\xa2QM\xaf\xed\xb5\xe8\xf9-\xb7\x1d\xbe\xa8\xafD}\xd5!\xd1\xb0\xfc\x95\xa2<\xfc\x9a\x16B\xf7\xda~:E\xa6\xa5\xfe\xdcp\x0b\x02\xb7 p\x0b\x02\xb7 p\x0b\x02\xb7 p\x0b\x02\xb7 \x08nA\xe0\x16\x04nA\xe0\x16\x04nA\xe0\x16\x04nA\xe0\x16\x04nA<\x8c-\x88Mi\x9e\x9a)\xa6{\xd8\x84P\xb9\xc7\xea\xdc\xcc\xb7\x9c;\xad$BD\xc7j:`\xa2\x0b\x13]\x98\xe8\xc2D\x17&\xba0\xd1\x85\x89.Lta\xa2\x0b\x13]\x04\x13]\x98\xe8\xc2D\x17&\xba0\xd1\xf5\x19\x12]\xd5\xd1{\"\xd6\xaf\x0c\xbd\xb1\xec\xed\x9bJ\xdd<\xd4\xb27k/\xc1\x88\xb6w\xbb\x0eD#\xbaa\xa4zI\xbe\xad\xfbN\x12S]\xb7\xd7\x8d#\xe5g\x18\xeaT\xcf\x16\x0b\x90\xb7\xd3(\xdf\\\x01\xf2f\x06y\xf3\x05\xb0\xc8\xe1p\xaay\xee\xdd\xb7\xc3r\x89\x19\x04\x10B<\xafw\x17o\xddke\xf0r]\xbc\\\xf7G\xb8\xbb\x08/\xd7\xad1\"^\xae[\xc6k\xf7y\xb9.\xbec\x84\xef\x18m\xe8\x88\xef\x18\xe1\x13&\xdf\x95\xe9\xdd\xe1J\xbb\xdd\xee\xce\xfb\x8e\x9e0\xc1w\x8cP \xa0\x12\xf8\xc1\x95\xc0\xae\xd7\xfc\xe2;F \xde\xc7w\x8c\xaaZb\xaa\xa5L\x1e\xea\x8a\x02\xa6Z0\xd5\xb2\xe5\x88\x98j\xa9g[\xef\x96j\xc1\x8b\xe3\x1f\x84F\xc0\x8b\xe3\xf1\xe2\xf8/yq<\xbecT\xd5\xfa\xf3\xd4\x04l\x1f\xaa\xacw\xaa\x1d\xfa\x84\xef\x18=\xd0\x85\xd95h\xc5w\x8c~8V\xd9\x99Wv\xb0u\xf8\x8e\x11\xba\xa3\xe8\x8e\xa2;\xfa\xb5\xdc\xd1\xe2*\xae\x93\xa3j>\xab)\x02\xdf\xa6 \x96\x91\xe5\xc5\xf7.S\xb9\x89\x1f\xa2ex\x08\x0c\x89\x96a\x1b.F\xcbp7\xcbP\xaa\x07\xce\x9d\x05\xf2\xd9\x0f\xc2g\x05Lp\x84\x05\x82_\xa9@0\xbf\x14E{\xda\xd5k\x835|X\xbe\xf3]9F;(\xd3\xdd\xb4\xf6wT\xbe\x835|\xa8\x04P \xfc\xe0J`\xd7\x14\xf7wV\xc3\x97s\xac\xea\xfbRx\x90\x02\xf5/\xea\xdf\x9d\xc4\x1b\xf5/:a\xa8\x04P \xfc\xe8J\x00\x9d0\xe1A\x8a\xca\xd6I \xfe6\x8b\xb0\xd7x\x90\xe2\x01.\xcc\xaeA+\x1e\xa4\xf8\xe1Xeg^\xd9\xc1\xd6}\xd5\x83\x14\x1b\xb6\x91~u\xfc\x1a\xd6 o\xf5\xc2<4\x86\"\xd5J\xb0N(\xb2\xb5\xea\xd8\xd5\x1f\xff\x8e\xf2\xd0\xb8\x19\x85J\x00\x95\xc0\x0f\xae\x04v\xf5\xd5p3\n7\xa3p3*;\xf3-u\xa7\x89\xc9c4\x03h\x06\xd0\x0c\xa0\x19\xa8\xee\xf1\xb0\xcd\x00&\x8f\x1f\x84F\xc0\xe41&\x8f1y\x8c\x89\xa7\xbc\xc2\xd9=\xf1\x84\xc9\xe3\x87\xb80\xbb&\x04K2l\xa59\xbe\xea\x05\xc2\xa2\xa1\xaa\x96\x18\xf7\x151>\xc6}\xbbzy\x18\xf7\xd5\x18\x11\xe3\xbez\xee%\xc6}\xdf\x81F\xc0\xb8\x0f\xe3>\x8c\xfb0\xbc\xb8\xb7\xf0\x02\xe3\xbe\x07\xba0w\x8b\xfb\xb0h\xe8\x07b\x95\x9dye\x07[\xf7\x15\x8b\x86\n\xb2\x19\xd2g:\x8f|\xa6J\xfe\xf9\xa2\x0e\\\x01\xba\xeahg]l\xeb\xba\xa5\x98\x0d\xc1l\xc8\x8f\x10\xfb`6\xa4\xc6\x88\x98\x0d)\xe35\xcc\x86|w\x1a\x01\xb3!\x98\x0d\xf9\xb2\xd9\x90\x12\x97N\xdf\xd6\xb1\x89}\xf0\xd2\x91\xba\x97\x8e\xe4h\x1c\x85U\xd5\xd2\xbc\x0dgc\xd8y\xb7\xb0s\xd3J\x9dc\xae\xf0\xfb[p\xcc\x15>\xd0\x85\xd95\xffS,\xc3\"\xa8Q\x0c\x12\xa0\xb9\xbb's\x871\xc2g\x8d\x11v\xf0_ws\x94\xe3^\xdf\xfe\x1d[\xb1N\xd0\xc9\xc5F\x94\xbb\xab^t\xcc%V\xe5\x12\x85\xbf\x12~cJ}\xd6\xb8jMY@[\x8d#f\x1f\n\x87WSw\xc6\xb8X\xe5i&i\xb9\x12!/P$y\xe2\xe9\xc1\"\x0bGI .\x19W\xe6\x8c\x12\x18\xc2\xe10\x19\x98\xad\xfc\xc9vV\xd4%j\x0cP\x82\xea\xf5\xea\x0b9w\xf8\x91\xcc\x1d\xe6\xce@\x99rr\xc4l\x1d\x95:\xab\xb5\xcbV\xc0\x9e\xb0@\xa1\x1f\x88\x15Y\xb1`)fc\x1eG\xf0\xc4c\x1fB\xc7S\x01\xd8B,\xc4\xda\x13\x81H\xd2k\xe6\xc8 MC\x89V\x82n.[\x00\xa6\xfa/\xe1\x9d\xb1k\xea\xd5P{5\xc4\\\xaa\xdc,\xb4-\x1d\xd4\x1fn\xbd\x8a\xd0/Y\xa3\xa4\xeeR PC\xb91\x87\x1c\xdc\xcc\xb4\xff\xc97\x7f\xcb9\xaa5\xa9\xe4\x8dS\xea\xd1:K$\xb5c\xc8\x9d\xe0v\x12\xd0\x9b\xc2\xa5\x92\xa2:\x89\x9c\xb3\x1cK$\x1a\n\x1e\xfa\xb5Z\xca\xb5\x9by\xf4\x1a\x98o\xc2\xb8\xf4+\x93-\xa7B\xb8\x8cr\xed\xc9z,\x98\xcc\xa5\xf1\x07\x02\x94\xe2\x99oY\xce\xda\xb9eR\xe4J\xa7DU\x1ad\xad\xbeHe*\x7fM\x12\x9b\xac\xc4,tY\xe5Z\xfcw\xc8\xbc\xdbCC\xe8S!\xdc3\xe6\xaf\xa5\xb6\xae^\x9f\xb5\x10.\n`m\x01\xcc\"/\xc9\x17a\x1e\xf1:\x91?\xff$\x7fp8d\xb7\xb2\xdd\xcaWL\xa2\x0c\x06\xd0\xfc[\x92/\xe2\x0e\xe8\xf74\xd5q\xcc\xcfN\x0f\xf5\x14\xeaqJ\xac2\x94\xa6\xf0\xebs\x8b\x92\xb9;\xa4\x14~x\x86\xd1\x14Li\x02\xf3\x1b\xb5m/4Y\xd2X%\x972P\xe9Bnd\xa21W\\\x94\xebMvg\xa4\x0b\x19\x8b|ynB/\xe3\xb3\xf0\xec\x97\xf526\xcb\x87\x8c\x17\xaadDx\xf1\xed\xc5\xb8\xcc\xb5\x979\x8b<\xd0/\xed\xa2\x84+\xd8\xafM\xafA\x0d}T\xa4\x0f\xb6TJI\x10\xbbj&\xe1\xc5I\xc3\xfaji\xab\xd4y\xcc%i\x82$\x92\x00I\x8a&+\xb3b\xf6\x95\xa41\xc2\xc1\x17\x92&U4.\x9a\xd96\x04N\xf6\xdf\x9d\xba\xbfi?\xfb@i\xdf\xfa$N9\xe8%I\xa0\xf4\xe4\xb3=RT\x8d i\xbe\x06\x82|\x90\xa8\xd6\xa3e\xc9<\xb6#h\x06\xc8\xd6T}\x11\x05\x16\x17\xf4\xa6>)\x0b\xc3\x95\xfb\xa5\x9e\xb5\xb7[\xd0\xf3\x00\x89\xac\xe2\xb0\xfa\xd4]Gan\xc6\xef\xcf\xc7s\xf0\x13\x0b\x98\x17\xe5\xadL\xf8VU \xf8\x83\xc6\xc8%\x0c\x93^\xa2:\xf1\x90\x0e\xae\xb7\xe5\x85H\x03B5\x83\xef\x83'\\\x971\xec\xa8O\x9e9\xe2o)\x06Q?\xcb_S\x96\x80x\xccf\xce\x15\x9b\xd5c\x94xPtsj\xb99\xba\x88[\xef^T\xad|-uT\xd0?\xc1}\xdb1\xdf\x9b0\xf0\x03\xcag\x0e_\xdcC\x00U\xbb!rM\x15\xd7\xe46\x84\xcaW,\x19\x05\x89\xf8+y\x14\xf2'F\xcf\xf2\xc7\xc6\x7f\x1es\xc9N\xc9\x17I\x1c\xcen\xd6\x8c\xfb\xce\x15\x93\xb67\xf0\xa8}iI\xb7[\\\xfb\xc4\x87\xb9\x10\x9fBf\xc9^2\xfb\xb2\xdc\x05\xaf\xc1V\xdbqx\xc1dw\xd6\xb3\xe7.\x14\xea\xd6\xe7o_u\xd8\x9dm\xe3\x04\xc1\x9ay\x8e(\xb0\x84\x85;gs\x8f\xdaAZ\xcb\x96ruzv\xc7W\x8c\x07\xe9m\xc3x\x99a:\x84\xc9&\x8d1\x7f {\xd3r5\xe4\x02;\xb6\x13\x80$\xe8\xed3?\x10\x1e\x94F4\xc6\xfcb)\x1b\xf9\x8436c3\xc9!6u\xed\xd0\xa5\x01\xec\x8dyb\xed9\xf0\xb7\x92\x081'~@/\xd5\x91\x8fK\xc65\xc3\xc5\xd1\xb7)j\xa4\x9e\xaa\xb2\x00\xf6$t\x1e0\xc9\x96\n\xcb%\xf5\x89\xb0\xed\xd0\xf3XQ\x98\xaeW&\x1d-\xea\xdf\xca\xac\x1blr/\xb4\x84\xe7\xadf\xfc-\xe3VE?k\xd2\x18\xc6\xad\xb6\x97P\xe6\x9d.~\xc9/{\xa6$\xda\xf41b\"\xff\x0c\x04\x99JL|_\x91\xff\x94.\xd8\x19\xfb\x102?h\xa8\xefc\xae\x1cf\xd9CB\x90hK\x07\xd0\x0f\x08\x9b\xcf\x1d\xdba\xbe :7\xf5\xf6\xecW\xc5\x17\xb7`-(\xf9=\xbb\xc4\x17\xb7k\xf6\xc7\xef\x7f\x8c91\x9e$7\x94V*\x0f\xe6\xbe\xf6\xc4,\xb4\x99\xb45\xcc\xf3\x84\xa7\xc6\x8b\xab\xf9|\xd0\x12\xa0\xb8\x8d\xea\xb1%\xc7\nq\x19\xae#\xefvJ\xa5\xdb\xadP\x93\x03\xbe=\xfb\x15\xa0/\xe9\x15\x90\x7f\x95X\xf7\x99Zxj\x90\x91\x7f_ g&\x1d\x07\xd9W\x81\x06\xb6\xf4\xd8\\x\xcc2-%\x00\x1a8S\xc7\x95vCjC\xdf\xf8\xfdR4\xbc+)\xa0D\xa2a/)_0\xf8\n\x1c\xd5 \x8f\xde\xfa\x8c\xe8jN9\x11\xb9h\x92\xe9\xd5\xaaQN\x17\x80\xf8\xd4cJsj\x08\x8d\xc7`\xa2E\xc0\xf6I %|\x1er[\xb1\x86\xc4As?\xa8I\x19=$\xdd|\xb5N\x02B\x0b\xe9\xdb\x9b\x85!\x1e\x93\xfa\x80Y\xe0\x128\x81\x01\x12J\x12\x82?\x1e1\xd4\x94-\x1c\xe5qI5=\xe6\xf2KC\xad3];~\xc3\x16+\x90\xb7s`%_\x85\x07\x925y\x96\xcf\xc9#\x9d\x8ee\xabup\xaby\xef1Y\x81 \x9a\xb21\x87\xd1\xc1o\x89\x1c\x0d\xe5\xb7\xf8kf;s\xc7&>[Q\x1e8\xb6~\x8cZ\xb2T\x9d\xa0-\xad\x87_I\x96\x9d2c\x16\x13\xaa\x95d5\xab\xa9,\x9d\x8a+f\xb0\xd0+W\x94[y\x7f\xc0o\xdf\xc7\xc7\xdd('\xd4\x9b:\x81'\x19g\xc3(F`\xa9+4\x99 \x1ds)] \xe1j\x8c\xe9F\xa3\x10\xd9\x00\xb9\x14\xa7f\x95]g\nck\xe1\xf6\x89\x1f\xae\xd7\xc2\x03=\xb6\xa6\xf6\xe5\xd3\x90\xcb\xffH\xed\xa5\xe4\xd37,\xa3\xb4\xad\x98\x930P\x9cnx\xce'j\x03\xc8Q\x0cH\x16\x8c3\x0f\xdcw\xe5\x06F\xbb\x1a\x12&\xd0Ibt|C\xc1\xddj\xed\x93S9\xa0\xe4:=6M\xd6\xf9\x1f\xfe\xe3\x1f\xaa\xba\x9f\x10\xf2B\x082\x17\x82<#\x8dF\xe3\x9f\xea7 \x94\xf2[\xfd/\xcao\x1b\x12\xdc\x0bO\xac\x1e\xcd\x85x\xac\x7fo4\x1a\xea\x0fgN\x1e\xc9Foa\xa8\x0b\xf1\xe8\xbfd\xab\xc7\xe4/\xf59\xd1\xf2S\x12\xcbv\x05\x96\xff\xa2W\xb4\x0e\x9a\xe4\x19\xd8\x05 `#z\x8e\xff\xe8\x85\x10\x0d\xdb\xa5\xbe\x9f\xc4N\x81\x95-\x14\x16\x89V\xffL\xa0M\x0c\xde\x9d\n\xbcOo\x83\xa5\xe0\x11\xe6\n\xfc\x0b!\x1e5\x1aR\xc7h\x92*\xac\x1f=N\xd3\x18&\x90\xc7_~>Q\xe8\x1f\x1d\x9f\x1f\x9e\x9d\x9c^\xbc9{\xbcof\x10\x13?\xd1_CH \xde\xad@\xfcgap\x06\xa4\xf7\x9f\x91\xffZO\x1b/\x84\xf8\xab\xd1h|\xd2_(\xbf\xb5\xa4\xfd\x90\x9f\xd7J\xe3\xbe\xa2\x9e\xbf\xa4\xae\x9cNb\xf8\x08\xff,0\x03\xc9\x99g\xe0\xbc\xe5\xab\x18\x12\x8c\x03\xcb \xad\xfe\xc73\xc2\x1d7^\xb4\x04xX\x9d\x0bHN\xd9\x97\x91|\x18K+c\xa3uVR\xaf\x1d\xd7\x95\x1f\xf4y\x1a\xa9\x90\xc7\xfc\xa7\x02\x9d\xfbT:_p\\\xa8!M\xc8O\xd2\xc2G\xeaA\xaa\x0eS\"\xaf\xe89\xe6\x91xr\xf7\xd6x$9\x0f.2I\xda\x13\x0f\x8cc\xf8\xd3\xd3\x9f\xc6\\\xeb\x063\x84\xf2s\x98^\xc3\xf1\xde\\\x88\xc6\x94z\x80\xdd\xcd\xd3\xdb\xc6\xc7\xf1\x9e\x9a\x8fr\x0f\x94\xeb\x02\xc0\xc7{\xf0\x15\x98`\xcc\xffu\xfe\xe6\xf5\x98?{\xf6\xec\x99\xa2\x96\xfcw\xecj*\x0b $\xab\x11\xa5_\x95'\x11\xfaQY\xdc\"t\xa97\xe6\xf9.\x01l[\xc7Z\xd2\"l5e\xb3Y\xac/-\xadn\xf9\x98'\x94\x9a\x8a~\xdf\xff\x1f\x89\xf2{\xed\xc4\xa5\x0e1\x1b\x124\x0c\x0b\xef\x1b\x06\x95\xc4\x96\\\x1b{Bs\xc7eZ\\\x0dK\x9f2\xcf\x17<\xe6\x19\xed\xb2\xcf\x1d\xcf\x0f&@\xa1g\xa4\xf5\xcf\xccW\xb8\xf3A\x7fl\xa7\xe4\x9f\x90\x18\xd4x\x0f\xb0\x1e\xef\xed\x93\xf1^\x11\xdf\xa4\x11k(T\xc6{V\x0c\x00\xd0xMW\x00\xe4\x7f\xa9\xd1\xffw\xe2\xbbD$\xfb9\x81\xce\xc9\\\x1b\xf94\xa5\x15\xcd\x1c\x9f\\3\xd7}r\xc9\xc5\xb5\xcaG,!\xab\xa3S \x8a\x15\xd2\x0bi)+\x98Y]%(\x89a\xe4\xf2\xc1\xf1\x12X\xbc1\x7f\x0flbVo)\xdcY*i\x01L&C\x0c\xbd\xeaD\xc7\x01z\xd1\xc7\x1c\xc0D\xebK\x1eI^7S\xc9\xf9\xb9&\x94\xf9\xe3\xf7?\x1e\xef\xdfeM\xd2\xe0R\xcb\x02\xf3Q0Z\x8dv\xab\xed\x8f\xf74\xd5\xf3y\xf7\xe8\x90\xbd\xc7\x82\xd0\xe3\xaa>\xce\xfc\xe8c\x8e\xfd;\xc8\xb1\x17\xa4;\xea\x14A$\xba\x91\xb3\xd3Cc\x17\xaa\xd3+\xf7\x92[\xc1\x1c\n\xe6P0\x87\x829\x14\xcc\xa1`\x0e\x05s(\x98C\xa9F\x13s(\x98C\xc1\x1c\n\xe6P0\x87\x829\x94\x9ak\xb2c\x0e\xa58\xcc\xde%\xc6N\x06\xd8\x05\x95ks\xc6\x16\x1e\xe5A\x14_\xff,\xffU\x1d%C\xa7\xe2[\xa5\xd2\x88\xeb\x86\x06Us\\G\x0bs\xe83\x8f@\x13Xk\xae\x82\x02\xaa/\x07\x0f\x96\xcc\xf1\xa4\xa72S\xfe\xa1\x82U\xe8!\x16\x0d\xca6\x0d:erD\xd5p\x96\x1b\x99r\xe5\xf6\xca\xa6?\xf9 \x14\xa2V\xf9DU\x0c@W\x81I\xdb+\xe6D]\xbe-Ec\xee\xb8\x01\xf3\xa4G\xceX<^u\xbe*\xc0\x94\x04\xa6$0%\x81) LI\xfcp)\x89\xe4A0\xb0\xcd\x04\xf4\xaf\xf0\xd4\x95\xc7\xb2\xeb/\xef\xce\xa182\x10Dr\x9f'\xc5\x04\x0c\x9b\x9a\xa8T\xa1F\x8fl\xb2\xfc&\x93\xaf\xacR\xfd\xd4z-\x93\x08w*\xc6\xff4vW\xf2\x811\xd6\xd3[\xfd\xa7Wm\x11\xd1\xfd@\xf7\x03\xdd\x0ft?\xd0\xfd@\xf7\x03\xdd\x8fo\xc8\xfd(\xad\x1fH{\x1du2\x1bQ\xa7\xba\xa9\x8d\xf4P[\x9c\xe9\x8dl\xe5\x1d\x8eW\xa1\xc7\x82\x1e\x0bz,\xe8\xb1\xa0\xc7\x82\x1e\x0bz,\xdf\x90\xc7\x92\xc54v\x06b \x90\xff\xfc\xc9\xaf\xccjl_\xe9Jy\xb2\xd0\xd5\xf8?X\xe9\xfa5+]3\xee\xe3V\xaej\xd9\x05\x12\x0bq\xd5\x88\xaf\xb0_\x0b\xbf\xcek\x82k\xfdlH\xe13\xa4\x85\xe7\xb8g\n\xb4(pC\x8b\xce\xf9o\xe9\xe2\xde\xc7\x0d\x02\xdb]\x1f\xc0k\xdf\x1bp\"\x85\xfbs\xdd\x1b\xa0W,)\xb5\x1a\x05Mp}\xf9+\x97\xee\x10\xfc\x9e\xb8\xb5\x10~\x0d\x9c+\x06\x96\x00\x16\xb4\x823\xea\xdec\xbfr\xf8d\x96c&\\\xd4:\x17\xcb\xber\xb8\xb3\nWf\x01\x89\xba\xcf\xc1,\x90\\7\x06Q\x9azb\x89\xa8\xdb\x14\x00\xce\x8a\xde\x18\xaao\xb8d!3\x1a\xbd\x81\xd1T{\x18\xec@N`)\xdc\x19\xf3\x80M\x0c\"\x92J\x11\x1e\x0dr\"\x9dI\xea*m\xb6O\xdacNV\x82\x07\xcb\xc2\xeb\xb6R\xfc\x93\xbf\x08R\xdd\xe8\xaf\x07\xf2\xe5H\x0bq\xc5<\x0e!\x9a\x19\xd2/cN\xf3\x88Q5Km\xaf\xb7\xc0\x18\xd7)K\x080\xf0\xc3\xc0\x0f\x03?\x0c\xfc0\xf0\xfb\xe1\x02?,\xde\xc7\xe2},\xde\xc7\xe2},\xde\xc7\xe2},\xde\xc7\xe2\xfd\xafV\xbco\xed\xf9\x01\x0dRO\xa3F\xce\x90y\x0f\xd9<\xfe;9\xbf8\xb8x{>y\xfb\xfa\xfc\xf4\xf8\xf0\xe4\xc5\xc9\xf1\xd1\x9e\x95\xfbzt|\xfa\xe6\xfc\xe4brz|v\xf2\xa6\xa8\xc1\xbb7\x17'\xaf\x7f.\xff~zp~^\x08\xf9\xec\xf8_\xc7\x87\x17\x85\x9f^\x1c\x9c\xfcz|\x94~Py3\xdai\xff\xcb$\x04\xce\x81\x18D\xce\x1c\x9c\x13\xb5\xf2\xda\xdb\x83o\xea\xd9\xd4DZc\xac\x1eU\xde0\xda\xfe\xa6\x8f\x99\xa7B\x94\xf2\x06\xe0k\x9f\xbaz\xd0F\xe1\x10iJ\xe7GI\x7fO$\xb5\xa2\xd4\x90\x82Nf!\xe8 \x85\x01dT\xc6\\g\x89\n\x07N\xad`~\xdc\xd4\xe7z\xc3\xaa\xd4\xd4\xe6Q\x15_\xe4\x87S\xbfo\x18'\xb5^J',\xa9?\xe6j\x8b\xa0x0\xc3k\xf9\xe1\xcc\x97\x1d\x06\x9c2\xc6\x89\xc7\xfedvP6\xaeb\xe4\xfc\xa8\xea\xf7\x1d\xc6\x9cS\x19\xb5B\xd43w8u'\x01u\xdd\xdb\x89\x8a}\xab\x93T\xb7\xac@5|\xb2\xf6\xe8\xd4\x97F\xad\xf0\x1b\x17%?O\xa4\xc9\x9c\\\xb1\xa0\xa8A.&\xba\x90\x88\x9e\x01\x9e\x89y\xc3m\xb6\xd4\x9b\x11\x98\x87\xceu\x16\xe4\xfe`\xc6~8]9\xc1\x04\x1e\xc7\xde\x14\xed\xa5\x9e\xd06 Q\xc6g[\xf6T/\xd9c\x1a\xbb^\x1a[\xc6\xe1\xea\xd1\x7f?\xa0\xde\xb6\xab\xa4\xbbn\xbbH9B\x19\xcd\x9fyJ\xc6cz\xda+\xe9'xZ\xbe\xca\xf8lC\x8a\xf9\x1c\xcd+\x9aW4\xaf?\x80y-P\x02\xfa\x856X\xf3\xfa%\x9cy\x03ro\x9bS\xb8\xa9~\x1f\x86\xebKl\xaa\x17\x97tdx\xa9N=\x87\xc1\xad\xba\x98#9\xc2\x16\x15\xc7f\x13vw\xbeA>\xfe\xae\xf9x\xcb:\xb2\x00oLd\x0f\xaa\x8e,\xab\x12\xb6\xd0:uj\xc8vz8T\xbb\xffe\xef\x87\xa6>\xe7\xabG\xd43\xa2\x1eS\xef\xe7\x04B;H\xd5\xbce\xe0\xd6\xac\x95\xf9\x95\xf1E\xb04 \xe5l\xfd\xcd\xa7D\xb0Y6\x91\xf4\xf7\x1a3\xd1\x1d\xaa\xa7\x82\x15W\xf55\xe5wYq%\xd5\x12\xe4\x82\xcax/\xf9\xb5\x06\xe7A\xf3j\xbe\xfb\x10\n/,\xe0\x99\xca\xcdwM\xf35\xf3l\xc6\x03\xa9i\xa5\\\x81r\xf4\x03z\xc9\x12O\xec\\\x89\x80\xe9EQ\xdaR)\xf31'\xb6\xe0\xbe3\x83s:\x10v\xc2\xa2\x04K\x8f\xf9\x92\x9aw\xc0J\xd2\xdc\x0b\xf4\xf6\xd1\xbf\x99\x0f8\xa8*\xb5$_Hs\xd2 G:\x10\xd5\xeb\xd2l\xf4TY\x02\x0b\xc4\xe4\x1e\x90Qj^\xcc\xc9;\xa6\x89\x01L\x02O\xbe\xeb\x7f\xc26A\x0e; \x91\xc4\x82\xcdrH\xb6\x9ev\x1a_\xecU\xe1\xbc}\xd0X\xd6\xb7\x10f^\xf5[\xd6w?\xb1\xc6\x0fk\xfc\xb0\xc6\x0fk\xfc\xb0\xc6\x0fk\xfc\xb0\xc6\x0fk\xfc\xb0\xc6\x0fk\xfc\xb0\xc6/5\x04\xd6\xf8a\x8d\x1f\xd6\xf8a\x8d\x1f\x16!`\x11\x02\x16!|\xb1\"\x04\xac\xf1+\x8b\xf6\xb0\xc6\xef+l\x9c|75~%Y\xefLV\xbaV\xde\xdb \xb3e\xe6{\x8b\xcdQ\x83\xf7\x17-\xc9\xc0\x9c8\xe6\xc41'\x8e9q\xcc\x89cN\x1cs\xe2\x98\x13\xc7\x9c8\xe6\xc41'\x9e\x1a\x02s\xe2\x98\x13\xc7\x9c8\xe6\xc41'\x8e9q\xcc\x89cN\x1cs\xe2\x98\x13\xdfv\x95\x1eVN\x1c\x8fv}\xdbG\xbbr\x9b\x0b\xdb\xec`@\xf1\xbe\x89\x936\xeea$TZ\xfd]\x0cPt\xd5\xcd\xbeeM]\xbc(\x05\xd4\xaa\xb3,\xd0\xad\xee\xae\xd2;\x11l\xf1l\xe2\x95\x08j\xb4\xda~\xcfH\xc2->\xc2+\xd6\xc5J\xe5H\x0656\x0d\xd8l\x9f\x9czl.Cn\xb5\xc5\xf0^u\xf1\xdf\x13\x87\xfb\x01\xa33\xbd\xbb\x13iq\x9f\x05R\xe3H\xb9v\x98?\xe6\x90\x8c\x99\xa9\xf0\xde\x99\x93\xf7.\xe3\x8f4\x8c\xc7\xe4\xd93\xd2z\xafS\x024\xd0;\x0b\x10z]3H\xbf\xb6\x1a\xe4\x04\xde\x15\x1a\xeb\xd7\x84l\xea3\xdf\xd2\xf9f\x18\x13\".\xe3\xda\x06\x82\xbc{sq>\xdf\xcf\xfe\x90\x80p\xabO\xac\x95\xf6\xd7\xa4\xdd/\xfa\x91$\xcf\x8b+\xb5\xbb\x19\xd8\xeb7\xfb\x99\x7f\xa7&S\xd59^\xbd,\x98\xf8K\x1a x\x80W\xe64\x9c\x01-\xb9Y\x89s\x1dm\xff\x1b\xb4d\xb3\xc4\xda\xc7c\x84\xdc\x81m\xcd\xe8\xe4!\xfc\xe1\xaf]G9\x97\xe7\x0e\xb7\xd9>Q\xea\xf8\x89?\xbb$\xcdF\xb7\xb3\x97x\xff\xa5\xacE\x0e\x0f9~bd5!^bc\xc6\xfc\x80@\x078\xf8\xe8\x07\xd9\x80\xe9\xe4\xc82\x81(\xf3\xac(\x07\x9a\xa6R\xb1\x99J\x9a\x90:\xf6 \xd0\xd8\xc2\x07y\xfd\x0dd\xee=1V-`\xde*2l0uS\xd7\xf1\xfe\x95\xe3\xfb\xa6\xdbs'8\xf0\x95\x93\xdb\\uV\xcc\x0f\xe8jM\x00\x8a&X\x9a.\x8eO\xd4Hd\x162\xe9\xd1\xba\xce\x15\xe3\xcc\xf7\x89\x91J\xb5\xd9/VS?\x10<\xe5\xfcM\x85p\x19\xe5\xb9q\x7f[2\xd8bT\xa43\xd7|\xc0pK\xea\x138\xbe\x17\x03$\x8f.\x1dW\" B\x95\x0e\x89\x1a\xfb,x\xdc '\x81\xde\x0d\x1ds\xc1\xed\xec\xba\xaaU\x02_\x87}\x08\x9d+\xa1n\xac\x91cC\x0e\x8d\xdf\xea\x0bQl\xc1\xe7\xce\"\xf4\xd8\x8c\xac\x1c\x7f\xca\x96\x0e\xbd\x12^C\xa9L\xb9\x08F\xd9B\x01I\xd16o%[\x1e\x10\xdd\x97\\\xb2u\x10\xdfi\x13r\xcel\xe6\xfbp\xbf\x91\\a\xe21:\xf3\x1b\xeaN\x19\xb5c\xfb\xfe<\\=*\xe2\x86\xc7\xef u\xaf\xe9\xad/\xe7G]?\xcd3\x87j\xc0\xf7\x85\x19\\C\xa4\x84\xb2In\xc4\x98\xcf?\xf9Dk\x15\xe9\xf6\xab\xfa\x86\x95\xe0N <}\xae\xd4\xf1\xc6<\xe2\x0bx\x94\xcb \xd4\xd3,Z%d5\x93Q\x9a)\xb8P\xbd\x03E:\xaa\x8e\x04\xf6x\xcc\x8b_y5\\\xa0\"\xeb\xe8\xe2\xe4d\x13\x11\xe96\x1ay\x0b{\x9eQ\xc3[\xee,\xa3zF\xf5\x8c\xea\x19\xd5\xf3\xe7Q\xcf \x85\xbaI'S\xd7\x8d\x07\x83\x1cM\xbadu\xb3\n\xc3z\xd3]\xebM\xf3\x91\xcc\"}\xfeE\xa4\xaeWq8Y\xc8\x00#\xb2}\xfa.\x14\x9f\\/\x99\xa7\xef7\xb4\x85\xa7\xbe\xc3U,\xda\xdaF\xb7\xa6H\xe9\x86p(\x89?\xec$\x9a\x16\xe7b\x15\xe3\x10\xdf\xa8Dd|\xc5\xe0\x92\xb1\xe7\xd4\x8bh\x92\xbc#\x87\x10\x92\x9a\x00,\x8e\xbe'\xe7\xd3F\xe3\xbeU\xa4\x95\xecW\xd7\xbc\x17 Z5c\xa3mF\xdb\x8c\xb6\x19m\xf3g\xb3\xcdF]\x05p\xd7h\xa4\xad\x9e\x0b>;\xaf\xbcK\xea\xf9\x9b\xd7G\xc5\x172\xa5\xbf\xc8\x7f\x95\xfc|\xf2\xfa\xe7\xcc\xef\xbaq\xaa\xba\xa5|\xa04\xc5b\xb4#?#q\xa1ND0S\xb8R\x02v\x9f\x14\x16\xabp\xe2p]$\x13sx\xe2F\xa7\xa29KP\xea\xaf\xa2\x85S\x9c\xa3/]U\xaa\xad\x0c\xd4\xc9\xeb\x9f\x0d\xac\x93\xd7?o\x04\x16\xf2\xa92\xbdyX\x06\xa9\x1a(it6\xf0\xc8\xa1\x94\\\xdf\xaf\xe5\xa0\xd9Q[\xd8\x9a,\xd8F\xcd\xb6H\xed\xc38\xfa\xc9\xd7\xb8\x11\xd1\x85K\xe0\x9eD\xd9U\xdbcT\xed\xd0'\x16\xbbr\xcb\x066\x17\x0b\xd8<\x8d\xa0l\x15\xedm\xa7\xf1\x80K\xb4\x17\xe6\xa9b\x97-\xc0\x89\xb5\x08\x98,\x93`V\x9a\x8a\xdeL\xea\x0dgZ\xa6\xe8`\xf6V\xb3\xe3g\xed\xb8-\xb5\xe9\x95\xdad\xf3\x16\xac\x0c\x13\xb5\x05\xb7\x05B\x89\x0e\x85x\xcd\xa8\xe3\xde*sN\xfd\xe8~\xda\x8c\xb2\x07\xbc\xf3(I\xfd\x17\xae\xa51\xdc\xe6\x0e\xa0,\x96 \x08f\xb1\xe0\xe6\xca\xc8\xa3\xc8\x91\x8e\xfaz+\xb2\xb0\x001f\xf2h\xc2 \x08\x99R\x17S+\x97\xe0\xbd:\xe2sF\xd3\x07\xbd\x91M\x1f2\x9b\x96s\xc8\xd9\x9d\xf5\xd6\x98\xd3z\xccs\xa4\x96\xaf\x96\xee\x8d\x96zR\x1aMd\xe7\x94\xebb8j\xca\xece\xa7\xfd\x84q[\xe8\xdb6\xe1kt\xc9\xaa\xee\x06\xa8G\x13\xa9?n\xaeK\xbdq\xd3$\xf3\x97\xd4+:K\x96\x1dL\xb5\xd3\xeb\x95\xc4_.\x93\xfe\xe81\x9b9W\xc5\xaa!^\x83\xec\xc6\x9f\xb4\x9d:\xb6\x10\x97\x8c\xfbd\xc9\\\xb81\x8drBm\xf01\xb5[<\xe6\xe2\x9a\xab\xdb\xd4\x04O\x10P\xdf\xc8\x0ew\xef\x0b\xdb\x81\xa0\xd7\x04+Q\xd5\xb4\xb8V\xd9\x01\xc1\xd9\x98o\xc96\xf5\x93\xcb3d5d\xb5\x0d\xac6\xa5.\xe5v-F\xfaQnB,[\xbcd\x8e \x82]\xea2\x0eqfb\x81\xd9\x8d\x0d\xc1'\xf8\xe1A\xe2\x19\x811\xd7\xa4\xce^X\xac\x19(J\xa7\xac\x84\xc7\x88\x1f:\x01d\n\xc1\xbe\xb8\x8e\x1c\xc8\xe4\xb4\xfc\xcd:\"\x81|\xd5\x9a\xca0\xf3\xb28\xd6\xce\x98e\xd50\xb1v\xcbpE\xf9\x13\x19H\x03\x9ap\xa5\xb5I\xb3\xa59L\xbd\x87\x13\x14fw\xd3\xa3\x98\x96\xc9\xa0M\x95\xccS\x97D\x1f\xa3E$\x8f\xd8M\x83\xbc=\x15\x1e\xa4\x89~a\xb7S\xea\xb3\xc70\xe85\x9b\xfaN\x1d\x87C7,\x1c\xd2|s\x1d~\xa9\x14\x06\xb3C\xcf n'\xb0\xacva\xee,\xa3:2=\n\xc7a+\xea\xc0\xdb8\xc44'\xba9\x8c:c\x01u\xdc\x1azJ74\x8aJ%^\xa2Q\xf4\xd7b\x1e\x8f\xfeU\x18U&Zo\xe2\xbd\x97\x8e\x1f\x08\xcf\xb1\xa9[/=\xbadt\x96\xe2\xbe\xb2\x9a\x15\xf5\xda\n4\xd4I\xd0)\xf5\x1d[\xa7\x10a\xff\xb4*J\x84\xa6E$,8\xa2M\xd7\xebZ-\x0b\xf4\x1b\xf7\x19\xf7C\x9f\xd8t\xad\xf4\x8cr\xe4\xcd\xcf^\xe8\xc6W\x13\xd8\xcc\xf7U\xb4k\xe6\xa1l\x82\xfc\x87\xbd\xa4\x0e\xb7\xc6\xdc\xe1\xb6\x1b\xaa;\xd1]7\xf1\x89\xcch@\x89\x1fx\xa1\xad\xc61\xa7\x18\xd5\x08\xe6\xc9\x93\xf8\xf9\x9d\x9f\xfc1\xf7\x03\xe9R\x07\x1e\xe5\xbe\xd2>+j/\x1d\xaeK\xd4$\xd8\xc2c\xec\x9f\xac\xbd\xdaij\xc8\xd1\xd7\x0e\xff>Yp\x0f\xbdJ\xfd\x99\xb1\xf5\n\xaf=v\xb5\xcd\x02/\xa9\xbf\xdc8\xac)\x1c[S/\x98\xf8,\x98\xd4e\xbf\xecV\x90\xc3\x03\xb6`^\xe1\xe4kb\x91\xd8\xca8\xa5^\xe0\xb3\xe0\xa5B\x06\xe2h\xa0\x89\xca\xacN\xea\x01\x8c\xc1\xc9\xf6\x8a\x01\x14\xed$\x9f\x80\x12\xa1\x01\xad ,\xe9\x91\xf95\xfb\xe4\x10\x98{bex\x90\x880X\x87A\xfc[\xbc\xb6r0\xd8\xca\xdbzD\xf5\xbc\x9b\x92\xab\xfa]\xe8z]\xbf1\xac\x83\xde\xa8\xaa\xdf\x8b]ISe\xb3\x9a=b\xca\xc5j\x02\x18\xfe\x93\xe2C\xe1\xb3\x8d~qUq\xa3b\xacT\\\x1b\xa9\x0d\x95X\xbd`|\x06[$\x81\xe6\x19%\x18\xc65O\xef\x11mY\x9d\"\xff\xde\xce\xb3\xcf\xf6Ha^\xe6\xce\xff\xe4\x13\xd3\xef\x9f\x10\x02\x10\x13\x008\x1c^\x89h\xa4\xf9e\x1dN\xd3\xfb\xcde\xa2\x8f\xef\x02\xe2\xbb\x80\xf8. \xbe\x0b\x88\xef\x02\xe2\xbb\x80\xf8. \xbe\x0b\x88\xef\x02\xe2\xbb\x80\xeao|\x17\x10\xdf\x05\xc4w\x01\xf1]\xc0-\xd6d\xe7w\x01u\xe5f\xec\x0c\x95\x95\xfe\x99ZB]*|\xad+\x01S\xb1r\\\x04\xa8[CZF\x9f\xb17\x05W\xaa\xear/\xf5&a&\xb3\x9d*\xd4\xca\xd6T\x91G\n\xe0\xd3\xa8\x9cI\xff%#\xb8\x0d\x97?~\xf5\x9a4(\xb6\xbcd\xc5\x17\x90\xa4)\xa0\xb7\xec\xf2\xdb\x82\x10\xc7\xc0\xb7G\x0e\xb7\xdd\x06\xf1\x99;\x7f\x12\xef\x19>\xd6i}\xb3uZw\x1f2\xdb#N\x8d\xa8\xbbx\xd5\x8f\x8e\xef\x87*\x92J\x17\x19\xc65#z\xf8\xd4FQv\xa4\xfc\x86\x80\xd6\xb7\xd1\xef\x01\xf3V~\xd1\x9eOU\xa6\x16w\x9d~\xcc]\xa7O\xd6^\xa4\x0d\xb6)|O\x0f\x97\x05a\xe6fI\xcf.\xfa\xa8nx\\fJ\xe5!\xc0\xce*\xc2E\xc8\x13E\x97{),\xb7\xd8\xcb(\xc7\x13\x8a\xd76`\xb9\x92\xae\x97S\xc4\xc9\x90\x0e\x11\xd2D\x05,\x83\xa3\x9d*\xdfL\x0fm\xe7\xab\xde\x82t=Y\\\xf9V-\xaeX\xfc\x89UuUUu\x0f\xa2\xf8\xd3\\\\\xc1\xdc\xf9\xa4\xb0\xec\xa9\x8c:\xf9N9\xb7\xe6'\x1f\x8c8\x991\xdb\xa5\xea\x10\x83\xba\xe4H\xffj:n<\x08P\xb4\xb7n\x91@,\x94\x97\x16\x95\xed(s\xae\xeb\\\xd4B\x8c\xf9\xbb\x04*P6\xa4\xcd\xbd\x0e\x05\x1d\x19\xac\xe9\x1b\xa0\x808\xa0:\x1c\xee7\xc8\xb9\xb9\xad\xc2$S\x1d\x19\x10\xc9\xa9\xa8\xa5\xd6\x91_\xaa\xbb\xa52\xb2\x90\xa8\x14\x9e\xc7\xec\x80\xd8\xd4\xb5C7\n\xbf\xe6\xa1\xb4\x86c\x1e\xf2x\xf6>\xccA\x84\x01q\x02\xe6)q\x16W`\xc1#\xdf\x83\xfc\xb6d\\\xa1\x06\x99\xdf\xa4\xcf4\xe6i\x0dmex\xd0\xf1\xa5\x9a\x989Q\x91\x13MVb]/\x85\xcf\xe2cwc\x9e$\x93\x93\xce!'\xa8\xabP\x89\xd1\x80\xcb\x8eT\x04\x1f\xc4\x17\xa1\x8dy\x8a>\x0d\xf2.Y[%\x85v\xca\"\x12\xc9\x88\xc5xe\xc6\xb1\x064\xc6|\x15\xba\x81\xb3v\x1d5@\x1a\xe6^\xc1\x85A\xe9\x9a\x8a8PU{t\xb0\xfa \xfap%f\x92\x1a\xc9\x8af\xd8\xd6k\x8c\xb9>\xcb\x13\x08Oa\xb8\xa6\x1e\x90@\x17r\xe8\xebL$\xaf\x07\xc0\x03J7\xad\x99\xa7\xaeQ\x86\x10\x8a\xbf\x87\xf3\x922\x90\x83\xcb\xb9\xd2\x08\x8e\xf9#\xd9B_=o\xaeK\xc9\x82\x7f\xbf\x8c:M\x18\x0f<\x87\xf9\xefc\x9b\xf4xS\x8dI\xdd\xfb\x8d\xaam\xf8Fs\xad\xe5_\x99n\x1d\xb0IJ\xa5\x8d\xb0\xd4\xab\xf1\xc6ub\x90\xd2\x12\x81\"\xcd\x1cC0\xc3\x1a\x9d\x1c\x1f!\x8d\xdbD\x03k\xc2\xed:\xaa\xee\x9e\x18\x92\x98\x9f \xf3\xe3\x80N\x8a\xe6\x9b\x144\xe1\x11\x8f%\xfe\xfdh\xcd<\xb2\xa6\x8e\xf74\xf0\x1c\xa1\x96/\xbf\xc2\xbb \x9a\x87b\xf0\x8dI\x13\xb7\x89&\x10\x08\xc3\xb4\xaa\xc6Q\xf0Y\xf9\xb5|\xe9\x11\xe3\xb6)+)\x7f\x86\x90\xc3V%\x8cq\xadb\x91\xc6/\xbb\xf18}\xadfZ,62\xbd\x10n5\xcbs\x11\xe8\xcb\xf5&e!\xac&\xc6\xa6\x16\xf9\xc9\x08\x01\xa7\x9a\xe3\xed#\x8f\xda\x80\xb8VmR\x07q\x11<\xd1\xffTU\x9d~\xb8^\xbb\xb7\xc6\x8d\x90\x9f\xc6\x15\xee\x1d\xe2\xde!\xee\x1d\xe2\xde!\xee\x1dV\x8d\x82{\x87\xb8w\x88{\x87\xb8w\x88{\x87\xb8w\x88{\x87\xb8w\xf85\xf7\x0e\xb3\xac\x13o\xc1\xa5d6E\x15\xbc\x87\xe1\xbb=o\xbaa\xfb\xb6\xf2\x94iA\xdfmv\x8e\xd3\xb72\xd6\xdf4^:~\x90g6\xf9k\x8a\xcd\x12w\xee\x01\xf3\xaa\xed8}\xdb\xa4r\xdb\xaa\xf9\xad\xee\xfb\x8b\xf8\xfc'>\xffY\xb9\xc0\xf5\x1e[\xc4\xe7?\xab\x81\xe1\xf3\x9f\xf8\xfc'>\xff\x89\xf5CX?\x84\xf5CX?\x84\xf5CX?$\xb0~\x08\xeb\x87\xb0~\x08\xeb\x87\xb0~\x08\xeb\x87\xb0~\x08\xeb\x87v[\x13\xac\x1f\xc2\xfa\xa1\x00\xeb\x87\xb0~\x08\xeb\x87\xb0~\x08\xeb\x87\xb0~\x08\xeb\x87R\x12\x83\xf5CX?\xf4c\xd7\x0f\x95V\x92\x14\x97s\x94\x16\x91\xe8\xa7\xab2o\x87\x9e\x9d\x1e\x9aTAe\xfd\x88z\xc1\xb0~\xdd\xc8:z\x963\x8d\xbd\xfa]\x87h\xe6\x11\x9a\xc4[\x88\xc0\xde\xf0\xe2\x8dz\x03\xb1J\xe1W\xdb\xe6\x8df\x18\x9f\xf5\xc4g=\x93\xd6o\xba\xf1Y\xcf\x12aL\xcbF\x95\x10\xea\xb7@\xb7\xa8\xdd:\x15\xc2\xddB\xf2\xf4\xdb\xa0\x19\xb9\x13\xc2M\x17\x06\xc2+\x9e|.\xaae\xec\x9e\xde\x11-\xa3^bv\x95\xb4\x93HoA\xb9\xb3\x04\xfbn\xa1\xbc\x92\\\x7f\x1f\xcf\x0d%\xe1U\xb7\x8e\xc3\xfa\xdaE\x12\xb9.\xa4\xd6#A\xe9\xea\xd2H\xf7L|\xcf\xae?va\xb7|\x1e(\xa5ItU\x84\xa9\xd10xe\xd0\x98\xf9\xc1.h$\xbaU\xa01c~`\xaac\x0bqy\x80\xef&\xa5\xcb.\xb3\xaf'\xa5\xa6\xf7E\x1ePJ\xa2\x93~E)\x85\xcb\xe7|H\xc9\x84\x94\xe6\xdb\xb5\xf4(\xd3\xfc\x16P/`J_(\xcfKrI\xf5\xa8q[\xc3I\xb1\x9f\x98`\x9e'\x89t\xa7r/a\xd5\x94O\x97D\xa4(\x1cH\xea\xa8\xcc\xbbJ\xe9I(\x16\xdb\xfde\xa5\x14\xb0\x0d/*\x9d\xa5\xd7-\xb1\x13\xe2:~\xa0j\xc4\xd6\xd4\x0b\x1c\xe9\xdbz\xa9W\x95\xe2!\x12\x0f+yb\x95\xee\xa1\xa5?\x95\xd6\xc8\x80\x8c\xe52\x9d\xc6\xbb\xb3@\xa6T\xbb\x84V\xa3\xea\x0b\x85\x18\x85\xf8\xcb q)5k\x8cZ\xfe\x1c)%y\x14\xd3\xef\x92\x8ey\\\xcbB\xee\xf8.\xe9\x98\xa7^^\xde\x88x]\x9c3\xe8\xfaF\x85Ex\xdf;\xdax\xe0\xe6[?pS\xe8\xffW\x05\x19\xa9N[%I\n\xde\"\xac\x1ft\xa8\x10\xbc\xba\xdd\xd7\x0f\x0fj\x8f\x9b\xebRo\xdc{6\xf9\xf7o\xbe\xf1\xedR|\xbb\xb4\xc8\xc3.\xcc\xa2=\xd0\xb7K\x0b\xb4e\xf1\xb3\xe6\x9bTe\xc1\x04\xc6|\x8b\xfcL\xb4\x89\xb1\xd3\x93\xd0 O\xfe\x1e\x9241\xb4\xdam\xb7\xd1\x85\xdf\xb4\x0e\xae[\x91\x92\xaaCI\xe2\x0f\x9c\xad>j\xd9\x9dm~X?.\x01\x8b\x13\xb3zGLi\x81%s\xc13\xa7\x9cP\x1b\xfc\x86\x069\x91\xaay\xcc\xc55W^\xbb\xe0 \x02\xea\xf2w8\xe8 l\x87F\x9bF0\xdd\xe4\xee\x8d\x98\xcb\x9ec\x9e\xa6A^u\x952Ga\x06\xfa\x93\xb5\xa7\xe2\x8e:\x9e\xfd\xa1J?\x9b\x10\x02\xe6\x1coq\xc5Yi\x98\x93$\x01@\x86\x1a\xcb\xd7o.\x8e\xf7\xe1\x8c\x8d\x0esT\x81\xa3\x03\xba\xee\x84\x1b{\x15U\xdd+\xfa\xeaJ9%\xb7c\x1e\x95\xb7\xc8\xf5\xfa\x10:\x9e\"\xe8B,\x04\x14\xaem^\xbcr\x97\xfe\xa8\xcc\x9dO\x14\xd2\x8f\xf9\x1d\xddx\x82^\xfc\xb7\xeb\xc5\x9b\xe1+\xedC\xa9m2'\xe6\x8b:'6\x0fj\xdb\xa6\xfa\x06)R\x18\xd5M\xf1 $\x1e\x84\xc4\x83\x90x\x10\x12\x0fB\xe2AH<\x08\x89\x07!k\x9c0\xc4\x83\x90x\x10\x12\x0fB\xe2AH\x1d\x8e\xe2A\xc8\x9d\x0e\xdd\xe1AH<\x08\x89\x07!\xf1 d\x9c \x89z\xe3A\xc8\xf4\xfe\x1f\x1e\x84\xc4\x83\x90x\x10\x12\x0fB\xe2AH<\x08iv\xed\xf0 $\x1e\x84\xfc\x1a\x07!\xcb6\x06+w\x03If3p\x97\x1d\xc0\x822\x97-\xcaTb\x83w\x7fU*\xdbl\x1c~\xd3\x95'X\xfd\x97p&\xb0\xfa\x0f\xab\xff\xee\xa7\xfa\x0fKb\xbe\xa1\x92\x98\xf4\xf2\xd47M\xf5+d\x8a\xa0ls\xce6\xff\x9eE\xb5b\x8e8\xf5\x0e\xca\x1d\xabh\xb0\x8a\x06\xabh\xb0\x8a\x06\xabh\xb0\x8a\x06\xabh\xb0\x8a\xa6Fy\nV\xd1`\x15\x0dV\xd1`\x15\x8d\x8e`\xb1\x8af\xa7\x8a\x0d\xac\xa2\xc1*\x1a\xac\xa2\xc1*\x1a\xac\xa2\xa9\x1a\x05\xabh\xb0\x8a\x06\xabh\xb0\x8a\x06\xabh\xb0\x8a\x06\xabh\xb0\x8a\xe6kV\xd1dY'\xde\x82K$\x1e\xf5\x9d\xdc\x1fB\xe6I0q\x1b\x00\x80\x1b\xc7\xdf\xd0\xc6qq\xc9T\xf5\xfep\xb6f\xaa\xe6\xb5 gx\xcd1^s\xbc\xa3\xdf\x8d7\xa4\xaah\x11oH\xbdk\x19\xd6\xf7p\xcdq\x0d\x05{\x8cw\x17\xa3d>4\xc9\xac\xcb\xb7\xf5\xab\xc4\xf0\xben\xe4\xf9\x87\xcd\xf3\xdf\xdf}\xdd\xb5\xe4x7\x11\xaen\x1d\xd9\xd9\xfa>q\xae\x0b\x86\x05u\xd0\xc0\xb0\x00\x15\xf1\xf7\xa4\x88\xbf\xff\xb0\xe0\xce\x02\x89\xde\x14\n\xf1\xc3\x16\xe2\xef\xcf\x9b\xda\x8cx]\x9c\xbf\xf8\xeb'\xa5N`\xc1Y\xa1j%\xf2\xf5\xbd\xba\xda\xe3\xe6\xba\xd4\x1b\xf7\x9e5\xf5\xfdk]<\xb6\x8a\xc7V\x8b\x1c\xa3o\xe6\xd8\xea6\x1a\xe9\xabeGQ\xca~T)+a\xceh\x13\xb5\x9a\x1b\xf14+\x9ef\xc5\xd3\xacx\x9a\x15O\xb3\xe2iV<\xcd\x8a\xa7Yk\x1c\x13\xc5\xd3\xacx\x9a\x15O\xb3\xe2iV@\x07O\xb3\xeexr\x12O\xb3\xe2iV<\xcd\x8a\xa7Y\xe3\x04I\xd4\x1bO\xb3\xa6\x13\x7fx\x9a\x15O\xb3\xe2iV<\xcd\x8a\xa7Y\xf14\xab\xd9\xfd\xc3\xd3\xacx\x9a\xf5\xab\x9cf\xd5[n\xe1z\xe1\xd1\x19\x8b\xb6\xdc^\x89Y\xe8\xb2w*\xbd\\\xbdo%\x1d\xa3\"\xc6\x8f\xce\x93&6s\xe8zMV\x00\x1e\xd2\xae\xb9!\xf2\"\x9c;\x0b\x1am\xac\x99\x04x\x11\xec\x9c\\\xa4\xe6\x14%`\xa5t\xa8.:}\x0d\x07y\xd3\xe0UN\xda\xe16\xdb'\x8a`O\xfc\xd9%i6\xba\x9d\x0d4\xf0\x85\xb6\xf2\x12Q\x9f\x05\xbafc.6i-\xc8\xbc\xc7;\x87\xf1\xceQ\xc4\xd3|.\xb4_)\x03\xefp\x06\xfa\xfe\x89\xbd\xa4\xd2\xe4\xf9\xa1\xbdT\xae\xcb\xc2 \x943\xa1\x8b\x0f#\x0b#uM\xe8\xce\x08\x0d\x03\xb1\xa2\x81c\xc3\x06\xad\x01\x1f\x08\x88\x0e\xb4\xf4NT\x89\xe1\xc4\x0f\xd2>\x18\x96\x12`)\x01\x96\x12`)\x01\x96\x12`)\x01\x96\x12`)A5\x9aXJ\x80\xa5\x04XJ\x80\xa5\x04XJ\x80\xa5\x045\xd7d\xc7R\x82\x9c'r\xea\xd2d\xeaM\x06\xd0\xd2%\x92\x13\xa5S\x11\x06\x84\x92\xb5K9O\xa4$\xe4b@\x96\xc5 L\x14&l;\xf46\xa5/\xe1\xf2\xb5\x03\x95n\x92C\xd6\xbfia\xe7\x0cE\xfa\xf0\xca\x14\x92aE\x19\x0b9=\xd8I0\xd9\xb0\x02*\x95\xa1o\xa0o\xbaq.\xd1\x8d\x9c\x9d\x1e\x1a\x05[I\xadC\xe5\xa7oG\xad\xb5Nq\xa6\xd1\x87)\x9a\xed/\x056ZM\xf9\xadz\x9b\x0d\x93\xa2\x98\x14\xc5\xa4h\x95\xca\xc1\xa4(&E1)\x8aIQL\x8abR\x14\x93\xa2\x98\x14\xc5\xa4(&E1)\x8aIQL\x8abR\xd4|\xc7\xa4\xe8\xc3K\x8a\x96$\xfc\n2pu\x12~\x89n[%\xfcR\xe5\x90~\xfd\x9c\x9f*\x96\x9ch\xd7\xf8\x0e\xf7s\xfd\xd8E\xa3\x99\x9a\xf04Q!\x9e\x8bn\xcb\xd4#\xa9\xe8\xc3Tm;^~\xc8\xc2\xcb\xa66,v\x1d\xf6J\xf7\x1c\xf3\xf8\x19\x93\xdd\xaab\x01\xea[\x9d\xbe9438\x0fh\xc0\xea\xf3`\x9c\xfe\x89\xae\xd8\xc9f\x80J\xe3\x0b\xc3\x0fe\x98\x17\x13p3\xc6u\x08Y\x0c!EP\xc8\xbfM\xedF\"\xbf\xe67\x1c\x1e0\x0f\xb2g\x13j\xc3[6R\x0f\xf1\xc0\x13\xae\xcb\xbc\xc6U\xabqJ=ZG\xe0\xe2^\x13\xc6e\xccY\xe7\x88g\xbe\x13Q\xff\x85\xe0b\xe6\xf8\xeao\x93bQM\x89\x1fN\x15\xd7\x16q\xa4\xc27u*\xc4g\xc0\xe9&OH\xe2I\x133\xe9\xe4!\"\xe5{\xa8$ T\xc5G\x9f\xc8\x8a\xdeF\xa9\xfe@\x18\x047\xe1\xb7\x13\xcdaM\xd5D\xea\xb3\xed:Z\xa8\xcc\x86I\x9e \x89\x19i5e\xf0\xad\xda;\xf9Z\xab\\\"8i\x1a\xd5\x11\x14\xcd\x1e\xbb\xc8\xc5R\xf8\xc16\x12!\xdboA\xa5d\xf3R\xfa\xc8F\x19\xfe\x82l\xd8D;$u,\xa6V^9\x8a\xa6\x01%\xce\xf7\x18S!\xd5X\xd2\x87\x83\xacP\"\x19'\x9d\xb0\x1bf\x87\x81\xca\xbeQ\x85-P\xf1!Ij\x01\x0d\xb7Z\xff\x87+\x9d\xc8qi\x8e\xfb\xd2Z#\xf0(\xf7\xe7J\x87\x1f1.V\x17\x1e\xb5k1G\xb0,\xf2.\xb2\xac\x12,\xd3g`A0\xc4\x9c\xac\x85\x17<\xb5\x97\x94s\xe6\xc6[G\x9e\x9f\xc8\xe2z\xd4\x86\xcb-a\xf3A\xbfo\xa0\x98k\x1e\xf2\x85\x03\xb2!.\x99\xb9\xea\xd1g\x93\x99\x9c@5V\xb2-\x81\xb6\xd1[\x05sMO\x97\xde\xca\xe1\xb3\xf0s\x8b\x12\x93*\x1d[\xe7A\xcb\xa9\x9c\x1c\x9e\xb7\x9b\x19\xa8\xd1\xc9\xc1hrf\xc2\xc9\"\x10I\xc0\xea\x85\xab\xab\xde}\xc6g[\x08[\xb2y\xa1\xb0Q\xd7%\xb6'|_\xeb>\x98\x181\x98\xf9fC\xd8\xf1\xc7\xdc0\xb8\xb5\xa7o\xd3\xdc\x02\x8fL\x8f\x9dP\x81\x089\x89\xc8\x16\xba\xfd\xe4\xf9a\x04)\xad\xcb_\xbf\xb98\xde'\x17\x82\xac=v\xc5x\x10\xdf>\xab\xc6WW{0`c\x0d\xc0c3\x0b\x00\xc3\xd2_\x18\x04\x8f\xf5\xdc\"\xf0\x80\xb1\x172\xc3&\xdct\"S\xca/\xb5~\xfd\xc9'\xe7\x8c\xcft\xe71\x8f{\x1be\x90\xe2\xc5@\x909u\xfd\x12\x03\x92\xe4(\xd0!\xc0\xe4/\xa9\xbf\xaco3\x96\xd4\xaf\xa1\x16d+\xf2\xc8\xe1d\xc9n\xf4^\xda\xe38\xe5\x95D\x18$,!\x10\xa5\x01]\x0e\xd7::2\xea\x94K\x14\xd4$\x0eh\x80\xfa\xd4\x81\xb9M\x02\xd4\xb0\x0fO\xc3n\xe0\xaa\xd4\"\xd7f+\x85\xfa]\xf8j\x0bW-\xc1Xu\x9c\x1b\xe4\xb8\x07\xc0q\xd9\xe1\x93kH<\x16\x84\x9e~:99\xb4_\xa8\x12\xf1\x0d\xe5o\xea\x0d\xe5\x02Es(8gj\x8fz7M\xe3\xef\xa0j\x1ed@\x88>j\xc2G\xfd\x02\xd1\xa0-<\xd6\xd0J[r\xc6\xa1\xfa\xb3\x9a\x1b\xe2\x04\xb3\xd9P\xd0\xa5\xcd\xf0\xc1,\xbb1\x07\x8c\xcf6\\;w~qpq\xca\\?\xa7Z\xc8\xef\xd1?.\xce\xfe\xfd\xe6\xf4\xf8u\xf4\xef\xd4?\x0e\x7f}s\x9e\xbds\xaez\x944\xad!!\x1d\xb1\xb53'4\x9a\x8e\x03\xc5&\x82\xc7\xe6+\xca\xe8\xc0\xf4\xfd\xfd1W(XD\x0eg\x11\x8d\xadE\xe4\xffJ\xb6H\xe1\xa1J\n\x9e\x90\n\x14\xf7\xc9\x91\xde[\xd7\xc9\xf2\xa8\x8b\xec\xb0O\x0e\"\x04\x97\xd4'\x7f\x86~`\x1ey\x02$\xc5\x9aA1\xd4\x92\xf2\x99\xbf\xa4\x97\xac\x91\x80\xa0\x11\xcc\x02\xa1\xf6%\x17\xd7.\x9b-4\x90\xa83\xf1\x03\xb66\xe5t\xa0\x10\x99\xb7\xa6^p\xab\xb3\x19 \xd8E\x80\xcd\xc5Z\x19\xa8\x0d\xf2f\xcd\xb8i \xd5sP\x1c=\x03k!\xc5\x1d\x8c\xacy\x93aM\xedK\x16\xf8\xc9\xc1\x14\xdd\xb3\xc3A\xa5\xb2\xed\n_\xd7X\xdb\x94\x13.\x88+\xf8\x82y\xc9\xbc\x1b\x0c\x01\x0fu\xc1\x08cn\x86\x90\x12\x03\xef\x87H\xdeM\xf0}\xf2\x96\xc7\x04\x7f\x98\xa7F\xe0\x95\x0c\xfd\x8f\x0d\"\xf0\xe6\xec\xe8\xf8l\xf2\xfa\xcd\xeb\xe3\x0cO\xaa\x0fo_\xc3\x7f\x13\xbf\x98\x7f\xa7X\xbc\x14J\x9a\xb3\x9f\x90\xe2\x86\xfb\xe4#\xf3\xc4\x13e\xc3\xe0V0=\x1f3o s\x06\xa3}\xb3\x08\xe6\x1a\x9e\x19s\x9d+\x98;\xbc\xbcr\xabz[z7{Eo\xc9\xcc\x81\xda\xb1\xa8`\x1c\x1a@\xb5mT\xb5}K\xae\x99'Cp\x1e4\x12\xa3\xe6\xc6\xd4w\x18\xe9\x01\xd9\x0d\xb5\x03\xb8G+\x01\xb7\x08\xa6\xda\x91\x8by6\xa5\xc82\xbc\x9cW`e\x06Rx\xc1\xc4\x99U{\xabP\xc7V*9\x1aaq\xad\x1dPU\x95\x08l\x99R\xaajK[\xfd]2l4\xa5x\x16\xe5\xe3\xaa;\xbc\xec\xc8\x15\x99,\xc5\xbaN8\x11\xe7J\xcdp&\x19\x1a\xc3J\xc6\x03\x16\xe8N\xc5\x13\xbal\x10&l\x96\xd4\x87*n\xaeo\xa32\xa8C\xd1D\xe0\xd1+\xe6V\xecy\x1b,\xc4\x9a~\x08c\x99\xd4=\xac\xf8\xd92\xba\xf0\x18\x9ck\x90\xae1\x1cXI\xeb\xa2\x82 A\x9b\xc7\xc8*\xac\x9d5s\x1d\xceL9\x91\xe4\xbe'\x82\xdbF3\x19\xde\xbc%S\x16\\\xc3\xb1\x12]\x0f:\xe6\xca%\xf2\xe5\x82\xf8LzL\x81>(\x05\xab\xe1\x1bDA\x0b\xeb\x1ax09\x0c\xd4\xd7\x1a\xfcR1\x1fs\xa9\xb1\xd4^\x82\x16 X\xe4l;\xad\xd0\x12\x0d\xcb}\x80\xac`|\xe7\\\x1f\xf7H\xce<\x91\xdcO\x02Ji\x8d\x12\x02\x9e\x18f\x9f\xa1;\x85\xee\x14\xbaS\xe8N\xa1;\x85\xee\x14\xbaS\xd6\xa655\xe3\xc0j\xc6\xf3\xdb~U\x92}s\x0e\\\xce4\x17\x98yUV\x1d\x97T\x03F\xa0\xe5T\x831\x8f\x87P%\xbb\xe5\xbe\xd4\x1b\xb90EX\xa3\xa6\xfa:\x9a*\xe6\x17X\x9aR\x87D\x0f\xa8|\x0bC\xf3\x92E>\x05\x9c\xce\xeb\x1d\xba\xad\xad\xd6\x0c2\x19\x81\xa8\xa1\xa7\x8a\xe1\xa8\xa3\xbaYH>\xfb\x10\xb2\x92W2\xf3\xa9\xf3l\xe6\x17b\x1c\x03B\xedj\xd0\x80n\x84Ux\xae-*\x85\x97\xdd3E\xf3\xbe\x89\xa5\xc0\x17,\xde\xbb\x8f\xe8\x9fJC\xc3\x01/\xc7\xd6GC\x98\xcd|_\x9f\x98\xf4X\xe09\xecJm\xaf\xc3[\xb3\xc63\xd1\x87\xb0Wr`+\xe9\xaf\x99_\x8c\xbb\xb4\x06?\xe9\x90B\xe9\x9f\xe3\x9b\xfc\xabc\x9e\xc0\x96\x1d\x8d\x0e4\xa7mS8@\xc5\xd6\xda\x83m}\xc7\x1fs\xe5\xe9\xab#\x05\x11\x0e9\x14\xe0\\(5(\x94\xea\x1d\xb5\xad\xa0\xfe}\x08\x87\xc2\xb7\xac)\x8e\xd8\xa4\xe0P\xb9Q\xb8\xf0;1x\xfb\xc2vht7t\xc2\xb2VZz=@\x85zW\xa3e,\x03\x9ew\xc7\xf3\xeex\xde\x1d\xcf\xbb\xe3yw<\xef\x0e\x08\xe3yw<\xef\x8e\xe7\xdd\xf1\xbc;\x9ew\x0f\xf0\xbc{\x80\xe7\xdd\xf1\xbc\xfb\xc3:\xef\x9e\x0bhU\xec\xba1S\x19\xc7\xef\xc9le2\xfa\xd6\x92\x91\xb4\xf6\xea{>W\xa9\nF=!\xe6u\xdc1\x83\xec\x8ay\x97\xaet\x9c\x85\x98Kqe7\x8e\x1f@\xde\xc8@K\xbe)\xa8;\x15^\xf8 \x10\xae\xa9\x1f\xe5`\xaaw\x02\xd3\xed\xa2\xdb!\xd5\xb3p\xd2\xc5\x96\xb2\x13\x10F\xa5\x94\xe8Q\x9624\xbedl\x0dYZ\xd3\xf7\xb5\xaae\x05\xc7\x93\xaeX\x14\xef\x12_\xacX\xe2\xa4\xf3\xad\xd4\x8c5\xd6\x99\x19\xfb\x02\x96m\xcc5\"R\xbb;\xa1Z.L\"PO\x15Le$;\xb0%\x94\x15\x9eZ\xa7b\xb6\xb8\xf9\xca\xb8`5,\x00\x86\x08\x18\"`\x88\x80!\x02\x86\x08U\x0e\x0c\x86\x08\xdf[\x88\xf0\x9d\x1f\xefO\x8f\x14]\xf8\x1f\x08)K\x91\n\x8e\xb9\xce)\xba\x9b5\"C|\xfd\xaa\xf1\x9e*%\x06\xaf]\xdd\xf5\xda\xd5\xfc\x81\xf1E:k-R[q\x0e'\x0b\xe9\xafF~m\xf4\xe0\xc3\xf5R\xeaD\xf0;m\xe1\xa9\xef\x10q\x9a\xbc\xb1\xd9a\x93V\x14\x8cd\x12\x7f\xf0[L\x8bs\xb1\x8aq\x88w\xdf \xf1\xd8\x9aAR\xfa9\xf5\"\x9a$\xf7S !\xa9 \xc0\xe2\xe8=\xd5O{\xe9'\xd45\xcd\xd5rBH\xad\xfd\xe8Jn\xc3\x00\x13\x03\xcc\xaf\x15`nu\xb9\xad\xe9S\xe7z\xdb\xccm\xcb\x18\nb(\x88\xa1 \x86\x82\x18\nb(\xb81\xe8\xc0P\x10C\xc1\xcaP0\xd6\xbd\x99\xc2\x12\x9aXP\x8c 1&\xc4\x98\x10cB\x8c k\x94\x1a\x96\x06j[\x94\x1a\xe6`\xd4-5|\xcdn\x82s}\xb5\xe1\x99rj\xeb\xc7\x89\xa0c\xcd\xc5\x88\x13\xed\x13o\xc7\xc2\xa0d\x0d\x88\xc8q\xd7\x92\x87\xf5\n\xa8:Pu\x94\xab\x8eXp\xb3\x89$e\x93K\xf5\xc5\x06\xa9\xaf\xab8\xd4u\xa4\x07\xe9{;\xeb\xab\x8e\xcc\x85\x9f\xdbH\xb8\xae\xb4\xdaT\xd8\xac\xbcX\xd4\x1f\xa8?P\x7fl\xd0\x1f\x1be8\xfd\xfe\xa5\xe2\"\xe5MG\xd1\x81T-4\xbaSX\xb1>u}q\x1f\xe5M\xdb+\x9f-\x12\xdc\xd9\x1b\x8fk\xe41\xee\x9a\xd51\xd18^t\xbd\xc6\x8b\xae\xcb/\xba\xc6\xbc \xe6M0o\x82\xce\x0b:/;8/A\xc1\x96zE$T\xecIl\x17\x04\x1dF\xfa\xbd\xbe\x07\x12\xdb\x84m\x943\x86>\xa8=P{\xdc\x9f\xf6\xc8Kn\xdd\xa8G{\xb1fOz\x87\xa8'\x96\x12\xb9\x10\xf5\xa3\x9e\x18\xe7-\x02\x9e\x84\x1b\x8c\xb1\x0e\xc6:\x18\xeb`\xac\x83\xb1\x0e\xc6:\xe8\xad|\x9b\xde\xca\xaeqN\x02\xc2v!\xce\x99R\xda\xf5\x1d\x0e\xbd\x93\x9b4\xf2S!\\Fy\x827\xfd\xd0\x96V\x85\xcc]\xba\x00\xac\x9d\xb91\x0f*\xf8\xc08\x065\x03j\x86j\xcd\x90\x11\xcf\xad\x83\x18#t\x1b\x82\x19\xeb\xbe\xa3\x99\xb7\xdc\xe8\x88\x03\xfbr\x8bP\xc6\xf8\xecu\x02\x99R)((G\x0d#|\xb2\x8e+\x89\x87D\xff\x01\xb5\xc47\xa8%\x8ae\x8dl:wd\xbc\x87t\xd7\xba^C\xdcK)\xa8\x87%\xdf\x99\xe8\x1f\xc5\x1a\xc5\xfa\x1b\x17\xeb\x8c\x94m)\xd9\xbb\x04\x07\xd9\x87\xc0#\x9e\xc3c{xl\xef\x9b:\xb6\x17s7\xa8Z\xc9\xdc/\xb3\x1a\x15\xf5=\xea\xfb/\xae\xef\xe3\xd5\x8b)N%TQ\x08Um@\xc0\xfd\xfd\xc0M\xfa\xc0%\xbc\x85\xe3\xc9\x05ZP\x87\xfb\x01\xa1\\\x9d\x19\xd4@\xcd9\xf3u\xe8\xad\x85\xcf\xe0r\x8fp=\xa3\x81\x84I\xf9l\xcc\xe7\x1ec\x1f\x81T\xc0\x9b~\x89\xd0\x14\xbe\xe5W-C\xdb\xdcn\x8e\xef\xe2\xe3\x13`\xf8\x04\x18>\x01\x86O\x80\xe1\x13`\xf8\x04X\x80O\x80\xe1\x13`\xf8\x04\x18>\x01\x86O\x80\xe1\x13`\xf8\x04\xd8\xb7\xf5\x04X\xe2a\xfb\xcd\xf7\xba$\x9e\x0f\xba\xa7w\xf1\x0bb\xf7\xf4C\xdc\xbf9\xc1\xb2n\n,\xbfo\x92}\xdd\x0c\xf7N0\x97\xf6\xd5si\xea\xee*|4\x1e3F\x981\xc2\x8c\x11f\x8c0c\x84\x19#\xcc\x18a\xc6\x083F\x981\xc2\x8c\x11f\x8c\x08f\x8c\x1ez\xc6Hd\x9ep\xcf?VY\x92\xc4I\xe6\x8d2\xb9\x99\x82\xd4\xd1R\x07\xcf\x1b\xf3E\xa7\xd4\xa3u\x8e\x0ck\xcf~b*Gj\x97\xf4\xe6&\x97\x81\x94:\xe2`J|M\x1c\x91\xca\x8e)=_x\xceQ\xce!\x05H\x06cbNN\x9e\x1f\x12W\xa5!\x14\xa4\xb5l\xca\x02\xe6\x95V\x8c\xa9k8\xe1\x9f\nn\xfd\x82\xe7uD\xcb\xec\x19\xe5\x1c~1\x1eF\x07\xaaGE\x1b\x95\xd9\xb5\x87\xb4\x10\xf9\xa5(\xa5\xde\xc6BV\xf34F\xa2\x1f9;=4\x06\xb1\xc6R\xa5^v\xaf^),8\xc2\xf4\x11\xa6\x8f0}\x84\xe9#L\x1fa\xfa\x08\xd3G\x98>\xc2\xf4\x11\xa6\x8f0}\x84\xe9#\x82\xe9\xa3\x87\x9e>J\x86\xe2\x9b.\x90L\x9f\xb1\xc1\xcbW\xb0\x86\x08k\x88\xbc\x8d\xcf\xb9\xe6SI\xf5\xd3V\xaa\xb0/\x99\xb5\"\xcf\x99\x0f.y\x82\xfb\x80V\x16\x84c5\xee\x98L<\x94X$Eu\xf3b[\xa40\x93\x89\xb1:\xb9E<\n\x88\x999\xcc\xccaf\x0e3s\x98\x99\xc3\xcc\x1cf\xe603\x87\x999\xcc\xccaf\x0e3s\x98\x99\xfb\xa13s_\xfa(`z(S\xbe\x03\xcf\n\xccH2\x17`DS]\x03\xb6\x87W\xf7\xe3\xd5\xfd_\xfa\xea\xfe\xca\xec\xdb\x0eUc\x9a\xb9\xb7\xaf\x1a\x0b\xb7\xc8\x8e\xf9\xd0\xbe\xa0\xb4\xaejF\xe1\x8e3\n\xd33\"'R\x15\x07\xa1\xc7\x8d:\x85\xb0\x93(\xbc\x8cd\x9fa\xb2\xf4 9\x8a\x9c\x939\x03)\xc3^\x05OE\x1d\x81*Ji(-e\x0b\xee\x07^hK\xd2^\xb2[\xb8\x0f\x1d\x9a\x9cRP(3\xd3>bU\xba^3>{$\xbf7~a\xb7\xf2\xbf\xd6\x98g\x7f\x85\x01-\x18\xa8\xd1x\xfc8C\x1d\xce\x19\xb8a\x92:\x87\xd1\xbf\x8e\xf9\xac\x9a<\x1b\xefQ\xfb\x92\x05\xbe\x86\"'P\xc4\x01Q\x9e,\xc3C\x89\xbb\xbf\xa2\x80%1\x1f\xc6g\x89\xc7D\xa3\xf5f<\\\xed\xed\xff\xbew~qpq\x9a\xbc}}~z|x\xf2\xe2\xe4\xf8h\xcf\xd2-\xe4\xf7\xe8\x1f\x17g\xff~sz\xfc:\xfa7\xfc\xe3\x0fI-\xf0\xa6\xf6\xf6+\xc1\xc2\xc9\xb3\x90\x07\xcc[S/\xb8-\x98V\xe2\xab\xba\xa3\xb0ZL\xaa\xaa\xe5\xb6\x90\xccL\x86P\x0b\xaa0\xf9\xa8J\xdc\xa8:\xf98\xe6\x99E\x8c\xff\xb9\x13\x1a\xa9e\xdd\x06\x9d1W'13\xe8\xc4j=\x90Q\xde~ <6K\xf4\x8e6\xde53\xe0;\xa8\xf8\x0e\xea\x97~\x07\xd5\xda\xcb\xc7rj9\xa7\xae\xb0/\xb5SZ\xc9m\x18\xb6a\xd8\xf6\x15\xc3\xb6zW\x0d\xe4\xe26?\x15\xb8m\x08\xaa\xce3\x85\xc5\x0f\xc5#\xcc\x92%}p\xc2\x99\xa7\xed\x18\xac\x1a\xd4\xaaj\xbb\xa3\xeaK\xc1\xeb\x97\x1d\xfd\xfd1\x97#YDcf\x11\xf9\xbf\xd2\xd9N\xa1\xa0T\xd3\x13R\x81\xdd>9\xd2%1\x80V\xa2\x8b\xec\xb0O\x0e\xb2\xae\x99T\x83\x7f\x86>\xb8\xe5\x1ed\xce\x96\x8c\x885\x83\xb8$\x8e-\x12\x804\x9e%\xb0\xa8}\xc9\xc5\xb5\xcbf\x0b\x0d+\x82A\xfc\x80\xad\x8b\\A\x081\x1c\x9e\x1cc\xc3\x002\nsY\x90\x85\xbe\x89\x93t\xf4\x85!\xe7g 9}f{L\x9a\xfe\xd5:\x0cX\xe3\xaa5e\x01m5\x0e\xa6\xbep\xc3\x80]\xdc\x9c\n\xdf j\xd1\x1f\xcc_\x1d\x0b\x9350\xcfe\xc7\xd82H|\x95)\xd5\x98\x07\x1e\xb5\x03\xc8\xe7H5\xa8\x0c\x06\x10\xfef\xe2\xf0\x19\xdb\xec\xe8\xe7\xcc\xd9\xc5\xcd\x89\xec\x04\xa5\xdfR\xcf\n\xd0\xb3\x86\xa7\x93&N!\xf1\x88\xdaAH]\x12x\x94\xfbT\xeb\x05 \x01\n\xaf\x17\xc0\xd4\x1cJ\xc8\x1f\xa7\x02\x8a< S\xa9\xf8@\x10_xA4?\x7f\xc3j\x1c\x8a\x19;\xe1s\xb1Mfj\xc6JB\xbf,ed\xb8(\xc9*6\xfb *`\xb2\xf6f4\xa0\x93%\xf5\x97\xb5Z\xabc \x85b3\x0d\x1dwV$\xab\x10\xeb\x94RBQKR\xe3kR\xc1\xa5SV\xe8\x97\x9b\xd5\x97\x0d}Bg+\x87\x93g\xa4C~\x7f\xb4\x10\x0b\x01\xc9\x99\x86M\xfd@\xf6{L\x9e\x91\xf1\xde\xc2 \x96\xe1\x14J\xa4l\xe1\xaf\x84\xaf\xff\xf3\xc4\x9f]>\x0d\xa04\xf3\xc0\xb6\x0ff3\x8f\xf9\xfex\xef\x8f\x7fF\xb8\xb2Y\xd2\x07\xe5\xca\x17Z\x8ak\x15\xcb9\x9c(\xb7T\xfb\xb8\x96\xb2\x14\xa1\xaf\xac\xbbd>p\xaf\x1e\xa9\xa2\xfb\xeb%\xe3$\x04\x1f\xe3O\xa99\x02\xba \xe3\xbd'\xe3=BW\x0e\x17\xc4c\xf3\x88oM\xad!q\x02\x19\x9eV\xfa\xba\xa8\x19$S'tC\x92\x8dU\x94+\x87\xfc\xed\xe0\xfcU<+\x87\xfb\x01\xd5{H5\xa4\xe17'Xj&\xa9\x16\x0c\x9akX\xce\xea(r(r?\x9c\xc8\x95tL\x08\x19\xa13]l\xab\x85\x89<\xbad\xb7\x8fM\x8a05\\\xba\xacw\x83@\xeb m\xb6\xd5YN)p_Y6\xbf\x90S \x87\xa91\xc2\x06\xff!\"\xf0V\xbb|\x9a\xc2u\xc2\x82\xef\x93\xf45H\x1a\xb3{}\xca\xd66C\xb14\x1aas\xd2\xb2\x17oH\x01\x1ah\xb7\xd0n\xfd\xe8v\xabT.kf\xfc\xe2Q\xd3\xf5\xd6u\xd4\x80\xff|k+\xa6:\xdeU\xcf\xd6\xd6(\xa8 PA\xfc\xe0\n\xe238\xb6\x95~\xc2\xf9\x8az\x81\x01\xb1\xe5\xad%\xdb{\x7f\x8e\xa4up\x93F\xe1D\xfe\x089\xeb\x03\x1b\x96\xe3\x85'Vz\xee\xf5\x91q\"(\x13\xaa\xc0LJuON+\xd7A\xa1RE\xe7\x80\x98\xf5;;=L\xe8i\x8f-\x1c?PG\xed\"B\xfc\xc2jc\x9bUo\x8c\x0c$Kg\x91%\xaa\x1e\xa5L\x97\xc0\xbe\xa9\x0f\xdbJ\xbb\x9a#i4\x9e\xa4\x8c\x86\xde\xed\xddd\"\xcaM\xc2'\xab\xdc\xc0\x19/\xfdD\x1c\xdf\xd8\xcb\xd3pz\xc9n\xebSz\x1b\x1a\x94IDb\xe0\x12\xf4\xac\xbd_\x1d?\x16\x7f\x87/\xdc\x1a\xb8}Y\"\x1a\x1c\xa5\xf7\xf2\x19\x88\xb7%\x03\xed0\xed\x0d\x01\xe1\x1d\x03@C\x98\xba\x0b\xf7P\x90W:\xe1e\x1a\xea=\xacev\x84-\x1c\xc9\xd2)\x96\x13G\x8er.\xcd\xbb\xe2\xcd\x0f\xd5#M\xa9\xcf&^\x9d\x96sO\xac\xf2CZ{\xfa\xde\x03(\xd5\x93~dk1\xa2K\xaf\x7f\xb3\\\x06=o\xf5\xe1\x8a\xf1~{\xc8/\xdd\x1b7\xfcx{5\xfc8\xfa\xf3\xc3\x9f\xf6\xca\xce\xef\xb23>c^\x1c\xad{\xe4\x17v+\xd1\xd3\x17\x84\x89\xe8\x8a\x15B\x93.\x90\xa4\xc8\x8a\xad\xc4f\xdc\xce\x19\x0f\xc8\x95C\xc9! I\xde\x89[\xba`\x1e\xf9\xff\xff\xff\xfe\xbf\xff\x1f\xa0)\x98\xe9b\xdf=\x86\xa2:?y\x19NAEh\xa3^^\x9d\x13\xf7l*s\xfb!\x84#\x1f\x1b\x9b\xb6d\xd3\x05-\x0cP\xe2V\xed\xa6\xfc\x7f\xba\xe9\x84\xce\xa4\xb3\xbdb\xbc\xd0\xdfM\xc0n\xb4\xf7`\x0f\x9b\xdd!\x80\x9a1^\xc5\n~@/!p\xa1+I\xa2\xcd\x8d{M\xe3\x15:\xab\xd0M\xd7\x84L\x85p\x19\xe5\xc9\xf6s\xea\xfa,\xcb=\xc7~\xe0\xac$o,\xe0\x86//\xcd#\xe4\x91M9\x17A\xb4\xb3\xaa\x8ay\xfe\xd4w\xf9\xa8\xadw\xc3^\x13\xc1\xdd[]NyM\xfd\xd5\x04b\xab\xcdS8\xb8\xfa\xd8\xec\xbe[\x06\xbf\xfck9<8<|\xf7\xd1=\x19\xd2\x0b\xe1\xff|\xdbt._\xfc\xdf_N\xde\xbd\xfc\xef\xce\x9f\xbf\xbc\xf2\x84\xffRA>\x01w\x1bv\xe4\x8d\xb1C\x81E\x81E\x81\xbd\x9b\xc0:\xdc &\xb6p\xeer.\xe5\xb3\x91\x0b\x90[\xf9\x8b\xa2\xe6i\xea@JD\x05.P\n\x98\x07\xfa\xd7'5\xe1\xe3\x1bf\x87\xa8CP\x87\xa0\x0e\xb9/\x1d\xf2P\xd5\x07\xbbav\x99\xfa\xc8+\x86\xc3%\xb3//n\xcej\x86\xe62\xe4H\xb4rx\xc0\x16*\x16+\xce\xa9i\x1e\x94\x84-\xee&\xbf^S\x1e\x94}\xcf\xecG\xc7`]Q0\xc3O\xd6^@\x17wX\x95\xe2\x8cC\xe9\xdd\x99\x9f\x0c\xc95Y\x0d\x81\x9a\x86\x1e\xea?\x1a[\xf8\xdf$Az\xcdf3M\x82V\x13~R\xb3V\xff1S\xfa}o\xcf\xda\xdb\xfbC\x8ew\xc4\\\xe7\x8ay\xb8l\xf7\xbcl\xbd\xcf\xbbl\xcf=Ag6\xf5\x83\x8b\x9bC8\xafV{\xf9\xa4\x90N\x82\x9b\x1a-q\xa1\xeb,\xf4g\x96\xcf\x99\x92O\\\xb1\xfb[\xb1\xcf,\x9aee/\xb1\xc1<>\xee\xbd\xe8t\x9b\xddf\xa7{\xd8kw{\xcdV\xbf=z\xde\xeb\x1f7\x8f\x8e\x0e;\xc3\x17\x07G\xfd^\xebE\x13\xf6ls\xa9\xbf\x88\xfcr\xac_\xde\x9dR\xc7\xfb\x1c\x94\xb3\xf6^\x15\xd9\xfdO\xd6^\xbe\x9e3\x9ab\xdaY\x9a2{\xd9i\xab\x83\xe0\xea\x9aH\xe8W\xe0\xcb\xcf\xd8\xfa\xb2\xd7\xb5C\xfa\xe7\xe2\xf2#\xa3\xfd\x8f\xeb\xc5\xe5\x87N?\xe0\x7f^\xcf>^u\xe9\xdc\xee\xcc\xda\x039\xf8;\xea:3\x1a\x08\xef\xfe\xb1\xb8\xa2\xae$Y\xab\x7fs\xcbVk\xb6Z\xafG\xed\x9b\xd1\xf2\xf6\xe3\xc7\xd1\xb5\xb7\x98\x8f\xba^\xff\xcf\xd1\xb27o_wy\x1b\xeep<\x14N\x8d\x13\x08\x9f\xc7;\xb3\xf6^\xde+\x9f]\xdc\xc0\x9eX\xf5t\xaa\xd9\xfb\xa89\xec\xb5:\xc3\xa3Q\xab3\x1auF\xadQ{\xd4{\xf1\xa2\xfb\xbcy0j5\x07/Z/\xda\x87G\xc7\xcd\xa3\xce\xe0`88\x1f\xfb\x99\xe2\xfa\xa6\xb1{u\xb7H\xcblu\xa1\xf1/\x180\x9d\"\xc88\x13E\xed\xfb\x9d^\xf7\xeb8\x03@\x97Su\n\x9f\xcd@\xe1]\xdc\xd4\x18\x0bN\x9fO\xec\x8c\xac\xe5UR\xcb\\\xedQ\xd9jM\x17,\xbf\xf2\x1b\xdaf\xcf\xdc\x177u\x9d\x95S\xa15\x9b\xa04\xef@x4\x00h\x00\xd0\x00\xa0\x01\xf8F\x0d\x80.Y\x98]\xa0\xde@\xbdQ\x85\xf3\x0f\xa97\xa0&\xf9\xe4\xa8\x9a:\xd5\x9e\xc06\x11\xe8\x9azu\n#\xab\x1d\xa1\xe6='a\x12Ty\xc9h\xba\x9e\xab4\xcbZg\x9fO\xe5\x1d\x96\xe1\xf4I\xbb\xa6\xcb\xd3\x82\xa2\xddU\xc5J\xb6\x9b\xad\xc1\x93V\xfbI\xa7y\xd1\xec\xed\xf7:\xfb\xcdQ\xa3=\x1c\xfc\xa3\xd9\xdaWz\x9a\x87\xabI\xda\x07,\xa6\"<|\xa2j\xdbSsA~\xd0\x97`UR\xb1\xd33dT\xd7\xca\x95\x1e\x8a\xdb\x05\x91\x8asv\xbb\x81\xbc2\x196\xff\x9e\x01\xc3\xadd\x9f\x0dz\xfcz\xe8\xfd\xc2\xa5\xeb\xf5=C\x04n\xd0GV\xee\x194\xbbrfR\xd1\xdf3X)p\xc2g^\xf9a\x82\x9d\x93\xae[\xa4~\xaf\xea^\xb9\x03\nk\xe3\xec[M\xb5\xb2\x1b\x1b5\x93\x8a\xbfz\xd4%\x9a\x86M\xd4\xb9_\x86D\xd3PI#4\x0dh\x1a\xd04|^\xd3P/\x8f\xaa\xfb\x7fJ\xac\xc2v\xbd\x12J\xa2\xe6\x14Q'gu\xb2z\x81z\xe5\x04uV\xac\x04\xf7HCm8U\x99\xd0\x92\xe5't\xe3i4\x0b\xad{YCO\x84\xbc\xc2q\x80v\xd2\x0f\xf0\x03\xba\xda\xcc\xc5\xd5\xce\x80\xea\xbaa\xad\xda\x9f,d\xb8b\x86\xab\x99\xee\x1a\x84\x17\x87\x83\xee\x7f\xbb\x97\xfc\xc3\xbf\x7f;\xbe^\x0c\xde\xf1\xfe\xab\xe1\x9b\xd5\xe0E\xf8\x9f\xe6\xf1\x9b\xee\xf4\xcf\xab\xf0\xcf\xbew\xfd\xb2\xb5\xbax\xfb/\xef,|\xf5\xea?W\x07\x07\x1f.F\xef\xfe|\xbd8m\x9e\x1d<\xbd8Z\xf7\xc3\xa7\xa3\xf6\xc1\x07\xef?\xf3\xff\xfb\xaf\xf3\xf5\xf3\xff~\xf6,\xb1\xe1\x05\x0el\xcd\xdd}\xb5\x98+\x96*\x17B\x8f\x17=^\xf4x\xef\x150z\xbc\xe8\xf1~\x8b\x1e/\xea\xbf\x02\xfd\x17\x11\xa6\x1aA\xb4\x99\xc83h3w\x03\x8c6\x13m\xe6\xb7h31K\xf4\xcd\xe8d\xcc\x12\xed\xe0\x0c\xa8\xae\x1b\xd6\n\xb3D\x0f>K\xf4I\x1d\x05e\x0b\xb8'M\xff%\xbc3vM\xbd\x1akV\x83\xe7w\xd6\xf0\xdb\x9f\xcb\xf1\xb2Xo)\xc1\x9f\xb1\x90.\xa2\xec\x85d8E\xde\x1a\x18y\xb9\x86[N \x17\xa8\xd6\x02}\xca?n\xf7PP\xb3\xf6\x9eS\xbf\xde\x15[x\x87\x06\xde\xa1\xf1Y\xb9\xf1!\xde\xa1q\x11\x15\xe2FgD\xab\xe9\xf3\x10\x94a\xbe\x18\xb9T`\xaf\xa8+\xc3\xd4u8m}\xb4\xff\x9c\x85l\xfd\xa1y\x15\xb6?..\x17\x97\xdd\x11\x9b\xd3&\xffp\xfd\x91\xcf(\xff\xd0[u\xed\xc1\x9av\xc2.]\x7f\xec.\xda\xdeh\xe1\xaf?,\xfa\x8b\x91\xedw.Gv8\x07/T\x04\x0e_L\xd6\xe2\xbaJ*Z\x9a\x85\xa3Pn\xed9\xc2s\x82\n\xbcU7\xb5>7\xc1)tN\xa9\xd7\x92\x85Y\xeb\x96i9O\x1c=\xd7W\xd7f\xc7\xce\xbeYV\xf0=\x02\xad\xbelj\xe1\x074\x08\x8b\xfd\xf7\xb9\xc3%\x08\xea\xba\xb7\x93\xba\x07-nY\x85\xa6h6\x9a\xd1\xff\x03\x91\x9c\xfa\x01u\n\xa6\xb1\xa9\x13\xaf\xd0\xaf\xf9\xf6\x13)T\x93+\x16l\xd5\x13\xd4@8]9\xc1\xa48\xa3\x18\xe5\xb8fl-|\xe7\xe1\x9dl\x88\xf8\x1f\x1e*,\x9b\x85lw\xaa\xb9\xbe\x1a\xd5b\xc6\xcd\xf2V\xe9\x9d\xa0G9R\x95i\xae\x87yX\xc4\xaa$\x80f\x86\xe2k\xe8wT\xba\xb5\x93@\xa0\x88\xa4\xcc\xd6\xbd.\xe5\xfb\x13\xd9w\"\xa8qX\xe7J\x04\x85kQ\\\xbf\x91.\x9b\x95\x11\xfe\xeek\xaft\xab\xa4Z wG\xfe\xe3\x91\xe3\xd7|\"\xebA\xf9\x91>s\xe7\x13p.\xee\x9c\xd1\xffL6\x04\xb8wR\xe8Q<\x0c\x04!\x1c\x0f\xa7\xaec\xd7z/H}-\x16\xd2\xd2\xab\xef\xce\x9d\x05w\xf8\xa2\x1e\x83\xa9\xe4\xc1\x06\x8d\x0d\x1b\xbc\x131\x9f\xfb\xac\xb8\x81r\xec'!\x0f\x9c\xe2\xa7a\xe4Z\xb0\x99*\xa4\xf2\x0b\xdc\xd1$\xee\xa7\xd4\xa3\xabC\xf0\xc7j\xe0\x1eN\xfd5\xadJs\xcbe\xd2\x98T\xc6>\xaf\xe8M$\xa4\xea\xf5\xf8\x1a\x01S\xd1zh\x8c\xd5z\x84\xeb\xb5[g\xb1\x1f\xe8\xde\x8d\xce\x993\xea\xd9\xcb\x13\xb3\xdd\x0f\xaf\xa2\xed\xed\xff.\xa3\x1b\xa9y\x9e\x1e\x84\xc1R\x06H\xb6\xd2\xe7p?\xcaSU\xb7\x9f\xf8\xfb\xa9Rh\xd0A\xedj\xf8\x9b?\x97|m4\xe4\xff\x05\xab\xf5\x13\xff\x9a.\x16\xcc{\xb2`\xdc<\xd0G\xc3`\xf9T?\x96\xf5\x14\x1e\xd9k\xe8V\x8d?}\xe9RztU6\xec\xcf\x1e-\xc7 >2V\xa3\x8d\xb7\xb1\xcd\x81\xeb>W\x86\xa4\xac\x85\xfe\\\xf2\xf5H.\xb5\xff\x8a\x05T\xdf\x01Z\xda\xa8\xa2\xcdF2N)\xbf\xdc\x95\x8c\xe7k\xc6gt\xea\xb2\x8ay\xc2F\xb2\x16\x90\x12H\xf0\xf1\xcd\xbc\xe4\xf3\xa1X\xadB\xee\x04\xb7\xa7B\xb8\xa5\x940>Ej\xdf\xba\xaa\xf1\xe6v\x1bI7s\xa4@MChYN\xc2h?=\xa1t6b%\xbc\xdf\x9c`9\xf3\xe8\xf5Ad\xd7\x8b\x9a\xbf\x10!\x9f\xa9\x19\xd3\x9b\xcf8\x81\x8d<\x10M\xea0\xb6\xc7\x15-\xdf\x84\x81\x1fP\x88\x006S?\xeaq\xeeR\x7fY\xca^\x07\xae{l\xca\xd1\x8a[T|>p]q\xbdA\x12\xa3\xef;\xb1\xc9B\\\xedJ\\\xb3\x19U\xf5\xbd\x94\x9f \x8f]\xcen*\x91_\"\xb4\x89\x1ct\xc9\xf2\x88\xa0\x94\"\x90\xc2-\xa1&\xe7!uO=q\xe5Hn)\x83p\xc2\xe7.\xfc\xb5\x0b\xcd\xe1\xb2\xa3\x1d\x89\xbe\x11\xf0\x1az~\x16\xd0\xbedr\x87/v\x05\x9e\xf0\x08k4\xa9RA\xb1\x86,\x03\x96\x0c\xe3*5ZA\xcc\xbf\x1b\x91\x94\x9fw\xbf\xea6N\xf9\x177|\xe9HG\xc8\xb1\xa9\xbb\x81rwD{\xb3\x1e(7{\x95\xb3\xac\x9a\\\x1c\xafV\xaeL\"_S\xdc\xa0(\xb3S1\xea\x16\x8cq\xb0^\xbb\x0e\x9b\x9d\xba\xb4\x0c\xeaa\xe8y\x8c\x07\x1bZ\xbc\x12\xb3\xd0e\xefT\x99\xf5N\x1c\x18\xae\x17\x1e\x9d\xb1\x0dK\xf9V\xb5\x98\x1d\x9a\x1d\x19x\xafw\xab\xb1\x9c\xa9\xfd\x94\xca\xe9*G\xdb\x7f\x9a\x7f6\xd7\x7f\n\xaf\x14\x0b\xd7e\xde\xd3\xab\xadY\xea\x0e\xe3.\x85\x1f\xec0\"\xb8\xaap#\xf8\x86\xef\x17\x1e-7\xb3q\x8b\xbbM\njy\xe6;\x91MF\xad\x9c\x95\x1ad\xfdy\xf3\xd7C\xd7a<\xd8\xc4\x14\xa6a\x1d\x06z\xcdn\x82s]\nv\xc6l\xe6\\\x95\xb5<\xa5\xf6%\x0b\x0e\xecK.\xae]6[\xb0\x15+\x8f^\n\x1bol\xab\x1e\xf9\xd8\x04\xf3-\xf7\x14\x82\xb3\x03\xfb\xb2\xba\x91\x02\xbb\x19\xc1x\xd0\x8d\xcd\x800\xeb\xb26\x87\x82s\x15\xe0V-/\xac\xdcf\x06\x89\x17\xb7F\x93\xca\x16a)\x90\x14o\xd4kUFq\xa3\xaf*\xf1*\x97/[x\xec\xa9\x0d\x00\x8a\xa5j+\xa5\xa80\x89\x97e\xc3\xf4j\xb7\xa8lP=\xfdD\xdbZ\xb3\x10\xb3\x0d\x0b3\xdb0\x8az\x81\xfb\xf9m\x8dV\x1b<\x92\xfc\x9b\xf1%\x0d7=\xab^\xd2%\xf50yI\x9b\xb3\xc4\xb3\xe6\xbf\xb0\xb2\xd0\xff\xe2&\xfev\xce\xbc+'\xd2\xee\xfa_\x89\xb6?\xb3\xe0W\xc9\xed\x81\xba\xf0lC3h\xf0\xfc\xf6\xa5Jynh\xf8\xda\xbc?\xbc\xa1\xcd\xf9-\xb7U\xe2\xac\x02\xad8`e\x1b\x07M\xb6\xcb!i{,xrv|~\x91\xff\xe5\xe9\x9a\x06K\xff\xe9\xdf-.fl\xe2\xf0\xb9x\xba\x88F\x8a\xabK\x9f\x9c\x9d\x1e\x16\xfe\x18\xf5\xf7\xd5\x8cJ{G\x0dU>\xf7\xef\x96\x0b\xf3\xab\xdf\xfe/\x95l\xfeT\xdd#>-\xc9\x82-\x06\xcat+\x1a/\xae\xd8\xf5\x0b~\x8a \x057\xd0\x9f\xfa\xcb\xb2\xde\xc9\xa6u\x9a\xac\x85_\xd5\xe6\xef\x96\xda\xbb\xa9\xd7v\xc6\xb2m\x9fS~\x99\xf83\xa6?\xe5\x97\xf2\x7fU>\xee\xef\xd6_zk(9\xb5\x82\x0e\xc6\xb7Kt\xf8\xbbe\xdc$?;p\xa63\xa4\xb47\xc3\x87&\x7f\xb7\xfe\x82\xf4\xb5\xc3A\x10\x92(\x1d\x84\xc12\xf1g\xd4\x9b\x86\xc1\xb2\x10\xbbD\xdfs\x9d\xfaO\xfd+\xe6t\xf5oIC\x1d\xed\xf9\x80\x87\xfe\x87\xd4r\x9f\xa2\x8f@\xf9\x1c\xe4;\xc0J\x10\xee\xce\xc0\xfen\xfd\x151=|\xbd3\xa6qa\xcf}\xce\xbf\x18\xea\x9d)Q\x08v'\x9ax\xec>\xa7\x9b\x86v\xe7i\xc6z\xed\xce\x98\xc5\xa0v\"\xd3v\x98\xdc\xdb`\xb9\xee[K\xe7FX;\xf3\xfcZ\x08\xb7V;\x19\x1d\xb0\x80\xa5\xc9\xa6s{\x99\x7f\xc6\xbd\xf5\x0f\x7f\xb7|\x95\xa2\x03\xe3^\x04\xa1\xa0K\xc5|\xff\xa4\x8e\x9b\xe2\xcbrH\x85\xb8\xff,\xae\x98\xc7\x13\xe9\xf1\xf8\x87\x08\xc4B\\\xfd\xdd2e\xb7))\xa8n\\4RI[\x8d\xa1\xae\xe5\xdbj\x98\xbf[\x7f\x99\xbfOf\x9f\xb6\x1b4\xd9\xd3|`\xde]`\xe8\n\xf3-'_\x02cw2\xc4@@}\xe8\xaa\xf7;Q\xe7J\x04\xecN\xd3R\x00\xee2'\x80 EA\x04\xecn\x93\x81\xb33u\x00Dr\x13Qt\xcb^0R\xda#\xaf\xd3M\x1d\x0eIt:Jl\xe9\x15\xfc\x14AJn\xfdU\x1a8\xd8\xa3+\x19\xe4.\x10\x13\x8b|O 7\xd9\x9e\xcf6\xc4=N\xe3Zo\xfc\x9aJ\xb0{D?\x07z;\xb4\xeb\xd9\xf7\xbb\x01\xfa\xbb%\xe2\xad\xe1\xc9N|\xb7\x11\xfa\xe7\x83\xb8\x1d-mS\xce0\xc98\x155\xfa\x16\x9a\xe8W\x0eO\xfe\x19u\x95Qs\xb9a/n\xea\x98}\xd7\xca\x96\x146r\x9f\xac\xa3\x9d\xdcD\x8f\xdf\xa8\xbfJ\xfc\x19u\xbe\xa6\xfeJ\x12 \x1d\xcd\x965I\xc3+h\xf1w\xeb/\xf9\x9f\x93\xa3O5\xc0%\x1ao\x01X\xfe['\xe4\xaa\xba\xa9f\xd0U\xfdy`\xa2\xd5*\xe4J{*l\x9e,\xa9\xbf\xdcy\xf4\xbf[\x90\x8e\xfd\xbb\xf5\x17\xfcw\xcb\xd9g\x86>c\x8b\xf8\xafDV+:~\xf4\xc4\x11O\xd8\x8d\xbd|\xa2\x8f!\xfd\xa1\xab\x0b\xf7\xf6\xff\x8a\xaf7\xdak7:\x8d\xd1\x9e\xb57w\x98;\x83\xc7\x89\xd5i\xd9t\xa1\xeb\x1f\xba\xc1;f\xc3\x0e\xe7\xfe\xef\xba\xdd\xd3\xe6\x9e\xf5{\xd3\x1a4Z\xa3\xd6\x1f\x7fX\xbf'{\xc1\xb7\x96\xd5i\xf4\xfa=\xabm\xb5\x1b\xad\xce\xc0\xea\xa8\xffB[\x05\xa1\xb5g\xfd\xde\xb5\x9a\x8dA/\x07@~J\xb4l\xefY\xbf\xf7\xacn\xa3\xd3\xedZ}\xab\xdd\xe8\xf4\xda\xd6\xc0\xea5Z\xfd~\xae\xabl;\xb4\xda\x8d~\xa7c\x8d\xacN\xa3\xd9m' u\x00R\xa71\xec\xf5\xac\xbe\xd5j\x8c\x86V\xab)\xff=\xeaY\xad\x164\xefY-\xc0\xb9\xd5\xcd\xc1\xee\xa4\xd1\xea\xea \xf4d\xe7\x8e\xd5it\xda=\xab\xd5\x95\x08\x8e\xf2\x88u\xd3\x9d{{\xd6\xef\x06\x03\x89Qk\xd4\xb1Z}\x98\xe4\xc8j\x0d$\xb4A\xdbj\x0d%\x19%\xfc\x91\xfa#\x07\xb6\x97\x06\xdb\x07\xb0\xedF\xab\xa7\xc0v\xfb\x03\x05d\xd4\xecZ\xed\xa6\xd5m\x0c\xda\x1d\xab\xdd\xb2\xba\x8dv{\x94\x83\xd6OP\xaf\xdd\xce\x91oP\x84t\x84\xabFQBW\x14mw\xd4|r\xc3\x0c6\x0f3\xd4\x84\xed\xf6\xbaV\xcfj7\x06\xcd\x81\xd5\xeej\xda\xb4\xcd\xc0m9\xcf^g`\xb5\x07\x92\xe4\x9d<\x1f\x0e\xd3\xb4\x19\x19\xb0\xed\x16\x80\xed5\x01Z\xb7\xd1i\xf6\x14\xb4N\xaf%\xa1u\x1a-\x8dO\x12\xda(\x0d\xad\xd5L\x80\x8b{KZ\xf7[V{d\xb5\x1b\xeda\xdb\xea4\xd5\x0f\x9d\x96\xfe\xafd\xaea;\x0f\x1e\xe0%\xe1\xb7\xb6\x83\xaf\xe1Z\x9d\x8e\xd5j\x0c\xda\x83\xfc\x00\x19\xa9j\xb5\xcd\x00r\x15\xa5|\x0ez\xc0\xbfr}{V\xa7\xab\x99\xa5\xd3\x83\x05*\x00\xd8\xce\x00\xec\x14\x13\xb8\xdd\x18\xf5F)\x02\xb7\x1b\xad\xbe\xd5\x91\xdc\xde\x94t\x19\xa8?\xf2\x03d\x04\xae\xd5M`\x0c\xf0$\xc6\x9d\xa1AT2`\xab?\xb4\xba@\x93~\x01\xc0\x8c\x10\xb6zE\x00\x01\xc1^\xa7\x15\xc1\xb1\xba-5D\x1e`F\xfcZ\xfd\"\x80\xdd\xb6\xc6\xb0\xdbQrgu\xbbe\x18\xf63\x00\x07 \x9avF \x0c]\xab\xdb\xd3\xa4\xebJi\x1c\x0e\xbaVw\xa0\xd8\xa0;4_FV\xab\xd1\xed\x16\xe8\xd6Af\x84\xa4\xb4\xc1\x08\xa3\xd6@\x02n7\x9a\xed\xb6\x02,\x85\xb9\xd7\xd4\x02\xd8kY\xadF\xbfU\xc0\xc1\x19yk\x19\x81\xebuF\n\x9fa\xaf\xad\xba\x8fZ=\xab'\xa9R\xc4\xa7\x19Ak7\x93|*\xd9\xbc-\xd1\x91`\x06\xbd\x96\xd534\xedI\xcd\xdb\x1f\xe4\xd5v;#Y\xed\xd6]\x01f\xedSF\x92:\x8d\xa1\x94S-7\x96\xe4\xd1F\xa7Y`\xab2\x02\xd4\xee$\xe0\x00\xc1\xfa\xa3\x8e\xd5\xebk\xee\xe9\x0d\xcc\x1f\xc3\x12\xeeig\x04\xa6\xdd-\x9a)\xacmk\xd4O\x0c1*\xe1\xefvF`\xda\xbd\"\x0c\xfb\xc6\xae\xf4[Z`\xfa\xed\x12\x03\xd3\xce\x08L\xbb\x9f0\xa2\xfd\x8e\xd5k\x0c\x9a-\xab\xdf\x95\xd6\xbd\x99g\xdevF<\xda\x83\x04\xf3F\x06\xbc\xdf\xb5\xfa\x8dnodI\xff\xa31,\xa2|F\x08\xda\xc3\x84e+5\xbeV\xbf\xaf\x85\xa1?(1\xc7\xed\x8c\x0c\xb4G\xda K\x9f\x05V\xa0\xd7j\xc9!\xba\x8df\x13\x00v\x1b\xfdv\x01\x82\x19!\xe847+k\xc3k\xfda\xc9Jv2B\xd0i\x15Q\x0e\x8c\xc7P\xd2o\x04\xe6\xc4\x1a4\x151\xf2\xf022\xd0i'\xe1\xe5|\xaa\x08\x9e\xfe!\x0f/#\x0b\x9d\xa4,D\x1a\x19\xc0\xb4z\xd6\xa0\xad\x84,\x0f&#\x01\x1d#\x01\x9dQ[b\xd3n\xf4\xa5\xe9\x94\xf0\x9a\xad\x8eDG\xfd\x02\x00\xdb\xdd\x815\xe8\x98ORE\x0fz\xf9\xa5\xe9dd\xa2\x93\x94\x89\x08\xc1\x9e\x16\x89A_{a\x039\xe6\xa8\x93\x17\x89NF$:I\x1b\xd2\x01t\xda\xdd\x180\xb0\xce\xb0\x80\x80\x19\xd1\xe8$-\x07\xcc\\z\x07\x83\xe8\x8f\x8e\xb2\xc2\x030\x1c\xdd\x915\x18\x96X\xe1NFV:\x92\xc5\x07#m\x0d\x86M\xf0w\xbb\xd6\xb0\xa5M\xc7\xb0\xad\x17\x7f\xd81\x7ft\x95\xcb\x96\x07\x9d\x91\x96\xce(\x16\xc3\x02\xc0\x1a\x8c5\xecY\xbdF\xaf[\xb04\x19\xa9\xe96\x13b\xdd\xd1\xee\"\x08\x0d(hc\xec\xe2\x11\xfa%b\xdd\xcdHO\xb7\x95d+ \xe5\xa8\xa5 \xf7\x06#%F\xfd\xe6H\xcae\xbb\xd1mw\xac!(\x95~\xc7\x1a\x0e\x15[Y\xc3\x11(\x83\xc0\xd1\xe9\x1d\xab\xd5\xea\x94`\xde\xcfHS?\xe5\x0e\x9a\x14KG\xfb\xcf\x96\xd4\xb7Z@\xe1\xa3\xf2\xed\xa4_\xdb\xed\x17\x00omL\xc2\xf5\x8d\xe4\xb5\x86-\x10\xf8V\xa3\xd5\xef\x03d\xc9\x9b\x03\x80\xdcl\x8c\x86\xd21\x95\xeb+\xd7\xa05\xb4Z\x8dvK~\x94+5\x90B\xdfnF\x7f\xb5\xa2\xbf\xda\x06H[\xb2\xcfH\x92\xba\xdd5}%\xb9u\xbb\xbe\x06\xdc\x1eD?\x0d\xa3\xbf\xa2!:\xd1\x10\x9dh\x88N[b'\x87\x00\x0e\xedJ\x9fB\xaa\x1e\xf95O\x8b\x8c\xe2\xe8'\x15G\xde'iu\"\xf2v\xa2l`G\xc7\xe0y\xe0\x19%\xd2\xef\xd6\x06>\x88\xfe\x1a\x96H}?\xa3P\xfaI?\xb7\xd3V1\xad\x0c\xb1\x94\xb70\xe8h\x1f\xbd\xd5)\x8b&\xfb\xd9de?\xa1\x82\x01b_\xea\xa1nS\x05EV\x0b\xf2.E\xe1Q?\xa37\xfa\x83\"\xdcb\x94\xba\xc6\xb9Q \x0bS\x9f\x19\xed\xd0\x1f\xd6s\xbbZ&\xbb\x93\x87\x98\xd1\x0e\xfdQ\xca\xeb\xe8\x18\x00\x90\xba\x93\xb3\x95\xbf\x14\xadrF\xfa\x07\xcd\xa4\xe5S\x89\xbfn\x17\xfaw\x1b\xedf^}\x0c2\xc2>\x88\xbc\xd7\xfe\xc0j+\x83\xdf\x02\xa9\xd3\x7f\x01&\xad\xa1$\x97\xf4\xb9{\xb0*\xbd\xe8k\x1f2\xa4C\xab\xd5U\xb9\xd2|\x186\xc8\x18\xdbA;1bb\xa0\xd6\x10THz\xc8\x0d\x03Y\xf2\xff\x03B\xf9!3\x826\xe8h\xdf\x7f\xd8\xe9\xc5v\xb4\xd5nke\xdb\xed\x80k.g\x16\xe9\xe4^S;Q\xad^Ki\xe7\xfc0\x19\x91\x1bt\x13!\x06\xc0\xecKU\xd5\xed)\xddh\xb5z&\x1cj\xf5:f\x83\xa1\xd7-\x893\x06\x19\x99\x1b$\x8dx?\xd2\xc6\xedn\x04i+\xe8\x19\xf9\x1b\xf4\x13$\x02\xe8\xfd\x14]z:\xc7,a\xab\xa8\xb1\x05\xb9,I\xbe^\x1f\xfe\xc8\x8f\x91\x91\xcc\x81\xd93\x18\xb44\xaf6%\x0b\xc0(mX\x079\nh\xe1^\xcb\x98p\x98\x814\xe4\xad\xde@\x87K-Hzu\n\xac\xcd #\xb8\x83\xe1.#vt\" \x1a\xc7jI\xff\xab\xd0\x91\x18d\x04{0\xaaZ\xa5xm\"\x0d\xdc\xeb\x97(\xf5AF\xdc\x87\x91\xb8\x0f[\xb1O$\xf5\x87\n-\x15\xd7*j\x15\xcc\xa7\xdf,\x99\xc50\xa3\x15\x86)\x17\xa0\x88\x95\xfb-c\x91\xfam\xbd-\xd3\xeawJ\xa61\xcc\xa8\x80a*\x8c5j\x14\xf61\xfa\x83n\xac\x05\xfb\xdd\x12u:\xcc\x08\xf80iI\x01\x0e t\x01\xfa\x03\xc4\xce\xa8k\xb5\xfa\x11\xd5\xfbe\x11\xfe0#\xd7\xc3\xd4^C\x1e\xcb\x9e1(\x00qT\x10\xd2\x0d3\xb2<\xec\x15A\x1c4\xad^\xa39\x1c\x1a\xd0y0\x19\xa1\x1d\xf6\x13>f\xbc\x0d\x14)8\xf0\xca@jA\xb9\x82\xd4\xc6\x92\xdc\x1f\x14\x8b\xed0#\xb6\xc3A\x91\x89\x80Qzr\xd9!L\xeb\xf4\x860^'\xa5\xc8#\xf5\xdd/\xb3\x0e\xc3\x8c\xc4\x0e\x87\x85+\xd9\x8a\xa2\xa8\xc4J\xf6MN\xb6_\xe6\xb7\x0c3\xd29LJg\x02\xa8q_\xc1\xc94.\xed\xd0\x08\xaa\x192\x0f>#\x9e\xa3f\xd1z$\x96!A\xfc\xb6\xde\x14k\xf5#\x933h\x96\xf8\xfc\xa3\x8cx\x8eZ\x9b\xbd\x07H\xb9\x17%\x06G\x19A\x1c\xa5\xf3I\x99\xee \xd1\xc5\x1e\xd2(#\x80\xa3b\x01\x8c\xe9\x9a\xd0\x1c\x91\xbe\x18\xb4J\x96m\x94\x11\xc0Q\xca\x97M,V\xb4D\x85\xe0\xdbe\xe03\xd28\xea%\x9d\xa8\x01l\xdfK\xf6\x86\xb4o\xb7\xdf\xb3Z\x83^I\x89\xc1(#\x91\xa3\xa4\x1b;\x1c\x18\xe75\x0f3\x0f)#u##u\xfd~\x17\x00t\x1b\xadf^\x13\x8e2\xf23\x1a\xd6\xeb\x96\xdd\x0f\x1f\xd5\xeb\x96\xdb\xf8nB\x15E\xbb\xd1\xec\x0d\xa0\x8a\xa2\xd7\xec\xaa\x94E\xbf\xd9WY4)\xfb\x10\x91\xf7\xfa\x86\xefe\xe3\x16d\xc3;\xd2TA\xdeY\xfd5T\x7f\xe5\x06V\x03\xa5Fn%}:\x1d6\x0f\xcd\xaehk\x10I\xd5\xb0\x19\xfd\xa5\x92\x8e\xad\xa1\xce\x8f\x15\x8c\x92\xdd\x17o\xb6\x13{6\xc3\x91\xe1\x87!\xc8\xc5\xc0j\x0d\xbb%\x8c\xa1z\xa6@u*@\x81\xd35\xca\xabH\xd53\x05J2pk\xd8/\xa9\xb9Q\xdfS\x1dz\xc9\xad\xa7\xa1.\x98\xb1Z\xc3\xa1\xde|\x92\xdevq\xaeL\xf5M\x01+\xdc\x94\x90f@\xe7H`r\x90}\x185\xcb6\xcb\x9b\xd9\xcd\xedf2l\xd3y\x0c\x93u\x86\xa5\xd3:nT\xba\xff\xde\xcc\xeef7\x87I\xb9\x06\x10 \x83\xa3\xb6\x99?\xa4\x9d\x8b\x82J\xd57\x05l\x94\x02\x16\x11n\xd4\x8d\x80\xf5J\x81e\xc5\xa6\xd5\xac \xe1(\xf2)Fe \xa7V\xbeJDrok4\xb0\xfa\x8d\x8e\xc4g\x08\x7f\x14t\xccr9ToH\xd1\xec4z2\xb0\x02R\xf5\x07\x12\x8f\x91\xda\x86-\x00\"\xfb\x0c \xe9\xd1T6\xa3\x059\x1eH\xe44\xfa\xa3vj\x00\xc9\xc1\xadv\xdf\xea5\xfa\xa3\x9e\xd5n6\xcbP\xcb\xb2:\x94i\x80c\xd1h\xb7\xd3\xa8uJ6\x86U\x9fa\xd3j5\xa4\x92Qb\xdf\xb1\xda\xe0\xa7d\xea\xce\xa0hC\xad\xa6\xb4\x80 \x05\x05\x9bS\xad\\q\x07\x14g\xa8\x05\x1b\xca\xa5\x83\x9e\xdd\xb6\xd5n\xb6K\xd1\xca\xb2\xbc*\xe8\x90*\xab\xd9\xedZCX\xe8VG3WA\xd5Q+W\xaf\xa1\n6L9\x05@h\x0f4\x1fI\xed\xd2\xfe\x7fh\xbb\x96\x1e\xc7q$}\xef_Q\xa8=\xcc\x0c\x90\xe5\x14)Q\x8f\x99\xde>,\xb0\x87\xbd\xee\xb51(8\x9d\xca,u;-\x8f,gUb1\xff}\xc1 \x83\xe2\xc7\x97\xdd\xb3\xd8S:m1\x18$\x83\xf1\xfcHQ\n<)\x93\x11B\x83\xb0\x16Z\x0b\xe9\x10!\xc5~(\xc4\x84\xa5 \xe7WTzz\xf5zH\x95\xc2\x06\xd9\x07\xc5\xae\xee\x06\xd2xb\xd7\xb5F\xe5\x89\x1d\xd9\xf3\xaa\x89\xd7\x86\xa0\x15\x86\xa1Z\xfbS\x952\xe2\x93\xe8\x80l\x01yiz2z\xd3\x15\xb5\x90\xce\x03`\xaaZn\x07\x96\"IIy=\xeb\xb2js\x0b\xc7M\xc4N;DF\xc0\xf5'\xddX\xec\xf4\x02\xea\x1d\xb0kE\xf3 \xb5\xe3\xb1\xeb\xad\xe9\xe4.k;\x10\xed\xa2\xe8\xc1\xf6vs\xcb\x8a5\xa5\x14\x9c\x95\x92\"\x97\x952t\x06\xf1P\xed\xbaA\xd20\xab]\xdb\x08\"(v\xd5`\x08V\xbbA\xc7~d\x84\xe9;-R\xf6S\xe3>)\xf3 \xd8l\x026\x0b\xcc=H\x02(\xa6\xd9lrl\xfeA\xe6\xa8\x93\x98M\xbd\x15\xa5\xe8r\xc6/\x84\x95\x08\x02\x8a(\xca\xa7\xf5\x06\xe4\xd7\xb6)\xb6\xc3\xedI\xc0\x10e*\xf5\x1e\"\x8c\x9c\xceF\x87Bb\xe0\xc9\x90Y;\x17\xa2K\x04\xa1B\xa4\xd6g\x95\xb085\xbdS)+I\x06EZ_1A+\xdc\xb2\x84\x0c\x89\xb1j.\xe9y\x07\n.\x04\x97\x08\x02\x87H)r\xd3\x1b\x82G\x04\xa1?\x945\x1d\xe4\xe8V\x9a\x19)s\x96#\x84\x8b\x08\xc2{\x08R\x9c*\x85\x00\x0e\xf1 \x82\x90\x1d&\xc1\x91H\x02\x89\x10\xf8!\x08\xa6\xa18L\x95\x84EM\xca@\x88\xe7\x10\xb5\x9ft\xf3\x0bf\xa6\xca\xec\x80 \x92\x12<\xa9\xdc\x87\x081\x1d\x82\xd0\x19D\xa2kkSZ\xeae\x1c\\\x8a\x10\xc5!\x08}a\n\xc9\xa2q\x0d\xedxD\x9fP\xf2!^C\xd4}q\xa8\xd3.]\x16\x04 B\x10\x84 \xc8B+rj(D4\x08\x82!\x90\xf7\xae\x8d\x97[\x84\x81\x03\x8d,\x82\xc0\xb4l\xc8\x1c6\x04\x86!\x8f\xd9\x94\xb2k\xeb\x17s'\xc2\x9fo\xc2\xa2R\x82W\xd6U\xce_\xe1&\xda\xec\xb6\xd6\x00\xeb~$\x15Nki\xc8X\x87\x85\xaa\x9a\xad=\xe1\xc0}J\x9e\xd4zh\x1f(\xd5\xdb\xd0\xe4\xd6;Q'\x84$DD\x08B4\xc8Z7\xec\x93P\xe9P\xae \xb1`\x80\x81\xb47\xb2;\x9f\x1f\xacv\x83\x0e>6\x0f\x92\xc6\xa64 *\xf6\xaa\x16\x9c\x06\x87\x80h\x1d\xa01\xa5\xdb\xdccDD\x7f\xe8u\x14\xc5\xddQ\xb8#,b\x91)\xb7f\xaeL\x0e\x9b\xa1y\x9e\x1bE\xd6\x98\x8e\\\xd4\xb9l\x9a#R\xed:e\xfb\xeb\xa5\xf0\x97\xae\x96\xd6\xd54Y\xff`\xbd\xba\xfbF\xc7\x8f\xc9\x8e\x1e\x13;\x1d\xbdJ\xaaW\x0f\x12\xa5\xae\xbf\x8fb\x1fR\xc4\xb8O\xf9i%\xc2Uv \x87\xc0=\xa5\xa9t\x82r:\xad~\\\xec\x148\xd2\x84T n\xb4\x06%z\xb5\xd4[A\xe5\xb6\x02\xb70\xf3I$+%\xd2{\xa2V\xf1\xcc:,Dq\x00\xee)\x1d\xba \xa9{\xebZ3\x12\xd9\xca\xad[Y\xb7qt\xe0 \x10\xba\x0bYw\xb9(\xca=\xa7e\xb33X\xaf\xd6\x89$\xb5\xa4\xb0\nh\xd7\xfe\xb6\xa2<\xdb\x90\xd2\xf2\xfc\x9c\x15\xf3\x8e\xd4Pjw\x01\xf1\xc6\x9f\x9b0\xd2*\xe1<\xbfD\x1f\xd2\xd3\x864\xc6\xa1m\xcd\x18\xfb\xba7\xec\x06F\x94\x90\x14\x11\xe9\x07\xaa\xfd\xcb\x04\xb4\xdf4\x88\xe7\x8f\x9c\x1e\x1b\xd1ha\xe85\x89j\xd7\xf7\xb5\x1d\x9a\xecq\")\xe5A\x15\xa3Nxc\xcb\xf7k\x1bhE\xd9\x99~\x87Z\x99\xee\x1a!Lw\xad\xec\xa9\x12oT\x87T\xa4\xa2\xe9\xfc[c>\x01\x0b\x8aYPBx\xa2\xc3k)\x8c\xd7\x90ZK\xc5\xbch\x85J\xbc\xb45\x0f\xbd\x1a\x0c/]\xd7[l\x9a\xa8\x15\xa5,\x8c\xf8+\x15\x8b\x7f\x87\xae=\xa5L\x06\xe1b\xfa\x04\x07mr\xa5\xd9\xf3\xa4>\xc8\x00\xd6\xe6'\xe8\xac3+H\xc75\xbd3f.&U|\\\xa4\xe3\x88I\xb5\xb98)\xc4}\x08\x82el\x87\xf7\xe2SN=\xe7\xb6\x08U\x92\xaa\xd9\x1b\x1a<:'\xbe\xdb\xe8\xc8q\x18z\"\xa1\x8d1\xf4?\x80@[yz\x90\xaa\xcfy*\xdc\xc2n\x122\x81R\xc4\xbd\x10\x8d\xc8O!\x00\x87\xf3\xd8\x1b\x9b\x1a\x7f\xa0(+\x95I\x0e\x01\x1f\x82 \x1a\x8e\x80[\xfb\xb63\xe9\xd1\x04\x850p&LF\x9fu\xf9C\xc8\x86 \x94\x85\xeb\x910tm\xd7?\xf4\"\x17H\x86\xb0\x0c\xd1\xdb<\xbf\x0d\xf98\xe9\xedb\xbf>[\x90 \xf1\x18\x82\x90\x15\xd6\x97\xe8\xb9\n\xd3\xdb\x93k\x0f=\x1f\x03\xecM\xf56\xb1\x19Ch\x86 \x14\x85\xd4\x82\x9c\x8e&C\x94\x85 $\x84\x01\n\xd5Uk+\xc5\x9a\x0d/\x82P.%KP\x9e\xa4\xd8\x86\x88\nA \x08\xa1L\x8e\xc8\x04\xa5\x03\x95H\x9b\xecL\x87\x911\x01\x1d\xb6*\xb6T\xb6ZH|\x984\x0f\xc5\xcd\xc94O\x88\x92\x10\x04g\xe0\xe0\x98\xf8hvm/\xc8\xf1\xa3\x95\x8bi\x84\x08\x08AH\x86\xad>\xd89\x0c\x847m\x0d'j\xdb\x1c,S\x84\x80\x08A\xc0\x86\x1b#\xads#\x0dQ\x11\x82\x80\x0c.'j\x16Wo+I\xa7\x1a\x93\xd9\xd1\x10\xfb \x08\xad\xc0\x89\x1d\xafpL\xa7\xe0\xfb\x04\xc8C\x84\xf8\x06A(\x05\x02>!\xae\xc1M\xf8\x83l\xb3Y\xba\x10\xe2 \x08\xa9 \xdbl\xf59D2\x08\xc2(\x10\xe3T*\xa3\x047\x95\xf0h\x83%\xb5\x0b7\xd1\xce\x88\x85o\xb7TL\xa0\x13?:\x0e\xa1\xab,\xde\xc7e\x1d\x9f\xed+\x92~\xfd\xf5\xf3\xe7\x87\xff\xf9\xfc\xd5\xdep!\xb6\x97\xbe\xc7/\xa5\xad\xf4\xb7\xff\xfc\xa7\xee\xb7\xda5\xb5\xdfn(\xb5\x93\xe6\xdbV@{\xb5\x93>\x05)K$Z\xf3m\xb7Q\xd8\xf3\x8b\x976\x12\xca{c\xbd\xed\xb36\x7fz\xf3g0\x7f\x84\xfdVT\x95\xfd [\xfe\xd0\xf1#\x86\xd9\x90\x11\xd7\xf7r\xf5{n:\xafk\xc14\xfa2\x89\xeb\xdb\xf5\x08\xec\xfbDd]l\xcc\x97\x9a\xc3\xda\xa9\xc6#\xd05v\xca\x94\xfd\xdb\x95\x08\xf2U\xc9\x1e5o=x\x1a\xa5\x9d/)\xec_\xdb\x87\xb4\x13\xdb\xd8\xff\x1b\xdbgc\xa7\xb5\xb13\xd2\xd8uPM\xb8\x00\xcc\xad0\xec\xc6\x02 Z\xdb\xa7\x0e\x8d\xd3m\xccH\x8e\xc7\xa7=L\xab\xf4g\xa5\xb8$\xc7\xe3\xf8>=\xfbm\xdb\xda_\x92\xb6\xdcx\xfe\x0eM[\xbfi\xefOT\x8e\xc4\xdbt\x9a\x81\xf3j\xf0\xc5J\xb2\xd8\x9aiO\xccQ\xf8\x84!K\x97\x1c\xf9t{XZ\xcb\x9a6\xc6\x05\xde\x88\x88\xb9(\xc9'\xd5\x0d\x11\xa9,\x85y\xfd\x86\x1b\xbe\x82\xd1\x15\xe5\xf3|>N \x9d05\xaa8\xad\xe6\xa5\x1bgz\xa5\x86O\xa1\xbb\x9b\xc2\xe52\x1f\xb0\xfb\xc6\xd75\x9d\x15\xcd\xce*\x1d\xb7\xf5XkY\xf1\xef\xecT\xf7\xf6\xf9\xde\xfe\xde\xdb\xdf\x07\xbb\x1b\x06\xbb\x8cCz\x9d-S\xd7p:\x85?\x9duu\xa3\xed\x88\xba\xd3_\x8b[M\xe7\x05\xe6\xc2\x17\xf4\x92\x0c\x99;\x9d\x81g\x15n\xcdXG;\xd5\xdc\x95\xd8z\xa2\xdb\xa4=\xca\x024\xb2,\xf3u\x19a@\"\xa1\xf9\xec\x12\xd5v\xe9j\xb6/v\xa9\xeb\x92\xf4\xea\x0e\xda\xe6\x0b\xdd\x97\x8dL\xd6%\x9b\x97\xde\xceO\xe3\xfa}\x1cO\xb8\xf4\x0d,\xbd\xe2),\xed\xc7's\x01\xbd7\xec\x1e\xb4M\xc5T*^\x00\xc1\xdf\x88\x92\"$\xbat\x15?\xb2(\x81\xc5\x92u}\x9aO8M\xd2\x970\xd1\xb0!h$\x7f(\xd9\xca\xa7e\xde?\x1f\xf6\x97\x155+\x90\x942I\xc0\xfd`\x08}\xac#\xae\x9e\xfa\xe3\xabw\xd8\x9f\x9e\xa7`t \xa9\xc5\xb1\x1c\xc6e\x0d'\xb6\x82\x89\x15n\xb1Jk\x1f-\x8fv\x167*-;lv/\xf6V/\xf5\xac\x97x\x05\xd8\xaci\xcf3=\x81\x83\xe7\xb1\xd1\x9d\xb7\xc0{\xed\xf7*TZ\xac\xdc\x0f\x8e\x08\xbd\x9f\xc6W\xc6\xc0\xbce\xba\xb3LG\xca\xd9\x0e\xe2>%\x9d\x9f@\xcd\x85y]\x08\x8a\x96h\x9a\xc84\xdc\xa0\xc2\x17\xcf\x85\x84z\x9fPZD-!\xe2\x03\xa6\x16\xf72\x0b\x05NI/q]{;%\xbd\xdd\xe8\xa1}\xeaYE\x83\x9d*\xf2t0/\x1cA{\xe1\xf36\x94\xb4\xba\xa1AW?\"\x05p\xe9n\xcf\xcce\xdd\x07,\x80\xe1\x81\xe1\xe7\x08\xd1\x8bL<\x12\x9d\xcf\xc3`gl\xe0\xed\xd7\xbb\x18\xc0m\x11^\x04\xb7{\x86\x92Q:\xcc\xc1>o\xf3\xa62X^g:\xd9?f\xbd\x1d\x059n\xff\x16\xfdR\xfb\x9ej\x9f\x1b\xe5\x8b\xa6St]Z\xe7\xf0\x0f\xfa \xd3\xcfF\x16\x97E\xf9\x83t\x1b\xf3\x16oW\x98(P\x06n\xc8}Q\xcc\xf86\xd33\xbd\xa5\xce\xa3%#ZY\x12\xc0\xc4\xe03\xd1\x94\xe5*\xb1A\xfcn\xd9Yt\x9b\x8e\xff\xb7\x9b\x17\x9dE?\xa6\x129\xab&\xa4\xbf\n\xfcF\xa0\x94fmE\xc4Iy\x1c\x9aNJ)v>\xa1\xb2\xde\xd8\x08e\xf4b\xe7OO\xd1Gf\n\xe8\xdd\xf5 S\xc7\xd6!Ry\x83?\xbb7\xba \x19m}\xcb\x8e\x94\xf3\x94\xe8\xe2S\x1co]\xd04\x03\xc7\x0e\xac\x13X)0\xe7\x9e\xbe)*J\xdb3]\xd4\x8a\x8a\x07\x9c\xcb[k\xb7.\xb8\x85D\xed\xef\xe9\xb6\xdc\xfa\xf26_\xbe\\\x9e\xc1-\xedKN\x16;*v\x11\xed\x7f^\x9e\xe9`\xde\xa7\x08\x04\xfdP\x87\xa3\xdf\xda\xceV\xcb\x9b\xa7r\x89 \xd6\x9e\x9c\xc4\x10\x9c\xc5\x10\x8a\x1d\xd0\x96\x9fa\x0b\x9a\x0b\xa6?\x0b\xa7\x94[\x15q\x19\x85\xa8\x02\x1c\x9b\x92\n3/\xcf\xf6WM\xc1\xaa\x95L\x0d\xbd\x9b\x07=[\xf4\x8e\xb3\xe9\x06\xcf\xb1}\x1e_\xf6\xf4\xa2]\xdf\xb3\xed\xef\xf6l\xe9\xaeo\xb00\x10\xcd:#j\xfe\x86y(\x97o\n\xf2L\x8d}^\xd9\xdf\x95\x15\x14e\x9fSL\xb7f\x13\xc6\xf1\x9c\x17D\xb1 \xa9\x9dDp\xabD$\xe2\x84\x05\xa3V\xfd\x81\x1ffU#\xba\xf4\x84\xdc\xd1&\x97\xfc\xda^\x08b\xae\xf5\x86 \xad\xa2 -\xad\x05Q\xa1\x97\x1e\xc5\xa4 \xf9!J\xfa\xcc]\xe1\xfe'\x10\x0c\x05v5\xe3#\xfb\xc3\xaf\xa31\xceK$2\x83\xaf\xa8\x9a\xb2\xc4[\x1a\xee]*11\x7f\x0b4w\x8d\x91\xaeV\x87)\x87ar\x8e\x14d\xf3\x16M\xbe\xf3>\x91\xa0U\x90\x9b\x84\x1d\x91\xa5z\x9a\xdfB\xfd.j\xdf\x1do\xcb\xd3F\xef\xbe\xf2[\xd70\xc4\xc0\x11e\xb5\xd8\xda\xcd\xd0:\xbf\xb3<\xf6\xd3\xfcvy\x1b\xd7}\xa4\xd4\xfalg%Z\xda\xae\xc1\x88\x1b\x7f+ sY:\xe7\xe3\xfc\x81\n\x16\x17\xb7\xcc\x85}M\xf9\xd6\x1c|\x18\xd6>N\xf9(\xb6\xdd\xce\x1cm\xd9\xefl\x90\\h\xa3\xb0\xb1\xcf\x94\x16,`\xcc\xdfDu\xc9\xebqo[\x81i\xf1\xcd}\x82K\xdf6[\x02\xe7q\x99\x02\xfb\xe3\x87\xd0)\"\xa0\xf2\xce\xcb\x88\xcb[W\x91\x83\x97\x1d\xc2\xba\x9f\xd0]\x01\xe7\xc0.K\x91\x04\xbf\xdb\x00\xb6&T\xa2\x9c\x97\xc0+\xd49\xe3\xe0\xa2\xc4\xac\n\xf4Vl\xdc\x1f`\xe7B~\xa0\xa8\x86\xc7\xfd\x82\xc1\xa4*\xd6\xf98\xd5j\xda\xbe\x9d\xd7 W\xa7\x9c\xf7\xf2W'NyV\xc0t\xa6\xca\xe5~`\"\xcb\xc79\xf0\x891\xbfQ\xda}#f\x13\x05\xd4tz\x88\xa6r\x14\xde\x03\x17\x12\xf6~&\xb7\xfcYHO\xd6\xa3\xc2\x92\xbf\xcd8\xc5],\x81\x8c?\xc6\x03J\x99\x84\x91\x94\xdd\xfb\xf1\xc7\x84\xc1 \xd4\x1a\x0b\x0d_FH{@H\xe3\xd2\x07\xb7\xe4\xd8\x92\x9a\x8e\xeb\x88\xda\x02\n\x00\xa2.\x99\x85\x97yy\xc3,\x8e\x84D\xfd\xcd\xf2\x98%s=bu\xd0/\x03\xa5\x16\xd1\x8b\x95_\xaeAbZ\x95\xf5T\xe7\xf9\xc7\xaf\xe3)\x18;\x9aN\x85\x99\xa3\x94\x82o}j8\x13My?\xfb[\xf2u\\)E\xff\xf4\xf1\xcd\xbe\xb5\xd5\xdb\x1b\x038\x89U)\xe3\xf1:\xae\xe6M\xa7\x89B\x02d\xb4\xab\x92K\xe1\xa8\xf8oCE\x96 \xfc\xacJ\"\xf2:\xae\xa7\xf9y\x9c\xe8e\xb8> \x90\x93\xaa\xb4\xcb^\xc7\xf5\xf2\x81E*1\xa0\x8fSr\x9d_G\x18Hz\x8e!\xb8\x12\xa5\xa8\xeeuz\xc7J\x0f&\xcc\xad\xeer5)+B\x1c\x96\xdc[\x8dwQ\x92u\x1c\x94\xddH\\\xa5\xcfEO\x1c\x8b\xb8\xf2@\x90;\xd92Q[ \x89\xbfQ\xc5a\xcf\xef\xa0s|\x93Q\xack\xbe\xd2\x0b\xc7p\x97\xc1\xda\xf3\xd0\x04{}\xc2\xf9\xa4m.y\x99}\xd4t\xb9\xecO\x81i\xf2:\xb43g\x1b\xde\x85\x02 \x82q\x95\x15\xaa\xbb~\xbe\xa3D\x063\xd6}\xccX\xeb3V\xa44\xbe\";U\xc8N\xb15\x16\x8c\x87\x1b3T&\x150\xe2\xef\x88\xd2\x84\x84q\x0f$H8#\xce\x9e\xb2\x03\xcd@\x0eZ\xdb\x16\x97\xc5\xcfZ}\xcfwJ\xec\xfe\xca_G\xdeq\x9c\x85\xdcvN\xb4a\xee+\xec}\x9b.\x81C.\xaa*\xea\xb0\xd8x:\xec\x8f\xa1\x06\x1d\x86\xbbi\xccA\x0e\xb4\x86lk\xc92\x7f[\xd7\xf3\xe5\xaf\x8f\x8f\xaf\xd3\xfa\xed\xfa\xb4;\xcco\x8f&#\xf88=\x1d\xbe\xbc\xce\x8fO\xc7\xf9\xe9Q\x1e\xfa\xbe\xdaK9\x0e/\xc3\xe1\xd0\xa9\x97V>)\xd9\x1d\xf6C\xb3\xdfw\xea0\nQ\xb5U%\x1e\xcf\xcb\xbc\xce\xf97\xfb\xd3\xcf\xffvT\x0dr\xeb\x1b\x9bb\xe80\xed\xd0\x00\x97+\xf9\xbe\x01\x9e\x9e\x82pEF}>\xc4UL\xd6\xb9\\\x9d\xbcU\xba\xe3\xe78\x7f}\x8f\x9f\xab\xe7\xd9\xbc2\x1b\x18\x84*HFMZ\x02\x87=\x0e\xcd\xdfc\xade\xb5(\x04Am\xbc\xc6\xdc\xf3\xbd%\xb4\xcfB9]\xed\xf9`\xd3\xf3xZ\xa7\x97\x00\xc9\xe3\xebk,\x16\xe7x\xa4\xf7\xcb\xf9Dz\x7f\x9c\xb5\xcb\xc0\x17\x07\x1an1\x7f\x92\x1b;U\xce\x82\xe7,\xb5\x95\x82[\x96z\xcbfs\xcbl]25\x97\x9eF\xd3l/P\x8c\x85\xea\x04\xc2a\xbc\x0c\x90\xcb\x9d\xba\x94\xa9\xcb_\xb2b\xe3B\x96\xc8\xd4Z\xb8n\xa5G\xe1\x12\x1a.\xb6Fr\xcc\xece\xdd\x9f\x82\xe8\xb5\xc5\xc4r\xc9\x14O\xda\xdc\xc4X\x89\x0e\xdd\xdb\x92:\xfc-H/H\xc8M\x08\x95\x9dr/t\xfc\xed\x82\xb5E)\x8aH\xd94\xee\xe4\xf7q k{\xe8Q\x94\x04\xfe\xf7\x11R_\x80\x13r9\xf0\xca}\xe05\xa9pA\xef\x85\x89\x1c\x03\xac\x8e\x80 \xb1\xc8\xa8 %\xd0\xe9\xc1\x9c!\x0bN\xc5\x9bt\x035\x95\x9c\x87\xe3\xf8\xba\x0f\x10\x802.#\xe6\x1aGN\x00`C#\x15^\xd2\xb0\xc7 \x8c\xf71H\x81S\xc7[\x90\xd7\xa5H\xf7m\xbfbrIT\xfe\xbeV\xa5\xda\xcd\xdb\xfe\xc7W\x9b\xcb\xfb\x9aJ\xe6\xdd\xc8\x08z\x1b\xf6m\xbc\\\xf6\x08\x11j\xb1l\xe1\x12\x0d\xae\xbaY\x9a\xf9T\x12\x19w\xe0=I\xe4\xb7)( \x02>0( 6N\xc1\xf26\xe0\xf5\xbdY\x1c\xb4\xbd\xcd\xcf\x08\x0b\x07#\xca*\x90\x93\x8a\xb5\xed\xce\xc5|\x12W\xbd\xed\x81\x8bR\x9f\xe3\xfb\xb8 \x02\\\x807T\x9a\xa2\xd3\xfe-\x80P\xfa\xe6\xac\x08\xae=\xedO\xf3e<\x84\x98\xbf\xa6X\xf7\xf5\x822/\x16;\x8d\x80\xc0\x96\xaa\x9c\xa8\xf4+g\xa7\xf1G\xa0tR^Y\xa6b\xb7\x91\xb8\x8c\xff\xb8\x8e\xa7\xc3\x18\xa6\xa4\x1b_e\x96\xa9\x848\xa3\x1e\x93\x17N\xcb:\xd3\xce+\xec\xac\xa3\xb8i?]\x11\xda\xcfn\x9d\x10\xbf.\xea\xbb\xedCh\x9f\x10\xb5\x9e\xd3\xf9\xfe\xf4\xcf\xa7/ ;\xeb\x0b~\xb1\x82\xcd/]\xc6\xd5\x87\x94\x9d`?\xe0\x8ea5\"2N\x0fexM\x04\x0c\x84\xb8\x94\x05\xd3M|\x07s\x99\xa3\xb9\x8c\xef\xd3|E\x93\x0b\xe5\xb1\xa2\xdd\x1d'\xf4fz\x99tI\xee\x8a\xee\xfeq\x1d\x17\x90Y\xd8I\x86\x12\x07B\xe6\x0f\xcf\x13\xb8\xea\x9b\xba\xbc\x89vv\x9b\x91\xd94\x7f\xa3\xb3\x8cl\x0b,=w\xb6\xd1\xd2\xc3\"\xed\xa6\xa6\xb3\x1b\x85\x05 \xd80\x9c\x1a \xd5z\x94\xf3\xb1\xed\xee\xae\xdaXz.'tg\x15\x877\x13\xeaA/\x82\xc8\xd9>\x8e6-=\xd6\xf8lHn\x9e\xc3`w\x08\xdc\x1f\xefp\x9c}\xee\x8f\x1eNp\x19OK\xef\x16^\xfan@\xad\xcb\xc9\xc7\xae\xf7\x96M`!\x0d\xce`9\x17!\x8d\x1a\x8cu^\xa4\xear\xea\x02t^\xde\xaag\xf4\xc4\xff\x7f\x97\x00w\xf1|\x01\xd2\x03\x81\xd3\x0d\x87V\x8a\x11\x07\xe5\xf0\xb7\xf4\x9c=\x0b\xfe\xb2\xcco\xa9\x93\xcc]{\xb73O~\xec;\xba\xc4U\x14\xbbe\x9du\xac\xf9/c\x0c+\xf4\xfdk\x07\x12\xddd\xa3\xcc\xdb\xf3|\xf82\x9d~\x0b\xce\x0b\x14=\xa1\xcag'H\xad\xc0\xb4\x18\xf9\xcfv\xfd\x1a$\x9e\xb0\xae\xcab_\x04\xe2\x18\"\xb8\xe4=V\xf7Kk\xbe\x8c\xe7c\x00\xe4\xabS\xa7\xd6\xf2G\xc8\xfd\x88s \x13\x85\x10s\x88bBh\x19/!\xd4\x19@\x94\xf79\x13\xcb\xb8.\xd3\x08\xb2&\xab2\xa0D\xc2j\xaeW\xacu\xc3\x81sC\x80m\x80\xf9\x83\x89A\xacF\xc7\x19\xac{\x0f\xcaye\xfe|\n\xd8%^3(\xf0pj\"\xc81\x06\xf3\x96\x18\x8f\xc0%\xff\x99\x93\xfb\x81\xd3>z)<\xa6\x94\x90\xa0\x7f\xad\x83\x80\xae\x19\xe3\x19e\x19\x0ex9Y\x16\xa5\\\xd1e\xdc/\x98\xb5\x95\x15&\x0b\xd3R\x8c\xd0\xb4\xcbxXB\xccMw\xf7^\xb8\x8c\x87\xeb2\xad\x1f_\x9e\xc7\x97\xe9\x84\xd9\x84bM\xb4\xf29\x18\xd1\xd5\xed\xab\xd8\xc1\xcc\xf6\x7f|\xf9\x12\xa9Y\xa9\xf0B\x8e>\xb7\x9e\xa9\x95\xb9\x84\xb1\xa6@\xccb\xd6\xa3g\x99p1L\x18\xeeX\xf2\x94#D\x1b#\x126&\xaa\xf9\x96\x8c\xc3e\\\xa6\xe0\xde\x0bqC\x99\xa4\xeaD\x97qA\xeb'\xee\xb6\xc9\xbai\x18(\xa0\xe1M\xe7%\xb95\xe6\xd8\x01~\xef\\\x7f\xde\xa9E\x10\xc4ez\xc5\xc3x\xfe\xe4\x86n\xb6p\xf0\xdc\x0c\xae\xc1{\"\x98\xb1\x07,\x8d\xean\xa7\xd3kT\xd8\xad\xb2\xbdg\xf9?\xbd\xe2J\xc292C\x81=\x06f\x89\xa3\x8c \xfa\x10\xd2\xb9\x16N-\xa1\xba+j\xb9X\xb9y\xd5\x9a\xcb1\x84\xd4\xf8\x13\xcdq\xd3\xe6\xe52'\xaa(E\xe7\xf10\x01\xfe\x00\xd0\x84\xec<\x17\xbd\x95\xcby<\xed\x9f\xb0\x88\x02\xfa\xa0\xa8T\xcf\xe3\xe9y\xfft\x1c\x83kd\xe0\x1c[\x99\xc2\xba\xff\x1ds\xf8pF\xdf\xa9\x89\xda\xcd\x0c\xafHS\x14\xebu\x1f\x00\xba\xe0\x98V\x18\xaf\x85\xf1V\xf6d#\xc7IA\\\xb4\x15 \x8a\xa7_4Wp\xbe\x12rz\x1c\x1cs0\x9a=\x16\xe7[\xff\xcb:/8P\x19\xc3r\xe2\x00r+\x0e\xdeB\x12\xd8n\xaeOA\xf6[\x02\x98\xcc;\x0b\xe6\xd6\x877\x86J\x13v?\xb8\x0e\xc2b\x9e\x00A\xbc\x0b\x12s\xb9>]\xce\xe8\xf8BQ\xbb)\x9a\xc7\xeb\x1b\xda\xc5\xaah\x13|\xe0\xff\xe5\x1a^\xba\x03\xe7f\xa2|\xcb}\x87\xc9\x89\xea\xc7\x0c;\xbcA\x8c\xe6\x8d\xd6\xf3\x12T\xea\xba\xbb-T\x84\xec\x85\xf5\xde*i\xc5\xe5\xf88\xe15 U\x19{-<\x89X\xf7G\x9cQ\x88L]\xce`;\xaf\x93s5\xc2'\x1c\xf5\x8f86\x812Z]\x9a\xddu<=\x8fKX\xee\x96\x80 ,{\xa4\xeb\x84u`\x89\"sW\\\xb4\xce\xbf\x07\xd7\xdb`\x05<\x93\xa8w?X\"k\xa0\xbe\x87\x94\xec\x06\x81\x84\xdb\xdf\x81,?\xdc\xb8}\x88z\x8b\xf7\x0bf\x98KB\xb5.\xfb\x03\xaa<\xd8\x13w\x9dQ#\xe4^xv\x1c\x90i[8\xc6IP!]65\xf6m\xd2&\xd6\xc3\xc0\x96\x1aG\xbe\xf0V#J9\xc5\xebr\x0dQ?w\x9f\xe2Z\x7f\xa0\xb8\xc2\xa6\xde\x98\xcde\xc0\xfc\x1a\xb89\x0f\n\xee\x1bx\x1f\x9c3\x0dr\xa7\xc5C\xc2%O%\x7f\xfeT@$\xa7J\x0b\x7f\x0d\xc2.\xd9\x94\x8f\xb4$\xb1\x13\xd7S\x84U\xc3;d\xee\xc2\xaa]O\xa9\x04\x1a\xdcc\x03AMvD\x86\xcc\xf8\xbc\x0f\x8e\x96@\\W\xac\xe9o4R\x05z\xc0c\x14Y9\xbf.{\x8cN\xe1\x8c`\x986\xc74t\x91\xe8\xf8\x9c\xbc*\x03\x8e;\x14A[\x8eL\xe6\xfe \x11[\xc6[\x8ca\xe2\xb4G\xfb\x88Y\x9d\xacf`R\xc1y'U\x86H\xfb\x89\xd3\xe8$5\xe0g\x9c\xd6\xe6J\x8e\xd5>a\xc5\xc6\x05[\xac\xdd\xb9b\xc2Y1\xfb\xfc\xad\xcaH\x18v&\xd3\xfb\xb9[\xc9\xfc\xc8+\xbe\x1d\xc0\xc1q\x9d\xbe\x8c\xcf\x86f\xc3\xb4D\xe3:\xa2\xe2mqw2)8\x8c\x8f\xc7H\xb3\xa9\xaf!A\xe9KtZ\x0b\xed\x0d\xd6E2B\xe7\xa8\xa5.\x1a\x82\xa4f\xc9\xf5pT\x12\xaa\xd4\x0f\x1fT\xc9\x03rD\x18Q4\x9d^\x13W)\xf8\xd2X\xfe\xeb\xf9\xcf\x7f\xa2\xda\xdf\x9f\xfe\xf27j\xf5\xdf\xfa\x9f\xdd\xb7\x8f\xe7e\xbf\x8e\x7f\xfe\xfa\x95~\xfcJ\xf9\xa1\x87\x8d\xdc_l\x1f??\x1a\xd6~\xf9\xe9\xe7\xc7\xa7\xf9\xf9\xe3\x97\x9f~\xfa\xf9\xf1\xdb\xfav\xfc\xe5\x7f\x03\x00\x00\xff\xffPK\x07\x08\x8e\x87p\xc5\x9d\xdb\x06\x00q\x044\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 \x00openapi/openapi.yamlUT\x05\x00\x01\x80Cm8\xec\xbdmw\xdc\xb8\x916\xfc=\xbf\xa2V\x1fby\"\xb7\xc6\x9ed\xcf\xb9u\xaf\xf7\xc4\xf1\xcb\x8c\xb2\x1e[+\xcb\xd9\xf3\x9c\x9c\xb9e4\x1b\xddb\xc4&z\x08Prgv\xfe\xfbs\xf0\xc6&\xd9$^H\xa2\xe5qP_\xc6\xa3&A\xa0P\x00\nu](\x90\x0d\xce\xd1&=\x83\xeff\xdf\xce\xbe\xfd]\x9a/\xc9\xd9\xef\x00X\xca2|\x06\x1fpR`\x06\xef0\xbb'\xc5-<\x81\xd5\xe5\xc5K\xf8\x1e1|\x8f\xb6\xb0 \xfd\x1d\xc0\x02\xd3\xa4H7,%\xf9\x19\xbc\x80\xcb\xd7\x1f\xae \xcd\x19.\x96(\xc1\xb0$\x05\xfc\\\xe2\"\xc5\x14P\xbe\x00V\xa0\x9c\xa2\x84?\xcd_\xbe\xc3\x05\x15/\xde=\x9d}7{\xfa\xbb\x0db7\x94\xd7\xe04!tM\xe8)*\xd9\xcd\xe9\xdd\xd39f\xe8\xe9)J\x12R\xe6L<\x00\xb0\xc2L\xfe\x03\x80\x96\xeb5*\xb6g\xf0B=\x01\x05fe\x91S@Y\x06\xec\x06\x03\xfe\x9cR\x96\xe6+\xd0e\xa87\x1b\xb5?\xfa\x90\xe6 >\x03\xf9\xed'tq\x0b\xdf\xce\xfe\xf8\xdd\x91z\x96lp\x81\xf8\x93\xe7\x8b\xdd\x97\xd4o\x05\xa6\x1b\x92SLu\x95\x00\x8e\x9e}\xfb\xed\xd1\xee\x7f\xf74E\xcb$\xc1\x94.\xcb\xacz{V{:!9\xc39\xab\x17\x00p\xf4\xcd\xe97G\xcd?\x01\xd0\xe4\x06\xafQ\xfb\xaf\x00l\xbb\xc1g@\xe6\xff\xc0 \xdb\xfbqS\xf0\xe6\xb0\xb4^\xe3\x9d45\xdd\x16Y0*\n\xb4\xed\xfc=ex\xdd\xf3\xaa\xa5VR\xccu\x93\xc2\x8b\xb9.\x8b\xac\xff \xfd)\xca\x8a4_\x19\x1ek\xf4\xcb\x7f>1< \xf0\x02>^\xbe=-0%e\x91`\xc8\xd1\x1a\x03\xbbA\x0c\xca<\xfd\xb9\xc4\xd9\x16\xd2\x05\xceY\xba\xe4\x06\xcfn\xb0\xb10^? Ka\xa0\x14\x17)\xca\xd2\x7f\xe2\xc5\xef\x8c\xefl\n\xc2HB2\x98\x97\xcb%.`\x8d)E+<\x83\xab\x9b\x94\xaa\xb6\xc2\xba\xa4L\x18\x10Js@\x0c2\x8c(3\x97Kr\x0cG\xa7G\x90\xdc\xa0\x02%\x0c\x17\xbcD\x0c\x19\xa2\x0c(^\xadq\xcetU?^\xbe}D\x81\x0fU\xf9\xa1\x02o\nLqn\xf9\x02\x7fuYf\xd9\x16~.Q\xc65\xb4\x90\xfaS\xc5\nm\x1c#\nin.\xe8\x13\xff\xf4\xe9\x8a\x90U\x86gB\x1f\xf3r9{U\xca\xc1\xf9\xe9\xb1\xac\xb9(\x9a\xde\x902[\xc0\x1c\x03W\x04$('y\x9a\xa0\x8c\xcfKk\xf3W\x8e\xf1l5;\xe1\xaa[p\x95\x1e\xcd\x8e \xa5\x90\x13\xc6\x07\x07\xde0\xbcx<\xfb\x9d\xb9\x88\xf3\x1c6\\\x99i\x82O\x80a\xb4\xa6P\xd2\x12q\x15l\n\x9c\x90\xf5&\xcdx\xcd\x18\x11\n\x98\xa79*\xb6r\xca\xdan\x84\xfd \xc6\x7f\xd9\x9a?\x83?op\xc2 e\xc0\x08\x94T\xb4\x95\x97'f\x90\xcf\xa2\xdb^\xe4\xdb\x19\xfc@\xee\xf1\x1d.N\xc4\xa4\xfc\xf1\xf2-\x85\xfb\x9b4\xb9\x11\xafpS5~DL2\x18>\xdd0\xb6\xf9t\"\xffK?\x9d\x00) '\xea\xd7\x13aE \xca\x81\x88\xd1$ZJ1\x83r\x03H\xb4\xc9\xf2\x0d\\\xdc\xe1B6{\x8d6T\x9a\x84\xa8)#\xda\xd2a\x81\x97i\x9e\x8a\x15\x04\x10\x85%\xc92rO\xcf,}\xf1\x0d\x9c/w5\xe5]\xb9)\xc8]\xba\xc0\x8b\xaa1\xfc\x8f\x88\xd2r\x8d\x173[a/r\xf8\xe1\xea\xea\x02\xbe\x7f}\x05$\xd7\xc3B\x8e\x87m\x8a\xb3\x05 \xf8{\xdbD\xaf\xb6\x1b\xfc\xd3\xdf\x7f2\x16\x0dp\x87\xb2R\xf4\xa1\xb2\x07n\xaa\x88 Mo\n\xb2(\x13\x0c(\x07\\\x14\xa4\x98\xd9j\xb9\xd9di\x82\x94\xae\n\xccm\x8b\xdc\xe3\x05Wg\x82\x12>\xbe \xb9-7|\x01*3Fa\x8e(^\xa8\x06Y\xaa\xf9\xf1\xf2\xad\xa8\xd3\x0d\xba\x13\xe6\xb3\xae\xd9\xf4B\x1a5\xd2M\xe0\xff\xbe#\xe9\x02P\xde\xbdb\xecDVH\x0c\xe1\x02/I\x81Ot!\xbcl\xc4\xd2y\x9a\xa5l\x0b9\xc6\x0ba\x16s\x0cb\xfa)\xee\xf0\xc2R6\xc9\xf9\xf4\x96\xaf\xb0xQ\x8c\xb1\x19\x1c\x7f\xa4X\xfb!\\3\xdc\xe4\xf8\xdc!m\x0e\xe5he\xd3\xc4\xbc\xc0\xe8\x96\xcf\x11\xaa\xf0\xd9c\xb3\xf5\xbc#\x0c\x9f\x01\xe3\xf3\xf5\xb2\xcc\x139Rx\x9b\xd4\xfc\x92\x94E\x81s\x96m\x01\xdd\xa14C\xf3\xac\x1a\xd2d\xb9L\x93\x14e\x0ek\xc4\xbc\\B\x81\xf9\xcc\x8fO\x84\xeb\x952\xfd\x81\x92w2\x9f\x04v\xe3k\x8eWi\x9e\xf3F\xdc\xa7\xec\xc62\x91o7x&m\x1bmR:K\xc8\xda6\x13~\x10\xa3\x8e\x02a7r\x80\xe7\xed\x99\x04\x8ey}\xb8\xa7\xb6\xde\xb0\xad\x1a\xa6\x8fa\x9d\xaen\x18\xcc-\x13\x87h\x10\xaf8\xa4\xebM\x86\xf9b%\x8c\x1e\xe8\x06'\xe92M\x80\xe25\xcaY\x9a\xd0\xfe!#\xc6\xdd\x04\xee\x84\x1c\xafg0\xdf2\x93\xe54\xbc\x8e\x1f\xf9\xbc1\xc7\x80x-\xd2E\xcd\x1b\xd8[\xf0\xd5j\x89\xe6\xe4\x0e\xeb\xf6Y,_tX\xcf\x13\xae\xce\xcf\xa7\x17\xf9\xf6\x93\xf6)\xb8/\x0f\xa8\x98\xa7\xac\xe0#\xb3\xbf\xb6\xbd\xc5\xe9\xc9\x1ceD\xd9\x1c\xa0\xfe>\xe6S\xabX\x15dm\xe7\xd2\xb7\xea\xf1\x9f*\x97\xc8`\x93\x17z\x84d\xe9\\4A-\x06\x14h\xb9\xd9\x90B,\xa5\x1b\x94\xdc\x9e\x969\xff\x0f_@\xa5\x81P=\x14\xcd\x1e\x04YB\xc9\xe4L\xa5\xc78\xe5\xb3%Z,R9\xe0a\x85s\xbe\x9f\x10\x15f7dAuS\xf8\xb7d\x97\xf5\x97\xff\xfa3\xe2\x96\x0eO\xcf\xe0\x82\xd7\x8f\x0fpUUT)7\xcd\xe1\xe5\x1f\xfe`Y\xcb\xde\x10\x02KB\xe09\xccf\xb3\xffk|\x94W\x0c\xe5[\xf3C(\xdf\xcex\x95\xde\x14d}\xbc$\xe4\xb1\xf9\xf1\xd9\xcc\xbc\x88\xa5K8\xe6E~\x14\x8d\xbb\"\xc7\xbf\xe7e>\x86_,\x93\xb2\xad\xdc_\xed\xba}f\xd1\xed_\xd1\x1d\x9a\\\xb9\xf0\\8k\xfck\x13j/\xa5\xc7o\x08\x99%\x19\xa2\xd4Ay\xb2\xca\xfcE\xd9\xee\xda\xcb\xe6\xfa\x18\xb4Z\xa9\xf5;\x8bZ/\xb6\xec\x86\xe4\x16\xc5\xca\x1a\xbe!\xe4x6\x9b=\xb6\x19\xa4T\xea\xb1\xf59a\xb8B\xedc\xb5\xce\x0b;\x97J\x7f\xf5\xfa\xc3\xcb\xcb\xf3\x8b\xab\xf7\x97\x8fM\xab\x0b\xa8*HC\xb7WBV\xc3\xae\xee?Z\xd4\xfd=1kZ\xa8\xfa\xec9\xfc~3\x9f\xbd!\xe4\x97\xd9l\xf6\xab\xf9\x05\x94oO\xb8\x7f\xca\xdf\xdaH/\xebGT\xd0\x1b\x94\xf1N\xb07\xcc\xa6\xdev\x8d,\xd5I\x97\xad\xca|\xcc\xd7\xbb\xea\x88\xca\x8a\x81&\x9e\xfa\xb7\xe7\x90\xa7\x99u\x80\xd8\xebh\x18 |w*\xfaA\xcf\xfbz'\x02\xf3\xed\xcew\xd3+\xd3}\x9ae\xfc\x87\x05^\xa22\x13\xce[\x7f\xd1\x8f:|\xb3S\xbe\xe9\x9e\x89\x1f\xb8_\xfb\x88o\x9a\xaa\xd5\x93\xaf\xac\".w\x83\x95u\xf4\x17^-Sy\xb6\xd5\x9b\xc6\xbd\x1d}\xe5?\x03Z2,]:\x11Dxt\xfa\xa8\xbfh\xb5\xa6\xea*\xc9-*V\x16|\xb4$d6G\x85h\xcc\xe7\xd3\xed\xec\x9fGR+r\xa3e\xdeW\x8a\xaa\x1c\xf1w\xf8r\xda\xfb\xd8_?\xbc\x7f\xd7\xff\xeb\xf3\xe7\xcf\x9f\x9b\xfb\x93\xbf\xbf\x0b\x84H\xe7\x93\xf0i@9NrSWR\xe5\xb9\x14xUf\xa8\xe8/s\xbf(\xfe\xda\x02\xef\xdc\x9c\x13\xc0\xeb9^,v\x0e\xcf\x89\xf2\xa3\x0c\xe1\x93\x9a\xfb\xb1\x14\xca\xfb\xf4g\xae\xbeO*\x12P\xb9w\xf5\xce\x98\xe9\xa9\xe4\xcc\xb2\xeb@\xc9-\x9fSv\xbb\xdee\x9aa\xf3z\xa1\xe7\xa1\x0b\\P\x92[\x87\x9d\no-\xd3\x82\xb2k\xd1\xb3\xcf\xe1\xa9\xf9\x0b\xd5K\xdc\x08\xf5;\xcf\x86\xafb\x00\xd6Z\x1e \x9d\x1e\x9d\xc1Q\xd7hl\xaag&[~tb+S\xb4\xf9\x1dZ\xf3r\xffC6\xe9?\xad/\xf16\xb7\xde\x19\xda\xf0\xf3\xa5\xda\x9d5mNZIJ\xe1\x1eg\xd9\x93\xdb\x9c\xdc\xe7b>\xb9A\x14\x10$%edm\x19\\MS?\x91\x8e~\xcb\xfe\xe5$X\xfb<7\xe4|\x05H\x9aq\x7f\xe1\x9f\xc4\xc0\xd3\xf6}C\xb2\x854\xeeZ\xcdDhP\x8d\x0bP\xa185,\xfa\xcb\x15\x9f\xadF\x06\x1c\xf3\xf9J\xabd/\xee\xa3C\x93?\xfd\xfd\xa7\xc7\x96A4\x95m5?l7/\xa1&^\xec\xd3\xd9\xb3\xa7\xcf\xe8\x91\xc5L\xba\xfe\xaa@#\x0d\x1d\x88x\x93 z\xa9\xcb\x06\xad\xd2\\T\xb5\xdbEj\xecRw\x0f\xcbX\xa0\x9aSk\x7fV\xcbI\x17\xac\xb2\x13+\x10a\x87!r\xfc\x99]\xdf\xe2\xad\x19\xa6\xb0\xc6\x0c\x9c\"\x06J\xbd\xffk\xc2't}\xf8\x80\xe4\n\xe0\xffT!2D\xa9\x8c\xfb]\xa0\x15\xbe\xc4?\x97\x98\xb2\x99\xfc\xddP\xe0\xcf%.\xb6\xa2(^4W1\x865\xa1\x0c\xb0\x08D\x89(U\xcf\xeb\x8c0d@g\xbc\x14S\xa69\xfb\xf7?\xdaTc\x84nDu\x84^\xc4?\xf2r=\x97\xc1\x14\x1d\xfa\xac\xc5\xda\x96\x86r\xea\xea\x13\xe6|-\n4\x8d\xea{D\x81bv\x02)\xa3:\xbaK\xa1\xcc\xa5\xf1.dP\xec>\xa5\xfb}o\x0f\xce\xfc7\xef \x8dE^*{\xd7\xdd\xaf\xed_N\xd2K\x19`\xeb+\xe4\xb4\xc2N//^*_\xaf;\x02\xd1\x8d\x92V\x0f*G\xb5\x1f\xf9\xcc\xa1\xcc%f\x81\x172\x8e\xfd\xe5\x01\xa0\xa2Z&\xf4\xb3\xd7r\x13\xb2\xe8\x89\"\xca\x17\xd3\x9c\xe1UOdL\xdb{\x9a\xb3\xef\x9eu<\xa1V\x98A\xf5Z`\x86\xd2,\"\xbam\x89\x88nDt#\xa2\x1b\x11\xdd\x88\xe8FDWKDt#\xa2[\x13\xa7\xfdYDt#\xa2\x1b\x11]\x07h$\"\xba\xa6\x97l\xad\x8c\x88nDt#\xa2\x1b\x11\xdd\x88\xe8FD\x17\"\xa2\x1b\x11\xdd\x88\xe8FD\xb7\xab\xd8A\x88\xee\x06\x15h\x8d\x19.jq\xfa'b\xc6\xad\xc3\xae\xb3[\\\x0f\xfa46\x9c-|R\x81\x91HM\x97\xf2X\x9e\x88&)$M\xe1>\x15r)\xe2?\xab4o\x94\"`Hn\x1df$r\x06\xef\xf9BFr\xb1\x87$\xcb%\xc5\x8co\xd1\x9a\xd5\x85Z\x0c\x99bV_\xf5\xd3\xfcL~\xab\xf6\xb7\x02\xff\\\xa6\x05^\x9c\xc1\x12e\x0d\x8c\xae\x0bv\xea\x8d(t\xc6\x10:T+k\xdd\xa7\xdd\xd6v^5Q(8/\xd7\xb8H\x13\xfd71\xe6\x12\x94\xf3V\xca`\xca\x0d\xceuw\x94y\x15\x87j9\x9c\xe7\xa2\xb4\x0cS\xbaS\xac\x8c\xee\x94\x94w\xc0-6iYi\xb6Y\xe4\x83\xa8\xb9\x85\x18w(:K\xd7\xa9\xab\x9e\xc5\xb3\x1aU\xed\x03\x90e\xe4\xb2n\xe1\n\x83-\xb3&,\xb6\x91\xa1\x8c\xfa\x9f\xce\x97\x90\xe1%S\xa1\xb2\x94\xc9\xe9Q;\x88\"\xf0*\x07\x90\xfc\x08\xd7\xf8|\x0b\x18%7\x806\x9b/N\xb7u`|\xf7\xbeI\xc3\xb57\xb8\x9e\x85\x05\x13`E\x89\x81\xff#\xcd\x17i\x82\x18\xae\x00\x14\xa5W\xf1\xa02\xbazqi\x9ed\xe5\xa2\xe5D\"\xf9\x95\n\x9dj\xf5\xa3\xc08k\x01Z\xbe\x0049%\x1f\xcfi\xab\xdfZ\xd5\x16~t\x81\xa9\xc2\xb6\xc5\x90\xdb\x8dQ>\x0cgj\x84\xa5\xab\x9c\x14\xb5Q\xd9,Vj D\xb7\xce \xc90\xcaM\x9dW\xe0;\\4\x8a3u\x9cz\xba\xddii\x8dXQ\xe0\xee\xb1\xd1(\x87\x7f\x03\xe7\xc2\x05 \xc5\x02\x17\xedP\x99\x85t\x10JC\x0c\xad\x1aK\xe1\x7f\xab/\x1c\x19\x0f\xa8\x9f\xfe\x82\x16\x8b\x02S\xfa\xab\xe2*\x18\xce\xaa\xef\x8e\xaa\xab\xffW@\xfd\x0e\xb9Qeis\xe8:\x86\xae~\xfa:O\xa1\x9b(\x0b\xa3\xe8[\xcc\xca8p\x02\x08\\\x03\xee\xfe\\\x03\xb9\x13\xee/\xcf\x8bi\x10\x86g\x10\x9ae0\x11\xc7\xe0\x10\x0c\x83\xd1\xfc\x82\x83\xb0\x0b\x0e\xc0-\x08\xcf,\x08\xc7+\x98\x90U\x10\x90S0\x11\xa3 $\x9f \x08\x9b \x1c\x97 \x08\x93\xc0\x8fG\x10\x98E\x10\x94C\xd0\x11\xbb0\xcfuA\xf9\x03\x13\xb0\x07,\xdc\x01'\xc7\xc0\x897p0\xd6\x00\xeb\xe5\x0c\xb890\x93\xf2\x05|\xd8\x02\x13s\x05\x023\x05\xc2\xf2\x04\xa6b 8\xc3\xd8\x0e\x0c\x01/~\x80\x19f\x1b\xc6\x0d0\x97\xd9\x1b\x02\x9f\x8c\x15\xe0\xabL\x1fF\x80\x9b\xbe\xbc\xd8\x00\x03\xb9\x00\xfdP\xc2\x84<\x00g\x16\x80\x1b\x07\xc0\x95\x01`\xd5\xf2\x10\xf4\xdf\x07\xfb7!\xff\x13\xe1\xfe\x9e\xa8\xff8\xcc\xdf\x82\xa6\xfb\xe0\xfd\x01\xd0~K\xedz-=\x18\xce\x1f\x10\xe5\x0f\x86\xf1\x87B\xf8\x9d\xf0}\x13\x00i\xc2\xf6\xa7G\xf6\x83\xe0\xfa\xe1P}\x7fL\xdf\x0b\xd1\x1f\x80\xe7\xfb\xa2\xf9F,\xdf\\;W\xac\xd5\x1d\xc7\x1f\x80\xe2{b\xf8\xbd\xcd\x0d\x85\xdf\x07D\xef\xc3`\xf7a\x90\xfbi,\xc9\x0b\xb5\xf7\xc1\xec\xf7\x97\xcc\xc6.\xae~.\xd4\xe9Xh\xf3\x10(\\^\xbc\xec\xf8\xb8>\x15\xba\xfbd<\xeaix1\x1e\xf5\xec\x11f\x05^\xacm\xd4\xe2\x16\xbb\x90\xe2\x0b\xbf\x18\x0b\xeb\x0e?\x18=\xf0@\x10Lx\x10f2\x18\xe60@\xcc\x04P\xcc\x81\xc0\x98\x83\xc01\x87\x00dBB2\x93\x822Aa\x99\xc9\x80\x99\xb0\xd0L p&$<\x13\x08\xa0\xf1\x85h\x82\x834\x81a\x9a\x01@M`\xa8f\x12\xb0\xc6\n\xd78\xbb\x13N\x90\xcd\x01A\x9bx\xd4s_\x02\x038\xa1!\x9c\xe9@\x1c\x0f\xe4\xc1 \xc8\xf1\x84r\xacq\xd4\x81p\x8e\xbd\xdcx\xd4\xd3 \x03\xe1\x9dx\xd4S\xca@\xb0\xc7\x0f\xee\x89G=\x9d\xa0\x9f \xe0\x8fC\x1d\xe3QOw\x18(\x1c\x10\xe4\x08\x05\xc5\xa3\x9e\xa3A\xa1!\xb0\x90'04\x08\x1a\xf2\x07\x87\xe2Q\xcf. \x05\x15\x05\x05\x8bB\xc1E\xa1\x00\xa3\xe9l\xcb\x0b4\xf2\x83\x8d\xdc\x8ez\xaa\x13'\xb5r\x1a;M\xf5s#\xfb\xae\xfe\x1b#*i\xec\xb2\x19\xe1JE\xe2^vS\xfb\xd3\xeet\x0e+J\xb7\xc39\x8d\xfd{\xdf\xd9\x9c\xce\xa39\xa2\xb9\x86\x9b#/\xc4\xef\xbb\xbb*\xb3\xac\xa6\xa1\xce\xa37\xb3\xd9\xe9lv\xca\xd6\x9b'\xf4\x1e\xadV\xb8x\xb2\xc2y\xe7\xb7\x85Bf\xea\xa9\xd9?(\xc9\xe5\xd7T\xa9_\xd9\xa9\x9d\xba\xa6\xdb\xd2\xca\xe3,T\xde\xcc\xe1\xacU\xaeW\xcd5Y\x94Y\xb8\x0c\xcek\xf4\xf9z\x8d\xd7\xe4\xba\x82N,\xb0\x955\x86\xe4\x94\xb3\x98}\xbe\xa6\xe9\xeaZ\x9c+=\xd8\xf7\xfe\x89\xaf\x13B\xd9\xf5\x06\x17\xd7\xf3-\x9b\x8a\xddl\xfc0o\xe5\x1d.\xd2\xe5V~\x1b/\x9e\xfd\xe9OO\xff\xcfC|\x9a\xe2d\xf3\xecO\xff~\xfb4\xec\xc7\xf7ax9\xd8}Px5\x19E\x10\x1e\xec\x9d\x12A\xf8\x0e\xb1O|\x11\x84\x8f |\x04\xe1\x95D\x10>\x82\xf0]\x12A\xf8\x96D\x10>\x82\xf0\x11\x84o\x8a\xab\xf3\x13A\xf8\x08\xc2G\x10>\x82\xf0\xc3\xe1\x8b\x08\xc2G\x10>\x82\xf0\x11\x84\xef\x92\x08\xc2\xb7$\x82\xf0]\x12A\xf8\x08\xc2G\x10\xde\xc5\xb6\x0e\x02\xc2\xbb@\xd8\xff\xacp\xe4U\x81rf\xc0\xb0/U&\xc9,\xa5\"f\xf9\xe9E\xc9nH\x91\xfeS\x86uO@\x14 \x83W\xbc\x8f\xe4\xffb\xbe6\xee\xfe\xb7\xe8\x04\xbb\xbf\x17\x9fV\xbf|e\x80u]\xadma_\x00P\x83\xea\xbdh\x0f\xaf\x18\xbf\x07\x8e\xdf\x04G\x80\x08\xdc\xa3:\xe0\x11+\xd12)X\x04\x03\x01#\x08\x08\x1a\xc1A\x80#\x98\x12<\x82\x83\x01H0\x0d\x88\x04\x87\x03\x92\xe0P`\x12\x1c\x08P\x82\xc0\xa0\x12L\x0d,Ahp \xa6\x04\x98 8\xc8\x04\xe1\x80&\x08\x0c6A8\xc0 \x06\x80Np\x08\xe0 \xc2\x83O0\x0c\x80\x82\xf0 \x14L\x05D\x81\x0b\x18\x05~\xae\x8b#(\x05\x87\x05\xa6\xc0\x02N\x81\xa7\xd3\xe5 R\x19\xcbj\xbaJ\x8e@\x15\x84\x00\xab\xe0\x10\x80\x15\x1c\x00\xb4\x82I\x81+\xf0\xc3W\xc0\x15\xc0\x02\x7f\x10\x0b\\\"\xc2#\xc0,p,\xdf\x12\xb8\x9a\x10\xd8\x82\xc1\xca\xf7\x03\xb8\xc0\xb1\xe5\x03\x81.\x18\x03v\x81]\xe3\xd3\x82^\xe0\x07|\x81\x07\xf8\x05^\x00\x18\xb8\xf7\xca0 \x0c\xbc\xc10\xb0\x02b0%(\x06C\x801\x98\x00\x1c\x03G\xd5{\x82d\x10\n(\x03\xd7\xfaZFR@\xd0\x0cB\x03g\x10\x16<\x83\xa0\x00\x1a\xb8\x83h`\x05\xd2\xc0\n\xa6A @\x0d\xc2\x81j\x10\x18X\x83\x81\xe0\x1a\xf8\x03l0\x14d\x83A@\x1b\xd8\xc7=8\x80\"\xe0\x01\x8c\xf8\x80n0\x14x\x83!\xe0\x1b\xd8\x95\x11\x0e\x84\x83\xd0@\x1c\x04\x04\xe3 \x07\x13\xdb\x9f'0\x07\xde\xe0\x1ct\xa6W\xd5\x82?o\xd2\xc2\x11\x8a\xb1\x06\x16tPa\x81\x18~\xc2\xd2u_d\xc1t\xc5j]\x04L\x07\xab\xf4\x0eS\xd8\xe0b\x9dR*\xb6\xa0\x8c\x00\xfe\x8c\x93\xd2\x10\xba\xe0v\xa2<\x02\xb5\xd4\xcay{\xd7^\xe0\x15\xec\xf6C\x9a\xc7\x83\xebx\x15\x15\xa1\xdb\n\x92\x94X[\x05Dr\x1b\xab\xa1\x90-\x04\xb2.\xbb\x0b\n\xbb\xd5\xde:YZ]\xdb\xa8O\x97\xa2\xbc\xfeW}\xdc\xae\x0b\x8b\xdc \xb3\xe1iv$M\xdfkk>\x86e\xb5\x14\xa7\xe0\x13KY\x86\x8d\xe6\xb1\xab\x8f>\x85X]\xb9\x0b\x1bD\xa9\x0c9\xcb\x8by\x7f.1e3\xf9\xbb\xa1@y\xd8\x9b\x19\xef\xe5\xedy]\\\x9b9\x91b\x8c'A+\xd5\x18\x83_\xd5-\x9e}\x17\xbc\xd6B\xbaKC9u\xf5\xd5/B5\xbcr\x8f\xc4\xed\x99'\x902\xaa\xc1\x05\ne.\x8dw!\xe3\xad\xf7)\xdd\xef\xfb\xfd\xd3\xa6\x12\xa9w:m\xdaQ#\x95\x05\xba9\x82//^\xc6S\xa7M\x89\xa7N;\xc4>\x1d\xba\x91\n\x9cF\xbe_\\{R\"Aw \xda\xec\x05\x85\"\x10\x84'\x0fLF\x1c8\x0ci`\x02\xc2\xc0\x81\xc8\x02\x07!\n\x1c\x82$\x10\x92 0)9 (1`2R@XB@ 2@H\"@ \x12\x80/\x01 8\xf8\x1f\x18\xf8\xef\xd8V\xdbf\xc2\xc0\x80\xff$`\xbf\x15\xe8wt'\x9c\xf6X\x07\x05\xf7Y\xb8\xa6\xabk\xa6P\x88\xda[\x8d\x0d\xf5{\x15\x07=i<}\x02\xf778\x97H\x9d\xb0l ~\x8auU\x01\xdbk\xc4\x92\x9bv\x9ca\x95\xde\xe1\x9c\x97\xb4\xb7\xa3\x0f\xdc\xd4\x1d\xe2=\xbb\xc5\xdb\xbe\xc6\xb6\x00c\x85\x0e#\xb5\xf6\x15\xe2P\xb1\x08\x0d*hS\x81x\x15\x94,\x82y\xab4o\x94\"Z\xc5\x87\xba\x19\x1a\x9e\xc1{\xae=\x92\x8b\x80\x00Y.)f|\xbf\xdd\xac.\xd4\x00\x01\x8a\xd9\x014\x08}\x01\xa1\x0e\xd5\xcaZ\xf7i\xb7\x15\x9bQM\x14\n\xce\xcb5.\xd2D\xffML\xa0 \xcay+ed\x8c[\x9b\xea\x8e2\xaf\x82\x8a\xad\xdd\xc3\xb9(-\xc3\x94\xee\x14+Cu%\xe5\x1dp\x8bMZV\x9am\x16\xf9 jnA\xf8\x1d\x8a\x16\xe9\xb2\x1d\xf5,\x9e\xd5\xe8w\x1f\xa2/\xc3\xd0u\x0bWXy\x9951\xce\x8d\x8cK\xd5\xfft\xbe\x84\x0c/\x99\x8a{\xa6L\xce\x08\xda\xdb\x17Qt9\x80\xe4G\xb8\xc6\xe7[\xc0(\xb9\x01\xb4\xd9|q\xba\xad3\x15v\xef\x9b4\\{\x83\xebYX0\x11\xa9\xfc\x81\xff#\xcd\x17i\x82\x18\xae\xd00\xa5W\xf1\xa02\xbazqi\x9ed\xe5\xa2\xb5#@\xf2+\x15\xd4\xd8\xeaG\x01X\xd7\xa2\xed|5\xaf\xb1|\xd2\x1c>\x9e\xd3V\xbf\xb5\xaa-&\xef\x02SET\x10Cn7F\xf90\x9c\xa9\x11\x96\xaerR\xd4Fe\xb3X\xa9\x81\x10\xdd:'$\xc3(7u^\x81\xefp\xd1(\xce\xd4q\xea\xe9v\xa7\xa55\xa6K\x81\xbb\xc7F\xa3\x1c\xfe\x0d\x9c\x0b\x7f\x8e\x14\x0b\\\xb4\xe3\x9e\x1f\xd2<\xc1g SY<\xa1\x8b[\xf8v\xf6\xc7\xef\x82k\xa8/\xa7\xc6\x91)\xa9\xc6\xa9rCN\x7fQ\xff\xf8U\xf1O\xba\xf2l|/\x1f\x91L\x1b\xa5\xa2:\xc9\xed\x93\xf8\xa5\x99|cGo\xab\x1c\x80F\x1f\x1duj\xebO\xb3g\xda\xa5\xdbO\xc7\xa1k\xa0\x1e\x88Y9*9\x04\x91E9\xca\xa3\x81'e\x14\xa3\xcb\x89YB\xa6!\xf7\xc0@\x82\x0f\x04$\xf9\xc0A\x88>0%\xd9\x07\x0eF\xf8\x81iH?p8\xe2\x0f\x1c\x8a\xfc\x03\x07\"\x00A`\x12\x10LM\x04\x82\xd0d \x98\x92\x10\x04\xc1IA\x10\x8e\x18\x04\x81\xc9A\x10\x8e \x04\x03HBp\x08\xa2\x10\x84'\x0b\xc10\xc2\x10\x84'\x0d\xc1T\xc4!p!\x0f\x81\x9f\xeb\xe2H\"\x82\xc3\x12\x89\xc0B&\x02O\xa7\xcb\x93Td,+f aS\x93\x8c`R\xa2\x11\xf8\xf1a\xc0\x95p\x04\xfe\xa4#pA\xf0G\x90\x8f\xc0\xb1\xfc\x98%\xc4\x93\x98\x04c\xc8I`\xd7\xf8\xb4$%\xf0#*\x81\x07Y \xbc\x08K\xe0\xde+\xc3\x88K\xe0M^\x02+\x81 \xa6$1\xc1\x10\"\x13L@f\x02G\xd5{\x92\x9a \x14\xb1 \\\xeb\x1b\xb3\x84\x0c%;AP\xc2\x13\xb8\x93\x9e\xc0J|\x02+\xf9 \x02\x11\xa0 \x1c \n\x02\x13\xa1` \x19\n\xfc Q0\x94\x14\x05\x83\x88Q`\x1f\xf7\xe0@b\x01\x0f\"\x8b\x0fI\n\x86\x12\xa5`\x08Y\n\xec\xca\x08G\x9a\x82\xd0\xc4)\x08H\x9e\x82\x80\x04*\x98\xd8\xfe<\x89T\xe0M\xa6\x82/\xac \xf83\xc3\xf9\x82\x9b\xbf\xc0\xb1\xe4$>'\xec\xc6\x18tD\x8bE\x81)_S\xd4\xda\xa0s\x80\xf0\xd1T%\x01\xe9}\xfd\xbc\xc2\xe6\xb9\x19\xf3\xad2M\xa9\xectQ\x82\xbco_\xfc\x7fg\x19\x0d=)\xe2\x96)KI\xf3\xba\x84\x98\x9d\xa4-NA\xaf\x98\x9d\xc4\xa6\x9a\x7f\x99\xec$\x9a\xb80.II\x93\x85\x11s\x94\xecI\xccQ\xd2!\xf6I\xd1\x8d\xd2\xe04\xfe\xfd\xa2\xea\x93\xd2\x18\xba\xc3\xe0f\x1f,\x14}!\xee\xc1\x81m\x01\x1e\x8c\x0b\x1f6\x0f\x0ce\xf4\xc0\x10V\x0f\xd8\x95\x11\x8e\xdd\x03\xa1\x19>\x10\x90\xe5\x03\x01\x99>0\xb1\xfdy2~\xc0\x9b\xf5\x031\x99\xc6\xbfJ2\x8d\xf9\xb6V\xc9\xceXmL\xa6a\x0dz\xc5d\x1a6\xd5\xfc\xeb$\xd3(\xa6K\xa6Q\xc4d\x1a1\x99\x86\x16\xeb\x94hS\xb6\x14\xe6@ip\x1a\xff~Q\xf5Ii\x0c\xddap\xb3\x0f\x16\x8a\xbe\x10\x9e\xba0\x19m\xe10\x94\x85 \xe8\n\x07\xa2*\x1c\x84\xa6p\x08\x8aBHz\xc2\xa4\xd4\x84\xa0\xb4\x84\xc9( a\xe9\x08\x81\xa8\x08!i\x08\x81(\x08\xbe\xf4\x83\xe0\xd4\x83\xc0\xb4\x83\x8eM\xbdm&\x0cL7\x98\x84j`\xa5\x198\xba\x13N;\xad\x83R\x0bXL\xa6\xd1\x92\xe0\x14\x82\xd0\xf4\x81\xe9\xa8\x03\x1e\xc8\xb5\x13e\xc0\x93.`\xc3\xc3\x86\xd2\x04l\xe5\xc6d\x1a\x06\x19L\x03\x88\xc94`\x0c\xd4\xef\x07\xf3\xc7d\x1aNp~\x10(\xdfZ\xc7\x98L\xc3\x07\xb6\x0f\x07\xd9;\xc2\xf51\x99\xc6hh~\x08,\xef \xc9\x0f\x82\xe3\xfd\xa1\xf8\x98Lc_\xc2\xc1\xedA\xa1\xf6P0{(\x88}*\xdb\xf2\x84\xd6\xfd`u\xf7d\x1a\xf5\x0d`L\xa6\x11\x93i\xc4d\x1an \x1fb2\x8dp\xba\x8d\xc94b2\x8d\x7f\x91d\x1as\x94\xdfV\xb94\xe6(Cy\x82\xe9\xe9/\x8a\xdae\xca\xa2\xf1\"\xcb\xfe\xa2\x9e\x17\x15Wp6\xa8B\xc4\xde&\xcb !|\xb7\xc0\x8d\x11\x01\x9f\x823\x0c(\x11v\xa7\xed\xa3\x91\x12\xa3V\xaa\xfa\xf9+K\x88\xa1u\xfc\xe5\xf2&\x168'\xeb\xd1(\x07Z\xf3>\x1eY\x8c+\xf4\xf0\x92\xa45\x16\x1e0r\x8bs\xb5\xd5\x95\xcd\xd1\xb3 \xdfx\xa0\\U\xce\x14=\x7f\xf7\xfe\xea\xf5\x99\xd8\xb7\xcbg\xd5f8\x15\xb8\xc6y\xce\xd4v\xa1\x02\x93\x1a{\x06\x19\x06\xe9/\x9c\xa6\xab\x1c\xb1\xb2\xc0\xb4\x1a\xe2\"\xb1\x0cY\x11\xe1\x98w\x07\x8e\x1a\xca\xd0f\xa4W\xf5\xea\xff\xd5\xb0\x93\xe8~\x9aw\xa2Ycy\x8eL\x84\xa7\xeaK\x0b\x8b<\xc7\xc8s\xac?\xf3\x9b\xe79v6O,\x9f\xb5%j\x1c\xf5\xb1\xbe\x82^^\xbc\xecjT\xe4B6$r!;\xc4>qN\xc8\x85\x0cH\x810\xc5\x8a\x94?\xdag\xf6\xeag=\x0c\xf5\xff2\xa2\xa6\xd4ju\\6\x19Q1\xe0\x14\x03N1\xe0\xe4\x16\x14\x89\x01\xa7p\xba\x8d\x01\xa7\x18p\x8a\x01'L\xe9\xaf\xa7\xf3\xed\xb5\xd8\xb1\x1b\"O\xcai\xee\x8d:\xe98\x13\xdf\xff\xbaG\x9eT\xa9\xea\xa7\xaf3\xeadrPGm\xcd-1#\x07\xa7\xd0\x16/\xb2\x16a\xdf\xbdA\x80HQ\xc08\x91\x7f\x94h\xff\xa0\x9e2j\xa7}\xaa\xda\x95\xea\xd1\xc5w\xa4\xfb\x95\x8a\x1b\xd2\x86\xc4\x0di\x87\xd8\xa7\x8b\xb8!}\x88\x0d\xa9\x98\xdf\xfaj,~\xd4\xf5M\xe4,\xc9\xff\xe2T\xe5)\xfc\x88F\xa5\xfb\xdc\x88N/BT\x94^\xaf1C\x0b\xc4P\xbf\xe3\xf0J<\xf8\xa3z\xae\xe1?$\x99\xd8\xb9\xe92\xa4\xdb\x90\xf1\x95|\x95R\x86\xf9\xdc\xcb\x95RU\xa9\xbeV\xd0N\x7f\xa2\xf91\xf5\xc4W\xe6Vhu}\xc1\x13M]\x9b\xbd\x0f9\xce\x12\xa2\xd3\xaf\xcb<\xed\xcbh/\xc5\xd6l)\xc6\xc6KqP\x81\x14\x17EH\xb1\x82{R\x9c\xd4\xa1\xa5c\x1e\xa9\xc8yrt)\x82e\xfd,\xef*\xbd\xc3z\x8e\xe1\x1a\x15\xa7i\xad\x9f\x02(\x11#\xeb\xc7\x16j5\xe0\xcf\x1b\x92\xef\x0d\x8b.\xb1\xaf\xd3u\xa9\xad\xd9\x06\x84D\x8b\x9bKZ\x17]\xef\xba\x027\xe4^n\xb8\x9f~\xbb\xfb\x9d\xef\xeb\x1d\xca#9\x16'N\xcd\x94B)\x05J\x15c{\x8e(\xbe\xae\xa6\xff4\x97;L\xfeo\xfcs\x89\xb2Z\xff\x89I\xeec\x9e\xb2GT-/\x0e\x1fz\xaa\xba\xfd9<\xfd\x7fU\x83v\xdft)B\x1c\xbd\xd6~{\xad\xbad)\x0ddw\xce8)0b\x18\xd0\xae\xaa\xfc\xa1G\xfc\xa1G\x0e'\x19\xa5T\xb5|\x0e\xff~\x02\xec\xa6\xa4g\xf0\x14x\x19\xbc\x11\xdf\xfe\xbf\x7fw4K\x94\xa5\x88\xda\x07\xa9\xeb\x14\"\xc5a\"\x91\xe25\xa8\x15\xca\xa7j\x0c\x8d\xc4:j8\xeb\xdf\xf4\xfe\xa16\xa4\x8d\xc5\xfb\x0d\x8b]\xbf\xd5\xc6\x04\xe2u(\x13\xd6>\xf3\x87,\x85\x89*\xdaz\xbc\xb1\x0f,\x95\xc5\xa8q\x91&r\xcfh\xeai\xa5\xba\xdaj\xd1\x9e\x0f\xb5\"\xeb\xc3G\x06*\xa4\x0e\x1b\xaeF[\xb8\xb9\xdb\x97\x1fk7\xb7\xe8\x04\x14\xb7+)\xfe&\x87\xd5\xf1\x0e\x01\xe0\xbf\xec\xbaD\x0c\xa0\xfeo4F\xce\xb7\x86\xe1\xb1H\xe9&C\x06d\x7fX\xb3\x8c\xf0}\xf5\xd5*Z\xaa\x16\xabr\xb5\xc2\x94oW\xd5\x14\xc8M\xacR\x80K\x812b']J\xc3qb\xe1\x95O\xdc\xe2\xee|a\xdf\x99\xd8\xda\xca\\\x8f\xc4\xea\\\xa7x4Ro\x88@\xc91^\x9d\xc1KQ4\xbc\xe0\x13^\x7f\xb9t\xbb\x9e\x93\xf1\xdb;\xbf\xd9B~t\x07<\xf0:\xab\xbf\xe9\xb4\x1a\xf4\x86\xdc\xe7@\xfa\x87\x17\x08\xab\xd5Y\x00D\x8b_\\\xbd\xff\xf1\xb1\xca\x9f\x92\xd8r[\xaa1B\xc5\x01'Y\x11e\x16\xd6#\xf0\xb6\x90m]\\\xed\xbc\xda\xed\xd8g\xcf\xde2\x90}\xe6kT\xa7\xdaEUg\xa6k[\xac4\x97N\x94N\x91\xa6\xd9J\xbb\x9dVO=\xc4\xd7#\x9fiO\"\x9f\xa9G\"\x9f\xc96s\x8a\xb0J3P\xe1\x14*\xee+\xea\xb4\x15a\x89\xac&!1\x88\xdc\x12\xeb\xe4iS\xb6\x94\xdfz\x1092\x84\x86E\x87\xa5D\x86\xd0\xee/\x07P\xb3\x9d\xc5\x12\x19B\xe1t\x1b\x19B\x91!\xf4\xaf\xc8\x10ja{\xa7\xbf\x88?\x98\xce\xa5y\x80|\x82,\xb4\x8b\xb85\x02\x7f\xfd\x98\xde\xbf\x06\xa4g\xf2\xfaF\xedz\x9d\x009\x07\x7f\xcb \x8c\xb3y\xa9`\xf3T\xc1\xa5\xd1R\xecM\x97\xe2\x04\xc19(@\xcb\x01\xe17\x17\x94\xc3\x15z\xb3\xefmv\xe2\x03\xbb\xd9w\xbdM\x99\x16rs\x07\xdc\x0e\x04\xb7\x8d\x06\xdb\x0e\n\xb5M\x03\xb49\xc2l.\x93\x83\x14\xeb\x14!\xc5c\xd0\x06\x83\xd7\\\xe3\xc2\xe0\x0d\xad)\xf0\xccT\xe08\xe4,(nfF\xcd\x9cz\xee\x10\x88\x99\x13^fE\xcb\xfc\x9bc\xb4\x94\x89q2\x1f\x94\xcc\x8c\x91\xf9\xb7\xd3\x1b\x1f\x0b\x81\x8e\xd9\xb01\xfff\x19\xd79\x0fTl\x87|\x19\xca\xf3\xc5\xc4\x86\"b\xd6\x0d\xcaN\xdcly<\x16fA\xc2\xec}\xb2\x8b\xb8O\x18p\x8f\xf1\xf6\xa6\xc4x{K\x1cv0.\xbb\x97\xdfz\xbc\xbd\xed;u\xec\x9c\x0c\x04h\xfe\xf7:?80o\xdb\x8b\x02-Z\xad\x1e\xef\n\x8a\\\x88\xdf\x1b\xc1\x90\x9d\xa2\xf8*\xf6Y\x94\x07k\xb2(3\xdc\x19\xfb\x98\xcdNg\xb3S\xb6\xde<\xa1\xf7h\xb5\xc2\xc5\x93\x15\xce;+#/nSO\xcd\xfeAI.?\xafJ\xfd\xca\x02&u\xd5\xb7\xc5:\xee\xec\xa3\x8e\xe2|q\x8ds4\xcf\xf0\xc2\xe61|\xcdq\x0e\xab\n\xa4t\xc7d\xf7\xc5\xbeR\xef\xe4\x03\xce\x17\xaf\xe5\xe7\xe5\xa53\xcd\xd9\x015\xfa\x08(C\xac4\xb9O\x00\xc7\xf77X\\s\x81\xaaY\xc7\xbc5\xe6\x1f\xe0\xa5\xf7\xef\x08\xe4\x8a~\xedc-&%5\xd4\xa3&\x8f&[\xa6\x9a<\xf4\xf6\xb4c\xfe\xe8)O\xccd\xb2\xd0\xca\xf9\xa9\x17\xbe\xef\x01Uh\xa5\x9c\xa6\xfaF\xa1\xa8Pts\x94D7\xa7C\\&\xaf\xdf\x82\x9b\xe3\x87\xa2\xd0\x8d\x9a@\xae\xbdR\xfc\xd56R\x1ft \x9d9\xffx\xf9\x02\xe1\xb3&\xff\xab\n4\x1d\xc5\xde\xfb\x98z\xe8+\xf3\x1cb*@-\x0e\xc5\xb8.\xd8S\x1f\xf0\x0ez\xc4{\xc8!o\xd8\x8fD6S\x01V\x83=&\x05\x14\xe2`\\\x91DkUL$\xd1\x1aCz{KV\xa7g\xbb\xba\xbcxY\x0d\x89\x8e\xa2d(\xb2,\x9a^oW\xc3\xf8\xcc%W\xd0G\xb4c\xc4G'XIt\x82;\xc4>\xab\xfe6\x9c\xe0\x80 \x1a:\x16\xd1\xf0!\xbf\xc8\x0c\x1e\xc0.\x8b\xcc\xe0\x9a<\x88\x9a\xed\xec\xd5\xc8\x0c\x0e\xa7\xdb\xc8\x0c\x8e\xcc\xe0\xaf\x9b\x19\xdc\x1d\xd2*7\x9bL\xed\xfa\xbabWW\xdcN>\x88\x87\x1a\xa1*i?\xf2\xedF\x98\xaa3\x12U+E\xfd\xfc\x95\xc5\xa0\xeajl\xcb\x97\xe0\x86\xc6\x08\xd4\x97\x19\x81R\xfb}5\x8et\xe4\xa9\x1aUU\xa4\xa9\xe3e\xaf@So\xace@\x04\xaa\xa7$\xebl\xb7\x13\xabQ\xdbM:\xc6\xabb\xbc*d\xbc\xca\xd40\xb1\xa0\xd6\x96\xb4q\xd4\xb3\xfa\nk$\x9eU?\xc4XT\x8cE\xb5\xc5>c\xfe\xf6cQ1\x9a\xe3\xbc#\x88\xd1\x9c\x9a<\x88\x9a\xed\x11\x87\x18\xcd \xa7\xdb\x18\xcd\x89\xd1\x9c\xaf;\x9a\xd3\xc3P\x12~\xa4\xc3\xf1n\xe9p\xbe_6\xf9G\xbbpN\xfd\xf2\x87nr\x91*@\xfd\xf6\x95\xc5sL\x91\x0e\xab7f\xf7\xc5,\xe1\x18\x07\xf7\xc9\x16\x8a\xb1\x16\xe1\x16\x86\x99:\x08\x130\x04\xe3\x1f\x80\xd9g\xd3j\xa3v\xda\xd1\xa9\xfd[k \xd4\xe5\xf2\xe2e<4\xd4\x94\xb8y\xeb\x10\xfb\x84\xf1\xdb\xdf\xbc\x8d;4t@\xf6\x80\x1d>\xa1\xf8\x94\xe1|\x81\x8bu\x9a\xb3\xdd%L\x19In\xe9i\x86\x18\xa6\xac\x7f\xe1\xfd\x1e\xb3\xb7\xe2\x91\xbf\xf0\xe7\x95G\xa2\x8ee\x8b\xbf\x83(\xa8s\xcdm\xbe\xab\x9e\xf8\xcaV^\xd1\xfa\xeb\xb4\xe7\xd8\x85u0\xd9\x87\xd2\x0d\xa27#\xd6Mp\x8b\x1aoP\xc1\xae)f\xd77\x18-p\xcf\\ .-\x02\xa7Vq\xb1\xc4}\xc1i\x92\xd5\xe2\x9a+\xc4\xacNpU)\xb8\xa9\xb5\n\xcc^\xa0\x82Q\xcc~\x10\xda\xed6\x15\xf9\xa0\x18*\xe7\xaf\xfa,-\x9c\x99\x1d\xae\xdf\xf9\xfe\xa7\x17\x06\xd2\xa2\xd4!\xcf]\x8b\xa6\x8b\x14\xc2\x0e=g=\xc9\xe6ZO0+\xbd.\xce6\x03\xeeX\x85\x14\xb4\xd9<\xdc\xe7\xdd\x9cn-/\xf9\xc4\x9c\xd3\x92B\x826\xd2\xb3\x95\xeb\xa3\xfesQfrI\xb4\x14\xb4)\x08\x9f\xefE6\x94\xaa\xefEY\xe2\x7f\x92\x1b\x94\xe6'\xb6\xac22\xa2!3\xaad\xb5\x17A\x1c\xe4\xad(\xb7Tl\x05\x84\xd3,j\xa7b\x1dh\xb3\xc9\xd2D\xacd\x8f,\xa7\xf4@\x9c\xfd\xc3\xc0\n\x94\xd3T\xec.\xd6(\xb9I\xf3\x1e\xf6\xbb\x14Q\x97\xdeuC\x8bc\xc7\xde\xe0tucI\xbd\xe4X\x94\xfbL\xcaRs\x1e\xfb\x01\x9f\\ \x86\x9f\xf0r\x0dOg\x88\xb2k\xf3\xaa\xab%\xc0|`_>\xc0\xa7\xe1\xe0\xba\x8cHq^\xa5\xb58k\x00\xbc\xb4\x00n\xab\xb7\x16\xf7U\\\x8b\xab\x0djq\xeb\x16\xf0\xed\x1a\xf0\xeb\x1e\x8f\xd5\xbe\xf5B\xff\xaa\xafE\x98}B\xd6\xeb\x94]\xdb[\xeb\xdcJ\xe7\xd6\xa9\x8a\xf2O\xcbYR\xce\xcb\xb5\x8c\x88]\xc2\x7f~\x80\xea\xde\xa1,] F\n\xfa\x00\x1fo\xebjY\x88,IbM\x01R\xb2M\xc9v\x7f\xdb\x14\xf8N\xaa\xd2P\xa2\xc0\xfa\x1e\xb4M\xd5\x1a\xfe\x00\xdfF\x9b\xcd\x03|U\x8c7\x15\x91\x7f\x80\xcf\xe3\xbbt\x81\xf3\x04?\xc0\xa7+\xfb\xdd9n\x16\xcf\x9b/\x1c\x84\xe2\xe2Z\x9d\xa78d}\x1b.\xaa\x9cp\x1b\xcc\xb0\xdd\xd9*\x01\x13\\U\x81\x105\x81\xc9\x95\xb4\xcfS\xebO\x89\n\xae\xab\xab\xdb\xaa\xca>;i\xcd\x9e\xb5\xd0\x9a\xee\x03|\xba\xc0\xb1\x13\xc0{\xafp\xf5\x99JhR\xe0\xb6s\xe5p\xcb\x10\xb8t\xa7\xffl)A\x86\x9d~\x10\x9e\xef\x1f\x9e\xf6\xd2\xfc\xb4\xc8H~N\x98<\x12\xfb\x99\xc2\x0d.\xb0\xc0\xda\xc4\xcc:\x03\xf8\x1f\xfc\xa8\xc0\xf0\x8f\x922@\xab\x02c\x01\xad\xc9}\x87L\xcd\xb9L\x0b\xca\xac_\x12\xb9\xd1\xd6\x18\xe5\xaa\x85\xb2\xa2/6\x9b\x1f\x10\xbd\x81\x05\xc1TTC!\xae\xbcx\x8ay\x85\xfaw\x0bj<\xbe\xe2\x1b\x97\x84\xe4\x0c\xa5*\x02'\x88\x04K\xb9\xf3@ W=\xd5\xe5.\x1a[\xa6\x9e\xa2\xf5,s\x10\x13\xb7\x7f\x0c\xc2\xd8\xb9\x93\xfb\xeb\xd6\x06)\x8bRn\x0e\xf1\xf5\x1da\xf8\xda\xadaR\x01+\xda\xb6\x13\xf9\x8a\xd8D\xc8\x08\xe5.\xe6(P;\x8f\x82*\xdf\xca\xf6(\xe8]\xcb\xdc\xb5s\x06\xac\x0dC\xd6\x84\xb8kq\x90\xb8k\xd9\x97\xb8k\x89\xbb\x96C\xaenq\xd7\xd2\x96\x01k\xb0\x94\xb8k\xf1\x92a\xc3I\xcb\x10\xa3\x80q\x86\x01c\x8c#\xeeZL\x12w-\xfd2l^\x8f\xbb\x167y\xa8]\x8b\x98v\xaf\xef\x08K\xf3\xd5\xb5\xb8:\xd0\xb5\xa3\x06t\x92\xffT\xbb\xb3\xf3/\xafn\xdeS\xda\x88Z\xf9Le\x0d\x9b~\xa5Q>n\xb1\xaf\x15\xc6\xb7\xc3_5\xea'y\x05\x95\xb6\x95\x8f\x0f\xec\xde\xccU\xd6\x92\x90|\x99\xa5 7\"a\xc2\x0e\xc6\x97qo\xf9Z\xde\xa0v\x8d\x18C\xc9\xed\x97\x84A\xd6Zt\xedH\x9f\x96\xe2Y/\x18P7P\xf3*^\x0cp\xf1\x06\xd4\x0f\x06\xd6\x11\x1c\x18\xf9\xdd2\xb0\x920\xa2\xa2\xe0\xca\xe9\xef\x96!L\xffn\x19\xd1v\x18\xd9~p?+\xd0-\x03f\xb8\xb6\xe8\x19\xcf\x81\xd8\xdf'N\xa7\x0d\xba\xe5Kh\xc0P\x9f\xa4.\xdd\xa7\x18\x06\x15\xe5\x7f\xf2\xa1[z\xcfC\x0c*\xcd\xe3\x0cE\xb7\x1c\xf0dE\xb7\x0c9o\xd1-n\xa70\xbae\x94\xc1\xfb\x87\xbc\xb4\x8c\xfa\xec\x10g\xad.\xf63\x1f\xdd2Q\xa5}|\xb9\xa6x\x9c\x1a\xe9\x96\x07^[\x86\x06K`\xbc\xf2a\xd8\xfe\xb0)##kZF\xf6\x02L\xd0\x130&\xe2\xa6eh$\xa1-\xe3F\xb3\x961\xc6\x05\xd3\x18\x18Lad\xa3#tZ\x06F\xea\xb4\xf8\x9d\xd5\xe9\x96\x91:\x1d\xa9\xcba\xa7}\xba\xc5\xf1\x0cP\xb7<\xa4\x1a\xbcN\xdct\xcbCV\x7f\xfasH\xdd\xe2\x7f:\xa9[\x1eRW>\xe7\x9b\xba\xe5!k\xefvB\xaa[\x1e\xb2\xde\x9eg\xac\xba\xe5!\x1b\xe0qJ\xab[\x1e\xb2\xf2\xfe\xe7\xbc\xba\xc5\xef\xf4W\xb7<\x9c\x1e\xc2\x9e\x1f\xeb\x16\xe9\x1a\xf8\xeai\x84\xef;\xc6\xe7\xfd\x8d\xeeT\xbdI\x1bZ\xc6\xba\xe6\xc3\xc0>-q\x8b:\xc4T`\xdc\x1c %nQ\x1b2v\x1ch\x197\x8c\xb5\x8c1.\x98\xc6\xc0`\n#\xfbR\xb6\xa8\xbb\xec\x93C\xb4*\xb5i?\xa4\xd9-NG7\xbbe\xf4\xe0\x1a?\xb4\xf4\x0c}\xbd\xcc\xd0jh!\x13\x19\xa4?y\xb8)O\xe0/o\xdf\xbf\xfc\xaf\xeb\xf3W\xd7o\xde\xbe\xf8~\x00Q\xb6-\xed\x12_\xfc\xe5\xc3\xebw~\\\xe0\xa6\xb4\x0b\x1c@.nJ\xbb\xc0w\xe7>\x1c\xe3\xa6T\x8c\xe3i\xd5\xd8\x18\xdb\x8b7\x19ZU\xf9\xbc\xa9\xca8\xfb\x97,!\xb7\xe7\xaf\xa4\x8b\xaa\xc72\xa4\xc31\xa6\x91\x0c\xae\xa6Lb\xdc\x93\xcc\xb5\x9e<\x93}\x99\xb4)\xc3\xf1\x0b)\x83(aM\x99\xb4=\x83\xbb\xa6\xb1\xebz)\xb6C\x1f\xd2\x95$\xcbs?L\x83\x85\x82,V\xcfh\x80\xd4\xd3~\x1b\xae\xce\x0f6S)Tt\x1e\x91\xb3A\xc3\xac\xf7\x88\xaa\xdd\x1a\x93\xb9)\x90\xca\xb9\xe0\xf9\xf9z0\xd1\xbd\xea\xbb\x11I\xb1\xd7\x0el\xe029tq\xdc\xb5\xcd\xef\xbd1\x8e\xc4@'b\xa0f\xa4\x0c\xd5\x8f\x94Q\xb3\xea\xe8a;r\xc8n\xca\xb9\xf9\xfa2\x93\x8cR:\x8cV<\x17\xbcx\xf6\xa7?=\xfd?C_\x9f\xa0\x03`|'p\xa18\xd9<\xfb\xd3\xbf\xdf>\xfd\xad7E\xef\x83\xcay\x96&\xff\x85\xb7\x8d\xa8\xdb-\xde\xb6o\x16))\x96\x99\xfck!\xb8\xbfU\x13\xcf\x80*\x0ca\xee6e\xb4\"\xc7\xee\x8d\xab\xd0\xeb\xa6HI\x91\xb2Q\xe3\xf3A\xda\xa1[\xe0[\xf1\x11S\xca\x98\xc9d\xc4\x1c>R\xc9\xa3\xc6\xdb\x88\xd9{\x84\xa2a\xa4\xb2a\xfc\xbc=R\xe90V\xf10\xc5\x8c\xfd\xf0\x8dx\xe0\xb9z\xecL=R\x81\xc3g7\x98j\x8e~\xb0\x16\x0c?\xe4\xa2eD\xd5\xfd\xab\xcd\xf7j$\xbf\xf6\xc3\xac\x06\xd4\xd0\xbff\xf3\xed?Q\xce\xd2\x1c_\xfb\xef\x96\xfcwI\x9e\xbb\xa3A\x93\xfc\xb0\xa9}\xd0\n:\xa0\x87\xa4\x0c\x9c\xf7\x06\xad\x97\x83\x94\x08\x83\x15 cV\xc7\xc1\n\x85\xe1J\x85qk\xe1\xc3T\xf9\xc1V\xbe\xe1S\xee`E\xf9OjRF\xaep\x07\xac\xef\xf0\xd5l@%\x07T\xcf7\\=\xa2V>\xa1\xe8F\xf0\xf4-_Z_\x8a\xc3\x87/\xc4\xd9C\xdb\xd1H\x95\xa4\xf6\xceo\x14 \xc6\xf0z#\x8eE2\x02\xeb\x94f\x18-\x00\xc9\xc3\x8f \x0f?\xf6ERk\xfc\xdb~M:M\xd7nS\xb3\x8b\xbb\xe1\xdcU\xaef\xe3@p\x91\xdft\x81\xf0]I+n\xf4\x14'\xd5\x82\xb3z\xc1\x19\xffwV2\xf8\xad \xde\xd4\x10g\x0d\x80\x97\x16\x00\xbc\x88\x1d\xee\xfd\xaf\xc5\xd5\xf8\xb4\xb8u\x0b\xf8v\x0d\xf8u\xcf\x00R\x853}\xc2\x95(\xe1\xea\xa3;y\xe6\x1e\xe6\xe3c<\xde\xd4\x05\xcfNs\xa7#\x8c!\x1e\x8c\xa0\x18\x8c \x13\x0c\xa3\x0d\x8c&\x08\x84\xa6\x02\x0c\x02\xfd=\xcd\xc2s${\xf8@\x03+\xe2\xee\xfbx\x01\xee\x03k\xe3\xa0\x96\x80p\xf9\x01\x81q\x13\x04\xde\xa8F\xf3\xdeP\xa7\xcb\x8d;>+\xaf;n\xdd_\x1a\xaf8\xde\x93x\xc5q\x87\xb8,\xabl\xaa+\x8e\xfd\x12\x17\xbc\x80\x8f\x97oO\x0bLIY$X\\W,\xc7f\x99\xa7?\x978\xdb\x02\x1f\xb0,]\xa6\x0e\xa9\x0b\x98\xcaL)o\x13)R\x94\xa5\xff\xc4\xbdw\x96K\x11\xd7\x93'$\x83y\xb9\\\xe2Bw\xf2L\xde|\"\xdb\n\xeb\x92V\x13 \x06\x19F\x94\x99\xcb%9\x86\xa3\xd3#HnP\x81\x12\x86\x8b\x99\xb8y\x9d\xef\xe6\x80\xe2\xd5\x1a\xe7\xd5D\xf7\xf1\xf2\xed#*nR\x96\x1f\xaa\xf2I\x99\xbf\xc0_]\x96Y\xb6\x85\x9fK\x94q\x0d-\xa4\xfeT\xb1B\x1b\xc7\x88B\x9a\x9b\x0b\xfa\xc4?}\xba\"d\x95\xe1\x99\xd0\xc7\xbc\\\xce^\x95\xf2\xee\xe3O\x8fe\xcdE\xd1\xf4\x86\x94\xd9\x02\xe6X\xce\xc7 \xcaI\x9e&(\x13c\xc7\xfc\x95c<[\xcdN\xb8\xeaD\xb6\x85\xa3\xd9\x11\x9f\x03\xc5\x1d6I\x827\x0c/\x1e\xf7_]/\xe5<\x87\x0dWf\x9a\xe0\x13`\x18\xad)\x94\xb4D\\\x052\xdb\xd6&\xcdx\xcd\x18\x91\x97\xc5\xa49*\xb6\xf2\x8a\x9c\xed\x06\xab\x1bl\xd8\x0d\xde\x9a?#gGH\x19\xdf\xac\x97\xb4\x9e\xae\x94\xe1\xcf\xa2\xdb^\xe4\xdb\x19\xfc@\xee\xf1\x1d.N\xc4\xb4\xfd\xf1\xf2\xad\xf6a\xf8+\xdcT\x8d\x1f\x11\xb3&\x86O7\x8cm>\x9d\xc8\xff\xd2O'@\n\xc8\x89\xfa\xf5DXQ\x82r b4\x89\x96\xf2\x95\xa9\xdc\xa8<\xac\x96o\xe0\xe2\x0e\x17\xb2\xd9k\xb4\xa1\xd2$DM\x19\xa9\x92\xb1\x8a `*\xef\xdbA\xdc\xd1\xca2rO\xcf,}\xf1\x0d\x9c/w5\xe5]\xb9)\x08_]\x17Uc\xc4\x92Ni\xb9\xc6\x0bK\x82\xd7o\xf8\xb2\xf4\xc3\xd5\xd5\x05|\xff\xfaJ_S\xf4\xf1\xf2\xad\x1c\x0f\xdb\x14g\x0b@\xf0\xf7\xb6\x89^m7\xf8\xa7\xbf\xffd,Z\xdd\xb9\xce\xfbP\xd9\x83\x9c\xe6\x85\xa67\x05Y\x94 \x06\x94\xcb%\xc7\xccf\xfb\x06^\xec\xd2}Pq\xdb\x12\xe2\xba\xc2\x0b\xae\xce\x04%||\x13r[n@\x9d\x03\x849\xa2x\xa1\x1ad\xa9\xe6\xc7\xcb\xb7\xa2N7\xe8N\x98\xcf\xbaf\xd3\x0bi\xd4H7\x81\xff\xfb\x8e\xa4\x0b@\xb9\x0dD\x91\x15\x12C\xb8\xc0KR\xe0\x13]\x08/\x1b\xb1t\x9ef)\xdbB\x8e\xf1B\x98\xc5\\\x9c\x9f\x15\xa6cK\xeeKr>\xbd\xe5+,^\x14cl\x06\xc7\x1f)\xd6\x19\x94\xb8f\xb8\xc9\xf1\xb9C\xda\x1c\xca\xd1\xca\xa6\x89y\x81\xd1-\x9f#T\xe1\xb3\xc7f\xebyG\x18>\x03\xc6\xe7\xebe\x99'r\xa4\xf06\xa9\xf9%)\x8b\x02\xe7,\xdb\xd6\xc2\xdbjH\x93\xe52MR\x949\xac\x11\xf3r \x05\xe63?>\x11\xc9`R\xa6?P\xf2N\x16\xbe[5\xbe\xe6x\x95\xe69o\xc4}\xcan,\x13\xf9v\x83g\xd2\xb6\xd1&\xa5\xb3\x84\xacm3\xe1\x071\xea(\x10v#\x07x\xde\x9eI\xe0X\xfa\x92\x80\xd7\x1b\xb6U\xc3\xf41\xacE\xc4qn\x998D\x83D\xe4?]o2\xcc\x17+a\xf4@78I\x97i\x02\x14\xafQ\xce\xd2\xc4@\x00\x15\xe3n\x02w\xc2qk\xd1\xf0:~\xe4\xf3\xc6\x1c\xeb\\v5o`o\xc1\xd7\x99|\xe6\xe4\x0e\xeb\xf6Y,_tX\xcf\x13\xae\xce\xcf\xa7\x17\xf9\xf6\xd3ns\x82r@\xc5\x86_,\x93\xb2\xad\xdc_\xed\xba}f\xd1\xed_\xd1\x1d\x9a\\\xb9\xf0\\8k\xfck\x13j/\xa5\xc7o\x08\x99%\x19\xa2\xd4Ay\xb2\xca\xfcE\xd9\xee\xda\xcb\xe6\xfa\x18\xb4Z\xa9\xf5;\x8bZ/\xb6\xec\x86\xe4\x16\xc5\xca\x1a\xbe!\xe4x6\x9b=\xb6\x19\xa4T\xea\xb1\xf59a\xb8B\xedc\xb5\xce\x0b;\x97J\x7f\xf5\xfa\xc3\xcb\xcb\xf3\x8b\xab\xf7\x97\x8fm\x81\xac\x9d\xa1\xdb+!\xabaW\xf7\x1f-\xea\xfe\x9eX\xf2\xc0qU\x9f=\x87\xdfo\xe6\xb37\x84\xfc2\x9b\xcd~5\xbf\x80\xf2\xed \xf7O\xf9[\x1b\xe9e\xfd\x88\nz\x832\xde \xf6\x86\xd9\xd4\xdb\xae\x91\xa5:\xe9\xb2U\x99\x8f\xf9zW\x1dQY1\xd0\xc4S\xff\xf6\x1c\xf24\xb3\x0e\x10{\x1d\x0d#\x81\xefNE?\xe8y_\xefD`\xbe\xdd\xf9nze\x92w\xb4nu\xa0\x8c\xfb:\xfdE?\xea\xf0\xcdN\xf9\xa6{&~\xe0~\xed#\xbei\xaaVO\xbe\xb2\xeaL\x81\xd2:\xfa\x0b\xaf\x96\xa9<\xdb\xeaM\xe3\xde\x8e\xbe\xf2\x9f\x01-\x19\x96.\x9d\x08\"<:}\xd4_\xb4ZSu\x95\xe4\x16\x15+\x0b>Z\x122\x9b\xa3B4\xe6\xf3\xe9v\xf6\xcf#\xa9\x15\xb9\xd12\xef+EU\x8e\xf8;|9\xed}\xec\xaf\x1f\xde\xbf\xeb\xff\xf5\xf9\xf3\xe7\xcf\xcd\xfd\xc9\xdf\xdf\x05B\xa4\xf3I\xf84\xa0\x1c'\xb9\xa9+)\xd6a\xd4U\x99!Cz\xec\xfd\xa2\xf8k\x0b\xbcssN\x00\xaf\xe7x\xb1\xd89<'\xca\x8f2\x84Oj\xee\xc7R(\xef\xd3\x9f\xb9\xfa>\xa9H@#\xf6\xac;c\xa6\xa7\x923\xcb\xae\x03%\xb7|N\xd9\xedz\x97i\x86\xcd\xeb\x85\x9e\x87.pAIn\x1dv*\xbc%\xae\x02\xbe\x16=\xfb\x1c\x9e\x9a\xbfP\xbd$x \xea\x9dg\xc3W1\x00k-\x8f\x84N\x8f\xce\xe0\xa8k46\xd53\x93-?:\xb1\x95)\xda\xfc\x0e\xady\xb9\xff!\x9b\xf4\x9f\xd6\x97x\x9b[\xef\x0cm\xf8\xf9R\xed\xce\x9a6'\xad$\xa5p\x8f\xb3\xec\xc9mN\xees1\x9f\xdc \n\x08\x92\x922\xb2\xb6\x0c\xae\xa6\xa9\x9fHG\xbfe\xff\xfa\xa2\xea\xea\xf3\xdc\x90EFVa\xc6\xfd\x85\x7f\x12\x03O\xdb\xf7\x0d\xc9\x16\xd2\xb8k5\x13\xa1A5.@\x85\xe2\xd4\xb0\xe8/W|\xb6\x1a\x19p\xcc\xe7+\xad\x92\xbd\xb8\x8f\x0eM\xfe\xf4\xf7\x9f\x1e[\x06\xd1T\xb6\xd5\xfc\xb0\xdd\xbc\x84\x9ax\xb1Og\xcf\x9e>\xa3G\x163\x91\xffehU\x8b\xd0?\x81\x0f\xb8\xb8K\x13\xbe\xe9=:M\x08]\x13z:G\x14\x9f\xb2\x8a\x8ewz\xf7t\x8e\x19zz*\x80,z\xfa\x8bd\xef\xfc\xaa@\x9a\xd5\xee\xa4%-\xd7kTl\x05\x1e%\xd0\xa3\xbfl\xe5u\xe3\xf0s\x89\x8b\x14S\x85\x85q\xc5\xaf\xd2;\x9c+\"\x90^\x96\xc9\x06\xcb\xb6\x9f/\xf6\xcbP\xcfh\x1c\xa9\xd6\x88\xa3g\xdf~{\xd4\x0fF\x01-\x93\x04S\xba,\xb3/\x0f\x852\xf3\x83\x8c\x05\x83\xb5p\xb0\x12N\x9c\xc2#\x0e\xc1\x11g\xbe\x8f\xb5E\xe0\xd4*p\xe3\xf50+\x1e\xa7\xc5\x95\xc7c\xe7\xef8\xa9\x14\xdc\xd4\xea\xc1\xd3\xb1\xf2s\x0c\xc9\xd6\xad\x9db\xef\x90\x03\xf6\xbbS\xe6\xfc!9\xf2\x9d\xea\x08\xce\xf5\x04\xf7\x0c\xf7\xce6\x035\xbbqJ\xfa\xee\x94\x9f>\xd4\xe7]\xe3\x94R\xba\xf3\xc8\x0f\xc8 \xdf\x9b\xfd\xdd'\x93\xfb\x01s\xb6\x0f\xc9\xce\xee\x96\x87\xdd\xb1c\x1f\x84\x8ek\xcf\x8c\xee\xfdI\x17\x9a\x92G^\xf3\x00\xf3\x81}\xf9\x00\x9f\x86\x83\xeb2\"\xc5y\x95\xd6\xe2\xac\x01\xf0\xd2\x02\xb8\xad\xdeZ\xdcWq-\xae6\xa8\xc5\xad[\xc0\xb7k\xc0\xaf{\x0b\xb5\x7f\xbe\xe9\xa9\xdb\xe4\x93-z\xeao\xbb\xe5z\x9e\xfa\xab\x9e\x99\x9a\xa7\xfe\xbcG\x9e\xe5\xa9?\xed\x9f%\xd9/\x1f\xf2\xb4\xf5\x0d\x9b\xcd\x98\xcf_\x07\xd9\x13\xb1\xcfNZ\x9b\xf4\xb4\x85C\x178v\x02x\xef\x15\xae>+\xa6\x9d\x0e2\n\x87[\xa21\xd2\x9d\xfe\xb3\xa5\x04\xd1}3\x19Z\xfa\xc3S\xeb\xe5\xe0\xef\xc4\xc5\xdf\x82I\x98e\\\xddp\x83\x0b,\xf8Ybf\x9d\x01\xfc\x0f~T`\xf8GI\x19\xa0U\x811\xdf;(\x9a\x19)\xb8]\x89p\xb0\xf5K\x82\x13\xba\xc6(W-\x94\x15}\xb1\xd9\xfc\x80\xe8\x0d,\x08\x96| EZ\xe7\xc5S\xcc+\xd4\xbf[P\xe3\xf1\x15\xdf\xb84\xd0\x02u\xd0P\xec<\x90\xe2;\xd4\xc9\xf0\xd5\x96\xa9\xa7h\xfb\x1d\x8a\x13\x9a\xb8\xfdc\x10\xc6\xce\x9d\xdc_\xb76HY\xe8{2\xaf\xef\x08\xc3_\xd2M\x94\xa2>\x86\x19\xab)\x9e\x95\x81\x01\x15\x02\xfd\x19\xe7\xa7\xbdf\xa7\xba\xb8\x9f\xc5\xd2\xb2\x7f\xa7\xbf\xfb1\xa5\x9d\xec\x97rq\xf9\xfao\xef\xaf^\x8f/\xc5\xe3\xb4\x96\x96\xaer\xde_\xbc\xff\xf0\xc2\xe5\xf0\x96\x96\xea\x10\xd7x\xfd\xf8-\x0bM\xf9 \xee-\xfd\x91\xae\xae\x14\xde%\xf9\xcc|\xca\x93W\x9az\x95V\xa3_4\xc2R\xd6 \xbd%\xbd\xfd}&N#\xb9\x1d\xf6\xae\xa4\xbf\xbf\xce\xe0B\xf8U(s/\xd2%\x10\xd4\x94\x81\x83\xcdw\x83.\xc5\xe1\x04wS\xfc#\x07Rl\xa7t\xba\xc5-\xaa\xd4\x94\x01s(\x0c\x9cG\xc1+\xd0\xb1\x93\x81]\x0c>\xde_[\xbc#UM\x19\xa8U\x18\xa1Y.\x1e1\xad\xa6\x0c\xb5S-\xc3\x86\x93\x96!F\x01\xe3\x0c\x03\xc6\x18\xc7\x808YS\x9c\xa3fM\xf1:i\xabe\xa0\x92|B\xdaM\x19t@Y\xcb\xc8\xdazu\xe5\xae\xa2i\xbe\xc0\x9f\xfd\xab\xe9?^\x86\xcd\xeb^g\x9a\xb5\x1cN\x93C]$q\xf6\xb9\xe2\xec\x88\x93\xd1\x05\xe6;\x80\x13u*h\x9d\x8a\x13L\xce\x05\xcaW\xc4&BF(w1G\x81\xday\x14T\xf9V\xb6GA\xefZ\xe6\xae\x9d3`m\x18\xb2&\xc4]\x8b\x83\xc4]\xcb\xbe\xc4]K\xdc\xb5\x1cru\x8b\xbb\x96\xb6\x0cX\x83\xa5\xc4]\x8b\x97\x0c\x1bNZ\x86\x18\x05\x8c3\x0c\x18c\x1cq\xd7b\x92\xb8k\xe9\x97a\xf3z\xdc\xb5\xb8\xc9C\xedZ\xbe\xf0\xd4\xaa;;\xff\xf2\xea\xe6=\xa5\x8d\xa8\x95\xcfT\xd6\xb0\xe9W\x1a\xe5\xe3\x16kK\xf9Zi[\xf9\xf8\xc0\xee\xdd\xee\x95NH\xbe\xcc\xd2D\xa4}\xe5&\xec`|\"!\xec\xb5L\x08{\x8dDF\xda/ \x83\xac\xb5\xe8\xda\x91>-\xc5\xb3^0\xa0n\xa0\xe6U\xbc\x18\xe0\xe2\x0d\xa8\x1f\x0c\xac#80\xf2\xbbe`%aDE\xc1\x95\xd3\xdf-C\x98\xfe\xdd2\xa2\xed0\xb2\xfd\xe0~V\xa0[\x06\xccpm\xd13\x9e\x03\xb1\xbfO\x9cN\x1bt\xcb\x97\xd0\x80\xa1>I]\xbaO1\x0c*\xca\xff\xe4C\xb7\xf4\x9e\x87\x18T\x9a\xc7\x19\x8an9\xe0\xc9\x8an\x19r\xde\xa2[\xdcNat\xcb(\x83\xf7\x0fyi\x19\xf5\xd9!\xceZ]\xecg>\xbae\xa2J\xfb\xf8rM\xf185\xd2-\x0f\xbc\xb6\x0c\x0d\x96\xc0x\xe5\xc3\xb0\xfdaSFF\xd6\xb4\x8c\xec\x05\x98\xa0'`L\xc4M\xcb\xd0HB[\xc6\x8df-c\x8c\x0b\xa610\x98\xc2\xc8FG\xe8\xb4\x0c\x8c\xd4i\xf1;\xab\xd3-#u:R\x97\xc3N\xfbt\x8b\xe3\x19\xa0nyH5x\x9d\xb8\xe9\x96\x87\xac\xfe\xf4\xe7\x90\xba\xc5\xfftR\xb7<\xa4\xae|\xce7u\xcbC\xd6\xde\xed\x84T\xb7-q\x8b:\xc4T`\xdc\x1c %nQ\x1b2v\x1ch\x197\x8c\xb5\x8c1.\x98\xc6\xc0`\n#\xfbR\xb6\xa8\xae\x97\xbcu\x8b\xd4\xa6\xfd\x90f\xb78\x1d\xdd\xec\x96\xd1\x83k\xfc\xd0\xf2\xbeR\xae[&1H\x7f\xf2pS\xc6\\J\xd7-#\xae\xaa\xeb\x96\x11\x17\xd8u\xcb\xb0k\xed\xbae\xf4ew\xdd\x12\xfa\n\xbcn\x19\xc5\xe0j\xca$\xc6=\xc9\\\xeb\xc93\xd9\x97I\x9b2\x1c\xbf\x902\x88\x12\xd6\x94I\xdb3\xb8k\x02^\xef\xd7-\x07\xbc\xf4\xaf[LW\x01\xf6\xc9nDR\xec\xb5\x03\x1b\xb8L\x0e]\x1cwm\xf3{o\x8c#1\xd0\x89\x18\xa8\x19)C\xf5#e\xd4\xac:z\xd8\x8e\x1c\xb2\x9br~}\x8b=\xef\xb9\xd72J\xe90Z\xf1\\\xf0\xe2\xd9\x9f\xfe\xf4\xf4\xff\x0c}}\x82\x0e\x80\xf1\x9d\x00\xe2\xba\xb6d\xf3\xecO\xff~\xfb\xf4\xb7\xde\x14\xbd\x0f*\xe7Y\x9a\xfc\x17\xde6\xa2n\xb7xKk\x17q-I!\xee>\x10\xa9\xf6k!\xb8\xbf\xf9\xdd\xb0\xdf\x94!\xcc\xdd\xa6\x8cV\xe4\xd8\xbdq\x15z\xdd\x14))R6j|>H;t\x0b|+>bJ\x193\x99\x8c\x98\xc3G*y\xd4x\x1b1{\x8fP4\x8cT6\x8c\x9f\xb7G*\x1d\xc6*\x1e\xa6\x98\xb1\x1f\xbe\x11\x0f\xc9\x0b^\xc0\xc7\xcb\xb7\xa7\x05\xa6\xa4,\x12u\xf5\xbb\x18\x9fe\x9e\xfe\\\xe2l\x0b|\xd0\xb2t\x99:\xa4/`*;\xa5\xbcQD_un\xb9w\xbc \x8c$$\x83y\xb9\\\xe2\xea\x1a\xe6\x99\xbc\xfdD\xb6\x15\xd6%\xad&\x13@\x0c2\x8c(3\x97Kr\x0cG\xa7G\x90\xdc\xa0\x02%\x0c\x173q\xd3\xbb\xb8\xcc\x9e\xe2\xd5\x1a\xe7\xd5d\xf7\xf1\xf2\xed#\n\x1b\xc4n\xe4\x87\xaa\x9cR\xe6/\xb0\x8e\xfb\xf3\x85\xfeT\xb1B\x1b\xc7\x88Bj\xb8\xd2\x9d\xcb'\xfe\xe9\xde\xdb\x9f?=\x965\x17E\xd3\x1bRf\x0b\x98c9''('y\x9a\xa0L\x8c\x1d\xf3W\x8e\xf1l5;\xe1\xaa\x13\x19\x17\x8efG|\x16\x14\xf7\xd8$ \xde0\xbcx<3\\\xb1\xcf\xe5<\x87\x0dWf\x9a\xe0\x13`\x18\xad)\x94\xb4D\\\x052\xe3\xd6&\xcdx\xcd\xd45\xdc\xf34G\xc5V^\x93\xb3\xdd`u\x8b\x0d\xbb\xc1[\xf3g\xe4\xec\x08)\xe3\x1b\xf6\x92\xd6S\x962\xfcYt\xdb\x8b|;\x83\x1f\xc8=\xbe\xc3\xc5\x89\x98\xb8?^\xbe\xd5~\x0c\x7f\x85\x9b\xaa\xf1#b\xd6\xc4\xf0\xe9\x86\xb1\xcd\xa7\x13\xf9_\xfa\xe9\x04H\x019Q\xbf\x9e\x08+JP\x0ed#\xef\xdd\xcf\xb6bu*7*\x17\xab\xe5\x1b\xb8\xb8\xc3\x85l\xf6\x1am\xa84 QSF\xaa\x84\xac\"\x10\x98\xca;w\x10w\xb6\xb2\x8c\xdc\xd33K_|\x03\xe7\xcb]MyWn\n\xc2W\xd8E\xd5\x18\xb1\xacSZ\xae\xf1\xc2\x92\xe4\xf5\x1b\xbe,\xfdpuu\x01\xdf\xbf\xbe\xd2W\x15}\xbc|+\xc7\xc36\xc5\xd9\x02\xd0\xfe\xcd\xe8W\xdb\x0d\xfe\xe9\xef?\x19\x8b\x16\xabu)\xfaP\xd9\x83\x9c\xe6\x85\xa67\x05Y\x94 \x06\x94\xcb%\xc7\xcch\xfb\x06^\xecR~Pq\xe3\x12\xe2\xba\xc2\x0b\xae\xce\x04%||\x13r[n@\x9d\x05\x849\xa2x\xa1\x1ad\xa9\xe6\xc7\xcb\xb7\xa2N7\xe8N\x98\xcf\xbaf\xd3\x0bi\xd4H7\x81\xff\xfb\x8e\xa4\x0b@\xb9\x0dH\x91\x15\x12C\xb8\xc0KR\xe0\x13]\x08/\x1b\xb1t\x9ef)\xdbB\x8e\xf1B\x98\xc5\\\x9c\xa1\x15\xa6cK\xf0Kr>\xbd\xe5+,^\x14cl\x06\xc7\x1f)\xd6Y\x94\xb8f\xb8\xc9\xf1\xb9C\xda\x1c\xca\xd1\xca\xa6\x89y\x81\xd1-\x9f#T\xe1\xb3\xc7f\xebyG\x18>\x03\xc6\xe7\xebe\x99'r\xa4\xf06\xa9\xf9%)\x8b\x02\xe7,\xdb\xd6B\xdcjH\x93\xe52MR\x949\xac\x11\xf3r \x05\xe63?>\x11 aR\xa6?P\xf2N\x16\xde[5\xbe\xe6x\x95\xe69o\xc4}\xcan,\x13\xf9\xfe]\xfc\xb6\x99\xf0\x83\x18u\x14\x08\xbb\x91\x03\x06\xadVj\xfd\xce\xa2\xd6\x8b-\xbb!\xb9E\xb1\xb2\x86o\x089\x9e\xcdf\x8fm\x06)\x95zl}N\x18\xaeP\xfbX\xad\xf3\xc2\xce\xa5\xd2_\xbd\xfe\xf0\xf2\xf2\xfc\xe2\xea\xfd\xe5c[0kg\xe8\xf6J\xc8j\xd8\xd5\xfdG\x8b\xba\xbf'\x96\\p\\\xd5g\xcf\xe1\xf7\x9b\xf9\xec\x0d!\xbf\xccf\xb3_\xcd/\xa0|{\xc2\xfdS\xfe\xd6FzY?\xa2\x82\xde\xa0\x8cw\x82\xbda6\xf5\xb6kd\xa9N\xbalU\xe6c\xbe\xdeUGTV\x0c4\xf1\xd4\xbf=\x87<\xcd\xac\x03\xc4^G\xc3H\xe0\xbbS\xd1\x0fz\xde\xd7;\x11\x98ow\xbe\x9b^\x99\xe4=\xad[\x1d(\xe3\xbeN\x7f\xd1\x8f:|\xb3S\xbe\xe9\x9e\x89\x1f\xb8_\xfb\x88o\x9a\xaa\xd5\x93\xaf\xac:[\xa0\xb4\x8e\xfe\xc2\xabe*\xcf\xb6z\xd3\xb8\xb7\xa3\xaf\xfcg@K\x86\xa5K'\x82\x08\x8fN\x1f\xf5\x17\xad\xd6T]%\xb9E\xc5\xca\x82\x8f\x96\x84\xcc\xe6\xa8\x10\x8d\xf9|\xba\x9d\xfd\xf3HjEn\xb4\xcc\xfbJQ\x95#\xfe\x0e_N{\x1f\xfb\xeb\x87\xf7\xef\xfa\x7f}\xfe\xfc\xf9ss\x7f\xf2\xf7w\x81\x10\xe9|\x12>\x0d(\xc7In\xeaJ\x8au uUf\xc8\x90\"{\xbf(\xfe\xda\x02\xef\xdc\x9c\x13\xc0\xeb9^,v\x0e\xcf\x89\xf2\xa3\x0c\xe1\x93\x9a\xfb\xb1\x14\xca\xfb\xf4g\xae\xbeO*\x12\xd0\x88?\xeb\xce\x98\xe9\xa9\xe4\xcc\xb2\xeb@\xc9-\x9fSv\xbb\xdee\x9aa\xf3z\xa1\xe7\xa1\x0b\\P\x92[\x87\x9d\no\x89\xeb\x80\xafE\xcf>\x87\xa7\xe6/T/ n\x82z\xe7\xd9\xf0U\x0c\xc0Z\xcb#\xa1\xd3\xa338\xea\x1a\x8dM\xf5\xccd\xcb\x8fNle\x8a6\xbfCk^\xee\x7f\xc8&\xfd\xa7\xf5%\xde\xe6\xd6;C\x1b~\xbeT\xbb\xb3\xa6\xcdI+I)\xdc\xe3,{r\x9b\x93\xfb\\\xcc'7\x88\x02\x82\xa4\xa4\x8c\xac-\x83\xabi\xea'\xd2\xd1o\xd9\xbf\xbe\xac\xba\xfa<7d\x91\x95U\x98q\x7f\xe1\x9f\xc4\xc0\xd3\xf6}C\xb2\x854\xeeZ\xcdDhP\x8d\x0bP\xa185,\xfa\xcb\x15\x9f\xadF\x06\x1c\xf3\xf9J\xabd/\xee\xa3C\x93?\xfd\xfd\xa7\xc7\x96A4\x95m5?l7/\xa1&^\xec\xd3\xd9\xb3\xa7\xcf\xe8\x91\xc5L\xe4\x7f7\xa8@k\xccp\x9dP\xfbD\xcc\xb8g\x8a\x9aS+&\xcd\xcfD\xcc\xb8\xf6\xa7\x02\xff\\\xa6\x05^\x9c\x01+\xca\xfa^\xb9\x0b\xa2\xe9\xdd}wQ'\x18Z5\xea\xf4\x01\x17wi\xc2?q\x9a\x10\xba&\xf4t\x8e(>e\x15W\xf0\xf4\xee\xe9\x1c3\xf4\xf44'\x0b|\x9d\xe6K\"__\xed\xce\x7f\xd2r\xbdF\xc5V\xa0d\xef\xc8\x02\x9f\xe7K\x02?\x97\xb8P\xa1~\x1d\xb7\x01^\x84\xc8\xe8\xa4]\x04\xb2\xc1\xb2\x1f\xce\x17\x8d\xb7\xd5\xcf\x1a\xce\xaa\xd5\xf8\xe8\xd9\xb7\xdf\x1e\xf5cb@\xcb$\xc1\x94.\xcb\xec\xcb\x03\xc3\x94\xa3r\xdd\xd2d[\x8c_\x00\xebW\xa0\x86\x85\\[\x93\xa0[?\x06N\x1f\x14O=\xb3 \xe4\x8ea\xa2\x9d\xe1Z\xb3n;\xe47\x9f\xfe\xa3\xd6\x8c\xe4\xd3~\xb2i5\x06\x9e\x9b\xc3g\xb3\x942\x9c\x0bb\xc5\xa8rr\xcc\xeeIa\xd0\xbcC\x19\x8e\xa6i,#\xb9Ay\x8e\xfb\xd0Xp+\xc4)0\xb9&yzk\xe2\xd99|H\xc4xm%L2\x14\xd9g\x97\xab\x84\x1c\xaa\xcc\xa5\xd8$nT\x1cKy\xb54\xeb\xe6y\xc9\xaa\x08\xbb\x12\xc4R;\xa6\xaf\xd0fs=\xba\x90)L|\x95\xba\x12\x87\x8d\xc5\xcc\xcb4[\\7W\xff\xb68\x14\xb3\"\xaeK\x8aCm\x16xc\xad\x8d\x99\xbeh\xa5.ZMI\x8a\xdd\xa0\xd4s\x88Y\xc9\xa5\x0e\xcd\xaf\x1e\x95T\xba5Y\x94\x19n\xfb\x80\xfbb\xd5\xbc\x94\xc1\x15P\xe5\x1b\xdf\xa1v>\xa5\xff\xf7\x93\x1b\x9c\xdc\xd2rm\xeaH\xf9\xe4\x8f\xb2\xa6im#\xce7\x18\x7f\x935?\xefO\x16*\x9d\xdbk\xba\xb8\x9d\xc4\x80\xab\n\x1d}H\xf3Dd,\xe5\xe5?\xa1\x8b[\xf8v\xf6\xc7\xef\xba\xb7 \x0d_\xb5V\xe7\xbd\xf6\xf0\xff\xa9\xb9\xc3\x15\xdb\xac\x02p\x8c%w\xbdY\xf1\xd4~.1e\xcd/U\xa4\xb4\x96\xfb]\x97\xc8P\xdb\x93\xc8P\xeb\x10\x97\x99\x94E\x86Zd\xa8E\x86\x1aD\x86Zd\xa8\xf5Hd\xa8\xb5$2\xd4\"C-2\xd4\x9a\xe2\xea\xfcD\x86Zd\xa8E\x86Zd\xa8\x0d\xc7\xf6#C-2\xd4\"C-2\xd4\xba$2\xd4Z\x12\x19j]\x12\x19j\x91\xa1\x16\x19j.\xb6u\x10\x86\xdap\x1e\x18\xdd\xe6I\x9a\xabd-=,\xb0\x0f\xf2\x99\x8a\x04&\x88_\xea\xc5>\xee\x97zG\xfd\xfa\x95Q\xbf\x1aJk\x8b,wNH\x86\xd1>\xfa\xda\x86\xf6\x94\x9e\x9c2P\xec\xa0\xbd\xa6v\xeb\x12\x91\xbd=\x89\xc8^\x87Dd\xaf_\"\xb2\x17\x91\xbd\x96Dd/\"{]\x12\x91\xbd\x96Dd/\"{\x11\xd9k\x8a\xab\xf3\x13\x91\xbd\x88\xecEd/\"{\xc3c\xa2\x11\xd9\x8b\xc8^D\xf6\"\xb2\xd7%\x11\xd9kID\xf6\xba$\"{\x11\xd9\x8b\xc8\x9e\x8bm}\xe1\xc8\xde.\x1b:f\xf44C\x0cSf\x84\xf9\xde\x8aG\xaa\xcb\xa4>`V!~\xf2\xed]\x82\xf5'\x14\xb3>\xe4o\xbf\x18\xf5\xe0W\x06\x02\xca\xcb.LW\xf3X\x83\x19\xb6\xdbPl7\xf9\xb1/\x00$r8Kn\xd5\x03\x17\x87+\xf1\x1cj\x0c\x8e\xb5\x06Gx\x0b\\\xab/\xc55\xd2\xa3eR\xa8\x0b\x06\xc2]\x10\x10\xf2\x82\x83\xc0^0%\xf4\x05\x07\x83\xbf`\x1a\x08\x0c\x0e\x07\x83\xc1\xa1\xa008\x10\x1c\x06\x81!1\x98\x1a\x16\x83\xd0\xd0\x18L \x8fAp\x88\x0c\xc2\xc1d\x10\x18*\x83pp\x19\x0c\x80\xcc\xe0\x10\xb0\x19\x84\x87\xce`\x18|\x06\xe1!4\x98\nF\x03\x17(\x0d\xfc\\\x17GH\x0d\x0e\x0b\xab\x81\x05Z\x03O\xa7\xcb\x13b3\x96\xd5t\x95\x1ca6\x08\x01\xb5\xc1!\xe068\x00\xe4\x06\x93\xc2n\xe0\x87\x0e\x81+\xfc\x06\xfe\x10\x1c\xb8\xc4\xb3G@q\xe0X\xbe%\xec6!,\x07\x83\x95\xef\x07\xcf\x81c\xcb\x07\xc2t0\x06\xaa\x03\xbb\xc6\xa7\x85\xec\xc0\x0f\xb6\x03\x0f\xe8\x0e\xbc\xe0;p\xef\x95a0\x1exCy`\x85\xf3`JH\x0f\x86\xc0z0\x01\xb4\x07\x8e\xaa\xf7\x84\xf8 \x14\xcc\x07\xae\xf5\xb5\x8c\xa4\x80\x90\x1f\x84\x86\xfd ,\xf4\x07A\xe1?p\x87\x00\xc1\n\x03\x82\x15\n\x84@p \x84\x83\x04!0,\x08\x03\xa1A\xf0\x87\x07a(D\x08\x83`B\xb0\x8f{p\x80t\xc0\x03\xd6\xf1\x81\x0ca(l\x08C\xa0C\xb0+#\x1c\x84\x08\xa1aD\x08\x08%B@8\x11&\xb6?OX\x11\xbc\xa1E\xa8\xc1\x8b\xfbrGX\x9a\xaf\xae7\xe4\xde\x94\xdd\xd89\xb4`\x83\xb8\xa4l\n\xb2!\x14\x17\xd7\x9b\"%E\xca\x1c`\xa0I\xbe\xdcL\xe1\xa9\xd1\xb6\xce\x04\x9e\x9d\xd8g]6h\x95\xe6\xa2\xcf\xba+\xdf\xf8\xd6\xeea\x19X\xc6\"\x16Q\xfb\xab\xfel\x17\xec\xb9\x13fC\xc4\xecXX\x8e?33\xf0\xe6\xa4o\xa7\xf0\x91\xca\xb2\xfa\xbf\xa6\x18\x8d\xae\x8f\xee\x04\xfeO\x15WE\x94\xca\xa0\xf1\x05Z\xe1K\x99\xfbt&\x7f7\x14\xf8s\x89\x8b\xad(\x8a\x17\xcdu\x8caM(\x03,\"\x96\"\x9c\xd9\xf3:#\x0c\x19\xe0A/\xc5X\x12\xd1+\xd5\x18\xc3W\xa2:B/\xe2\x1fy\xb9\x9e\xcb\xa8\x9a\x8e\x9b\xd7\x82\xb2\xa6{\xd2\xeb\xeaKH\x99\xb3kQ\xa0i\x9a\xbbG\x14(f'\x902\xaa\xe1\x01\ne.\x8dw!#\xa6\xf7)\xdd\xef\xfb\xf6\x81\xd7}z\x80\xd3\xd9\xd7\x8e\xbaU\xa7a\xeb\x85\xc5K\xd8\xe3A\xd8\x9dX\xe7G\x9b\xb2\xa50\x07\xa6\x80\xd3d\xe0\x17\xac\x9e\x94\x1d\xc0\x060\x03B\xb1\x02\xc23\x02&c\x03\x1c\x86 0\x01\x0b\xe0@\x0c\x80\x83\xa0\xff\x87@\xfeC\xa2\xfe\x93\"\xfeA\xd1\xfe\xc9\x90\xfe\xb0(\x7f \x84?$\xba\x1f\x08\xd9\xf7E\xf5\x83#\xfa\x81\xd1\xfc\x8e\xbd\xb2m&\x0c\x8c\xe2O\x82\xe0[\xd1{Gw\xc2i\xdbuP\xc4\x9e\xc5\x83\xb0- \x8e\xcc\x87F\xe5\xa7C\xe4=\x00a'$\xde\x13\x85\xb7\xc1LC\xd1w[\xb9\xf1 \xacA\x06\xa3\xeb\xf1 ,\x8cA\xd0\xfd\xd0\xf3x\x10\xd6 %\x0f\x82\x90[\xeb\x18\x0f\xc2\xfa\xa0\xe1\xe1\x90pG\x14<\x1e\x84\x1d\x8dx\x0fA\xbb=\x91\xeeA(\xb7?\xc2\x1d\x0f\xc2\xeeK8\x14;(\x82\x1d\n\xbd\x0e\x85\\Oe[\x9e\x88\xb5\x1fZ\xedr \xfb\x0e7\x9d\xdd\xe2z\xd0\xa7\xb1\xe1l\xc1\x8e\ncDj\xba,0+\x8b\\D\x93\x14@\xa6p\x9f\n\x90\x14\xf1\x9fU\xda\xcc\xe9*\xd0En\x1df\x80q\x06\xef\xf9BFr\xb1\x87$\xcb%\xc5\x8co\xd1\x9a\xd5\x85Z\x0c\xb9\x852\xa7\xf9\x99\xfcV\xedo\xbb{\xe5\x97(\xa3\xa3/\x96o\xc4\x10:T+k\xdd\xa7\xdd\xd6v^5Q(8/\xd7\xb8H\x13\xfd71\xe6\x12\x94\xf3V\xca`\xca\x0d\xceuw\x94y\x15\x87j9\x9c\xe7\xa2\xb4\x0cS\xbaS\xac\x8c\xee\x94\x94w\xc0-6iYi\xb6Y\xe4\x83\xa8\xb9\x05\x04w(:K\xd7\xa9\xab\x9e\xc5\xb3\x15a\xa1\x07\x17\x96\x91\xcb\xba\x85+\x9c\xb5\xcc\x9a\xb0\xd8F\x862\xea\x7f:_B\x86\x97L\x85\xcaR&\xa7G\xed \x8a\xc0\xab\x1c@\xf2#\\\xe3\xf3-`\x94\xdc\x00\xdal\xbe8\xdd\xd6\xf1\xee\xdd\xfb&\x0d\xd7\xde\xe0z\x16\x16L\x80\x15%\x06\xfe\x8f4_\xa4 b\xb8\x02P\x94^\xc5\x83\xca\xe8\xea\xc5\xa5y\x92\x95\x8b\x96\x13\x89\xe4W*t\xaa\xd5\x8f\x02\xe3\xac\x05h\xf9\x02P\xe3\x8a\xa49|<\xa7\xad~kU[\xf8\xd1\x05\xa6\n\xdb\x16Cn7F\xf90\x9c\xa9\x11\x96\xaerR\xd4Fe\xb3X\xa9\x81\x10\xdd\xda\xce\x98\xdd\xd1y\x05\xbe\xc3E\xa38S\xc7\xa9\xa7\xdb\x9d\x96\xd6\xf8\x12\x05\xee\x1e\x1b\x8dr\xf87p.\\\x00R,p\xd1\x0e\x95u\xdf\x19\x1c\\C\xfd\x99!\x8e\xfcRC\xfc\"s\x18\xfc\xaa\xc8\x0b=\xd9!:I\x16:?D\x83\x1c\x05\x88\x01\x82Uz\x87s\x90E\xf7\xa5\x8a\xe8*S=\x1a\x93E\xb4\xc5\xc6g\x8b\xc9\"\x1a\xe2Pcp\xac58R@\xc0\xb5\xfaR\\\xd1\x10-\x93\xd2A` %\x04\x02\xd2B\xe0 \xd4\x10\x98\x92\x1e\x02\x07\xa3\x88\xc044\x118\x1cU\x04\x0eE\x17\x81\x03QF 0m\x04\xa6\xa6\x8e@h\xfa\x08LI!\x81\xe04\x12\x08G%\x81\xc0t\x12\x08G)\x81\x01\xb4\x128\x04\xb5\x04\xc2\xd3K`\x18\xc5\x04\xc2\xd3L`*\xaa \xb8\xd0M\xc0\xcfuq\xa4\x9d\xc0a\xa9'`\xa1\x9f\x80\xa7\xd3\xe5IC1\x96\x15\x93ELNK\x81I\xa9)\xe0\xc7\xa0\x00W\x8a\n\xf8\xd3T\xc0\x05\xf3\x1dAW\x01\xc7\xf2c\xb2\x08O*\x0b\x8c\xa1\xb3\x80]\xe3\xd3\xd2Z\xc0\x8f\xda\x02\x1e\xf4\x16\xf0\xa2\xb8\x80{\xaf\x0c\xa3\xba\x807\xdd\x05\xac\x94\x17\x98\x92\xf6\x02C\xa8/0\x01\xfd\x05\x1cU\xefI\x83\x81PT\x18p\xadoL\x161\x94\x1e\x03A)2\xe0N\x93\x01+U\x06\xact\x19\x08D\x99\x81p\xb4\x19\x08L\x9d\x81\x81\xf4\x19\xf0\xa7\xd0\xc0P\x1a\x0d\x0c\xa2\xd2\x80}\xdc\x83\x03\xed\x01<\xa8\x0f>\xb4\x1a\x18J\xad\x81!\xf4\x1a\xb0+#\x1c\xcd\x06BSm \xdd\x06\x02Rn`b\xfb\xf3\xa4\xde\x807\xfd\x06b\xb2\x08-1YDL\x16\x11\x93E\x1c4YD\x17A \xa6\x8bhIL\x17\xb1\xf7\xee\xc3\xb2\x1c\x98\x03W\xc0i:\xf0\x0bWO\xca\x0f`\x03\xb8\x01\xa1x\x01\xe19\x01\x93\xf1\x01\x0e\xc3\x05\x98\x80\x07p \x0e\xc0A\xf0\xffC`\xff!q\xffI1\xff\xa0x\xffdX\x7fX\x9c?\x10\xc6\x1f\x12\xdf\x0f\x84\xed\xfb\xe2\xfa\xc11\xfd\xc0x~\xc7n\xd96\x13\x06\xc6\xf1'\xc1\xf0\xad\xf8\xbd\xa3;\xe1\xb4\xf1:(f\xcfb\xba\x88\x96\x04\xc7\xe6C\xe3\xf2\xd3a\xf2\x1e\x90\xb0\x13\x16\xef\x89\xc3\xdb\x80\xa6\xa1\xf8\xbb\xad\xdc\x98.\xc2 \x83\xf1\xf5\x98.\x02\xc6`\xe8~\xf8yL\x17\xe1\x84\x93\x07\xc1\xc8\xadu\x8c\xe9\"|\xf0\xf0pX\xb8#\x0e\x1e\xd3E\x8c\xc6\xbc\x87\xe0\xdd\x9eX\xf7 \x9c\xdb\x1f\xe3\x8e\xe9\"\xf6%\x1c\x8e\x1d\x14\xc3\x0e\x85_\x87\xc2\xae\xa7\xb2-O\xcc\xda\x0f\xafvI\x17qS?h\n\xea\x80\xee\x06\xb1\x9b\xda\x9fv\xe7sYQ\xba\x1d\xcf5\x9cK\xb7\x1eK\x8fi+`\xa8nc\xda\x8a\x83\xa8\xd9\x9eZ!\xa6\xad\x08\xa7\xdb\x98\xb6\"\xa6\xad\xf8\xda\xd3V\xe8\xac\x15\x8b\x94\x0f\x95y\xc9\xb5S\xa5\xacH\xc8z]\xe6)\xdb^o\x08Q\xc8zW\xa6\x8a\x97\xfa\xb9\x0bB\xb2*?\x85\x84\x1c\xd5/\xc0K\x80\x84\xa49\xedLL\xd1(B=\xf0\x95\xa5\xa3\xd8\xe9\xb0-\xec\x0b\xe0O,pN\xd6\xa3\xd1\x0e\xb4\xe6S\xc9\xc8b\\!\x88W8yI\xd2\x1a?\x0f\x18\xb9\xc5\xb9\xda\xf5\xca\x16\xe9y\x8f\xefA\x90\xa1\xf1I\xbaF\x99\xaa\xbe)\xce\xfe\xee\xfd\xd5\xeb3\xb1\xc3\x97\xcf\xaams*\x10\x90W8Q\x1b\x8b\nvj\xec.d\xc0\xa4\xbfp\x9a\xaer\xc4\xca\x02\xd3j\xcc\xf3\x05rEVD\xb8\xf0\xdd!\xa6&m\x91\x0f3\xad\x90\xe6\xe8{D\x9b\xe3\xaf\xa7\x84N\x85\x0b\x1eWc\x8c\x8ec\x845\x87{\xc7c\x91\x1a\xb6'\x91\x1a\xd6!.S\x1b\x9b\x8a\x1a\x16\x10\x11n\xaf\xd0\xff\xad|\x80#\xe3\x02\xbd\xc0\x19^\x89\xf4C\xa7\xbfT\xff\xbeV \x7f~=-\xf0=*\x16\xd4\x90c\xaa\xb6\xcf}%\xdfOI~\xc5\x1d\xc1K\xf9nc5\x97\x1e\xa2*\x15P\x92\x14\xa5\x9c\xa1\x90p\xe2\xab\xa2*&v\xe7R\xdf\xfd!\xf5\xe4W\xb6\xe6+]}\xb9c\xa3\xea\xaa\xeb\xa9\xd2D\xc9&\xdb\x8b\xe9o\xb7\x14c\xeb\xa58\xe8@\x8a\x8b&\xa4X\xdd )N\x9a\x90bw\x89\xa48\x17i_\xad\xeb2\x9d\x93$\xc5\xddU\x92\x12\xd4a\x922\xccm2G\xfc\xea\xb2\x9b\xb0^\xe99VNZ\xbb\xa8\xb4\xac\xf5\xce\xccz\xcb\"K\xa1tU\xcc#\xaa\xff\xcd\xd5/G\x8e\x83\x93\xa7g\xe0\xaaO\xb3L\xf9`\x1d3s\xf5\xb1\xae\x82\x0d\xe7'l\xa3\xf4\x10\xb3\x93u4:\x0d\x1a\xfb\x08t(\xc6u\xd4M7\xde\xdcGZ\xd016lt5\xd4%\xfd\x06\xad\x11\xc1\xce*\xd7b(4\x0dw\xf0\xce\xa4\xdb\xa5\xb0nQ\xba\x06D7\xefY\xeeZz\\\xa4\xb8W\xd9\x93\xb8W\xe9\x10\x97\x19\xef\xb7\xb0W1\xc1|{\xbb\x90\xbe\x01\xb0\xf7`c~\xa8~\xd5\xd9K\x81\x11uNp\xd9\\\xc9\x02\xc0\x88!\xf7b\xa7\xbf\xecy\xdc\xa6\x1c\xc0\xbb\x19\xc7s?\xb6s+,{\xb0\xb8\xfdz\xc8\xe1\x1e\x1d\x9c\xaf\xc2\xc1i;\xe46g\xbc6,{J\xec\xdc\x8e\xb4|\x1dW7\xc7\x18\x89\xdd\x9fa\xa2;\xb3'\xd1\x9d\xe9\x10\x97\xf9-\xba3\x0f\xef\xce\xecZ\xb3\xe7z\xf4\xb5f\xef\xc1Fk\xaa_\x1f\xa25A\x9c\xb3]\x1a\x7f\xbb/F\x8a*\x97A\xd3\x1b\xdb\x15\xd2\x8a\xf2tz`\xb3\xd9\xe9lv\xca\xd6\x9b'\xf4\x1e\xadV\xb8x\xb2\xc2\xb9\xb1\x0dB\xc33\xf5\xf4\xec\x1f\xb4\x16\x8e\xda\xd5H}\xea+\xf3\xe3\x0ep\xcd\x82a\xe6\xe8\x1e\x1a=c\x82\xd6{\x9e/\xc9z\xc9\xcfW\xed\xd1\xd1Q\xbau\xd9\xaf\xf7\xf5$\x0b\x7f\xc3\x9c\xe3\xd2\xbf'q\xe9\xef\x90\xb8\xf4\xff6\x96\xfe \x8b%\xdf\xe8-\nt\xaf\xff\xe2\xb2d\xfe\x8fz\xe7\x85\xd2\x81^7uY\x95r\x1cV\xce\xbeB\xd5\xb3_\xd9\xd2\xd7\xd6\xf6\xa0\xc9\xa2\xd5\xe2v\x99\x03\x0d\xb6\xa3dk\x88~\xaf\xd7\xac\x8bXG\x81.A\xfa}\x9b\x8b\x8b\xdb\x9e\xc4\xc5\xadC\xe2\xe2\xf6\xdb^\xdc\x8ck\xdb\x92\x94\xf9B,%\xd7\x0c}>\xf0\xca\xf5\xa6\xfa\xf8\x15\xfa\xac\x1e\xf8\xca\x96\xabJ\xa9{?\xd8\xec8\xdc\n\xc5GG\xd5\xeb\xc3\x97\xd1\xb8\xd0=\xb4q\xc5\x85\xae!q\xa1So\x0eY\x08\xc4\xeaH\xfb\x17\x80\x0b\xf1{5\xdd\xcb\xc7\xabs\xf7\xb5\x12aM\x16e\x86\x83\x05\xf9dET\xe9_\xd9jQ\xef\x84\xb64\x9a\xa1\xd4__\x05v\xee\x8d\xee\x95fG4\xc5:\x1c\xec\x83aw\x1a\xaaw\x91\x037;\x9e#\x8a\xaf\xab\x8c\xda6\xc2\xacK\x81$/\xe9\xa4%6\x16\xe0k\x9c\xa3y\x86\xad%\xb6\x8f\xe55\x85\xe2\xa4\xc0\xec\xba\xcb\x03\xeb\x12\x87J\xee\x97h%1\xbb\xaf\xf0b\x16\x91\x83\xcf\xbat\x8b\xbf\xcaUY\xcd\x1b\x97\x17/;\xea\x10W\xe5\x86\xc4U\xb9C\xec\x13\xd1o{U6\xc7\x1ew8J\x17SJ\x9cHM)MIn\x88:V\x80\xc6\xcb\xea\xe9j\x1dGIR\xae\xcbL\xa4\xd9\xdb\x15&\xc60\xb2\x9c[\xe9(V=\xf6\x95\xad\xca;\xbd8\xac\xcc5%\xd6Wg\xf9\xe7T\xa5\xc2\xdd!\xc6\x05Npz\x87{X\xee\xd6\xe1a\x1f\x1c\xb6\xca\x83\xc3\x10\x06\xdb0\x06\x97\xbaJ\xb1\xd7X\x8a\x95 \x06\xee\xa3\xd1\x85\x11\x06\xee\xc5\xd97\xbe;\x99\x8e\x1d\x06\xe2\xcb\xae\x0c1\x08\xcd\x12\x83AL1\xd3}\x1abB\xec\x98T\x9c\xbc\x8d\xbe\xf2N\xbb&\xbf]@\xa0z-z\x1e\xd1\xf3h\x8b\xcbT\xf5[\xf0Zy\x84\xe2U\xc0wr\xfa^\xbaG\xdcTA\xea\x99\xaf\xcc\x07T\n\xfdr\x87\xf2\xce\x086\xb8H\x89Cn\x17\xe7\xc1h\xb9ss)nK3\x85\xf2\x9c\xbeh_\x86\xa54\xed\xed5\xb7\xd3\xba\xc3Qw\x0ej\xa6l\xb8tA\xdds\x99R\xe1i\xa5\x89H\x89\xcanTRU\xcaH!\xaeO5\x94 n\xf1K\xa9\xb8\xdeJ\xdf\xd3\x95%\"\x80\x0dh\xc3{\xafH\xc5\xbf\xd7:)(e\xf2\xf2)\xe1l\xf6:;\xd2S\xd8\x1dG\xd4w\xbf\xa1\x02W\xd8_\xaeR\xf6#\xd5\xda\x1bD\x81$\xe26*\x97,%\xca\xae\x9by\x1f\xd4\xdf\xdc\x83\xc2c/\xed\x95Pq=\xff)\x8b\x97\xf6\xc6K{\xeb\xcf\xfc\xe6/\xedu\x08/\xab\x15t\xa2\xd8\xb2^\xd8\xe3\x86aO\xe2\x86\xa1C\xec\xf3e\xdc0| \x1b\x86]k(C\x05K\xf3\xd5\xf5\xde\xbd\x0d\xcd5\xbe\xf9X\xa3%\xfa\xce\xd7\xea!u\x07\xc4\xaeA\xed\xb9Fy\x07\xedFN\x91\x0f\xbb\xa3\xb7-\x89\xe0e\x1a\xef)\xda\xaf\x12\x82\xff\xa6Z\x1f\xaf\xc9\x98B\xb9\xf1\x9a\x8c\x83\xa8\xd9n\xc3\xf1\x9a\x8cp\xba\x8d\xd7d\xc4k2\xe0\xab\xbc&\xa3}\x90\x00\xdf\xa5\x0b\x9c'\xb8\n\x95\xea?\xc8\x97\xbab\xa1/\xb2\xec\xb5zh\xc7A\xcc2\xd0ov\xc6=k/\xa9\x9f\xbf\xb2\x90gSom\xf9\xaav#\xee\xd1G./\xe0\xe3\xe5\xdb\xd3\x02SR\x16\x89\xba7S\xcc\x82e\x9e\xfe\\\xe2l\x0b\\q,]\xaa\xa43\xc6\xc2X\xe7u\xd8f\\\xb7}\xbb\xb8\xbe;[\x06\"e[a]R\xa6\xef\x86\x04\xc4 \xc3\x882s\xb9\xdc\x818:=\x82\xe4\x06\x15(a\xb8\x107\xfa\xcb\x9b@)^\xad\xf1n\xaa\xfex\xf9\xf6\x11\x15;\x1b\xf9\xa1*\x02k\xfe\x02\xeb\xb8|T\xe8O\xaf\x00\\\x1b\xc7\x88Bj\xb8\x0f\x93\xcb'\xfe\xe9\xde\xab\xf3>=\x965\x17E\xef|K\xae\x08\xee\x81\x91_/\xcb<\x91#\x85\xb7I\xcd/\x02\xc0\xe1;\xe8z`[\xda\x18\x11\xbb@s\xccZ\xad\x11\xf3\x92;}|\xe6\xc7'\x82\xbe$\xf7L\xfc\x03b\x07*b\xc9\xd5\xf8\x12\xbb\xfc\x9c7\xe2>e7\x96\x89|\xff\"S\xdbL\xf8A\x8c:*\xe3\xe5r\x07\xdb\x9aI\xe0X\x9d\xd2\x92\x9b.9L\x1f\xc3Z\x84d\xe6\x96\x89Cn\xa9SV#L\xc9m\x02\xf7\xfd\xd3e\x9a\x00\xc5k\x94\xb34\xe9\xe0\x00i \x18\x96\xec\x92\x86\xd7\xf1#\x9f7\xe6X#\x985o`o\xc1W\xab%\x9a\x93;\xac\xdbg\xb1|\xd1a=O\xb8:?\xf2V\xec\xea\xbei\x94\x03*\xe6)\x137\x9e\xf7\xd7\xb6\xb78=\x99\xa3\x8c(\x9b\x03\xd4\xdf\xc7|j\x15\xab\x82\xac\xed\\\xa7W\xee\xf4\x9f*\x97\xc8`\x93\x17\xedK\xdb\xd5b@\x81\x96\x9b\x0d)\xc4R\xbaA\xc9\xed\xa9\xba\x81\xffE\xbe\x95\x06B\xf5P4{\x10d %\x933\x95\x1e\xe3\x14d\xccX\xdf\xe7\xbd\xc29\xdfR\x88\n\xab{\xdaeS\xf8\xb7d\x97\xf5\x97\xaf\xef1~z\x06\x17\xbc~|\x80\xab\xaa\xa2J\xb9i\x0e/\xff\xf0\x07\xcbZ\xf6\x86\x10q?\xffs\x98\xcdf\xe6k\xb6y\xc5P\xbe5?\x84\xf2\xed\x8cW\xe9MA\xd6\xc7\xe2\x9e~\xe3\xe3\xb6{\xf9\xd3%\x1c\xf3\"?\x8a\xc6]\x91\xe3\xdf\xf32\x1f[\xef]\xb6\x95k\xb89[\xeb\xf6\x99E\xb7\x7fEwhr\xe5\xc2s\xe1\xac\xf1\xafM\xa8\xbd\x94\x1e\xbf!d\x96d\x88R\x07\xe5\xc9*\xf3\x17e\xbbk/\x0f\xbf\x88]\xab\xf5;\x8bZ/\xb6\xec\x86\xe4\x16\xc5\xca\x1a\xbe!\xe4x6\x9b=\xb6\x19\xa4T\xea\xb1\xf59a\xb8B\xedc\xb5\xce\x0b;\x97J\x7f\xf5\xfa\xc3\xcb\xcb\xf3\x8b\xab\xf7\x97\x8fM\xab\x0b\xa8*HC\xb7WBV\xc3\xae\xee?Z\xd4\xfd=1kZ\xa8\xfa\xec9\xfc~3\x9f\xbd!\xe4\x97\xd9l\xf6\xab\xf9\x05\x94oO\xb8\x7f\xca\xdf\xdaH/\xebGT\xd0\x1b\x94\xf1N\xb07\xcc\xa6\xdev\x8d,\xd5I\x97\xad\xca|\xcc\xd7\xbb\xea\x88\xca\x8a\x81&\x9e\xfa\xb7\xe7\x90\xa7\x99u\x80\xd8\xebh\x18 W\x82\xf1\x92\xdcV\xf3\xbe\xde\x89\xc0|\xbb\xf3\xdd\xf4\xca$o\xd2\xdfV\xe1\xe7\x92\x1a\x9c\xa1G\x1d\xbe\xd9)\xdft\xcf\xc4\x0f\xdc\xaf}\xc47M\xd5\xea\xc9WVn\x19\xfc\x0f\xd2:\xfa\x0b\xaf\x96\xa9<\xdb\xeaM\xe3\xde\x8e\xbe\xf2\x9f\x157\x89\xe9 \xc2\xa3\xd3G\xfdE\xab5UWInQ\xb1\xb2\xe0\xa3%!\xb39*Dc>\x9fng\xff<\x92Z\x91\x1b-\xf3\xbeRT\xe5\x88\xbf\xc3\x97\xd3\xde\xc7\xfe\xfa\xe1\xfd\xbb\xfe_\x9f?\x7f\xfe\xdc\xdc\x9f\xfc\xfd] D:\x9f\x84O\x03\xcaq\x92\x9b\xba\x92V\xb9\xe7We\x86\x8a\xfe2\xf7\x8bb\"\xb1\xd2\xce\xcd9\x01\xbc\x9e\xe3\xc5b\xe7\xf0\x9c(?\xca\x10>\xa9\xb9\x1f\xf2\xc0\xc1\xa7?s\xf5}R\x91\x80\xca\xbd\xabw\xc6LO%g\x96]\x07Jn\xf9\x9c\xb2\xdb\xf5.\xd3\x0c\x9b\xd7\x0b=\x0f]\xe0\x82\x92\xdc:\xecTxk\x99\x16\x94]\x8b\x9e}\x0eO\xcd_\xa8^\xe2F\xa8\xdfy6|\x15\x03\xb0\xd6\xf2H\xe8\xf4\xe8\x0c\x8e\xbaFcS=3\xd9\xf2\xa3\x13[\x99\xa2\xcd\xef\xd0\x9a\x97\xfb\x1f\xb2I\xffi}\x89\xb7\xb9\xf5\xce\xd0\x86\x9f/\xd5\xee\xacis\xd2JR\n\xf78\xcb\x9e\xdc\xe6\xe4^\x9e\x95\xb9A\x14\x90>\xafb\x1e\\MS?\x91\x8e~\xcb\xfe\xe5$X\xfb<7\xe4|\x05H\x9aq\x7f\xe1\x9f\xc4\xc0\xd3\xf6}C\xb2E\xe3$\x8d\x18\xb6i^\x8d\x0bP\xa185,\xfa\xcb\x15\x9f\xadF\x06\x1c\xf3\xf9J\xabd/\xee\xa3C\x93?\xfd\xfd\xa7\xc7\x96A4\x95m5?l7/\xa1&^\xec\xd3\xd9\xb3\xa7\xcf\xe8\x91\xc5L\xba\xfe\xda\xd8Ij\x00A\xa1LML\xa5s\x13\x1ey\xa4\xd6\xa0A\xe4\x91\xdaT\xf3\x95\xf3H\xfbO\xa8\xd5\x10\xc9q\x14\xd2:\x1ezy\xf1\xb2\xabQ\x91P\xda\x90H(\xed\x10\xfb\xc4\x19!\xdc\x08\xe1F\x08WI\x84p#\x84\xdb%\x11\xc2mI\x84p#\x84\x1b!\xdc\xa6\xb8:?\x11\xc2\x8d\x10n\x84p#\x84;<\xf8\x1d!\xdc\x08\xe1F\x087B\xb8]\x12!\xdc\x96D\x08\xb7K\"\x84\x1b!\xdc\x08\xe1\xba\xd8\xd6A \\S\xc2\x84x\xc4\xdc\xf9\x98bAG\x1c\xc3<\xd7\x05\xe5\x12L\xc0$\xb0\xf0\x08\x9c\x1c\x03'\x0e\xc1\xc1\x18\x04\xac\x97?\xe0\xe6\xc0L\xca\x1d\xf0a\x0eL\xcc\x1b\x08\xcc\x1a\x08\xcb\x19\x98\x8a1\xe0\x0ci;\xb0\x05\xbc\xb8\x02f\xc8m\x18O\xc0\\fo8|2\x86\x80\xaf2}\xd8\x01n\xfa\xf2b\x06\x0c\xe4\x05\xf4\xc3\n\x13r\x02\x9c\x19\x01n|\x00W6\x80U\xcbC\x98\x00><\x00\x13\x0b`\"\x0e\x80'\x03`\x1c\xfeoA\xd6}\xb0\xff\x00\xc8\xbf\xa5v\xbd\x96\x1e\x0c\xf3\x0f\x88\xf8\x07\xc3\xfbC\xa1\xfdNX\xbf \x8c4\xe1\xfc\xd3\xa3\xfcA0\xfep\x08\xbf?\xbe\xef\x85\xee\x0f\xc0\xf6}\x91}#\xaeo\xae\x9d+\xee\xea\x8e\xe9\x0f@\xf4=\xf1\xfc\xde\xe6\x86\xc2\xf2\x03\"\xf9ap\xfc0(\xfe4\x96\xe4\x85\xe0\xfb\xe0\xf7\xfbKfc\x17'0\x0b\xaf\xe3\xa0\xea\xf0g\x0bR\xa8K\xbcIdO\xe2\xc1\xcf\x0e\xb1\x03/.\xd0\x8b\xb5\x8dZ\xdc\xa2\x17R|\x01\x18ca\xdd\x01\x08\xa3\x0f\x1e\x08\x84 \x0f\xc3L\x06\xc4\x1c\x06\x8a\x99\x00\x8c9\x10\x1cs\x10@\xe6\x10\x90LHPfRX&(03\x194\x13\x16\x9c \x04\xcf\x84\x04h\x02A4\xbe Mp\x98&0P3\x00\xaa \x0c\xd6L\x02\xd7X\x01\x1bgw\xc2 \xb49 l\x13\x0f~\xeeK`\x08'4\x883\x1d\x8c\xe3\x81=8A9\x9e`\x8e5\x92:\x10\xd0\xb1\x97\x1b\x0f~\x1ad \xc0\x13\x0f~J\x19\x08\xf7\xf8\x01>\xf1\xe0\xa7\x13\xf8\x13\x04\xfeq\xa8c<\xf8\xe9\x0e\x04\x85\x83\x82\x1c\xc1\xa0x\xf0s4,4\x04\x18\xf2\x84\x86\x06\x81C\xfe\xf0P<\xf8\xd9%\xa1\xc0\xa2\xa0pQ(\xc0(\x14d4\x9dmy\xc1F~\xc0\x91\xdb\xc1\xcf\xc69\x96Zi\x9d\x19~\xc5C\x8d,\xbc\xe2\x0fj\xd6+d\x9eT\xbc\xd8\xbbP\x11 \xd0\x0d\xd9\xd0\xbd\x8f\xb7\x1e\xecYb\xbc*P\xce\xaa\x83=\"\xe0\x86\xc4\xc9\x1e\xf1\x03.~\xd5\xff\xc2\xa6\xd3=/\xf4{U\xf2\xe3%\xc6 _\\h+U\xe5p\xef`\xf7\xbfE\xe7A\x9f\xaa<\xf5\xe3Wv\xd2\xa7Rs\xb7\x87\xddhI\xf5\xac<\x02\xbb\xfb_\xad]>\x96k\xaam\xa9\xb5)\xc6:\x83\xb5\xde\\T\xf9#\xa9\xc2\x8d&\xaa\"5\\\xab/\x99W\xe3\xa9\xa4X5PL\xa1yM\x05\xf2\x89\xb4?n\x03\xb0,\xf3Eo\x14M\xa9m\xfa\xb6`S[\xe6\x987Dw_\xabA\x86\xa6\xa0\\\xc6#y!\x8f\xa8\xb9e\x16\x0b\x83~+S\xe7\xa9\xf96\x94,a\x8eh\x9a\x88%r\x99f\x0c\x17\xdc\xde0\xde=\xde\xbf\xad\xb0\x9a\x1a8\x99\x1b8\x82\xa7\x8e}\x05\x1e1D)\x93B\xa8\xc3@\xd4p0\xea!\x80\xd4 \xa1\xd4C\x81\xa9\x93\xc0\xa9\x07\x03T\x0f\x04\xa9\x1e\x06T\x0d\x0b\xabN\x0c\xac\x06\x86V'\x04WC\xc3\xab\xc1\x00\xd6\xb0\x10k0\x90\xd5\x1ff=\x00\xd0\x1a\x1cj\x1d\x04\xb6\x06\x87['\x02\\\x1d W\x0f'\xc4\x11v=(\xf0j\x82^\xd5m#\xdfs\xafU$\xc2`\"\xb7\x87\xb2\xbf\xff\xfa\xdb\x07\xfe\xff|x\xf0A_\xf0IO8\xb8R\xeb|\xf1\xd7\x8b\xd1^\xe9\xfb<\xcej\xf7\xe7C\xe4lo\x19\xeb\x12\x99\x9c{\x12\x99\x9c\x1d\xe2\xb2\x1dq\xd9\x8c8\xce\x02>\x1b\x91I\xb7!C6!\xa1\xb6 \xe17 \x93m?\x0e\xb3\xf9\x98`\xebq\xa0\x8d\xc7A\xb6\x1d\x87\xd8t\x84\xdcrL\xba\xe1\x08\xba\xdd\x98l\xb3\x11v\xab\x11h\xa3\x11r\x9b\x11h\x93\xe1\xbb\xc5\x08\xbe\xc1\x08\xbc\xbd\x18\xb0\xb9\x08\xbc\xb5\x98dca\xddV8\xba\x13\x8e[\x8a\x03n(\xfa\xb7\x13\xee\xceOdrF&gdrF&\xe7p\x0eLdrF&gdrF&g\x97D&gK\"\x93\xb3K\"\x93329#\x93\xd3\xc5\xb6\x1e\x9c\xc9\xa9\xc8d\xb5r\x02r\xcd\xf68XA\xe8\x9d\xcd\xa6\xf5f\xad\x9f\x94zf#\x9b\x05h\xe8\x08\xba*\xf5c\xa9\xd2\x8a\xa6*b\xde\x9a\x8cJ\xc5\xea\xaf\xf4f\xe6\xa5R\xf5\xeb\xd7JL\xfd\x82\x018+\x01\xd59`\x16pbh\x8b\x91\xac\xe9@D\x1d\xd3\xa6\x89f\x84\xb6\xd8f\x88\xd6\xd3vBjpJ\xaa\x93 \x82\xa3\x19\x82#\x16\x0c\xee}\x07\x1eaQ-\x93\xe2\xc20\x10\x1b\x86\x80\xf80\x1c\x04#\x86)qb8\x18V\x0c\xd3\xe0\xc5p8\xcc\x18\x0e\x85\x1b\xc3\x81\xb0c\x08\x8c\x1f\xc3\xd4\x182\x84\xc6\x91aJ,\x19\x82\xe3\xc9\x10\x0eS\x86\xc0\xb82\x84\xc3\x96a\x00\xbe\x0c\x87\xc0\x98!<\xce\x0c\xc3\xb0f\x08\x8f7\xc3T\x983\xb8\xe0\xce\xe0\xe7\xba8\xe2\xcfpX\x0c\x1a,8t8b+\xf4z\xb4\xb59\x8c\xff\xef#:\xe00\xdf\xee6\xbb\xee.l|\xb9v\xc7\x9f>\xb6\x8a\xf2\xfa_5\x97\xb6kG\xba\x13\xab\xfblw\x9c\xf5%\xa8f\x82\xa5\xd5\xe2\x9clMu\xed\xff\x9a\xbc\xe8\xeaRV\xb5G\xaa\xeeg\x85\x0d\xa2T\xae0\xf2\x16Wq\xaaw&\x7f7\x14(\xee\xe7\x13E\xf5_\xe2\xdag\x8a\x84\xa1\xb1\x97\xb3\xf5\\`\xd9\x16\xa5\x1a\xe3\x06\xa3\xba\xf2\xb1\xef6\xd0\xda\x0cn\xda*\xd6\xd5W\xbf5\xd3\xf0\xca=\x12W-\x9e@\xca\xa8\xf6%(\x94\xb94\xde\x85\x9c^\xefS\xba\xdf\xf7\x0669u\xa2\x93w\xd4\xaaE0\xa7\x91O\xbe\xffs\xe4\x93w\x88}:t\x8b!8\x8d|\xbf\xd8\xc1\xa4q\x83!1\x83P\xf1\x82\xf0\xb1\x82\xc9\xe2\x04\x87\x89\x11L\x10\x1f8Pl\xe0 q\x81C\xc4\x04B\xc6\x03&\x8d\x05\x04\x8d\x03L\x16\x03\x08\xbb\xff\x0f\xb4\xf7\x0f\xb9\xef\x0f\xb4\xe7\xf7\xdd\xef\x07\xdf\xeb\x07\xde\xe7\x0f\xd8\xe3\x07\xde\xdfO\xb2\xb7\xb7\xee\xeb\x1d\xdd \xa7=\xd6A\xf7\xf2\xa6}\xbc\xab\xf3\x13\xf9\xe4\x91O\x1e\xf9\xe4\x91O>\x9c\x89\x17\xf9\xe4\x91O\x1e\xf9\xe4\x91O\xde%\x91O\xde\x92\xc8'\xef\x92\xc8'\x8f|\xf2\xc8'w\xb1\xad/\x84O^\xdf\x00\x07\xa0>\xef>\xb7\xc3dg\xb7\xb8\x1ecj\xeco[\x90\xa6\xc2/\x91\x9a\x9d%\xb9Y\x82\xd8\x12|S0S\x05v\x8ap\xd3*\xcd\x1b\xa5\x08\xe4\x92\x1b\xa3\x19\xbc\x9c\xc1{\xben\x92\\lY\xc9rI1\xe3;\xc2fu\xa1\x16\xb2\xa6\x98\xb5\xa9\xe3?+n\xb7\x96\x9d\x02\x97(\xa3\x834\x08}!\x8b\x0e\xd5\xcaZ\xf7i\xb7\x15=PM\x14\n\xce\xcb5.\xd2D\xffM\x0cqEO\x95\xb1\x9b\x1b\x9c\xeb\xee(\xf3*\xec\xd5\xf2o\xcfEi\x19\xa6t\xa7X\x19L*)\xef\x80[l\xd2\xb2\xd2l\xb3\xc8\x07Qs\x0bd\xeePt\x96\xaeSW=\x8bg56\xdb\x879\xcb@i\xdd\xc2\x15\x92[fM\x14n##'\xf5?\x9d/!\xc3K\xa6\"s)\x93\xb3\xb1\xf6GE\x9cW\x0e \xf9\x11\xae\xf1\xf9\x160Jn\x00m6_\x9cn\xebX\xfa\xee}\x93\x86ko\x08\xaa\x0b\x16\xad\xe6S\x16\xf0\x7f\xa4\xf9\"M\x10\xc3\x15^\xa3\xf4*\x1eTFW/.\xcd\x93\xac\\\xb4|V$\xbfR\x81a\xad~\x14\x90j-\x1e\xcc\xd7\x9b\x1a\x0f%\xcd\xe1\xe39m\xf5[\xab\xda\xc2m/0UP\xba\x18r\xbb1\xca\x87\xe1L\x8d\xb0t\x95\x0b2\x8f\x1e\x95\xcdb\xa5\x06Bt\xeb\x9c\x90\x0c\xa3\xdc\xd4y\x05\xbe\xc3\x05\xed=\xcb\xd3\xea8\xf5t\xbb\xd3\xd2\x1a\x17\xa3\xc0\xddc\xa3Q\x0e\xff\x06\xce\x85\xc7A\x8a\x05.\xda\x91\xb9\x0fi\x9e\xe03\x90\xe7m\x9e\xd0\xc5-|;\xfb\xe3w\xc15d=\xf9\xb3\"w\xd5\xa1\x1f\xb1X\xd3\xd3_\xe4\x7f\xafyy\xa6C?\x17\xe21Q\xe9\x14\xcb\x03?\xbb\xe5^[\xe9\x8a\xdc\xc1\x9a,\xca\x0cw\x1e\xfb\x99\xcdNg\xb3S\xb6\xde<\xa1\xf7h\xb5\xc2\xc5\x93\x15\xce\xbb\xea&T3S\x0f\xcd\xfeAI.?\xaf\n\xfd\xcaN\x0b\xdd\x11\x96\xe6\xabk\xd9\x11\xdd!\xa1Fk\x1a\xcf7\xeeO\xa8\xf5H\x813\xa4.\x0d\x90\xcf\x07\xa3\xa2\xe9\xea\xe0\"%\x0b3A\xc3\x8a\x964\xda\xf9\x16\xe7+V\xdd\x07!?\x03\xf23]\x8dY\xe0\x0d\xa1)s\xd7c\xf3\x05\x07E\xaa\x17\x82ir\x9d\xe6\xd7\xea\x1b6=\xf6\x93m\xc0F\xb8\x01\x97\xcaJ\xb1WY\xca\x02\xe7dm\x0bf:\x19\x00\x17\xb4\xe6\x0b\xd5D\xc5\xb9\xe2Y\\^\x92\xb4F\xec\x04Fnq\xaeb(\xb2\x89zy\xe5;Z\x94;4\xc2\x86\x83\xbe{\x7f\xf5\xfaL\x04\x8c\xe4\xf3*\n\x93\n@\xed|\xf0\xae\xed\xe5\xeb\xbf\xbe~y\xe5\xfd\xda\x9b\x17\xe7o\x8d/\xe9\x83\x8b\x03\x15\xeb\x13I\xd10\xed\x07a/\xa2\xb7\xc5\xbe_\x0eX\x15\x0b\x12\xbfa\x11\x020\x9d3\xae\x1d-\xb7\x8c5\xa3\xc9\x18\x9b\xdd81\xae\xbd>\xf1\xd9\x0d\x95\xe7\xa3k\x80\xb4\xf3\xd7\x9bf\xb7_\x81\xe6\xef\xb5D\x0b\xd5IY\xf9aX\x94\x85\xce\x9f\xa6\x08\x00f}\x19\xb3\x0d(\xb1\x18\xfa~m\x1b?\xbbUVR\x1aB\xd4U\x0e\xac\xfdJ\xca\xbf\x1bj\xc7\x8d\xadv\x12\x99\xafQ7\x88\x9a\xab(.\xec\xf2\xae\xa2\x1e\xc6\xfb\x95\xd4\xbfL[\xcd9\xc69\x14\xf8\x1f\xe2\xdc\xb1wm\xe5\xec\xb1_W\xf9\xf7ik\xbaDif\xaa\xe22\xcdQv-3:H\xd4\xc7\xbe\xe2L\x06\xfcom\x0f8\xafq\x00hN\xb9\xdf>Yy9\x99\xb0\xa8k\xbe3\xb9\xbe\xc3l\xaaB\x1b\x0b\xc4\x15\xef\xbdK\x99\"bg<\x94\xa1|\x81\x8a\x85\xcc\xbf\xa1\xb2\xa6\xac\xc8\x1d.rq#\xf7n\xa6\xef\xfb\x08-\xe7\xeb\x94]\xb3t=\xe5\xc9\xa7\x05b\xf8 /\xb3\xf7Y\x9d\x9f\x05\xe7\x8b\xc3\x7f\\d\xe9\xb0gB\xb2\x13\x84\xa4X\xb3!9\x0f*\xf7a\xe5\x98\x13\xc9Yy\xe0\x9c\x17\xc9\xa3H\x1f\x17g\xda\xecH\xae\xf9\x91\x0e\x90!iL\x8e$\x95\xfa\x8c2T<\xc0\x18U_\x7f\x80!\xda0\x1c\xed\xfc6\x9c\xca\x84\x14Xu\xd5\x9a\xef~\x0b\xb5r:N~coee\"\xfeYO\x87\xc9\xe2\xad\xac\xf1V\xd6\xfa3\xbf\xf9[Y;\x9b'3\x02iZ\xadSR\xa0\xbeRNw4\xe6\xcb\x8b\x97]\x0d\x8a\xa9\x82\x1a\x12S\x05u\x88}\xd2t#\x1f;\xcd\x0f.#d'\x93\x12\x8e\xd9\x00\xb2q(\xa2qx\x92q\x17\x1c7\x88`|\x18r\xf1\x04\xc4\xe2\x03\x91\x8a\x0fB(>\x04\x998$\x91xR\x12qP\x02\xf1d\xe4\xe1\xb0\xc4\xe1@\xa4\xe1\x90\x84\xe1@da_\xa2pp\x92p`\x820\xf3'\x07\x07&\x06OB\n\xb6\x12\x82\x1d\xdd \xa7\x9d\xd8AI\xc0,\xa6\njIp\xb2oh\xa2\xeft$_\x0f\x8e\xa9\x13\xb9\xd7\x93\xd8kc\xae\x0d%\xf4\xda\xca\x8d\xa9\x82\x0c2\x98\xb0\x1bS\x05\xc1\x18R\xae\x1f!7\xa6\nr\"\xde\x06!\xddZ\xeb\x18S\x05\xf9\x10l\xc3\x91k\x1d\x89\xb51U\xd0h\x12\xed\x10\x02\xad'yv\x10q\xd6\x9f4\x1bS\x05\xedK8blPRl(Bl(2\xecT\xb6\xe5I\x82\xf5#\xc0:\xa5\n\xd29P$\x07\xaaV\x9e1]P\xf3\xad\x066\xbb#S \xa4V\x03Mm\x1f\xe8\xb0\x0c\xc7\x87c4v\xb2\x02\x1f\x88\xb1\xe8X\x97\x90\x8c\xc4N\x06\xe2\xe1\x19\x87&\x86\xe1a\x19\x85\xfb\x0c\xc2\xa9.\x90\xec\x88\x80uq\xd5}\xd8\xe9\xb6ad}\xdc\xc4@w\xe4\x9c;\xb3\xcc\x9dx\xe5^Lr=i\xde\x11\xd6\x88\x995\xa6J\xf1cc\x8e\x92\x7fA\x8bE\x81)\xd5\xd0|}f\xdc\x95\x14\xa8\xefu\xc5\xd5\x04Ez+_=\xd0\x9ad\xe5\xbdi\xaa \x98\xc2\xb2 \xeb\x07kE\xbc\x00|\xa8\x06\xa1/\xee\x1d/\x00\xafdb5\xdb/\xa9\x8e\x17\x80\x87\xd3m\xbc\x00<^\x00\xfe\xafx\x01\xb8^\x95O\x7f\xd9\xec\x92\\\x1a\xef\x00\xd7N\xaaNk\xba\xd9Q\x7f\x05\xc5l\xc79\xd0\x8f\x9e\xbf\xd2v\xd1\x99\xd7T\xfd\xf6\x95\xa6551\xeeF\xf1\x8ck\xfdef\xd5Y!n'F\xad5\x1d\xa9\xb5I\xe0\xd4,p\xe4\x02:\xb6\x0d< q)\x932\x02\x87q\x02\xc3\xb1\x02\x0f\xc1\x0b\x9c\x90\x19x(n\xe0$\xec\xc0\x83\xf1\x03\x0f\xc4\x10<\x0cG0,Kpb\x9e``\xa6\xe0\x84\\\xc1\xd0l\xc1`|\xc1\xb0\x8c\xc1`\x9cA\x7f\xd6\xe0\x01x\x83\xc1\x99\x83\x83\xb8\x83\xc1\xd9\x83\x13\xf1\x07\x1d\x18\x84\x1eN\x88#\x8b\xf0\xa0\xdc\xa3\x96\xdfS\x97\xc8=\xda\x93\xc8=\xea\x10\xfbT\x18\xb9G\x91{\x14\xb9GJ\"\xf7(r\x8f\xba$r\x8fZ\x12\xb9G\x91{\x14\xb9GMqu~\"\xf7(r\x8f\"\xf7(r\x8f\x86\xa3\xb6\x91{\x14\xb9G\x91{\x14\xb9G]\x12\xb9G-\x89\xdc\xa3.\x89\xdc\xa3\xc8=\x8a\xdc#\x17\xdb\x8a\xdc\xa3\xda\x0f\xe3\xb9G\xf1\x9e\xba\x01w\x1d\x19\x94\x1b\xef\xa9;\x88\x9a\xed6\x1c\xef\xa9\x0b\xa7\xdbxO]\xbc\xa7.\xdeS\xb7G\xbd=\xfd\xa5bI\x9a.\xaf\xd3\xc41\xcd\xc2U\x9c[}mm\x9a\xcb\x81\xc8\x8dR\xa2V\xfac\xe7\xafN\xf4S/\x16\x8b\xc2D\xceU?}\x9d\xdc\\\x13wc\x14\x0f\xcd\x89Y\xeb\x04\x9681\xae\x1c8\xb5\x0e\x1f\xb3\xf1G\x99\x03\x9b\xd6\xca\xa5\xb5*W\x8a]\xc5R\x9cX\xb4\x0em\x97b\xd3\x80\x14\xc7\xe2\\a#\x98\x98;\xeb\xc6\x9c\x0d\xce\x9b\x1d\xc6\x9auS\x9a7cV3c{\xcas\xe1\xcb\xfa$$S\xf5\x1b\xc0 \x84\xcb\x8b\x97\x1d\x15\x88\x94\xc0\x86DJ`\x87\xb8L\x99,R\x02#%0R\x02!R\x02#%\xb0G\"%\xb0%\x91\x12\x18)\x81\x91\x12\xd8\x14W\xe7'R\x02#%0R\x02#%p8\x99\"R\x02#%0R\x02#%\xb0K\"%\xb0%\x91\x12\xd8%\x91\x12\x18)\x81\x91\x12\xe8b[\x91\x12X\xfbaJ\xcaO\x05P\xf7\xb5\xaaz\xa0u5\xa4\x04\xc5\x14z\x87),\x0b\xb2n\xb4\x8e\x06n\xde$\xbc\x0eqU\x9b\x81\xc8Q\xbf\xe9M\x939\xc4b\"b\xc1\xcdK\x00\xef\x08\xc3\x9d\x84\x8dZ!\xea\xe7\xaf\x8c\xb4!\xb4a\xc2\xd6FQ6\x8c\x97\x14:\x04\xb1\xac\x97\x13:\x94a\xba\x94\xd0\xe9u\x97\xcb\x08\xad\x055Lb\xeaK\x08\xf7\xc1\xf2\xda\x17|\x00s\xf1ZG\xfdc\x06\x9d=\x89py\x87\xd8g\x84\x08\x97G\xb8<\xc2\xe5J\"\\\x1e\xe1\xf2.\x89pyK\"\\\x1e\xe1\xf2\x08\x977\xc5\xd5\xf9\x89py\x84\xcb#\\\x1e\xe1\xf2\xe1@C\x84\xcb#\\\x1e\xe1\xf2\x08\x97wI\x84\xcb[\x12\xe1\xf2.\x89py\x84\xcb#\\\xeeb[\x11.\xaf\xfd\xe0\x88'K w{\xd7\xff\xcf\xde\xbf\xf5H\x8e[\xf9\xde\xf0\xfd\xfe\x14\x0b~/\xdc\xc6\x9b\x07\x9ff\xcf\x9e\x06\xf6\x03tg\x95\xb7\x13\xe3\xa9*\xd4\xa1\x8d\x99\xc1\x83\xb02\x82\x19\xa1N\x85\x14\x96\x14\x99\x95\xbb\xed\xef\xfe\x80'\x89RP\xe4\xa2\x82TUg\xafuaWgH\x14IQ<\xfd\x7fk\xf1\xb1j\x99\xeb\xe8\xae\x1f\xf8\xef\x9d\xc8,\xae\x96\x02\xf36\x7fd\xe5I-\x0c\x14fq\xaf\xfa\xe1\x85i\xcb\xa2\"\xbe^!\n\x15O x\xf3\xc8s\x8a\x0b\xaf\x93\xf3O\xe9\x92\xbb\xf4\xaed\xb0\xbbC =\xbfk\xb6\xceZ\xfe\x01\xbe\xab\xd9=\x9f\xfcI=\xe2o\xf2A\xcd\xdf /\x9b\x96e\x1b\xa9V9S\xeb|\xdeE\xe0\x95R\x7f\x16\xee\xdeS,\xbc6r\x82\x9a\xdf\xc3\xdf\nV~\xa3\x9e\xfd\x1b\xf8\xdf\xff\x1b~\xf775\xd9\xcdZUx1P=1\xb1\xcb\xf8\xbb+\xb8-!+<\xbb\xabr\x0fs\x9d5\xac\xb9P\xbb\xb8\"\xaf\xe3p??\xbc\xfd\xf8z\xf5\xf6\xdd\xc7\xdb\xb7oV\x9f\xde|x\xf7\xfa\xe6\xf6O\xb7\xaf_\xb9\xd6\x0d\xa8\xb7\x06\xc0\xca\xa3'\xb0\xc2\xe5\xd4\xd3\x03\xee\xfa\xcf\xd7\x1f\x02\xae\xfe\xee\xfb\x0f\x1f\xbf\xbb}\x13p\xc7\x9b\xb7A\x17\xaf\xfez\xfb\xf1\xcf\xab\x1f^\x7ft\xdd\xa6i\x82\xe0\xe2\xabV\xe2\xff\xa4\xbe\xce\x13\xeb\xfc_\xb24d\x03\x93\xe6of\xd2\xe656\xdb\xbd\xbe&g\xbb\x07\xd3\xf0l\xf7y\x9a\x9f\xfd\x16T#\x946\xbb)\xf6 \xe0\xfb^i|\x12\xf0VvkL\x84\x92\xcbZ5\xa5\x92\xaa\x02\x1f5tKG$\xa7\xd0!1\xf9\xb0\x02D\x884\xa6\x1b\xc7d\xc5\x18,SY]V\x073\xdb\x9eM\x17\xdb#\xff\xf3\xf5\x87o\xc7\x7f0\x1e\xf1\xac\xa6Z\xf3\x1f\xa0\x1a\xe0\xb7\xb6?\x0e\xc2\xa0H\n\xed\xcc\xa7\xbdy\xfb\xed\xe8\xbf\x07\xf5uv\xea}\x0b\x1f?\xa7\xffe\xf8D\xb1\xe9\xf0\xc8\xda\xa0g\xcb!\xd7\xdf\xbb\xa0;\xac\xb0\xaf\xe5\xaf\xe2\xf1lc|1}\x99\x8ee.\xa0 Q\x1c\xfe\x11\xf0\x7fx\x12l\x0eE\xee\x0d\xec\x83\x88\x8066u\\\xdf\xaf\xec7N-\xd3\xb0\x95\xc1\x8bo\x14\\\xbe\xbfr\x8a\x17\x9cL\xe6;\x99\xd0\xba*\x9b\xbc\xd1\xa7\x0cwT\xec\xed\xab\x0b\xd9\x07\xf19\xebE\xb7\xdb\xe8m,\x83B\xc8\xd5\x90>\x05\x90\xdf/'\x84\xb2S\xb3\xaa\xbatN\xa6W\x85\xa6s2}U\xf3K8'S\xec\x1d\x84\xf0\xbdr\xa3\x82\xc2a\x81\xbf\xcd\x11\xdfk1\x7f'H|/\xf1\xbd\xc4\xf7*#\xbe\x97\xf8^\x9b\x11\xdf;2\xe2{\x89\xef%\xbewh\xd8\xc9\x0f\xf1\xbd\xc4\xf7\x12\xdfK|\xef|2\x8a\xf8^\xe2{\x89\xef%\xbe\xd7f\xc4\xf7\x8e\x8c\xf8^\x9b\x11\xdfK|/\xf1\xbd\x98\xb6E|\xaf\xf1\xc3\xf9|\xaf\xf5\x105:!\x13\xe6V.\x9d\x90\xb9H5\xfb\xdb0\x9d\x90\x99\xaen\xe9\x84L:!\x93N\xc8\x1c\xba\xb7\\\xff$0/\xd7\xd1\x98\x82\x153\xbd\\6\x96\xe30\xab\xde\xdf\xe5\xf6\xd5\x85d\xc7&\xcf\xc3\xfc\xa1\xe7\xf3^\xa0\xef\x8b\x8b\xd18\x8b4Cy\xae\xa0D\x11\x14S\xe5\xf1YA<\xc8G\xb9c\xb5\x8e\xb8\xbe*3Rx\x13<\xd3\xe7dq\x8f\x93\xc4\xfe&Kz\x9b\xa4\xf45\xf9\"\x9e&8?\x13dw\x14\xf2eD\xf60A\xf9\x97xW\x0fC\x9b\xe3[\x82\xab\x82(~%\xf1\xbdJ\xec\xe8{(\xf9N\xe0\xbb0\xcf7C\xe0\xbb\xc50\x93\xa8\x96\xc0w\x02\xdf |\x07\x02\xdf |\x9f0\x02\xdfGF\xe0;\x81\xef\x04\xbe\x0f\x0d;\xf9!\xf0\x9d\xc0w\x02\xdf |\x9f\x8f\x0c\x12\xf8N\xe0;\x81\xef\x04\xbe\xdb\x8c\xc0\xf7\x91\x11\xf8n3\x02\xdf |'\xf0\x1d\xd3\xb6\x08|7~\x88 \xb6\n!m\xaaD\xe2\xc7AY\xc4\x1f\xd4\xe1\xcf\x9dHv\xf8\xc2'?k\\q\x9f\x97m\xc7+fey\xcc\x8a\x95\x98\x8b4=PcC\x13\xbf\x13\x97\xbe\xeb\xae\xd4;V\xc0\x13\x14\x9f\xa5\xb8\x00\xfa\xb4\xe4\xf8g\xa5\x12\xc7\x89\xa9k^\x18\xa18Q\xbbc\xf3n1y7\x97\x06ur\xf2T-\xde\x06\xbe\xb0\x89\xe4\xad\x01\xf1D#\x1b\xbfT\x94x<\x95\xd8\xf5I{\xa3\x13\x92O\x8c\x84d\x8b-*$'\xdc?\x0e\xea\xc8\xf3\xf2\xbe0\xe2y\xda:\xf0[}\x89\xa2\xf0\xed\x9dB\x97\x90\xa3\xf7\xeeRR?\xbe\xb0n{T\x97c\xf3\xbe\xd1\xb0\xee\xba\xaf\xf0\x89nz\xe2\x8dL$g\xdd\xcd\x17M\xa7{k\xe7\xf5\xcb}3z\xff\xee\xc66\xaf\xa5>z`\xd4G[\xec\x17\xd9G\x8b\x95\x93c\x86\xfdN\xfc>\xe8\x9d\xa5_\x99p\xaf\xbc\xef:\x84~\x05f\xed\x9d\xaf\xae\xae\xaf\xae\xae\xdb\xfd\xe1\xb2y\xca\xb6[V_nYi\xcd\x90p\x96\xbaRW]\xfd\xd8T\xa5\xcc\x82J\xf5\x85u\xebf\xf5\x8fm\xb8D\x95\xefa\x18\xebZW\xb9^\x9e\xee\xab\xcd\xb1H\x17\xe9\x9a\xbf\xa7\xd5\x86\x95\x95\x83\xefG5[\x05\xb2\xb6J5]W\xb9\xd8\xef\xe0\xe9O\xdc\xd3\x8d7\xab:k\xd9J\xf2\x0dqr\xb1\xcf>\xe7\xfb\xe3^\xaf\xfb\x1c7C\xa1\xcf\xcf\x1d^\x1cA\xcf\xcfK\xfc\xf3\xb7UV\xac\xee\xaar\xc3\xce\xf5ISO\xe7 \xf2Fq`\xf5\x9a\xcf8d\xda\x90\xb5\xd5~\xca\xa9\xeb\xae\xa8\xd6\x0f\xcd\xea\xc0\xea\xd53\xcb\xcesYC\xfa\xc6u\xd9\xed\xe6\x082\x13<\xdb\xc03qr\xdf)\xcb,\xfb5\xd4\xc4GMsTgL<3\xf8_&Mq,\xe6\xef\xe3_\xc6\x14G\x8e\x96\xe8I\x8e\xb1}\xa4>1\xed\xee\x9c\xf5\xe0V7\xdcJ\xc7\x069\xd6^(\xd7\xa7\xbcm\xa09\xde5\x87L@\x91\xfdN\xf3\x03{\x0e\x9f\x10\x8d\xb2\xff\x0b\x9c\x12agD\x83 \x91>a\xa4{S\xc9fB\xfaU\x9f5\xd4\x9c{f\x88\xe7\xfbr\xa6\x80\x19\x8dh$2\x8dF\xa2\x81\xd1H$\xff\xe4R\x1eu/1\xd5\xee\xbb\x01\xc3\xec\xc4\xe4\xb8\xc2\x97C\xfd\xb9;\xfd\xd0s?D\xedcE\x17\x19\x95\\\x17\xc0\x11P\xeb\x81=\x0f\xb2\xcd\xff[\x8b\xa4]n\x15L\xa3\xcb\x99<\xe7\xbeiASd\xcd./\xb7\xe8\x89\xc1h6p\xba\xea\xd6)\xaa\xd7\xa6\xee\xc7\x8f\xf4'9\xfa\x05\x8e\xf5\xce\x1e\xe8\xbca:\xdf\x96l\xb3R\xeb\xc3\xa7\xbc\xdcTO3\x07LmF\x87<\xb98\xdc\xe7\xe5J=\x9a\xafI\xa3>\xd7\xc1\xf2o\xaa\xa7\xb2\xcd\xf7l\xf5c\x96\x17\xab\x8d\".\xcez\xaeh\x9e\xab{\xe1:V\x95\xabMu\xbc+\x98(\xdbY\xc9\xa2\x8as\xf2lY\xba\xd4\x0f\x1e|=\xdd\xee\xa7b\x80N\xba\x80\xce\x81\xe5N\xf6\xd4\xa3\xfe\xe0t\x02\xaa\xb6\x0d\xce\xde\x00P\x93\xac\xff\xd1g\x9b\xe6X\x8e\x1bi\x8e5a?\x879V\xf0\xb0\xce;\xa8\xbc\xdc\xae\xf2\xf2\xber\x8c\xee\x1f\xe4e\xb7\xfc\xaan\x8cW\xf7\x8a\x10gb\xa5_\x14\xd2\x15*k\xabZ\x0f\xc3\x83\x01\xdeLF\xfd\xfe\xc2\x86i^\x17_o\x13VP\xdb\xd9m\xafi\xb3\xba]\xed\xbc\x01HP\x89\xe1f\n\xd0\x8f\x08\x7f\x96\xb1\xc2\xb2V\x11\xa2]\x9b\x13GG\n\xe8V\xfa\x8do\xf8\x9f\x19\xbc}/~8\x96|\xb4w\xb8\xdd\xe5\xe5\x86}^\xc9p\x8f\x0b\x96\xca\xaf\xff\xf7v\xcb\xb3\xa8\x8a\x9d7\x90\x97\xebZxN\xf2\x81*[\xef\x80\x0f\xfbb\x10\xec\xea\xc4\x99\xdc\x93 ~\xa5n\xe0f\\\x85+\xbe\x98\x1d\nTx\x9f=K'b9y\x13\xd1K\xd8\xba\xda\xef\xf3Vz\x97\xb7*\xb8A^\xf2\xef\xf1G\xe5N'aw\xaf\xdf\xfa\xdf>\x88T\xbf\x17\x93\xd1\xbf\x8a9\xe1\xdf\xbaM\xac\x96\xd5\xfbn-%^\x99^<\xfd\xed?\xf2\xa6\xd1\xb7}\x9f\xb7\xdf\xf1o\xedo\xd3>\x1f\xb29\xac\x8ee\x9b\x9f\xdf\xa9\xf7\xef\x9b\xb7\xb9K\xfe\"\xb0\xef\xfcc\xbegM\x9b\xed\x0f \xb2\xa2^\xef\xe0-\xf2\x97-\xb3\x0b\x1b\x19D\xb6\xc8\x1fY\xc9\x1a\xf7a\xe7z&8]\x07m\xb5\xbfk\xda\xaatiR\xba\x06\xc6\xa1GO-\xa4)\xffu\xc7\x84c\xb1l.\xda\x8bV\x14v\x975p\xc7Xi\xe4\xce\x99\xd47\x0fy\xc1\xab\xa6:\xca\xd0C]B\x0dk\x7f\xa3\x03\xb66\xcc\x1bMc=\xfav@\xb6h\xe19\xcb\x17\xdc\x8f\xd5Z\xb9v\x88\xed\x05\xe1\xa5\xa6\x82\x11V\xe5}\xbe=\xd6l\x03\xfb\xbc\xb9c\xbb<{t\xb9\xfa\xefEK\xd5\xcb-\x11\x84\xd6\x15@2\xb8\x0d\xc6\xecs\xbe\x03\x95?x`\x87\xb6\x8f\x0bp,K\xc6\xc7a\x11\xff\x82\x7fjP\xb3l3\x0e\xb0;\xb67\x95\x0e\x02\xfc\xb7\x0f\xc7\xfd7\xb6O\xf67\x7f\x83\xacx\xca\x9e\x1b^\xe9Y\xd1\x0c?\xec\x1b\x99\x99\xc9\xef\x1a[\xb4\x1f\xf4[6&%f`'\xfd\xf3\xaf\x87\x13\x9d\xc9\xf4\x847AU\xe6mU\xab@\xe7\xb9\xc3WH\x7f\xbe\xc0\xd7l\x8fy\xfb<\xb1\x01/G<1\xc3R\x8b\x1e\xd4\xac\xcb4\xdfa\xe1\xde\xb9\x85\x7ffA\x07{\xd3\xc1\xde)\x0f\xf6\x06\xf4wm\x9eI K9pA\xcaK\xd8\xbe\x7fw\xd3\xef\x1c\xa8\x15\xeb\xd40\xfa\xb4c\xb53\xd0\xce\xba\xaaeZ\xc2\xb5\xa9\x96\x15\xd2y\x15\xf1\x81L\xec{\x98\xb55YE\xfa\xae\x0f\xd5\xbe/\x83\xcf\xb9\x08jv`\"\"\xc1\xf7Y\xdd\xbdD\x84\x8b\xdd\xb0\xaaD\x8bv9\xd9\x9d:\xec\xbaZ\x9bXw\x9a\xab=\xd4\xd6\xcdTB\xd7\x83\xe5\xa7\x93[\xed~\xa0]\x1e\xda\xe5\x19\x9b\x7f \xfby\xec\xf28}\xf8\xe8\x90\x97Y\x82\x984\xeb\x0c\x84\x0ey\xe9,r5\xfb\x0f\"\xa1C^\xd2\xd5-\x1d\xf2B\x87\xbc\xc0/\xe3\x90\x17\xb7\xeeq\xfd\xd3\xba*\x9b\x95\xda\x1dw\x1d\xf0b\xee\x15\x98\xa8\xc3xQ.Q\xc7\xb5\x08\xe1(SU)M\xc9!\xea\xe7\x17\xa6\x86(l\xba/\xbd\x0bx\xaan\x9b\xc6_@vgr\x1e\x93\xba\x18'\x0f\xc2\x15\xa3\xbb\xcd]\x8cf\x97\xd5\xbe76?\xef2u5\xfb3kW\x1c\x94 \x7f\xac\xd9\x9a\xe5\x8fl\xe3\xca'n\xe6)\xad\xefc\xc64?_e\xab\x15p\xf5\xc0\xca\x06v\xac\xd8\xc0\x9d\xfbx\x90\xac\x84l-\xa6\xe8jy\xe3\xa1\xb0\x9eJ\x19T\xb9*\x8d\xa6\xa4N\xc3\x10g\xbdT\xeb\\\xe8\xddz)\x0e\x8f\x95\x8c\xabR=\xc9-\xe2\xaa\xf4\xf0\x85\x88W{\x97\x15Y\xe9\xf2ZM\xf0Y;\xa3\x85HC\xb7\xa3l\xcfk\xeam\x907C@\x1a\x86\x0d2u%s\x919\xb10\xf6\xf5\x08\xfe\xbe\x80H:\"\xe9R\x92t.\nD\x9aX)\xd9\x16\x1c\xde\x80\x07S\x89][\x17I\x14\x0f\xf6\xc4h\x8f\xc5b\xfe>3\xe2\x1e\x0b~\xd0\x06:XTd\x95\x0e\x16\xa5\x83E\xe9`Q:X\x94\x0e\x16\x95F\x07\x8b\xd2\xc1\xa2\x86\xa1\x16b\xa3Y\x07\x1d,J\x07\x8b\xd2\xc1\xa26\xa3\x83E]7\xf9JI\x07\x8b\xd2\xc1\xa2t\xb0(\x1d,J\x07\x8b\xd2\xc1\xa2@\x07\x8b\xd2\xc1\xa2t\xb0\xe8@\x0b\xa6\x83EU\xb2\xd1\x0f\x16\x1d\x92DFr\x0e\xdeh\xa0\xc4v?\x9db\x85\x968\xbf\x91YBr\xae\x9e\xe1\xa0G\xce\xd5\x86}\x91j\xf6;\x00\x93su\xba\xba%\xe7jr\xae\xfe\xa58W\xdbQ\xfa\xaa>%\xe9\xafkf ^\x0e\xae\xfe\xbdy]\x07\xd4\x0f\xee\xee\xfd\xac]\xe8\xfc !u\xc1\x0bc\xe6\xcdZ\xf99P\xf3f~\xfd\x12KD\xc0\xf6\x85q\xf3M\xbdN]\x14\xeb\xc3tqz\xf7S\xf3\x8d\x82\xa2a\xe4W\xe8 @\x0b\xa7\x8e/v\xeb3\xb2i\xda\xe5Jm<\xccS\xea\x0dkZ5|xK\xac\xab\x06WtV\xb6\xb5\xb7q\xfb\xbf\xec\xde\x9c\xdfxo\xc8\xcfO\x1a\xf6#\x94\xb6\xae\x99\xec\xad|\xd1\x16L\x0bx\x9b\xd2p\x9e\xc6\xa6\x0d\x9d\xda\x86\x99\x84\xc1\x82T\xfd\xad\xf7y\x1f4\x86\xb6\xaa\x1eP\x0f\x048\x14\xa3\xe3^\xa6l]\xed\x0f\x05\x13\x19r\x1f\xee`\xda\xec:\xf3\xc7\x020m\xe4\x0c8\xc8\xe8\xa0\xda\x8ee\xfeY\xc6w\xb8\x1f\x7f@\xfdm\x98\xda\x10\xd0OV\xac\x10~\x1a\xbd\x05\xd7\xc6\xa0\\\xa3G\x0e\xca\xa5~\xeb\x80z1\xa75\x8b\x87z\x9c\x8aA\xe2v\xe5\xe9.\x15\x90>\xef\xa1\x96(|\xff\xb4\xce\xbfs\xafW\x12F\xd7wi\x044\x90N\x04\xe2+b^/\xa1\xde\xccZ\xf3\xd7\xc3 \x93\xe6\\\xefu\xd9\xd6\xcf\x86#\xca\xa0\xad\xc9NM\xee\x90\xd7\xac`\x8f\xd9\xe4q\xba\xa6\xedY\x9bm\xb26\xf3ek\x90)\xd5}\xcb5\xc0\xb8\xa3P?\xc6r\xddz?\xfc\xa0\x8c\xfd\xfb\"oZ\xe9\x7fz\xc8\xea6_\x0b\xc1\xc1\x95T7\x1b\xf9\xb59\xed.\xb7\xc2 \xcc\xe3\xc3u_W\xfb\xc1\x93\xf4\x9c\xa0o\x1db=o\\`\xb4!\x8c{\x16bL\xc4\x8d\x87\x88\xb1\x10=\x0e\xe2\xc7\xc0\xc1\x8c\x9d\x97\xc5\xe1\xef\xa1\x0d\x9d\x0d\x08\xca\n\xd0pl\x1a\x0d\xc74\x1c\xf7F\xc3\xf1K\x18\x8e\xd1\x8d\x12\xfdNB\xc6d8\xad\x87i7\xcf)W\xc7\xc9\xa4\x947\xa8\xf6\xfa\xf4\xd0;\x06\xb2y\xae\xef\xa7\xefI\x1e\xd7P|\x1d\x9aEvT\xdc\xe0\xba\xc9\xc4\x86\xb5\xd5\xe8y\xc4ta:\xbf\x99t\xf5\xe5\xac)rc\xf5\xd2\xd3\xe4\xc6\xea\xab\x9a\x17\xee\xc6:\x1d.l\xb0\xf9?\xdf\x7fu(F8\xc3\x85\xf5_\x14\xf9\xb2\x92/\xeb\xd8\xfc\x1d\xa7L\x86|Y\xc9\x97\x95|Y\xc9\x97\x95|Y\xadF\xbe\xac##_V\xf2e\x9d\xfed\xc8\x97\x95|Y\xc9\x97\xd5u)\xf9\xb2\x92/\xeb|/ \xf2e%_V\xf2e%_V\x9b\x91/\xeb\xc8\xc8\x97\xd5f\xe4\xcbJ\xbe\xac\xe4\xcb\x8ai[\xe4\xcb\x1a\xc9\x97\xb5\xa9\xd7\xabah\xfc\xa9\xb2\x9c^9(O\xcf\x98\x18\xe5\xe9\xf8\x0e&h\xc0q\xa9bx)M\x94k\xd3\xb4\xc8r\x9d^\x19T\xaea\xe0\xef\xc4\xa5\"\xcf\xe3\xb95\x08\xe4y\xbct5\xfb\xbdc\xc9\xf38]\xdd\x92\xe71y\x1e\x93\xe7\xf1\x89\xe7\xf1\xb1\xbc\xabD\x11W\x06\xcc\xe3\xf0@6\xaa\xba\x8b_\xffI\xa71u\xdaW\xf7\x90\x93s\xbf\xba\xc4\x84\xcbr_\xbd'\xb3A\xdd\xf0\xec\x07\x80\xd9r\xa0nxa^\xcd\xfd\xfb\xfa\x19\xb84\x0f\x1b\x9b\xc75\x15)\xb79\xd6\x131}\x8a\x83\xce\xe1\x9a\x93\xf5t\xe7o\xfd\xcc\xbd\x80\x82\xddn\x90\xb5/-\xcc\xdd\xc6\xe9j\x93O8\xd9\xf4\xbd][U\x0f8\xdf\x99`\xbf\x99Y\x85\xc6\xfb\xcb8}er\x9b\x9bL_j\xbc\x8fL\xb0\x7fLP\xa9\xd1~1\xea\xd86uI!i\x84\xcd\xb1\x90\xe0\x8c:H\xce\xfb8\x00\xbe\xbaA\x97}\x812;\xca\xda\x97+$\xd7\x83\xd4-c\xee\xc8\x9d\xa54\x1a\xc5\x0cg\x16\x8c#\xcb\xc6\xe5Sj\x9bv\xf8|K\xb1|\x84\xa5\xf4\xd0\xb4U\xadf<\xc2\xa7\x94\xafN\x0bf\xfa\x8cN&\xd7g\xd5\xe3H*\xce-\xd7)\x1b'\xca\x97\xbc\xba\xf9\xc7x)\xa6\xaal#|[\xc9wbl(Z\x87|'|U\xf3\x8b\xf5\x9d\x18\x7f\xf7\xb8\xb3\xc0,\xa9i\xef\x8a\xa9\x07];\x9fD\xe7\x84\x9d\xfeL\xbe\x15\x16\xf3w\xac2\x19\xf2\xad \xdf\n\xf2\xad \xdf\n\xf2\xad\xb0\x1a\xf9V\x8c\x8c|+\xc8\xb7\x82|+\x86\x86\x9d\xfc\x90o\x05\xf9V\x90o\x05\xf9V\xcc\xa7R\xc9\xb7\x82|+\xc8\xb7\x82|+lF\xbe\x15##\xdf\n\x9b\x91o\x05\xf9V\x90o\x05\xa6m\x91oE$\xdf\n\xa2\xf5\xd1\xc4'\xd1\xfa\x86}\x91j\xf6\x13\xe5D\xeb\xa7\xab[\xa2\xf5\x89\xd6'Z\xff\x84\xd6\xef\x80/\x17\xa2\xff\x0f\x0b\xa2\xffCw\xe3\x00\xcc\xef\xd3\x83\xbc\xbc\xafD\x8b\x95\x87\x87uO\xee\xd2r\x81\xf8WW\xd7WW\xd7\xed\xfep\xd9\x02l~=_RB\x10 R\xc3H\x90\x16H\x82\xa4P\x12\xe0\xc1$\xf0\xc2I\xe0\x05\x94 \x11\xa4\x04\xe9@%H\x0c+\xc1L` \xc2\xa1%\x98\x0b.\xc1,x \xfc\xdf= @\x13\x08\x80MB@&\x98\x0b3\xc1\x1c\xa0 \xfc\x95\x91\x0el\x82\xd4p\x13$\x04\x9c !\xe4\x04\x91\xdb_ \xec\x04\xc1\xc0\x13\x18\xd0\xd3\xa9\xfd\x98\xe5\x05\xdb\xf8e\x98\xb1\n}j\x83u\xb9L\x16t\x14\x80\xa7\x1dS{,f\x0c\x0d\xde\x1c\xef\x18+\xf5\xd5\xe2\xbc\xf6\xbb\xaa\xdcxv \x9a6k\x8f\x8d\xdc\x18\xb6F\xdc0/s\x15m\x90e\x95j>\x8e\xba\xaa\xfe\xfe\x8d\xccX\x1f\xbfM\xfdK\xec\xd8O?\x02\xb9%\xc3\xca\xe3\xde=\x07\xbe\x84\xef\xdf\xbey\xb5\xfa\xf0\xf1\xbb\x8f\x9f>\xac>\xbd\xf9\xf0\xee\xf5\xcd\xed\x9fn_\xbf\n\xba\x8b\xff\xd7\x8c[n\xdf\xfc\x9f\x80{\xbc\x0f\xd1q\x13\x82\x8b$\x83\xe9\xf8[\xab\xb7\xbe\x07o^\x85\xe8\x91\x8dUM\x01dp\xdd\x8d\xfe\xed\x9b\xbc\\\x17W\xd0\xb0\xe2\xfe\xb2\x8fm\xe3x\xf3=H O\xe6\x8d\x9d\xe7q\xfa\xbd\xa8+\xc8\x16\xf5\xc7\xbci\x8er\xe3=3\xa5]\xe7\xbb\xecq\x08W\xe9\xfa\xac\xe0s\xdc\xfd\xc7\x88\x95\xec\xff\xde\xb2z\xdf\xe8H\x1d\x98\xd0k\xd1U\xe2}U\xe6\x0fl\"\x1eFo\xc8W\x06\xe3JP\xc9\x1b'\x90\xef\x8e\xfb\xac\xbc\xacY\xb6\x11\xdb\xebb\x9e\x14T\x01\xa0D\xe3\xd6)\xa6\xc3\x19\x99\xd6\xe9\x9b\x81\xa6\xb4\xfe\xd6\xff\xd8\xe4\xdb2k\x8f5\x83o\xd8\xe7+\xf8\xf4\xae\xaa[\xa8\xa6\xbd(\xb5\xfd;{\xbe\xcb\x1a\xe6\xecE\x01\x9e\xd8]\x93\xb71w\xc0\x07ET\xc9[K\xa8\x7f+\xf2\xf2\xc1\x9d\xc9\x86\xad\x8fu\xde>\xaf\xc4\xf4~\xed\x0d\xa577\xb7\xe3\xe7X\xb3\xcd\xf6Y.d\xe9\xeerP\x97\xbb\x0b\xe1\x8c\x9e\xd2\xdb\xdc\xbc\xab\xe4uo+\xb5\x97.\xd3\xea\xd7\xe9\x1c\xf6\xe18\xfd\xd1\n\x91Y\xc4F(\x1c\x14c\x9c\x0f\xfd\n. \xbf\xef\x7f\xbc\x10\x9f\xb1\xba\"\xebc\x16\xe6\xee.x\xa4\xa1O\xff\xed\xeb\xa5\xadt\x0c=\x86\xa9\x99u\xb5\xdf\xe7M\x132\\\xf5\xb7\x0cF+\xe3\xcf\xbd\x07\xc1\x82\xe3S\xff\xfcU\x9d\xb5\xbe\xab'\xcb$o\x1e\x94LEc4K(/\x922\xf7\xb1Ahw\xfc%\xca\xa8\x9db \x88\x1c\xbf\xd0\x95\x04\x01\x15\xc5\x8d\xe7\xdf\x7f\x15\xfas\xd06\xa8S\xfe\x0c\xbdh\x18U\x9d@\xa0\xb6r\xfe\xd5\xcf\xaa.@\xac\xc2\xef\x05\xbf\xe3\x0b\x00\xc9m\x9f}^-Q\x12\xfd\x9cA\xab\xd8g\x9f\xf3\xfdq\x7fR4\xd9\x93\xf5\x1f\xe4\xda\xb96\xec\x8d=\xb2Z\xd5\xcb\xac\x8a\x90t\xc3b\xf5a<\xceZ-\x9b,/\x9e!/y\xa3o\xd8 E\x89x\xa4\xf9I\x07\xd5\xc8\xf1\xc0\xbbeoW\x0fa\xb5\x10\xd2\xe5\xc3I\xb7\xdfgI\x7f\x12b\xb7Z\xfc\xc1\xf6\x81}\xc4\xc9F\xc0\xaf\x1b\xb1\xfc\x83\x0d[\x17Y\xcd6\xfc&\xd1\x06\xf8_\x9d\xb5\xd4':UH,\xd3\xd0\xe1\xda\xc6\x02\xa2\xcb\xe0\x05\xb4\xd5V\xee\xb3\x88-\xeaV{LL&\x97\xed\x0d\xef\x8a\xe9m\xaf\x1f\x8c*\xe0C\xad^]*\xb9#\xaf\x81}\x96oQ\xbeU18\xe7es\x05\x1f\x8a\xac\xd9\xf1\xb1@\xa3^.\x1a3\xe3U+\xbf#\xa5^\x0c\x92\xbd\x90\x1c\x99\x0cx\\\xd7l\xdd\xc2:+\xd6\xc7\xa2\xdb\xbc\xbf?\xf2\xe5\xc7\xf4\x03\x8e\xa5\x19\x0d\x9f\xd7Qul!o\x05W_n\xa1z\x14+\xb3n\xf9\x0b\x7f\xdd\xb1R\x16Epl\xe6\xae\xc0\xf4S\x04Ne\xbe\x94\xc1nR\xde\xf0\x01r\x93\xb7\x9a\x0b\xca\xccX\xb9O\xbb\xaaa\xbd\x83\xcb\xf4C\xcc\xd7\x90\x0f :\xe3\xad\xca\xac\xf7\xd9\xde\xe4\x9dB&\xb7Y\x05\xde5\xfd\x94A\xfd_\xc1\x0f\x95\xa8\xa6C\xf5\xc4j\xed\xa8\xa6_\x01\xdb\x085Ll>\xc8m1\x95\xbd\xe9\xd4\xf7\xc7\xa2\xcd\x0fE.34|\x96\xf5\xa6\xc1WbxR\x0c\xc2-\x9b\xb5\xdd\xfcZzY\x88\xe0\xc0\xce\x18\xf4\x14\xa3\xd7\x0b\x83Q\x8c^_\xd5\xbc\xf0\x18\xbd\xd67/\xbc\xab,\xeeD\x93\x91y\x1d\x0b=\x19\x86\xd7\xe6BE\xc1wO\x8c\x82\xefZ\xcc\xdfc\xcad|~@\xa8\xce\x01?m\x83\xd8\xbe?\xed\x0c\xbf\x9fT>?\xe9\xfd}\xdaX\xbe>\xcb\xf8\xf9D\xf0\xf1Y\xc8\xbfg\x11\xdf\x9e%\xfczR\xfa\xf4D\xf5\xe7I\xea\xcb\x13\xcd\x8f'\xad\x0fO\"\xff\x9d\x94\xbe;\x89\xfcvB}v\x92\xfb\xeb$\xf6\xd5i\xc3\xfdt\x12\xfb\xe8D\xf1\xcf\xf1\xfa\xe6 \xa7\x13\xa8e\x18,\xe9\x8f\xd3R\xf0\xdd\x91%\xf7\xbbI\xeds\x13\xcf\xdf&\xc0\xdd\x03\xe5g\x13\xe8c\xe3\x83\xc8\xe7\xfa\xd6\xf8\xd2\xa5\xe0\xbb\x0e\x9b\xed;C\xc1w\xe1\x1c\xff\x980\xdf\x18\n\xbe\x8b\xf2\x81I\xe2\xff\xe2\xcd#\x05\xdf\x0d\xf1uI\xe7\xe7\x82\xf4q\xa1\xe0\xbbg\xfb\xb3\xcc\xf1e \xf4c\x99\xe5\xc3\x12\xee\xbfB\xc1wO-\x9d\x8fJR\xff\x94T\xbe)\xa9\xfcRb\xb5\xad@\x7f\x940_\x14\n\xbe\xeb\x11\xd5(\xf8\xae2\n\xbe\xdb\xffe\x81j\xf6\x07\x88\xa5\xe0\xbb\xe9\xea\x96\x82\xefR\xf0]\n\xbe\xeb\x08\xbe{\xfdS\xf7o\xf9\xdb\xdch\xbc]0^\xf3$w{\x1c^\x0b\xc5{\xc8\xf2n\xfe0\x08\xc7{\xfa u\xd5K\x0d\xa7\xeb\xc2;\xce\"\xda\xf0\xc1pQ\xa2\xca\xa0nS\x06\xc2\x0d \x83\x8b\x0f\x82\xeb\xadP@U* \xb1\x17d\xa5B\x80\xfa#-*\xfc2\x0f\x7fI\x07\xc0,\x81\xc0D\x84`\x96\xc2`\xa2\x800\x8b\xa10\x0b\xc10\xcb\xe00i\x81\x98\xc8HLb(&\"\x16\x93\x1a\x8cI\x86\xc6\xa4\x85c\x92\xe11\xe1\x80\xcc\x02\x88LrHf\x16&\x93\x1c\x94\x89\x84\xca `\x99\x80I\x08\x12\x98Y\x14\x99qC3!\x13\xa7\xc8\xe0L(:\x93\x00\x9eY\x00\x9fI\x0f\xd0\xc4Dh\x828\x0f$F\x13\x0c\xd2 4\xe9\xd90\x0d&m\xa7h\x16\x11\xa9\x99W\xd9aX\x0d\xa6\xbc3\xd1\x9a3\xe0\x1a\x9f0\x19\x15\xb0 Bl\xf0\x90M\x08f\x83|\x0b\xf3P\x9bP\xd8\xc6\x87\xdbD\x04nf 7\xe7C7\x98\xca\x0e\x04o\x12\xa17\xa8\x9c:\xbf\x94\x84\x00Nb\x04')\x84\x93\x12\xc3A\x838>\x14\xc7\x07\xe3\xa4\xc1q\x92\x019i\x91\x9cyPN0\x963\x13\xcc\x99\x83\xe6\xf8\xc6@\x04B\x81\x87(B\x00\x9d\x99\x88\xce\x0cH\xc7S\x05\xe9@\x9d\xc4\xa8N:X'\x1d\xae\x13\xb3\xb5\x05\";\xa1\xd0\xcet\xf8X_\xf0\xd8\xd6\xaa\xa1\x8em\xb0\"N\x188\x16\x156\xd6\x174v\x90\xd9\x14!cQ\x9b\x1f\xbep\xb1s\x82\xc5\x06\x87\x8a\x0d\x0f\x14\x1b\x14&vf\x90X_\x88XT\xfd\x0e\xder\xfc\xf0\xb0\xf8\xe0\xb0\xe1\xb9M\x15\x18\xd6\x1f\x16\xd6\xcc\x066\xaf\xdd\x7f\xc4\x0b \xdb\xc6\xd3LQ\xc1`Q\xaf\x08\xc6EO\x10\x08\x16\x17\x06v^vS\x86\x80\xc5\x04\x80E\x85\x7f\x9dW\xb4\x18\xa1_\xc3\x02\xbf\xce\xcbg\xc2\xa0\xaf\xa8\x90\xaf\xf3r}V\xb8W|\xb0WT\xe6p\x81^\x07\xd9O\x18\xe6uV\x90Wl\x88\xd7\xa0\xfa\xf0\xc7\xfa\x9b\xa8\x93\x88\xc1]g\x86v\xc5\x04v\x1dd>NX\xd7\x88cLX@\xd7\x89\xb2$ \xe7:/\x98+\xaaj\x00]=\x80\x0e\xe3\x8aj\xf2\xda\x06\xf5\x98:\x84+>\x80\xeb\xfc2,\x10\xbcu~\xe8\xd6\xe0\xc0\xad\xe7\xd5C\xfa\xa0\xad\xb3B\xb6\xa2\x03\xb6\xa2K\x8f\xef\xc0\xe1\xa4\x13O\x10\xaa5(P+\xaa\x90\xc3W\x9b0H\xab/D+N\xb5\x8f\x1a\x9e\x15\x15\x9cu\x91\xd0\xac\x89\x03\xb3.\x11\x96u\x81\xa0\xacK\x84dM\x19\x905(\x1c\xeb\xe0{\x08 \x0c\xd9\xc5\x85<7($\xc5\x84<\xfd\x99bBZ\x0c3\xcfl\x11p\x15\x12\x9f\x1e\x88oc\xe1\xf0\xcb\xc0\xf0\x11P\xf8\x85@\xf8E0\xf8% \xf8\x94\x08|T\x00>)\xfe\x1e\x0d~O\x8b\xbe'\x02\xdfSb\xef\x89\xa0\xf7P\xe4=9\xf0\x9e\x18wo\xc3a\xf7\xc4\xa8{\x14\xd0\xdd\x8b\xb9#\xa7\x13H\xc4}A\xc0\xbd\xa5\x98\x90#K\x0e\xb5\xa7F\xda\xe3\x01\xed\x01\x845\nf\x0fD\xd9}|\xe7\\\x8c\xdd\x97.\xc5\x84t\xd8ll\x9dbB\xc29\xa0z\x18\xa6N1!Qhz\x120\xdd\x9bG\x8a \x19\x82\xa3\xa7\x83\xd1\x91(:\xc5\x84<\x1b@\x9f\x83\x9f\x07\xc2\xe7\xb3\xd0\xf3p\xf0\x9cbB\x9eZ:\xd4<)h\x9e\n3O\x05\x99\xc7j[\x81\x80y\x18^\xfeK\x8a 9\x8cb5U\x8e\xe1U\x83r\xf4\x9a\xe5\x17(Gpp\xaf]\xde\xb4U\x9d\xaf\xb3b\x95\x97\xf7\xd5\xf5O\x12\x91sE\xef\xfasw\xcbmy_u\xe1\xbax\xd9\xfb\xd4\xc61\xbbd\xb2\xba\xf4\x83\xc8\\\xc3\xf4\xd4\x15/,*\x17\xaf\x18\xfbb`P\x08~\xd9\xa01\x8d+T\x85\n\xb4\xd5\xe9\xd0\x9cy\x05o~\xb9\xedX\xb6q\x91\xd5\xdeG\x00\xea1\xdc\xd4v\xac\x87\xb9\x91G8\xdeeM\xbe\x86\xbb\xa2Z?\x88:q\xdf\x83\xc9#\xa0\xf3\xc9M<\xd9w\x11z\xf3P\x1a\xf2\x10Ki\xd9\xe1\xf0\xe5\x1e\x8f\xdd>\x94v\xa3\xc3\xa8\xc1:;\xb4\xc7\xbaC9\xf5\x9f\xebc\xc1\x84\xeb\x80'\xa1C]\xf1o[N\x01\xf4\xbb\x97\"\x1a\xff\x8f\xf5.\xcb\xcb\x0b\xcf\xbaV\x85\xd0\x14i\xf0\xd9Ew#l\xb26\xe3uu\\\xcb<\xea\x05\x92\xcc\x9d\xde\x80\xed\xb5\x95_;\x8e\xcc\x95\xd6\xb4\x02\xe5\xa9\xb3\xb2\x91\xf3\x8c}\xb6\xde\xe5\xa5#\xe8\x08\x80\xc8\xcb*w8k\x01\xfe\xc5\xfahl\xc0'\x85\xa5\xb2\x01\xbe\x107'f\xfa\xe2u\xfakO\xf6!\x87\x9a=~\xc1.d\x975;\xdf5\x01u\x05x\x11\x02\xe4,\xae]5\xac]\xf9:xm\xe8\x1a\x80\xa0Z\xe0\xe69\x01\xd8\xb4\xd6\xcb\xc7\x8c\x0d\xdbl\xb5\xe1^\x0b\x84\xbe\x1a\x08{=]#}\x97\xd5m\xc3\xda?\x8b\xb7\xe4k\xfe\x82\x05mW\xfe\"\xa0\xb3\x8e\xce\xb2\xca.\x7f\xb4\xec-\xe5\x87\xc5;U\xc7}\xfc\xe7/\x90\xdd>`\xed\x17x\xf8\xb8\xae\x84S\xac\x1a[\xa0:\xb6\x87c\xdb\xff\xad\xef\xa3\x1c)\x8a \xf3_\xb4L}\xa4\xd4\xe5\x9f\x9d\x1d\x0e_\xe0\xa9\xe2{S\x00\xc5\x17x<{\xcc7\xac\\\xb3/\xf0\xe8\xae\xfd\xf6\x138\xcf\xf0\xc9G\x83\xaaa\x88X\xc1\x10=\xbf\x83\xa9\xaa\xecE\x07k\xabn\xc2'6n\xe1#+7\xac\xde\xe7e\xab:09F\x95\x9d2\x8a\xb3\xb4\x90X\xce\xd2\xf0\x11\x9d\xa5!\xab\x1e\x02\xaa\x1fT\xb2>\x8c\xd5\xbc\x16Y\xfd\x10\xbc4\x93\x16\x82\xb7\xa2\x12\x9c\xc64|K&i\xa9pWm\xe9\xb1Wm6\xb1l\x16\xfe\xaam\x19\x0cV[\x04\x1cV\xdbBX\xac\xb6E\xf0XmK`\xb2\xdaR\xe2\xb2\xda\xa2b\xb3\xda\x92\xe2\xb3\xda\xa2a\xb4\xda\xd2\xe2\xb4\xda\x12a\xb5\xdaR\xe2\xb5\xda\x12a\xb6\xdaBq[m\xc9\xb1[m\x89\xf1[mm8\x86\xab-1\x8e\xab-\n\x96\xab\xcd\x8b\xe7j\x0b\x9c&\xa1\xd6\x0e\xbd-\x88\xedjk\x9d\xd1\xa9\xa5\x85N\xf6\x02q^oz\xc3\xe9\x19\x12\xeb\xd5\x16\x1d\xef\xd5\x96\x1c\xf3\xd5\x96\x1a\xf7\xd5\x16\x0f\xfb\xd5\x16@\xa8jCa\xc0\xda\x02q`m^\xbeN\xd9\\2\xba\xb4\x80\xec\x86\x80\xcd\x83b%\x8c\x95.mV\xc4ti\xd8\xb8\xe9\xd2f\xd4\x16\xc6\x95\x00\xa6k,b$ui3\xe3\xa9K\xc3DU\x976(N\x9c\xd8\xea\xd2\x12\x8d\x8ba\xd1\xd6\xa5M\x941I\xccui\xf3\"\xafK\x0b\xa88\x08\xac<@\xc7b\x97\x16\xf0\x19i\x1b\xd4u\xea\xb8\xec\xd2\xf0\xd1\xd9\xa5\x9d[\xaa\x05\"\xb5K\x9b\x1f\xaf]Zp\xd4vi1\xea'}\x04wi\xb3\xe2\xb8KCGs\x97\x16X+\xa1\xc3\n\x9c\x0c- \xe2\xbbK\x0b\x8a\xf2.-\xa0\xf0\xc3\xa6\x900\xe2\xbb~\x9c;\xee\xbb\xbe\n\xcf\xc3\x84\xc6\x80w&&W\xc7\xa8H\xf0\xd2\x16\x89\x07/-qTxiK\xc4\x86\x97\xb6@\x84xiK\xc4\x89\x97\x962Z\xbc\xb4\xf91\xe3\xad_\x91\x08(1\x8c\xd8\xd0\xc5\x8b\xcf\x9b\xc0\x90\xf1\xa3H\x12\xef\xdf\xdd\xd8\xcaB\x11\xe4\x07F\x11\xe4-\x86\x99#\xb7\x08\xd7\x1b\xe40\xe8\xffNz\x0bq\xb1\xf1\x8f63\\kR\xb9\xd4\xa4w\xa5\xb1\x01\x17\xb3\\h\x96q\x9d\x89\xe02\xb3\x90\xab\xcc\".2K\xb8\xc6\xa4t\x89\x89\xea\n\x93\xd4\x05&\x9a\xebKZ\x97\x97D\xae.)]\\\x12\xb9\xb6\x84\xba\xb4$weI\xec\xc2\xd2\x86\xbb\xae$vY\x89\xe2\xaa\xe2uQAN'\x90.)\x0b\xba\xa2\xb4\x14A~d\xc9]KR\xbb\x94\xc4s% \xf0R@\xb9\x8e\x04\xba\x8c\xf8X\xe5\xb9.\"\xbet)\x82\xbc\xc3f\xbbxP\x04y8\xc7U#\xccE\x83\"\xc8\xa3\\.\x92\xb8Zx\xf3H\x11\xe4C\\(\xd2\xb9N ]&(\x82\xfc\xd9\xae\x10s\\ \x02]\x1ff\xb9<\x84\xbb:P\x04\xf9SK\xe7\xb2\x90\xd4U!\x95\x8bB*\xd7\x84Xm+\xd0\x15!\xcc\x05\x01\x13A^\x02gF2\x83\x85\xe6\x10X\xeb\xb14\xf5\xf7.\xc6z{\x1a5\xdb\x1cw\x13\xc4\\\x97fc\xf2\xa6\xa2\xb1O\x05c\x17\xb5\xa3\xee\xb0E^\x7f\xd7\xd5\xde \xea\xbaJ\xc6\x82n\x0d\xe2\xac_]]_]]\xb7\xfb\xc3e\xf3\x94m\xb7\xac\xbe\xdc\xb2r*+\xa22\xaf\xd4\x85W?6U)\x1e\xae \xc0\x17\x16\x9e\xdd\xac\xf8\xb1\x0d\x8a!/T\xbd\x82\xd8v\x173\xb3\xee\xb5\x88Q7o`_m\x8e\xc5\xc4\x0e\x8a3\x9f\xe0\xcd+\x04\xb0\x92\xa8\xfd'\x17\xef\xa8P\x0e\xc9>\xaa\xaeA\xecT\xf8(\xc5}\xf6\xd9\x88K\xea\xcb\xa1/\xaa/\x0ex=a\x94\xfa\x0c\xe8\x82h:\xa9\x03\x01\x8c\x80\xb0\xae\xa2\xb0\xb2\xad\xbd\xe2b\xb2r\xa8\xa7\x1b\x85\x00\xfd'1\xeb\xcd\xc5\x1ei\xf7NL\xee\xc1IZ\xd5\xcc\xb8\xf2\x9b\x03\xab\xe1\x90\xe5\xf5u[\xe7\xd5$\x0co\x1c\x18\xf1\xe5*\xe54\x13\xban\xfa\x17k\x0c\x02\xfa\x9a\xb6\x82\x03\xab\x9b\xbc\x99\x04\xcdy\x0d\xae6\xac\xac\x1c~V\xe1\x1fU\x9f\xea\x00\x95\xe3\x7f\x16[\xf5\xeb*/A\xfc\x9e\x97\x13\xa4\xd3 =1\x8e\xc8\xfe\xd8\x0b_(\xd4B^-\x10\x8b\xd3\xcc\x12a10\",,\xe6\x1f\x94\x88\xb0 \xc2\x82\x08\x0beDX\x10aa3\",FF\x84\x05\x11\x16DX\x0c\x0d;\xf9!\xc2\x82\x08\x0b\",\x88\xb0\x98\xafM\x11aA\x84\x05\x11\x16DX\xd8\x8c\x08\x8b\x91\x11aa3\",\x88\xb0 \xc2\x02\xd3\xb6\x16!,\x82\x99\x83\xaa*\x1c\xc4AU\x15\x03\xd6\x80_>\x80*\x06\x88\x01\xbf\\\xfd\xfd\xa5\x11\x02]5\x8dm\xc8\x07\xf0\xea15\xbe\x93\xfa\x1a\x9a3G\xe0\xcd\x15\xb7\xb2jW\xd2\x1f|\xe5\x0bp\x88\xd8,\x89\x91\x92E\xab\xac\xaa\x02\xadT\xf2\x1a{\xff\xee\x86T\xc9\xa1\x91*i1\xff\xe7A\xaa$\xa9\x92\xa4J*#U\x92TI\x9b\x91*92R%I\x95$Urh\xd8\xc9\x0f\xa9\x92\xa4J\x92*I\xaa\xe4\xfc\xfd\\R%I\x95$U\x92TI\x9b\x91*92R%mF\xaa$\xa9\x92\xa4Jb\xda\xd6W\xa9J\x8e]Gm\xda\xe4\x0f\xbdw\xa7V(\xb3\xa20\x1c:\xf5\xf6`+N/a\xb0\xcd\x1fY\xa9Nl\xb3\xca\x97}\x8a\xea\xd7\x17&b\xfa\x1cr\xdb\xaf@\xad\x91/\xa4\xaaW\xd9fS\xb3\xc6q%z\x9be\xf0\x86\xc6\xe9\x0f\xd4Z\xfd\xb7\xf1i\x05\xbfn\xba\xfb\xdc\xe3\xc1\x1d[\xef\x80\x95\xebj#v6E\xaf1=\xfd[\xf3\xd6Q6\xc7fu8\xde=0\xe7QZ\x88\xea\x05d\x15\x03R\x14\x03|\x15C\xc0\xfe\x90\xb6\xa8\x02\x19\xcc\x14\xc9 \xa1P\x06\x8b\x88e\x10S0\x83\xc5D3\x88#\x9c\xc1r\xe2\x19,%\xa0\xc1B\"\x1a$\x16\xd2 \xb6\x98\x06\xa9\x055\x88)\xaaAra\x0d\xd2\x89k\x90X`\x83t\"\x1b\xcc\x10\xda` \xb1\x0d\xd2\x0bn0Ot\x83\xf4\xc2\x1b\xc4\x12\xdf\x00#\xc0A\xd8\xd4\x05)\xc4\xc1\xb2b\x1cx\x049\x08\x9ct\x05\ns\xce\xb4\x86S%\xa48\x07)\x04:XB\xa4\x83\x05\x84:\x88*\xd6A\x98\xa6\x04X\xd1\x0e\xc2\x85;\xc0\xec\x82\x9f!\xe0\x012}\xcff]D1\x0ffW~\x98\xa8\x07\xc8\x92\xcf\x14\xf7\xe0\x1c\x81\x0f\xfc5\x1eW\xe8\x830\xb1\x0f\x02\x04?\x08\x12\xfd\x00\xffV\xe6\x89\x7f\x10,\x00\x82W\x04\x84\x98B \xcc\x11\x03!\x82 \x08\xc8\xaa\x0f\x14\x06!\x958\x08\xd8\xfcz\xbe\xa4\x84B!\xa4\x16\x0b!\xad`\x08IEC\xc0\x0b\x87\xe0\x15\x0f\xc1+ B\"\x11\x11\xd2 \x89\x90XL\x84\x99\x82\"\x84\x8b\x8a0WX\x84Y\xe2\"\xf8\xbf{@\x08A\x10 \x06\x85\x08\x8d0Wl\x849\x82#\xf8+#\x9d\xf0\x08\xa9\xc5GH(@BB\x11\x12\"\xb7\xbf@1\x12\x82\x05I0D\xc9S\xfb1\xcb\x0b\xb6\xf1\xcb0wUU0\xe79\xdf\x83u\xb9LV)M\x1bx\xda1\xb5\xc7b\x9e_\xcb\x9b\xe3\x1dc\xa5\xbe\xfa\xbe\xae\xf6\xca\x1d\xcfY\"\xa9g\xca\x8d\xe1\xc9\xb8\xa6\xfa2W\xd1\x06YV\xa9\x8e\x8fr\xd6\x7f\xffFf\xec\xba\x8b9\xab\xfe%v\xec\xa7\x1f\x81\xdc\x92a\xe5\xd1\x11\x7f\x15\x84\x82\xfc\xfd\xdb7\xafV\x1f>~\xf7\xf1\xd3\x87\xd5\xa77\x1f\xde\xbd\xbe\xb9\xfd\xd3\xed\xebWAw\xf1\xff\x9aq\xcb\xed\x9b\xff\x13p\x8f\xf7!\xda\xaf1\xb8H>'Mt}\x0f\xde\xbcLU5V5\x05\xe8Oh\x16\xbf}\x93\x97\xeb\xe2J\x1c\xdf}\xd9G\x10v\xbc\xf9\xee\xf8\xe7\x95<\xb28v\x9e\xc7\xe9\xf7\xa2\xae8.\xb9;\xca\xb99\xca\x8d\xf7\xcc\x94v\x9d\xef\xd28\xb8\xdaQ\xba>+\xf8\x1cw\xff1P\xa0\xcd\xbf\xb7\xac\xde7\x9dwl\x97c\xff\x07\x16M%\xdeWe\xfe\xc0&\xfcU{C\xbe2\x18W\x82J\xde8\x86}w\xdcg\xe5e\xcd2\x19\x18Y\xcc\x93\x82*\x00\x94h\xdc:\xc5t8#\xd3:\xfd>\xd7\xbd\xfe\xd6\xff\xd8\xe4\xdb2k\x8f5\x83o\xd8\xe7+\xf8\xf4\xae\xaa[w0ni\xff\xce\x9e\xef\xb2\x869{Q\x80'v\xd7\xe4m\xcc\x1d\xf0A\x11U\xf2\xd6\x12\xea\xdf\x8a\xbc|pg\xb2a\xebc\x9d\xb7\xcf+1\xbd_\xb7\xa9r;~\x8e5\xdbl\x9f\xe5B\x96\xee.\x07u\xb9\xbb\x10N\xef\xe6\xde\xe6\xe6]%\xaf{[\xa9\xbdt\x99V\xbfN\xe7\xb0\x8f\xd6/\x8f\xc1\x88\xd0\xaf\xe2\xa2\xb1\x8f\x8a1\xce\x87~\x05\x17\x90\x1bg\x05\xc8\x13\xfb\xd5\x15\xdd\x01\x1e\xed.ww\xc1\xe3)\xd2\xf6X\xfa\xcf\x1f\xc0\x9f\x91\x10\\3\x9b\xace\x97<\xcd\xf0\xda\x91\xe7(L\xd7\xcd>/\xe5Y\x0b\xd3'\xe7\xf7\xd6\xd7K[ E\xb6`-\xc3\xd4\xcc\xba\xda\xef\xf3\xa6 \x19\xae\xfa[\x06\xa3\x95\xf1\xe7\xd3\xc3Gl\x16y|\xea\x9f\xbf\xaa\xb3\xd6w\xf5d\x99\xe4\xcd\x83\x92 \xdc!+\xcc\x12\xca\x8b\xa4\xcc}l\x10\xda\x1d\x7f\x89\xeb\x9ae\xad\\\x02\"\xc7/t%A@Eq\xe3\xf9\xf7_\x85\xfe\x1c\xb4\x0d\xea\x94?C/\x1aFU'\x10\xa8\xad\x9c\x7f\xf5\xb3\xaa\x0b\x10\xab\xf0{\xc1\xef\xd8\x0e>\x18\xdb>\xfb\xbcZ\xa2$\xfa9\x83V\xa1\x8f\x0f\x19\x17M\xf6d\xfd\x07\xb9v\xae\x0d{c\x8f\xacV\xf52\xab\"$\xdd\xb0X}\x18\x8f\xb3V\xcb&\xcb\x8bg\xc8K\xde\xe8\x1bvBQ\"\x1ei~\xd2A5r<\xf0n\xd9\xdb\xd5CX-\x84t\xf9p\xd2\xed\xf7Y\xd2\x9f\x84\xd8\xad\x16\x7f\xb0} OY\xa3x\x95\xcdta\xf7y\xb9\xe2\x0b\xafU\xbf\xf0\x8a0\xb6\x0d_\xf5\xe9#N6\x02~\xdd\x88\xe5\x1fl\xd8\xba\xc8j\xb6\xe17\x896\xc0\xff\xea\xac\xa5>\xd1\xa9Bb\x99\x86\x0e\xd76\x16\x10]\x06/\xa0\xad\xb6r\x9fElQ\x8b\xade\xbe\x1a\x9cL.\xdbW\xc7\x8e\xc6\x9c\xde\xf6\xfa\xc1\xa8\x02>\xd4\xea\xd5\xa5\x92;\xf2\x1a\xd8g\xf9\x16\xe5[\x15\x83s^6W\xf0\xa1\xc8\x9a\x1d\x1f\x0b4\xea\xe5\xa213^\xb5\xf2;R\xea\xc5 \xd9\x0b\xc9\x91 \xc4\xa9\xaak\xb6na\x9d\x15\xebc\xd1m\xde\xdf\x1f\xf9\xf2c\xfa\x01\xc7\xb2\x7f\x13\x8d\xa8\xa3\xea\xd8B\xde\n\x1e\xbe\xdcB\xf5(Vf\xdd\xf2\x17\xfe\xbac\xa5,\x8a\xe0\xd8\xcc]\x81\xe9\xa7\x08\x9c\xca|)\x83\xdd\xa4\xbc\xe1\x03\xe4&o5\x17\x94\x99g\x17=\xed\xaa\xc68\xd1g\xfa!\xe6k\xc8\x87\x04\x9d\xf1Ve\xd6\xfblo\xf2N!\x93\xdb\xac\x02\xef\x9a~\xca\xa0\xfe\xaf\xe0\x87JT\xd3\xa1zb\xa2\xc3\xe7\xd3\x02\xfd\n\xd8F\xa8ab\xf3An\x8b\xa9\xecM\xa7\xbe?\x16m~(r\x99\xa1\xe1\xb3\xac7\x0d\xbe\x12\xc3\xe9\xa1\xe7{\xd4\xf1d\xd29b\x03\xee\x93\xae\x0e\xd9V\x1d>d\xefN\x06\x8f\xeb/\x1e\x06;\xeb\xff\xac\xda\xac\xcd\x05\xa27\xefD\xc7?\xbd)\xd9\xe7v\xe5D\xe7Q= \n\x00k\xf3\xb6`\xdf\xc2?\\\x94\x95\xce\x8f\xee0\xf9?\x15\x19\x995\x8d\x9c\xfd\xbc\xcb\xb6\xec=\xfb\xfb\x915\xed\x95\xfc\xdd\x91`\x7f\xaa!O\x9aW1\x83}\xd5\xb4\xc0\x04s(\x80\xc4\x89\xdbE\xfb\x8bT1G\xf7zPU\x8d\x13@\x93\x9fC\xae\xbf\x8b\xfe\xa4.\xdd\x1d\x1aX\xa5k\x081\xabo\xcd?\xee\x95\xec\xd7\x1d\xb7\xf0\x91\xb5a\xed\x05\xe4m\xa3\x01\xdfF\xf4\x80rG^\xac\xbb\x9f\xf2\xe6\xf4\xdd\xab\x82 \x7f\xa5\xde=\x08\x1b\xcb\xcepQr\x9d\xbc\xd5\xfd@!\xee(\xc4\xdd\xd8\xfc}\xa0L\xc6\xe7\xcd\x83\xfa\xdc\xf1\x93/\x88\xed\xc1\xd3\xce\xf0\xdeI\xe5\xb9\x93\xdek\xa7\x8d\xe5\xb1\xb3\x8c\xb7N\x04O\x9d\x85\xbct\x16\xf1\xd0Y\xc2;'\xa5gNT\xaf\x9c\xa4\x1e9\xd1\xbcq\xd2z\xe2$\xf2\xc2I\xe9\x81\x93\xc8\xfb&\xd4\xf3&\xb9\xd7Mb\x8f\x9b6\xdc\xdb&\xb1\xa7M\x14/\x1b\xaf\x87\x0dr:\x81ZX\xc1\x92^5-\x85\xb8\x1bYr\xef\x99\xd4\x9e3\xf1\xbcf\x02\x9c6P\xde2\x81\x9e2>\x14|\xae\x87\x8c/]\nq\xe7\xb0\xd9\x1e0\x14\xe2\x0e\xce\xf1r \xf3p\xa1\x10w(O\x96$^,\xde=1*\x17\x13D\xc6\xe0\xd9\x98\x10:\x06\xf9\x16\xe6\x112\xa1\x8c\x8c\x8f\x92\x89\xc8\xc9\xcc e\xcege0\x95\x1d\xc8\xcb$\"fP9u~) \xb9\x99\xc4\xe4LRv&%=\x83\xe6g|\x04\x8d\x8f\xa1IC\xd1$\xe3h\xd2\x924\xf3X\x9a`\x9af&O3\x87\xa8\xf1\x8d\x81\x08\xf2\x01\xcf>\x84p53\xc9\x9a\x19l\x8d\xa7\n\xd2\xf15\x89 \x9bt\x8cM:\xca&fk\x0b$mBY\x9b\xe9\xd8\xad\xbe\xc8\xad\xadU\xfb\x1c\xdb`E\x9c0j+*f\xab/b\xab\x8d!\x8a\x1a\xaf\x15\xb5\xf9\xe1\x8b\xd5:'Rkp\x9c\xd6\xf0(\xadA1ZgFh\xf5\xc5gE\xd5\xef\xe0-\xc7\x8f\xcd\x8a\x8f\xcc\x1a\x9e\xdbTQY\xfd1Y\xcdl`\xf3\xda\xfdG\xbcx\xacm<\xcd\x14\x15\x89\x15\xf5\x8a\xe0$\xdcS\xfc(\xac\xb8\x18\xac\xf3\xb2\x9b2\xfe*&\xfa**\xf6\xea\xbc\xa2\xc5\x88\xbb\x1a\x16uu^>\x13F\\E\xc5[\x9d\x97\xeb\xb3b\xad\xe2#\xad\xa22\x87\x8b\xb2:\xc8~\xc2\x18\xab\xb3\"\xacb\xe3\xab\x06\xd5\x87?\xd0\xdeD\x9dD\x8c\xac:3\xae*&\xaa\xea \xf3qb\xaaF\x1cc\xc2\xa2\xa9N\x94%I,\xd5y\x91TQU\x03\xe8\xea\x01t\x0cUT\x93\xd76\xa8\xc7\xd4\xf1S\xf1\xd1S\xe7\x97a\x81\xc8\xa9\xf3\xe3\xa6\x06GM=\xaf\x1e\xd2GL\x9d\x15/\x15\x1d-\x15]z|\x07\x0e'\x9dx\x828\xa9AQRQ\x85\x1c\xbe\xda\x84\x11R}\xf1Qq\xaa}\xd4\xd8\xa8\xa8\xc8\xa8\x8b\xc4EM\x1c\x15u\x89\x98\xa8\x0bDD]\"\x1ej\xcah\xa8A\xb1P\xad\x11\x1a\x83\x034R|F\xf0\xf7\x84\x14\x9f\xd1b\x98\xc9c\x8b \xdeQ\xa3\x10\xb6\xfb\x97\x16\x95uog\x90\xee\xa98\xf7\xf4\x94{\x1b\x8bq_\x86p\x8f\xc0\xb7/D\xb7/\xc2\xb6/A\xb6\xa7\xe4\xda\xa3R\xedI\x99\xf6hD{Z\x9e=\x11\xcd\x9e\x92eOD\xb2\x87r\xec\xc9)\xf6\xc4\x0c{\x1bN\xb0'\xe6\xd7\xa3\xd0\xeb^v\x1d9\x9d@r\xeb\x0bR\xeb-\xc5g\x1cYrR=5\xa7\x1e\x8fR\x0f\xc0\xa6Q\x84z \x9f\xee\x836\xe7\xb2\xe9\xbet)>\xa3\xc3f\xb3\xe8\x14\x9f\x11\xce\xa1\xcf\xc3\xd8s\x8a\xcf\x88\xe2\xcd\x93\xd0\xe6\xde\xe3\xd9T\xf9\x1c\xa6<\x90(\x9f\xc5\x93\x87\xd3\xe4\x14\x9f\xf1\xd4\xd2\xf1\xe3I\xe9\xf1T\xecx*r\xaf\xdd\x19\x7f\xeacT\xb5\xf5\x11\x17\xa2j\xb0\xae\x8f\x19\xa1\xea\xda\x10@1\xd1\xaa^\x19z\xa9\x0e\\\xa5%\xc5\xc9\xb8U\xba>\xec\xf1\xaa\x8c$\xd5u/,tU_\xc5+K\xc9Lk\xbf\x02\xed\nCP\xa0\x1e\x06\xc8\x07\xc2\x00K\xf7\x06\xdf\x92\x86\xdc\xee\x82iF]\x7f\xb8\x8a\xe3\xb8c\xeb\xdd\x1f~\x7f\xa9\xe3h\x8dbru\xb7\xb9'\xd6\xc3\x8f+a1N\x1e\x84+\x06\x12\xa4\xf3\xb9\x06H\x9b\x9b\xf7\x81s\x80Y\xbbbOT\xfeX\xb35\xcb\x1f]\xe7\"\xe37\x07\xb9\xf5}L?x\xab\n\xabJ\xb5;\xab\x1c*v|\xe6y\xe7V\x02\xb2\x12\xb2\xb5\x88\x04\xa9\xa2;\xba\xc7\xcd\xea\xa9\x94\xeb\xa7\xaa4\x9a\x92\xda\xf8\x16\xb2N\xb5\xce\xb3\x0e\x01\x11o\xca\xe4+\xaa{~\xa7\xfb\x19\x88W{\x97\x15Y\xb9F\xec\"G\xfc\xac\xcb\xca\xe9-\x04!\xedH\xa2,\x91\x92\x0bi=7U^\x1a\\\x95h(=\xadSV{\x1d1\x94\xbfP\x0f\xd0(\x0b\xe1\x93$\xde\xbc\xfd\xf8\xfa[\xb1vS\xfc\x8e\\\x10\xe5bo\xfb\xb6\xd4\x9cw'(\x0c\xe6\x8d\nbq\x7f\xe2\xda_\xa2\xe9\xa6#\xbc\x81n\xabm%&h\xe7\xee\xc8\xf7\x1f\x9c\x89\xe6\xf0'=f\x85\x880\\\x99\x1f%\xfb\xbcf\x87\xe9\x16'f\xddyk\xec\xf0O\x97N\xb5\xf2\xf1\xc4Yu,\xaa\xde\x1a\xd8W5\x83\xe6\x98\xb7]\xe4\xd7u!B\x1fwC\xb4\xad\n\xe8\xd4d\xafxD\xa7&\xfb\xaa\xe6\xc5\x9e\x9al}\xe7CP\xcf\x98\xec{\x99\xbd\xa9\xc4\xae\xad\xab\x91\xf7\xefn\x08\xdf\x1b\x18\xe1{\x16\xf3w\x96\x84\xef\x11\xbeG\xf8\x9e2\xc2\xf7\x08\xdf\xb3\x19\xe1{##|\x8f\xf0=\xc2\xf7\x86\x86\x9d\xfc\x10\xbeG\xf8\x1e\xe1{\x84\xef\xcd\x07\x1f\x08\xdf#|\x8f\xf0=\xc2\xf7lF\xf8\xde\xc8\x08\xdf\xb3\x19\xe1{\x84\xef\x11\xbe\x87i[\x84\xef\x9d\x85\xef\xd1\xf9\xca3\xce\xe8\xb4\xec\x8c\xd0\xf9\xca\xfd_\x16\xa8f\xff\x19\xc0t\xber\xba\xba\xa5\xf3\x95\xe9|e:_\xd9E\xaf_\xff4d{]\x87/\x1b\xe4\x19\x1ab\xef\xc1M8d\xb9\x9di\xef\xd3U\xbf\xbe|\x92\xddEq\x9c\xc5\xaca8t\xefc\x00\xf5(\x08'\xd0\x91z\xcd\x82\xf4y {>\xaf\x00)\xb9s\x0cu>/\xd7q\x88s\xac\x9a5\x876wS\xc3x\xd6<=i\xee}\x95^\xca<\xeaG\xeb\xe5\xcb\x91-\x06\xc3\x96\xa3\x92\xc2\xb7\x92xT9\x86)OL\x94\xcf\xe3\xc9q\x955\x8b%\x17\xf3\xda\x89\x04Q$yB\x8e|Pl1\xff\xb1\x17\xd1\x15\xc9\xf2d\xaaaZ\xcf\xc2\xf6\x0f'\x18\x96`\xd8\xb1az\xd9\x96`X\x82a \x86\x05\x82a \x86\x9d0\x82aGF0,\xc1\xb0\x04\xc3\x0e\x0d;\xf9!\x18\x96`X\x82a \x86\x9d\x8f\x11\x11\x0cK0,\xc1\xb0\x04\xc3\xda\x8c`\xd8\x91\x11\x0ck3\x82a \x86%\x18\x16\xd3\xb6\x08\x86\x8d\x04\xc3\x0e\xd9\x88\xa9r\x0c\xaf\x1a\x1d\xdd\xae\xf9\x9c/P\x8e\xc5\xa8\xa6\xeb\xfe\x0c\xe4\xfe2\x07\xead\xd0\xc3\x9f\xf4\x9d\x16\xfc\xa9K\x15\xc1?u NrP\x96'\xa9\xcb^\x18\x10%\xab\xcd%\xde\xc5`\xa00L\x0fj\xcfl\x11\x18)\x00D\n\xcft*\x00\x89\x95m\xed\x95A]R,\xf8\xe4X\xc04 i\xfe\x86!M\x1e\x91]\x95\xde3\xea\xa5\xa1j[\x1a\xee\xbczi\x83\xf73\xca\x92~;\xea\xbf\xf4\xe9\xf4\xc6\xf1\xea\xd0V\xd5\x03\x1c\x8al=\xb9s*M\x9d\xcc\xce\xd3\xf6\x9fc<\xab\xb0\xb8\xb3\x8c\xc7\x05\x1efK\x17\xf8X\xe6\x9f\xfb\x03\xe8\xfb\xd2\xf6\x97{v6\xe4\x19\xea+/M%-\xa0\xb4\x83\xdc\x8f\x1e3\x18O\x15\xa1\xa6.)\xa4T\xb09\x16R\xd5R\xbc\x9c\xe7a\x00Y\x8b.s\xe2\xb2:\xca\xd8\x97\x07\x9f\xdfA\xda\x96\x01\xefu\xd9\xd6\xcf=\xdfU\x1a\x8d@v\x00r\x11Y\xb3\x82=f\xa5\xfb\xc0\xfa=k\xb3M\xd6fH8Quf\x92\x13\x1f|l\x06\xf7\xa8.:\x07\xcc\xb2M(\x9a\xb6\x12\xa7@\x17\x85X\x96C\x93\x97\xdb\xc2\x185~\xddL$\xd6g\x92\xff\xff$\xe5\xc8?\xa7.\xd5~r\xc2\x97\x16\xa5\xf8\xe0.\x05\xec\xce6P\xe4M\xeba\xaf\xac%\x0b\x05\xb2\xa6\x92\xb8\xb6\xcd\x82,\x17\x13\xacub\x04kY\x0c3+h \xd6\"X\x8b`- X\x8b`\xad #Xkd\x04k\x11\xacE\xb0\xd6\xd0\xb0\x93\x1f\x82\xb5\x08\xd6\"X\x8b`\xad\xf927\xc1Z\x04k\x11\xacE\xb0\x96\xcd\x08\xd6\x1a\x19\xc1Z6#X\x8b`-\x82\xb50m\x8b`\xad\xb3 '\x82\xb5,\xb0\x96\x8d\xc7B\x1d\xa5l\x91\x07\x1b\x0b\x8fe\xa4*\xc6\xce.\xdf'L\x8b\xfdxe\xdbc\xd4\x0d/\x12\xc6\xe2o\xe2\xe7s\xcc2\x86\x92B\xef\xb1-\x82w\x05\x01^\xf3\xb2\x9e\n\xf2B`^\xfe\xc6!\xcd\x8bz\xa1\x1a\x8a4Ls\x91\x16\x08|\xa1k_Z\x08\xf4\xb5\x18\xf6\x15\x0c~\xcd,4\x16\xfeZ\x06\xff\n\x06\xc0\x02K\xbd0\x04\x16\x84\x81\xa1A\xb0s\xca\x1c\x19\x06[\x16\x07\xc3\x00a\xd1\x910\xbc(\x12\x15\x0bC\x83a\xe7\xa3at\xbc3B\xa2\xa3\xe3\x9d}U\xf3\xf2\x8ew\xf6\x7f\xf8\xc3C\x9emK\x8eI\x8c\xd2\x92\x9a\x06+\xa7\x1et\xed^C\x11Pyb\x04TZ\xcc\xdf\xb1\x12PI@%\x01\x95\xca\x08\xa8$\xa0\xd2f\x04T\x8e\x8c\x80J\x02* \xa8\x1c\x1av\xf2C@%\x01\x95\x04T\x12P9\x1fE!\xa0\x92\x80J\x02* \xa8\xb4\x19\x01\x95##\xa0\xd2f\x04T\x12PI@%\xa6m\x11Py\x16\x88HGA\xcf8N\xd4\xb23BGA\xf7\x7fY\xa0\x9a\xfd\xc7\x15\xd3Q\xd0\xe9\xea\x96\x8e\x82\xa6\xa3\xa0\x7f!GA\x1f\x0f\xdb:\xdb\xb0\x8e\xc3\xcf\x0e\x87\"g\x9b\xd5\xa1\xc8\xca\xeb\x9fx\xe5\xbaNy\xfeN^\xfd\xae\xc8\xfa8\xa7\x19\x1cj\xf6\x98W\xc7\xa6x\x06\x95\x1c\xa8\xc7\x00O\x96\x7f\xfay\xdb\x887g\x05\xeb\x8dT\xd5\xcf/\x0c\xa3w\xb1\xc5^m\xc2\xcf\x10\x0fjb\x88\x0b\xdf\x15\xd5\xfaA\xff-3\xb9a\xf1f\x9e\xf8d_\xd6\xfe\xe9\xae\x88_`\x10\xad\xcbx{&\x91\xd4\x1a\x98\x9e\\k\xf8\x82\xbb\x99\x8d\xeb\xfd\xbb\x1b\xdbt\x9b\x18\xa4\x81\x11\x83d1b\x90\xa6\x8d\x18$b\x90FF\x0c\x121H6#\x06id\xc4 \x11\x83D\x0c\xd2\xd0\xb0\x93\x1fb\x90\x88A\"\x06\x89\x18\xa4\xf9\xea-1H\xc4 \x11\x83D\x0c\x92\xcd\x88A\x1a\x191H6#\x06\x89\x18$b\x900m\xeb\x8b3H\xfc\x7f\x8dD\x06\xcbL\xf1\x15*\x81\xc9\xdc\x01\xd6\xd2\xa3\x10\xb6\x16$\x8e\xa6$\xd7)\xc5Um\xd0\x08\xc5uZi\xbd\x91W\x0d\x94V\xd9\xf4\xc4\xdf\x07\x02\xabUT5\x12P?\xbf0Q\xb5\xaf\xbf\xb1\x0dc\x8a\xf0\x1a\xcc\xfd\x9574g\xbe\xc0\x9b7Ps\x07\xb7\x02\xe5\xdd\x0e\xc2n\xaf\x00|`\xad\xf1E(\xa5U\x97S\xc9;\xe2'\xdd\x17\x1e\x1b\xe7\xb6\xcf\xdd\xb3\x99\x80SUR\xbb\x9f\xddVJu\xdf>)\x86\x82\x7f\x92r]*\xb6\x9a\xb2\x02~U\x95\x97*\xd1_\xc1\xba\xda\xef\xb3r\xd3\xc0\xe6(\xaa\xc1\xf1\x101Y\xe4\x83\x18|\xcf\xb6y\xf9\xbd\x90\xb5\xe5\x94\xd2\x98*\xea\xf7\x9a\xf7\xaa\xb6\xe2W\xb2\xa2\xa9d\x99]\x0f\xa9`\xc3Z\x118h\xc7\xc4^c\xd6\x17G\x17s\x9d\x95\xb0\xcb\xcaM\xc1 S\x07\xbav\xd5,D\x02\xd7\x13t\x06e\x02\xb5\x9cr\xb5\xdd\xcb\xe1\xe3\xde\x1dc\xa5\x90=\xd4\xacVg\xe0\xa2\xc3\xac\xdc\xfb\x99J\x83\xe8\xc9\xa3\xae\x04y\x03\xd5\xb1\xbd\xac\xee/7Y\xcb$\xcac\xd6\xda\xc7\x9cw\xa65\xfcY\x13\x04\xae\xc7\xd4,[\xef\xf8P\xaa\xa6\xff\xddSD\x16\xd9\xe7\xdc\x1a\x0d\x88\x9b;\xe2\x18\xea\xbb\xc0G\x18\xc3\x7fA\xaf\xf8\x9ca\x9d\xb5| \x105!\xd5\x0cU9\x8dT*\xc4\xcb\xd9tW\xbaVq\xa7i@Qm\xf3\xb5\xabR\xbb\xf7_\xb3}\xf5\xc86p_W{Q\xbd\x1f^\xfd\xbbsOCL\xb0\xf2F\xcd\xcb\xd5N\xbd\xd8\x0c\xbf\xe8\xf4\x9e\xee\xdbowu\xf54\x19|\xcb\x17\x08/\xe8\x0d\xb9\xc3\xfb\xb8H\xdc\xa1}\xecC\xdf\x0d(\x16]\xb5{\xb5\x05~`5\x7f\xb4\xfb\xd5\xbcUK\xd0\x0d_\xdd\x7fT1\xe6x\x85\x8d 6\xd3\xf2\xf2\xbe:\xb3N0\xc1\x8c\xc4>^\xaf\xbb\xf5\x12D\xd7\xb5\x95\xf7\x95\x12\xae\x144\xe8\xea\xc6\xab\xf2r\xbd\xcb\xdc\x92xs\\\xef@L\xb8\xb7\xb9\x08\xce\xb6\xcf\x15\x8e\xdb\xc7h\x85\xb5P\xc2\xb3c[\xed\xb36_\x0bmVgi2\xce\x94\x1e=V\xeb\"\xe73\x9e\xa6\xcdZ\xef\xa7\xef\x89\xee\xe8\x1fw\x01\xc9w \xdf\x1a\x04\xf5\"\x10\x9b\xf2\x98\xc7y\xa4#=\x96`=\"\xd2\x1eK\xf1\x1eQ\x88\x8f\xc5\x98\x8f\x85\xa8\x8fe\xb8\x8f\xb4\xe4Gd\xf6#1\xfd\x11\x91\xffHM\x80$c@\xd2R \xc98\x90p\x12d\x01\x16$9\x0d2\x8b\x07IN\x84DbB\x10TH\xc0$\x04I\x86,\xca\x86\xb8\xe9\x90\x90\x89SdB$\x94\x11I@\x89,\xc0\x89\xa4'Eb\xb2\"A@\x03\x92\x17 &F\x10\xe2\xeblj\x04\x93\xb6S\x1d\x8a\xc8\x8e\xcc\xab\xec0~\x04S\xde\x99\x0c\xc9\x19\x14\x89O\x81\x8bJ\x92\x04\xb1$x\x9a$\x84'A\xbe\x85yLI(U\xe2\xe3J\"\x92%3\xd8\x92\xf3\xe9\x12Le\x07\x12&\x89\x18\x13TN\x9d_JB\xd2$1k\x92\x946I\xc9\x9b\xa0\x89\x13\x1fs\xe2\xa3N\xd2p'\xc9\xc8\x93\xb4\xec\xc9<\xfa$\x98?\x99I\xa0\xccaP|c \x82\x15\xc0\xd3\x02!$\xcaL\x16e\x06\x8d\xe2\xa9\x82tDJb&%\x1d\x95\x92\x8eK\x89\xd9\xda\x02\xd9\x94P:\xa5\xe7Sz\xf3\xafb\x05\xf3a\x10\x17\xe79B\x9b\xec\x079B\x0b\xf3\xec\x92\x90#\xb4\xc50RY\x8b\x10\xca\x90;T\xfe\xaf\xa4\xb7\xa8\x12\x99}\x8b\xc6\xdd#\xa5\x92\xc7\xd2\x8bc\xd1\xa4\xb1e\x84\xb1\x08\xb2\xd8B\xa2\xd8\"\x92\xd8\x12\x82XJ9,\xaa\x18\x96T\n\x8b&\x84\xa5\x95\xc1\x12\x89`)%\xb0D\x02X\xa8\xfc\x95\\\xfcJ,}Y\xa6\xb9\xbe\x9e0\xb1\xec\x15E\xf4\xf2J^\xc8\xe9\x04R\xeeZP\xecj\xc9\x11zd\xc9\x05\xae\xd4\xf2V\xb5t\xb2SR\xd1)\x95\xe4\x94Jp\x8a\xd5\xb6\x02\xc5\xa60\xa9I\x0f\xb8\xa1\x0e\xc4\xfbjs,\xd8Jm\xb6\xa8[m>\xc4\xff!.\xfcA]7p#.\xf2F\xech\xca\xb4\xf4\xc6M#\x1d\xce\x84\x9f\x8e\x1e\x98\x07+\xdb_\xd9\xc3Z\xebr\x0e\x1c\x90\x87OWW\xbc0\x1fd\xeb\xab\x18[\xfb\x15\xe8\xa6\x05H\xf9\x10\xf1\xd8iT\x08\xf4\xc9S\xa7\xfb\xc8\xa0\xba6dp\xd0\xeb\x9fD\xef'#\xbd\xba\x0e\xa266\x00>\xa9\xb4ntR\x1fxJ\xc3\xa0\xe9]\x9d\x8b\xa7\xc8/W|\xaab;\xaeo\xe9\xa23h\xebc\xc3W\xbb\x0f\xac.Y\xd1\x05\xd3.\xd9\xe7v(#\xe7\x0d\x88\xe8\xaa\"\xc8\xb4HN\xcc8\xccM\xa0\xa6\x15\xc7\xa6\xabP\xccb~\xa1\xc2\xd8\x0eS\xf8\x1f\xbe\xe2\xbc\x7fw#C\xd4\xcae\xbf\xdeF*\xd86[?\xab\xc2\x1a\xc3\xb4\x10Y\xea\xc3\x9a7\xd0>^1\x94\xd5\x93,\xfc\xed\xf77\xa2\xeb\xcb\xdb\x06xWX\xb3C\x91\xad\xc5\x86T\x9f\xc87b\xc7\xeb\xdb\xeb\xebm\xde\xee\x8ew\xe2\xcbU/4\xbf[_n\xab\xeb\xbb\xa2\xba\xbb\xfe\xfd\xfa\x7f\xfd\xaf\xdff\xbf\xff=\xfb\xb7\xfb\x7f[\xaf\xff\xf5_\xee\xff\xe7\xef\xef\xfe\xe5\xf7\xff\xba\xce\xfe\xed\x8fY\xf6\xaf\xff\xb2f\xbf\xfb\xddo\xff\xe7o\x7f\xfb\xbbk\xf1\xb9\xf3[\xaf\xd7U\xcd\xaeeT\xd8\xeb\xc7\xdf]\x8b\x06){\x83\xff\xdf_\xfe\xe5\x8fz\xda=\xc0I\xae\xae\xae\xaf\xae\xae\xdb\xfd\xe1\xb2y\xca\xb6[V_nY9\xd5\xbed\x82\xea\xc2\xab\x1f\x9b\xaa\xb4W\xabz\xd0\x0b\xa3R\xa6\xbe\xaeY\x02+b\x9fP\xc1\x16\x1e8\xa87\xffV\x9e\xe8@\xec\xaf\xcc\x8b X\x92\xe3\xd7IL`\xa2\x19X\xee1q\x01\xfd7b\x00\x88\x01\x18\x1b1\x00\xd3F\x0c\x001\x00##\x06\x80\x18\x00\x9b\x11\x0302b\x00\x88\x01 \x06`h\xd8\xc9\x0f1\x00\xc4\x00\x10\x03@\x0c\xc0|\xf5\x84\x18\x00b\x00\x88\x01 \x06\xc0f\xc4\x00\x8c\x8c\x18\x00\x9b\x11\x03@\x0c\x001\x00\x98\xb6\xf5\xc5\x19\x00Ct6\xd2r1\x00'Jn\x7f\xb8\xb4\x10t\xbb\x03Iy\xb3\xe0/\xadf\x7f?\xb2f(\"\x88\xb1-o\xb4\x92\xa5\x92;\x96\x1bV\xab6 4\xe7\xb1z-\xb6\xce\xabz\xb0\x8eNp\xae\xb94\xdbA\xae\x93\x01\x0b\xf2\xbb\xf5uv84\xd7y\xd9\xb2ZT\xc4*[\xaf\xabc\xd96\xd7\xbc\xbf\xae\xab\xa2`\xf5\xf5\xe3\xef\xae\xc5\xebp\xc4.x'~\xefT\xfc\xac(\x8c7\xa8\xab\xfc\xf6\xe6;\xe8\x93\x85\xe6x'!\x08=\xddA\x08\xc8*\xcb\xdd\xce#\"\xeb\xa7\xe2\xb2\xcc\xacz\xe8\x0b\x13\x93\xcd\x175\xb6A1\xe4\x85r\xc7[\xcd\x1cN\xdf\xd8\xf0\xfd\x0c\xcd\x99I\xf0f\x14TM\xc9\x17\xb5bevW\xb0\x8d[\x94\xfb\x16\xee\xaa\xaa`\xdd\x11\xf9\xa76(\xe2i\xf2 \xff_l\x97l\xf2F\xfe[\xeb\x19S\xcdr\"u\xf1\x19\xc9\xa6\xe4\x15\xb9\xc5_\xa5\xa4\xad\xbe\x94\xf7\xefn,\x85 \x05{`\xa4`[\xcc\xffYET\xb0\x13n\\\xcf\x1b\x96vU\xd3F\x1d\x90x\x82\xe9\x86\"\x9d]\x1a\x84\xb4}u\x83\x10\x7fEI\x86\x1f3\xe1\xc9\x81\xc7\xde\xfc\xc6&\xb4\xd5\x95\xea\xb2<\xdf\xbd\xab\xef\x01_\xff\x03\xd8OzP\xd2a\xf6\xba\xd7\xd9\xc7\xaci6\x0f\x83U\x9d\xd0\x05\x0d\xc1\xf8\xce\xa5f\xb1\xcfl}l\xa5v\x9c\xc9\nS\x14\xe6\xf8J\x1a\x9f\xe7|\xad4>\x0f\x8c\xc6gu\xe7$%\xde\x0d\xd0m\x9d\x95\xcd\xbd\\fmXY\xedW\xbb\xac\xd9\xb1\xe6\xfa\xa7\xb6\xce\xd6\xccE\x84\xbf\xe2\x97\xff9kv\xfd\x10\x0d\"\x89\xbc\x94\xdb2<%\xc8K\x991\x11gK\xa60\x18\x99\xbbT\xd4\x8f/l\x1c\xe5u0\xeb\x03\x18\x8fD\xbc.\xbf\xc9K\xd8\xb1\xcf\xeaU\xff\xa6\xdf\xf75*]\xbc6[\xadO$Tu\xbb\xca7\xff\xef\xf5\x7f\xafwYY\xb2\x82\xff\xc7o\xfe\xff\xd7\xff-\xae6i\xc2\x04;\x96\xfe\x05\xe0\xe9\xf8\"2\xeeX\xf6\x89\xfe\xe2\xa3\xb8h\xb0\xf6;-}3=\xa0\xc8\xfb\xd5\xcf/lH9\xad\xc6\xb1}\x0d_#oi\x11\xbe!\xffX\xd5\x9b`\xce\xcd\x85\xa8\x14\x06\xaa{\xe0\x1f\xc9\xb5\xfa>z\x04\xbf\x9e\x8e\x0c\n\x1a\x1b\x14\xa3[\x9d\xad\xa5\x8b\xa0\x8fP\x96\xd8\xbf\x1a\x96\xef\x8f\xe56\xbf+\x18\xb4\xd5\x03\xb3\x0c\xc3\xda\xee\xb2\x86\xad\xc4K\x8d]_<\xe5\xe1w\xa3\xb2V\xb3\"{\xe6\xa5Ce\x11\xfb\x0e\xfa/o(\x15\x9ff\x83\xd7\xea\xed\xcd\x87\xdf\xffv2\xada\xce\x1aM!L\xd7\xbf\xaa{\xfd\xae\x8c \x90h\x17\xf6\xb2\x0dJf~WP\xb3\xf6X\x97\xa7=O\x83\x99`\xf1\xa6\xb8U7\xd8\xdf\xe9h\x0bE_<\xdaF\xe9\xfe\xac\x00\x08[W\xd4\x9b\xf7\xc3\xf5\x7f\xb6%\xfb\xdc\xae\x1e\xd8\xb3{\x90\xf56C\x14\xe3\xaa|\xd8\xfe\xe1\xfa\xa6u~\xf4\xcc\x93\xffSA\xddY\xd3\xc8\x8d\x87w\xd9\x96\xbd\x97Z\xdf\x95\xfc\xdd\x91\xa0\xf4\x17n\xb5s\xe9!\xdb2\xd8WM\x0bL\xa0\xd3\x82\xab\x9e\xea\x17\xab6s\xcc-\x82*\xc6\x13MYU\x8d\xb3\xbb\x13\xd9\x11\xf5\"\xfeQ\x1e\xf7w\x12\xff\xd5\xb0\xbeA\x87\xdf;\xd21\xabO\xecx\xaeD\x82\xae\x8e\xee)k\xa0a\xed\x85\xf0eU\xfe\x08\x8dPQy\xe3\xddH\x8c\xfb)oN\xdf\xbd\xbf'\x91\xe7\xfaVe\xc9$\x15\x1ba\xed\xa1\xe6\x12\xb4\xfa\x10F\xab\x8f\x91y\xbbM_eK\xfb\xb9\xaf>\xfa\xd1\x86\xf7\xa2S\xad\x7f\xd4[\xab\xae9S\xbd\x80\x1c4\x85\x7f\x8f\xeaW\xd4w\xd1\xf5\xe3\xa2\xf3\xde\xe6\xc3\xedw\xd1)\xab \x96\xa3_\xbe\x82\xb7e\xf1,\x9c\xc8\xaa{\xa8\xee\xef\x1b\xd6BU\xc30\xbb`x\xf55\xac5?\xc9$\x91\x18\xa4YG\xbb\xe7\x93\xa3\xc7\xda\x9e\xb9\xae\xf6\x87\x82\xb5\xe3\x07^\xc1\xdb\x03+\xfbn<\xab\xdd\xf5V\xb3l#\xa4X>\xbf\x16;\\jJ)\x82t\xb0\xd6\x11\x05O\xd8\xf0\xfb\x18g\xf2\x8e\xf1\xbc\x14U\xc3d\xda\xeb\xac\x84\xb2\x82\xa2*\xb7\xac\xee\xf4J\xfdt1%\x13\x0fw>\xd3\x9b1\xa1*\xe4\xe5\x16\xd1=>\xed\x98\x8a3\xc8\xcc\xefG\xa4\xc0D\x8e\x8e\xa5\xfa\x8fez\xca\xb7\xef_\xbd~\xbfz\xf3\xf6\xcdkd\xa7\xd1\xdf\xf4\xe9\x8d\xf8\x7f\xe4\xd5\xfek\xbb\x1e-8O!\x1d\xd9T\x91\xbf\x85\xff\xcb\xea\xeaRj\xa1|a\xa0^\x8f31\xfd\xe6}mvTa\xdf\xea6\xa5e\xf4\x0d+\xf2G\xd1\x02\xf2RD\x05\x13 _\xa8\xb8\x10\xfb\xec\x196\xb9\x08\xb1\xa8\x96\x8eL^\x00\xce\xd5\x15\xa8\xdb\xdb\x1d{\x86'V\xcb\xf0\x14\xde\xefk\xf0\xba\xfa\x9cf\xb5\x99M\xf69[\xb7\xc5s\x17\xfc\xb3\xee\xa3X\x0c\x1f7\xf94\xb3sB|8\xe3\xbe\x0c=\x9fp\xce|\x009\xfb\x11\xd7I\xd8\xdd}\x11\xfa\xdb\x84\x93\x9d\x96\xaan\xa7;nU\xb7\xd5\x93\x12\x17d\xb4R\xd1\x89\xf9\xc7\\\xe8g\x98\xee\xb7\xdfS\xfc\x11K\xa9_`\xff\xce\xa6\x8b\xe9h-\x9a\xca[\xed\xaa\x83\xf3M\xf9f\xcb\xd2\xbcn\xac\xe82b\x80I\xe8\\Y\xfb\x82\x98\x1a\xdc\x85\x98A\xc9o^\xc4\x1dE|\xd6\xfa\xc3\x141g*O`r}\xf8\x88x\x05\x82\x00i\xeb\xec\xd1\xd1\xbb\xa9\xb0\xc3\xfe\x8a\xc6\xd6Ou\xc8\xfe~\xec\x07=\x95\xbe\xee\xe2\xf2\x06\xb2m\xcd\xd8\x06\x8e\x87\xaa\x84\xcd\xb1\xd6LV7\xd3\x98|\x04\xe2\xc3\x0c\xcb\xaa\xf8\x14\xfb\xb73\xdd(Q\x9fK\xd8\xb3O\x05\xda\x89{\xb0c\xde\xadNh\xa3\x96\xd0\x86\x7fu\xdf \xda\x9d\x19\x80\x8dW\xc0d\x82b^\xa5\xc6\xc6\xc9\x8b\xfa\xec\xcbxT\x13\xb3\xa7A!:ooy\x8a\x8e\xb93\xd0 \xd9sxw\xfdV{\xe0F\xaf\xff\xed\x97\xfb\x86\x0d\xff\x80A(;\xa1\xec)Qv@\x7f\xff& +K9\x88U\x97\x97\xb0}\xff\xee\xa6\xdf\x16\xd7A\x18&\x92{\xda\xf1y\x9d\x83IXW\xb5LK\xe0V*\x0cZ\x17\xbb\x81/\xd1\xc4\n\xcc\xac\xad\xc9*\xd2w}\xa8\xf6}\x19|Q\xe8\xa0f\x07&BW\x7f\x9f\xd5\xddKD\xc4b\x1cV\x95h\xd1\xaeh\x8c\xb6\xc8\xae2\xa4\x9b\xb3\x13\x92\x1f\xce]Q\xad\x1f\xe0$\x04\x9dq\xf5\xf9}P\xcd\x1es>\xc2\xaed\x93^\xf4\x8b\x93J\x8b|~\xcfU\xca\x13\xc0x+\xec\x8f\x11\xa8\xa6\xa6|]\xf6]\x95\n\xe9\xb2\xaf\xc2\xf3\xf1\x91Q\xadq\xb6\xf9#+\xbb|\x9d\xf1M\xbe\xe1\x99)\n\xd9\x7f\xbeW\xe9\xfdY>O\xec\xa5\xadkqN\x80W\x17\xb5tr\xc1\xa9x\xa9\xd5\x8e\x10\xf9r\xa4\x90\x98F\xa7\x9b\x9d\x18 \x98\x16\xf3\x8f*\x11\x05Llw)\x8dN7\xa3\xd3\xcd\xe8t3:\xdd\x8cN7\xa3\xd3\xcd\xb4\xd1\xe9ft\xba\x99a\xa8\xed\xb2\xd1\xac\x83N7\xa3\xd3\xcd\xe8t3\x9b\xd1\xe9f\xae\x9b|\xa5\xa4\xd3\xcd\xe8t3:\xdd\x8cN7\xa3\xd3\xcd\xe8t3\xa0\xd3\xcd\xe8t3:\xdd\x8cN7\xb3%\x1b\xfdt3\x8a\xa5\x85\x8e\xc7b\xd9Q\xa0XZ\xfd_\x16\xa8f\x7f\xbc'\x8a\xa5\x95\xaen)\x96\x16\xc5\xd2\xfa%\xc4\xd2\x9arY\xbd\xfe\xa9'x\xffy}\xa8\xea\xb6\xb9\xfeI\xd1\xc4\xae\xe0Z\x1a\xa4\xed\xfcYK\xe1\xcaz3D\xecm\xee\xab\xea\xa7\x97\xe9\xbd:\xc1,\x0c\xb9\xe6\xaci\xaau.v_\xc5\xa2Iv\x12\x12\x13\xf4\x05\xa5rf\x11\xbc\xd9\x04\xbf\x1b\xeb\xb9N\xac(\xa5\xc2\xe7\x96\xe5\xf5SD\xdc\xebq^\xc5\xbb\xae\"\x1dW\x91n\xabg;\xadbU\x93 \x87\xd5\xde)\xd5\x91\x1e\xc2]5\x9e\xb3\xaa\xb7 \x04\xb8\xaa&tT\xfd\"n\xaa\xc9\x9dT\xcfsQ]\xdcA\xd5\x93)\xbfsjD\xd7\xd4H\xfd_\xb0\x03h\x88K*\xd6!u\xae;*\xbe\x8b\x8a\xe8\x8a\x8aqD\xfdBn\xa8\xc1N\xa8\x0b\xb9\xa0\xe2\x1cP\xe7\xba\x9fz\xe7*\x80\x9a\xaf\x00\xce\xbf\x0d\xf9\xe5\xc1\xa2N\xa7\x08\x97S\x9c\x07]@\xe9\"8\x9b\xa2]M[\x84\xa3\xa9\xd7\xcd\x14U2\x8c#S\xa0\x83\xa9|\xb7\xfea\x05\xe3^\x1a\xe8\\\xeau-\x0d\xa9\x934n\xa5\xb8>|\xecPy\xc8\x0f\xac\xc8K\xa6E4\xde=]V\xe5ZO\x1ct\xe75\xd5\\\xeeX\xfb\xc4\xe7\x07\x1a\x9e\x9a\xaas\x19o\xaf\xe1-\xbba\x87\xac\xe6\x13]\xe1R$\x9au\xa3\x0b/\xa6`\x8aA\x16\xb3]&&\x1c\x07\xb1mR\xddO\xa5\xde\xa8\xf5}\xd7\xeb\x8aoh|\xb7\x9a\x98\x18\x17Z]3\xeb\xaa\xba\x9fX\x17\xfa^\xb2\x17\xe7R-`\xcf\xea\x87\x82\xc9G\xf1\x8c\xb1\xcfy\xd3\xb2rm\xbbI\\\xe4t)R\x89*\x7f\x90\xac\xedG\x14\xf5\x84\xa7L\x1c\xd0T\xe7l\x8a{\xf4v\xfd\xfen\x9f\x9c\xb7\x0c\x0b\xcf>9o\x91\xf3\xd6\x17q\xder\x1c+%\xc7\n\x94C\xd7T\x1a\xda\xc5k\xe0\xcfe\xb9\xf8{\xd6\x08\xa4\x92?\xe0\xa6\x9f ]\x08\x12Yn\xb97\x90\xa9\xfeLC(\xaa\x12\xc5\xcc\xbe\xeb\xf3l\xa9[\xbaA\xf2*SF^e\x16\xf3\x0fw\xe4UF^e\xe4U\xa6\x8c\xbc\xca\xc8\xab\xccf\xe4U62\xf2*#\xaf2\xf2*\x1b\x1av\xf2C^e\xe4UF^e\xe4U6\x9f\xc7'\xaf2\xf2*#\xaf2\xf2*\xb3\x19y\x95\x8d\x8c\xbc\xcalF^e\xe4UF^e\x98\xb6\xf5\xc5\xbd\xcazP\xc7Hj\xb0\xd8\xd4\x04\x86\xdc9\xb7\xc7\xafNp\n\xa5\xe1\x1b!1\xa9\xa9\xfc\x89e\xe0\xc2\x99K\xe0\x96p-\x85\xf8\x95\x90^\x1d>\n\xc6\xda_I\x807\xe2F\x89Ek\xcf\x05\x1dAR\xa9\xfb\x92w\xef\xfe8\xa2\x0e{t\xbfo\xf4\x1d\xc3\xdfMz:t\xb4\x87\x8f\\\x1e\x11F\xae\xd4U/\xcc9\xa2\xab\x87\xcd\xca|uN\xfad\xf0:l\x1e\x13. \xd4\x99W\xf0\xe6\x97\x9b\xca\xa8\x8b\xcaC\xed\x9e\x0d\x8b\xe3\x0di\xef\xaf\x1f\xc0\x94\x0fPe\x04\xa4\xea\x88,*\x04l\xbeI\x8b\xaa=\xceS\x1f\xd3\xe9\x8fK(\x90\x115\xc8\xa5T\xc8(:\xe4bJ\xe4BZ\xe42jdZ=2\xb2\"\x99X\x93\x8c\xa8J\xa6\xd6%\x93)\x93i\xb5\xc9d\xead\xb8>\xb9\x80B\x99\\\xa3\x9c\xa5R&\xd7)#)\x95\x08\xad2`\x12\x82\xd4+\x17U,\xdd\x9ae\xc8\xc4)\xb2n\x19\xaa\\&\xd0.\x17P/\xd3\xeb\x971\x15\xcc \x99\x0d\xa9b\x06\xeb\x98\x08I`\xb6\x96\x89I\xdb\xb9g\x19Q\xd1\x9cW\xd9a\xaa&\xa6\xbc3\x95\xcd3\xb4M\xdf\xbepT}3H\xe1\xc4k\x9c!*'\xf2-\xccS:C\xb5N\x9f\xda\x19Q\xef\x9c\xa1x\x9e\xafyb*;P\xf7L\xa4|\xa2r\xea\xfcR\x12\xea\x9f\x89\x15\xd0\xa4\x1ahJ\x15\x14\xad\x83\xfa\x94P\x9f\x16\x9aF\x0dM\xa6\x87\xa6UD\xe7i\xa2\xc1\xaa\xe8L]t\x8e2\xea\x1b\x03\x11\n\x16^\xc3\n\xd1Gg*\xa434RO\x15\xa4\xd3I\x13+\xa5\xe9\xb4\xd2tji\xcc\xd6\x16\xa8\x98\x86j\xa6\xf6\x03 \xa5YD\x1c\xeb\xb5\xb8U\xafq~\xaf!\xe0\x19g\xf8\x9aZ\x91\xee!\xedI\x19\x9d\xa3\xbck\xeau\x8cO\xef%\xd7n\x9d\x84O{\xf2\xebN\xe4\xdamXx\xf6\xc9\xb5\x9b\\\xbb\x97r\xedv\x1d\xadm:u\x1b\x1d\xf3\xd8\xbf\xfb}\x90\x7f\xf7D\xa2\x86\xbfww+9Z\x93\xa3\xf5\xd8\xfc\x83\x0f\x0ey@u\xdd\xd8^UZT\xd8\xc1\xbe\xd9\xee\x9e[\xa6\x02\x1d\xd2c\x0e\xb6-\x89Y\x90\xc32\x88C\x04\xc0a!\xbca\x11\xb8a \xb4!%\xd8\x10\x15kH\n5DC\x1a\xd2\x02\x0d\x89p\x86\x940C\"\x94!\x14dH\x8e1$\x86\x18,\x1b\x16\xbe\x9e01\xc0\x10\x05_\xf0\xc2\x0b\xc8\xe9\x84wS@\xda\x82\xd8BK\x8e\xd6#K\x8e*\xa4\x06\x15\xe2a\n\x01\xba9\nQ\x08\x04\x14|\xaa\xdd\\8\xc1\x97.9Z;l6\x8c@\x8e\xd6p\x0e~\x10\x06\x1f\x90\xa35\n8H\x82\x1bx\xf3H\x8e\xd6!\x90A:\xc4\x00 \x18\x90\xa3\xf5\xd9X\xc1\x1c\xa8 \x10)\x98\x05\x14\x84\xe3\x04\xe4h}j\xe9\x00\x82\xa4\xf8@*x \x15:\x10\xabm\x05b\x03a\xd0\x009Z\x0bK\x90\xb9$\x8e\xd6Zs\x95\x0e\xa9\xd7Za\xbe\xfei$\xe1\xff\xf3Z\xaa\x94\xc6\x0f\xf2\x0f\xae3\xe4\xfeq\xea\x9f\xad\x9f7\xe1\xa2\xddI\xc0X/\xed\x08\xce\xd9\x83,\xa9\x0b_\x98\x7f\xf6\xe85\xbb\x94\xbb\xb3\xb8\x8f\xd6+\xbc\xa1\xf6\xc9\xb0\xfbN\xe1\x92\x9b\x9c\x10N\xa7\x17$\xb8\xa5\x91\xdbR\x8bm\x91\xa4\xb6%\x84\xb6\xb3e\xb6ED\xb6\x05$\xb6\xf4\x02[:y-\xa2\xb8\x96PZ\x8b$\xac\xa5\x94\xd5\x92\x88j\xe9$\xb5$\x82Z\x98\x9c\x96XLK*\xa5Y\xa6\xf0\xee\xbe.\xa9\x8c\x16AD\xf3Hh\xa8\x89\x01J>[L\xb7\x1f\xd4e\xef\xd9\x9a\xe5\x8f|\x1e\xd1\x1ek5^\xf3t\xa0V?\xe8\xf4\xc4D*\x93lA\x97o\x95\x1b\xab\xff\xaf\xe5)\xea\xb2\x17\xe6\xfd;\xa8\xf6\x95\xaa\xb7YZ)\n\xffP\x1a\xbcxI\xdd\xcb\xd1o\xeb\xe4\x1b\xd7Fp\x92\xed\x02\xbf>Lp\x92a\xe1\xd9'8\x89\xe0\xa4\xaf\x06N\xeaG\xa3!\x92\xc4\x87y\xd6\xb4r\x05\x82\"\x92,c[\x97(\xa1Ic#4\xc9b\xfe\xa1\x87\xd0$B\x93\x08MRFh\x12\xa1I6#4id\x84&\x11\x9aDh\xd2\xd0\xb0\x93\x1fB\x93\x08M\"4\x89\xd0\xa4\xf9\xa2.\xa1I\x84&\x11\x9aDh\x92\xcd\x08M\x1a\x19\xa1I6#4\x89\xd0$B\x930m\x8b\xd0$a\xd6%\xfbW\x8c&\xa5@_x\xbf\xcc\xdaU\xb6\xe6_g\xc16[\xb1?\xd28 \x18c\x1b\xe0\x9d\xb8\xf9\xbb\xd1\xbd\x1d\x12#\xf6\xaa\xd5t\x86\xb50~F\x97L\x1f5\xa6o\xfer\xb0rr2\xf6\xa7\xab+_\x18*3\xae\xbb\xafWzS-+\xc2V\x99\xb5?\x10\xdf]\xff\xc1M\xcf\xb3\xfbF\x9f*+'_\xfftf4n\x14!+H\x94d\xdc]\xc9OP\xe7c:\xa7\x9b\xac\xb5\xb4\xdc\xde\x02s\x19\xb2\xcd\xd9\x0d\xdf<\x0f\xa3\x81\xbe\xe9J\xd0f\xed\xd9\xdb\x95\xb2\xe7\x90\x01Q\x84`\xa4&\xdeb\xd3-_\xabe\n\xe3\xbd\x81\x14(&S\xd2\x18\x95\x98\xd64mU;\x16\x1b\xaa\x04\xebj\xbf\xcf[\xf1\x15_\x9c|\xd7r3^@i\x87\xb6q\xac\xe0o\xb2\xa2\x90\x94\x89\xea\xab\xf2\xbbB2\x18\xfb1E>\xb3,\x82\x1a\xa8\x0f\xb5\xc0e\xf2f\xfa\x11:\xa2\x18\xef\x86\xbb<\x9fdY\xc8<\x99\xce\xb2\xed\xcd\x1c\xb2m^\x8a^{\xa2\xd7\x92\xf8I\x7fY\xd7\xfd::\xb9\xb3\xd84\x01\x1e>\xb0g7@\xe0m\xe6\xa8F\xee\x82k\xb4\xe9\xfch\xae\x86\xffS\x89WY\xd3HE\xee]\xb6e\xef%os%\x7fw$\xf8w>3\x10I \xda\xf1\xc0'\x9e\xfb\xaai\x81 \x89H\xe8GS\xc3@\xd5f\xe7\x9e\x93\x82\xec\xa3T\xd58\xa1\n\x91\x1dQ/\xe2\x1f=c\xadEIC\x05\xbbw\xa4cV\xdf\xba:\x96\xedJ$\xe8\x9ao?e\x0d4\xac\xbd\x80\xbcm\xb4\xee\xda\xc0\xb1\x94=\xc6F\xcaUO\xf9D3\xc5\xf5E2[\x06UU\x0d\x162y \xdb\xf7\xefn\xba\x0fB\xaf\"\x9a\x89\xe4\x9ev\xacv\xca\xf5\xeb\xaa\x96i\x89\x05\x92\xe6\xb7\xf4\xda\x84\xaf\xcb\x84Zf\xd6\xd6d\x15\xe9\xbb>T\xfb\xbe\x0c\xbe%\n\xef\xd2\x99\xd05\xbe\xcf\xea\xee%\"\x16\xea\xc3\xaa\x12-\xda\xb5T\xb7m\xfb!\xa0Y\xf9\xe1\xdc\x15\xd5\xfa\xc1\x05=F\xe8\x83\x88\x8f5,<\xfb\xc4\xc7\x12\x1f\xfb\xd5\xf0\xb1\x96\x95h\xdb\x9c\x0f\xcbN,\xaf\x89\x93\x1d\x1bq\xb2\x16\xf3\x0fA\xc4\xc9\x12'K\x9c\xac2\xe2d\x89\x93\xb5\x19q\xb2##N\x968Y\xe2d\x87\x86\x9d\xfc\x10'K\x9c,q\xb2\xc4\xc9\xce'\x8c\x88\x93%N\x968Y\xe2dmF\x9c\xec\xc8\x88\x93\xb5\x19q\xb2\xc4\xc9\x12'\x8bi[\xc4\xc9\n\xb3.\xd9\xbfbN\xd6\xc8\\\xc7\x14]=\xb0\xe7\xa9<\x8e\x84=\x05\xe2dj\xb8\x914\xab\x841L\x06\xe1\xaa\xa3v\xc4\xfe\xd96\x1fj\xce\x82$\xd0\x1c\xd64\x85s\x05oK\xa1\xb3\x8b5xu\x7f\xdf\xb0\x96/q\x87\xd9\x05c\x0f\xbea\x03\xca\x8a\xd7\xdf\xdf\x15\x08\xac\xad\xaf\xc0\xfb\xachf\xd5 L\xed\xc1X\xaaV\xe6z\xaavG\xdb!\xaa\x88\xa2\x82\xcb\xe3^\xf0v\xeao\xa2\xcfZg%/\xa5\xdc\x8c\xda\xb1R\xbf\x8ec\xd9\xed\xe3\x8d&\xec\xb7\"\xb5\x825M_\xb1rw\xec(\xb4\xe0\x07\xe6\xaaeU\xb3\xc3$\xbfH5O\x84m4*\xba\xc8\xf79\xb6\x9e\xc5\xb5Z{\x9e\x82\xa7\xe4\xce\xaf\xd9\xc2\xe5\xbc\x8a\xff:H\xed \xb7\x82\xcc?\xdd\xdeC\xc1\xee[\xb5\xd5\x98\xb7rx\xd1\x13l\xb1q-? \xf9\x10^\xe3w\xcf\x12\x97\xc8\x0e\x87\xaf\xaenM(\xac\xbf\xdfU\xc3\xc6\x1d\xbc\x9eE\x0b\xaeD\x97\x05\x12\xb3\xdc\xe4\xeb\xace=`#\xebU\\\xa8\x1a\x9d\x99\\^\xae\x8b\xe3f4 \xcf\xe4S:uo\xf4\x1e\x85Fllp\xf3\x01\xd4\xe0(\xf3\x12>\xdd\x8e)\xd2Q\xb6\xc5:\xa4f\x8db\x03\xc4'\xd7\x7f\xa3\xfc3\xbcR_X\xbe-\xab\xda\xf8*\x87\xc9\xca\x1aH\xf1Z\xef\xaa\xaa`Y\xe9zy5{d\xf5 9\xd7\x8bSW\x8f_Zn@\x855\xb3\x7f\x1b\x83t\xf83\x98$\xe9\xaaz\xc3\xea\xf1V\xe3\x87\xbc\\\x8b3z\x9b}\xd5\\6\x9b\x07\xf8\xed\xd5\x1f\xff\xb0h\x0d \xe7\x8e\x9e\xde\xed\xa2m6SUU\xe4\x8dhm#`\xbc\x99\xffb\xd9\xe7CQmX\xc0`~\xcaDXY\x08\x87\x92\xb0X\xe4\xd8\xde}\xa6\xb9\xfeIW\xd6?\x1d\xde3V\xa6G\xd4f\xce\xf8\x90(\x18\xf2\xcd\x84\xcb\x0c_\x10\xec\xf0\xbe0\xea\xc2\x97\xed\n3\x0b\xccA\xe8K\x1d\x95._\x84\xe5`k\x0dt\x89U\x8c\x8d\xc8\xa5\xd0\xb1\xb6\x0b\xfc\\\x12\xa1\xb1\x86\x85g\x9f\xd0XBc\x17Fc\xad\x0df\x9aa\xed\xd0X\xd3\xf9J}c\xe3\x89\x85\xb6\xce\x05B\x84S\xb7eUu\xd5\xb2\xcb\xca\x8a\xa6\xd2Sj>\xae\xca\xeeKo\xd2\xab:\xbb\xaf\xab}\xdf\xc5Y\xd3t\xf4z\x04\xdd\x12t;6\xff\xe0F\xd0-A\xb7\x04\xdd*#\xe8\x96\xa0[\x9b\x11t;2\x82n \xba%\xe8vh\xd8\xc9\x0fA\xb7\x04\xdd\x12tK\xd0\xed|\\\x89\xa0[\x82n \xba%\xe8\xd6f\x04\xdd\x8e\x8c\xa0[\x9b\x11tK\xd0-A\xb7\x98\xb6E\xd0\xad0\xeb\x92\xfdg\x01\xddj\x0cf2wC\xb4(u\xb6\xe0\x0b\xf0@F\x8cG\x07\x0b\xf4\x8fq$\xdd\x9b\xfe\xb6\xa9 \xbaF\xca\x82\x06b\x8d\x19>W'\x87\x8e\x9eku7}\xb7~8u\x13\xe9\xd3\x84\xdb\xefoNX\xe9.\x19\xc3i\xa4\xfb\xdb\xd0kD\xe2\xd9\xe3\xf8\xbf\x03\x1f\x92a^\xd4\x15/\xcc\x81\xa4\xab\x81dh\x8aS\xe0AP~\n\xb5\xd2\x91\x9b\x8d\x160\x0e\x1fl\x8b\xfe\xac\x8d@O\x02=\x11\xc2\x1c\x81\x9e\x04z\x0e\xcc\x0bz\x0e\x07\x89S\xcaS\xfdw\x8b\xc1\x10\x94\xe9\xf6\xb9\xe09\x14\x9b*\xa8\xc2$: Z\xda>/oEj\xf0;\xf5\xf7\x85q \xdb\xb9\xdc\x03*H^\x17\x0c\x06\xc988^6H\xa5>>\xdb\xb8K\xd0\xd8@\x99\x83\x04\xa9\\\xa8\x8b\x88\n2\x0d\xa1h\xa6\xa3\x82\x0e\xa3\xa3\xdd-\xb7\x13\x0cD0\x10b\x1b\x97` \x82\x81\x06\x16\x00\x03\xa9\xe1!\x16\x0fD\xb1\xdf\xfc=\x08\xc1A\x16\xf3\x8f?\x04\x07\x11\x1cDp\x902\x82\x83\x08\x0e\xb2\x19\xc1A##8\x88\xe0 \x82\x83\x86\x86\x9d\xfc\x10\x1cDp\x10\xc1A\x04\x07\xcd\x97U \x0e\"8\x88\xe0 \x82\x83lFp\xd0\xc8\x08\x0e\xb2\x19\xc1A\x04\x07\x11\x1c\x84i[\x04\x07 \xb3.\xd9\x7fNp\x90\x8dG\x99\xca\xb0\xe6\n\x1c0AP\x96 \x0d\x92h\x90\xae\xc8\x7f:\xa0\x9f\xb1\xd6)X\x8c\x9c\xf1NP\x1c\xa7\xba9=6U\x9c\x15m\x05v\xc6\x89\xa9k^\x18\xaf\xd3\xd7\xc4,\x85\x12\xb1\xd1\xd6\x9d\xc8*j~\xc4T\xa9y\x98<\xd0Lt\xe76\xea\xe6PW\xd5}\xe2\xfc\xedY\xfdP0\xf9(\xfe\xfd\xb2\xcfy\xd3\x8e\x8ea\xd7&.rb+*Q\xc5\x1cd\xad\x1a\xfaxi\xe5\x13\x9e\xb2\xa6;\xef\xd7\xbeo\xe8|\xa9\xe0}\xb1@\x80\xd0\xd0\xc2\xb3O\x80\x10\x01B\x0b\x03B\xd6\x06c=\xc3\xb1\xe3\x83\xcc3\xc7\xd5\xe75\x8e\x07\xa8\xadc\x88\xee\xc51\xdb\xb2K\xb6eV\xf6VY\xd1T:\xa4$\x1fCe\xcf\xa57*Tu\xdd\xd7\xd5\xde\xd6\xbb\xd9\x92=\xed\xf0\x08<\"\xf0hl\xfeq\x8d\xc0#\x02\x8f\x08\nHw\xc7\x0e\x1a\xe8\x82p\xa0\x13#\x1ch`\x84\x03\x11\x0etj\xb6\xcdC\xc2\x81\x08\x072\x9eA8\x10\xe1@\x84\x03\x11\x0eD8\x10\xe1@\xa6\x11\x0e46\xc2\x81<\x9d\xb2/]\xc2\x81\x1cF8\xd0\xb9\xb5N8\x10\xe1@S?\x11\x0etb\x84\x03\x8d\x8cp \x9b\x11\x0eD8\x10\xe1@\x98\xb6E8\x900\xeb\x92\x9dp\xa0\xce\xd0\xd9\x82H8PU\x96L\xae\x86\xaf\x7f\xea\xff\xe3\x9f\x1d'\xe4\xe0}\x8c\x93Tn\xba;o\xd4}}\xdc\x1fu\xc0\x97N\xf0$\xfcL\x06\xfds\xbb\x04Y\xb9\xb1F\x04:}\x90\xba\xea\x85\x11>\xba\xb6\xbe^\xbdO\x80\x02\xce\xdd9\xa9\xa2\xab\xcdSy\xbd\x9e7\xe9\xae\x86\x95\xae\x8d2\xe4\xfe\x1e+\x8f{\xf7B\xee\x12>|\xfc\xee\xe3\xeb\xd5\xa77\xb7on?\xde~\xf7\x97\xdb\xffz\xfdj\xf5\xe9\xcd\x87w\xafon\xfft\xfb\xfa\x15\xean~/\xea\xc2\x8f\xef\xff\xf3\xed\xbb\xd7oP\xd7\xa2/\xbc\xf9\xcb\xdb\x0f\xce\x8cj\xe1\xfe\x8c\xb2b\xf7\x1e\xb9}\x10\xefS3\x0f\x02\xed\xd3oU\xa0\x1eBz\x92\xaf\xdb\x99\x8e\x94\x8b\xf8\xdcA\xb4\x90\xc63\x1e\xcbj\xb8\x00^\xb8\x0bP5}\x01\xfc\x7f\xa1\xaaaPj\xcf\x96\x85\xbfY|\x0b\xaf\xd4\"O\x94\x16\x97\x1aO\x8bw/\xba6\xf8\xcc\xeb\xc7c#\xbe\x80\x9a\xf7zB780\xb1\xb9\xbf\xcb\xcaM\xb3\xcb\x1e&\xb7\x83G\x89\xab\x02\x8f\xd37N\xc3T(\x88N\x17\x9a\x96\x1d\xb4\"\xb6\xae\x8ee\xcb\xeaCV\xb7\xcf\x12\xa0D>\xd6\xf6\xccu\xc5gZ\xed\xf8\x81W\xf0\xf6\xc0J\xa3\xbb\xaf\xdd\xf5V\xb3l#\x04\xa9\x86\x95\x1b1UUt\xa3>\x03\x12\x99E\xd90\xc6\x99\x14L\xe9\xba\xa8\x1a&\xd3^g%\x94\x15\x14U\xb9e5\x9f\xc0\n\xa5B?]\xa0,\xe2\xe1\xcegz3V\xd5\x1b\xc6;-D\xf7\xf8\xb4cJ\x82a\xe6\xf7#R`\"G\xc7R\xfd\xc72=\xe5\xdb\xf7\xaf^\xbf_\xbdy\xfb\xe65\xb2\xd3\xe8o\xfa\xf4F\xfc?\xf2j\xff\xb5]\x8f\x16\x9c\xa7\x90\x8el\xaa\xc8\xdf\xc2\xffeuu)7\n\xf8rB\xbd\x1egb\xfa\xcd\xfb\xda\xec\xa8\xc2\xbe\xed\x0e<\xe5\x0d\xf4\x8e\xf7\xabE\xfe(Z\x00_\x0c\x95\xcf2\xe1\x0b\xb5l\xdag\xcf\xb0\xc9\x85\xfa$`/\xd1\xa3\xf0\x0b \x9f\xe27\xa5uT\xd83<\xb1\x9a\xf1V\xdfz\xbf\xaf\xc1\xeb\xeas\x9a\xd5f6\xd9\xe7l\xdd\n&\xcf\xc8\x8d\xedq\x93O3;'\xc4\x873\xee\xcb\xd0\xf3 \xe7\xcc\x07\x90\xb3\x1fq\x9d\\\xae\xf8\xf6\x90\x91\xdf&X\x97;\x93\x1d\xb7\xaa\xdb\xeaIm\x0eI!Wtb\xfe1\x17\xfa\x19\xa6\xfb\xed\xf7\x8b\xc6\x88\xa5\xd4/\xb0\x7fg\xd3\xc5t\xb4\x16\xbd\x10X\xed\xaa\x83\xf3M\xf9f\xcb\xd2\x9csfi\xc82\xba\xf0\xd1\xdet\x90\xda\xbe \xc6\xa2\xb6\xb9\x103(\xf9\xcd\x0bI\x16\xf1Y\xeb\x0f\xb3\x11h\x98\x87\xd9\x12\xb4\x83~\x05b7\xa7\xad\xb3GG\xef\xa6\x88\x0c\x7fEc\xeb\xa7:d|%\xaf\xf3\xa0\xd2\xd7]\\\xde@\xb6\xad\x19\xdb\xc0\xf1P\x95\xb09\x8a=\xc3\xc1Lc\xf2\x11\x88\x0f3,\xab\xe2S\xb4n9\x0c\x0d\xf7\xb9\x84=\xbb\x9b\x14\xf8\x1e\x8f\x1d\xf3nuB\x1b\xb5\x84\xee&\xf1\x99\xd1 \xf8\xc2\xbc\xdf\x9b\xe6\x150\x99\xa0\x98W\xa9\xb1q\xf2\xa2>\xfb*\xc6\xac\xbd\xe3\xb1\xc6qFm\x1d\xd8\xd2;d\xdb\xbc\x14{\x07\x13\xebh\x1d\x17W_\xe6B\xb5\x11\xe3\x87\x7f\xe4(\xd9\xe7v\xf5\xc0\x1c\x03\x1c\xaau\xa0\x90\x16\xd7\x81\xb7\xdat~\xf4\x11\xb7\xfc\x9f\x8a\xe1\xca\x1a55~\x97m\xd9{\x19\x1f\xf8J\xfe\xeeHP\x12\xef<)\x9e4\xafZ\x06\xfb\xaai\x81 RJ`T\x13\xb7\xb7U\x9b9\xf0\xe1\xa0\x8a\xc19\x968\xbbh\x91\x1dQ/\xe2\x1f\xd2m\x877G\xcd\xe6\x190\xd8\xbd#\x1d\xb3\xfa\xc4\x00\xb7\x12 \xba\xba\xe7\xa7\x8c\xf7\xe2\xed\x05\xe4m\xa3\xf1\xc3\x06\x8e\xa5\xfcP7r\xb0\x7f\xca'\x9a)\xae#\x90\xd92\x0e8\xae\x06\xfb\xf9y \xdb\xf7\xefn\xfax\xa5j3\xdd\xe6\x12\x06b\x08\xe2\x13<\x07\xb5\xba\xaej\x99\x96\xd0 t\xbci\xbdE\xcf\xd7jb)f\xd6\xd6d\x15\xe9\xbb>T\xfb\xbe\x0c\xbe\x9dz\xa8\xd9\x81\x89\xbe\xe3\xfb\xac\xee^\"B\xaf\x1aV\x95h\xd1.\xc5\xca\xa6~#\xdc\xd3\xe8\xccz\xf2D#O4\xf2D\x1b\x98\xf7\xcc\xfaS=d|h\xfd\xfb\xa0C\xeb'\x12\xa5\x03\xebO\x8c\x1c\xc5,\xe6\x1f|d2\xe4(F\x8eb\xe4(F\x8eb\xe4(f5r\x14\x1b\x199\x8a\x91\xa3\x189\x8a\x0d\x0d;\xf9!G1r\x14#G1r\x14\x9b\x8f\xd8\x93\xa3\x189\x8a\x91\xa3\x189\x8a\xd9\x8c\x1c\xc5FF\x8eb6#G1r\x14#G1L\xdb\xfa\xf2\x8eb\xa7\xde8cG\xb1\x1eY\xfbb\xeeX=\xb3s\xf5\xc0\x9e\xa7r:\x12\xce\x14\xe8\x92\xa9N\xbdf\xed\xb1.%\xec`j\xfcW\x1d\x15#v\xa9\xb6#\x0cQ(\xf5\x9aF\x9b\xa6\\\xae\xe0m)tl\xb1\xd2\xad\xee\xef\x1b\xd6\xf2\x85\xe40\xbb`\xect7l\x00\xe3\xf2\xfa\x1b\x1f#\xdbW\xe0}V4\xb3j\x10\xa6v:,U+s=U\xbb\xa3M\x07UDQ\xc1\xe5q\xcf\xea|\xad\xff&z\x06\x856\xcb-\x9f\x1d+\xf5\xeb8\x96\xddn\xd9hZ|+R+X\xd3\xf4\x15+\xf7\xa0\x8eBk}`\xaeZV5;L\xf2\x8bT\xf3\x08.\xb0Tt\x91\xefsl=\x8bk\xb5\xbc;\x05'\xc9\xfdU\xb3\x85\xcb\xd9\x0b\xffu\x90\xdaAn\xb8\x98\x7f\xba\xbd\x87\x82\xdd\xb7jC/oe'\xae\xa7\xb1b{X~@\xf2!\xbc\xc6\xef\x9e%\x8e\x90\x1d\x0e_]\xdd\x9a\xd0U\x7f\xbf\xab\x86\x8d;x=\x8b\x16\\\x89.\x0b\xf8?\xf2r\x93\xaf\xb3\x96\xf5\x00\x8b\xacWq\xa1jtfr*b\xeb\xb0\x923\xf9\x94NC\x1b\xbdG\xa1\xc4\x1a\xdb\xc8|\x9828\xc5\xbc\x84O\xb7\xcd\xe8\xbd\x8d\xb2-f\xfb5k\x94\x02/>\xb9\xfe\x1b\xe5\x9f\xe1\x95\xfa\xc2\xf2mY\xd5\xc6W9LV\xd6@\x8a\xd7:\x8eQnyy5{du3\xe9u;zq\xea\xea\xf1K\xcb\x0dh\xaff\xf6oc\x90\x0e\x7f\x06\x93\xa4\x9a\x80\xb0\xc7\x1bz\x1f\xf2r-\x86\xcaf_5\x97\xcd\xe6\x01~{\xf5\xc7?$\xaf\xa1)\xdf^\xe9\xda+ \xaa\xeb\xc7\xdf]\x8b\xd1]]hs\xdc\xbd\x11W\xbe\x13W\x0d\xfct\xfbi\x81n\x96\xf9\xddZ\xd1Yvw\\#%\xf5\xfb\x0bs\xc45\xebrl#\xffoQ\x9df\x10\xe8\xd3\xea\xdcW\x9bc1\xb1\xa3\xef\xcc$x3\xcaM\x89\x84+\xf9\xc6<\x0c\x86\xcf%\xc2\xeb\x10\x81RU\x06u4\xca\xdf\xa0\xb24\xec\xad\x85N\xc5\x04J\xb7a\xb9\xfds\xf2\x10\xbf\x04\"y&\xa3\x95\x8e\xf1\xa8:\x08\x8f\x1a|9\xef\xdf\xdd\xd8\x96\x04r\xb3\xa5\xcf,qR\xc4I\x8d\xcd\xff)\x13'E\x9c\x14qR\xca\x88\x93\"N\xcaf\xc4I\x8d\x8c8)\xe2\xa4\x88\x93\x1a\x1av\xf2C\x9c\x14qR\xc4I\x11'5_a&N\x8a8)\xe2\xa4\x88\x93\xb2\x19qR##N\xcaf\xc4I\x11'E\x9c\x14\xa6m-\xc2I\xb9\x05W\x11K\xb9S]\xe5\xbfV:\x8a)8\xc5W\x11O\xf44H\xf2\xed\xf77P\xc8x\x03J\"\xabT`\xd5>T\xa7E\x80\x95\xa9\xa9\xdf_\x98\x00k\xa9\xd6\xb1\xb5_\x81Z\xa3\xb2\x195\xf2\x97\x8a\x8a\xe2\x0b\xfc5\xac#\xff\xf3\xa3\x05@l\x11\n\x15\xe0\x8b\x0d\x01\x9b5\xda\xa2\xaaU0S\xb1\x82\x84\xaa\x15,\xa2\\AL\xf5\n\x16S\xb0 \x8e\x8a\x05\xcb)Y\xb0\x94\x9a\x05\x0b)Z\x90X\xd5\x82\xd8\xca\x16\xa4V\xb7 \xa6\xc2\x05\xc9U.H\xa7tAb\xb5\x0b\xd2)^0C\xf5\x82%\x94/H\xaf~\xc1<\x05\x0c\xd2\xab`\x10K \x03\x8c\x1a\x06aS\x17\xa4*\x06\xcb*c\xe0Q\xc7 p\xd2\x15\xa8\x929\xd3\x1aN\x95\x90J\x19\xa4P\xcb` \xc5\x0c\x16P\xcd \xaar\x06a\x02\x0f`\x154\x08W\xd1\x00\xb3%}\x86\x9a\x06\xc8\xf4=;g\x11\x955\x98]\xf9a\n\x1b K>Si\x83s\xd46\xf0\xd7x\\\xd5\x0d\xc2\x947\x08P\xdf H\x81\x03\xfc[\x99\xa7\xc4A\xb0\x1a\x07^E\x0eb\xaar0G\x99\x83\x08\xea\x1c \xab>P\xa5\x83TJ\x1d`\xf3\xeb\xf9\x92\x12\xaav\x90Z\xb9\x83\xb4\xea\x1d$U\xf0\x00\xaf\xe2\x81W\xc9\x03\xaf\x9a\x07\x89\x14=H\xa7\xeaAbe\x0ff\xaa{\x10\xae\xf0\xc1\\\x95\x0ff)}\xe0\xff\xee\x01\xa1\xca@\x802\x13\xa2\xfa\xc1\\\xe5\x0f\xe6\xa8\x7f\xe0\xaf\x8ct* \xa4V\x02!\xa1\x1a\x08 \x15A\x88\xdc\xfe\x02\x95A\x08V\x07a\"\xca\xbf\xb6\xa1~\xd38\x8e\x0e\xc4\xae\xbc\x8d3[z\xc1\xcf<\xb7\xc5t\x96\xd3\xbd\xe9TbFG*\xef\x9b~=\xe3S[\xec\x93\x0c\xeb\xa1-M+\\\x8a\x07rg\x7f\xfa\xa7\xfd\xe4A:\xaf\x85\xcek\xb1\x1a\x9d\xd7B\xe7\xb5,w^\x8b\xff\x85\x18n\xc5\xb2k\x8b\xe1V\xac:Ir+\x16\xe6\xe9>\xc8\xad\xd8b\xfe\xf1\x0c\x07m\xa0\xban\xccw\xd2[TP\xc3\xbe\xd1\xef\x9ee\xa6\x024\xd2\xc3\x19\xd1\xc0\x8ce\xa0\x8c\x08@\xc6B0\xc6\" \xc6\x12\x10FJ\x00#*|\x91\x14\xbc\x88\x06]\xa4\x05.\x12\xc1\x16)A\x8bD\x90E(`\x91\x1c\xaeH\x0cVX\xb6-|=ab\xa0\"\nL\xe1\x05)\x90\xd3 \xd4\"yQx\xa2%\xb7\xe2\x91%\x87$R\x03\x12\xf1\xe0\x88\x00m\x1e\x05E\x04\x02\x11>\xc5o.\x08\xe1K\x97\xdc\x8a\x1d6\x1bt \xb7b8\x07f\x08\x03\x19\xc8\xad\x18\x05,$\x81\x15\xbcy$\xb7\xe2\x100!\x1d\x94\x80\x04\x12\xc8\xad\xf8l\xf8`\x0ex\x10\x08\x1d\xcc\x02\x0e\xc2a\x03r+>\xb5t@AR\x98 \x15H\x90\n\"\x88\xd5\xb6\x02\xe1\x810p\x00s\xfc\x02\x1dl\x80\x0e\x8eM\x07\x1b\x18\xf6E\xaa\xd9\x1f|\x9f\x0e6HW\xb7t\xb0\x01\x1dl\xf0\xb2\x0f6\xf8\x957\xd0\xc6\xf5O]\xe4\x85\x7f*b\xc1\x13u\xa3\x0f\xbaQ\x9e\xc4\xdb\xf0\xc5\xd8P?\xbf\xe0\x10\x1b.p\xe1,\x92\xae\xf5r\x07(\x99\x00\xbb\xed\x1eN\x1c\xc8\xf5\xf0tzA\xbcA\x1a\xda 5k\x10\x894X\x8238\x9b2X\x841X\x800H\xcf\x17\xa4\xa3\x0b\"\xb2\x05 \xc9\x82H\\AJ\xaa S\x90\x8e(H\xc2\x13\x84\xd1\x04\x89Y\x82\xa4$\x81e\x07\xc3\xdd\xd7%\xa5\x08\"0\x04\x1e\x82\x0051@\xd1\x03\x8b\xb1\x03\xed$9\x80\x9b\xc0D\xa5\x06B\x98\x81\xc8\xc4@b^ --\x10\x8b\x15@\x8b\xd9\x08N \x88\x12p\x8bm\xf3\x08\x01w\x9a\x93\x1b\xe1\xd1\xd8\x80\xd0\xca\x0c\xe1\x02p\xf5\x15\xc4\x04\xcc$\x02\xa6\x05\x85\x884\x00\x9a\x05\xc0\x91\x00X\x0e\xc0[\xcbs\x18\x80\x10\x02\xc0\xa5\xffGR\xff\x03\xb5\xff\xf3\x94\x7f\x8f\xa6\x1e\xa2\xfa'\xd0\xfc=\xb9\x9bl\xe9\xc9\xd4\xfe\x84Z\x7f2\xa5?\x95\xce\x8fR\xf9]2\xa4K\xe1\x8f\xaf\xef'Q\xf7\xd3i\xfb\xe1\xca~\x90\xae?C\xd5\x0f\xd5\xf4\x9d\x8a\xbe;wX\xc5\x15\xaf\xe6\xcf\xd0\xf2\x03\x95\xfc\xc9\xe2\xa6R\xf1\x13j\xf8i\x14\xfc4\xfa}\x9c\x96\x14\xa4\xdd\x87(\xf7\xf6!\xd3\xe2\xe6\x0fY\xd3T\xeb\\,7D\xaf#\xfb4\xe9;\xeb\x0c\xe4|\xa8\xab\xea~\x96\xc7!b\xe9\xabr\xbag\xf5C\xc1\xe4\xa3x\xdf\xc9>\xe7M\xcb\xca\xb5\xed&q\xd1j\xc7\xf2\xed\xae\x9d\xc8\x96LT^\x02Y\xab\x1a\x1a/\xb1|\xc2S\xd6@\xcd\xda:gS\xfbA\xed\xf9\xb2B\xcd\x1e\xf3&\xaf\xca\x95T\x18#m\"\xe0\xdc\xd1\xe5\xcb\x95\xcf\xef%S\x1d\xb6\xbb1\xf6\x90\xaa\xa9h\x0c]\xf6]5\x0d\xe9\xb2\xaf\xde\x1eo\xabj\x8a\xb1\xcd\x1fY\xd9\xe5\xcb\x9a\x06n\x0b\xe3\x0d\xcf\x0c\x9f\xf9\xf0T\xdf\xab\xf4\xfe,\x9f\x97\xf3\xd5\xfd\xba\x16\x9bE\xbcCk\xa5\xc8.s3\x91\xde\xd3./\x18<0v\xe0U0q\x91~\xce\x1b\xa97\x8b\xed\x8al\xcf\xba\x1dvh\xaa\xbd\xd8~oX\xd9\x1c\x1b\xc8\x8amU\xe7\xedn\xdf\xc0>{\x86\xf5\xae\xaa\xf8\xacmrr\xcf\xfb\xe5\xd6\xac\xb9\xbc\x845\xab\x85\x82\xb3\xae\xca\x8d\xda\x00gW\xdb+\xd8e\xb5\xd8\xe3{h.d\xefp\xb9\xcf\xd6\xbb\xbc\x9c\x9c\x8c\x8dw0\xe1V\xbc\x92\x86\xc1:kXs1\xa8IU\xc2QM6\x95h\x88SOP\x99\xe6S\x9a\xbc<2\xbdk\xbb\xaf\xca\xbc\x95\xc2K\xf1,\xd3\xcb\x04\x87\xc2x[PS\xe1\xe1+\x9cz\xc2\x96\xb5\x8d\xac\xa5\x93\x0b\xfc\xcdf\xecV\x1f\xcd\xab\xde\xe3T\x0f\xdf\xb3FlJ\x19\xdf\xafxc\x17b\xcbVR\x0e|D\x97\x1d\x9b^\x0b\xa8\xda\xbc\xaf+\xeb\x06\x95\xb3?$G~e\xe4\xc8o1\xff\xb8\x87\x11\xd4\xbde\xd4\xe6\xff2{\x0b\x95\xd5\x9d\x89\xd9\xb7\x95\x9d;+\x89\xa4\xf5\xf4\xe2z4y}\x19\x81=\x82\xc4\xbe\x90\xc8\xbe\x88\xcc\xbe\x84\xd0\x9eRj\x8f*\xb6'\x95\xdb\xa3 \xeei%\xf7D\xa2{J\xd9=\x91\xf0\x1e*\xbd'\x17\xdf\x13\xcb\xef3\x04\xf8\xc4\x12|\x14\x11\xde+\xc3\xa3\xa7\x13\xde\xfd\x08i\x8b\x89\xf1\xe4\xc8\x7fj\x89\x85\xf9\xd4\xd2|@QF \xf4\x81\x12\xbdW\x1f\x9b)\xd3\xfb\xd3%G~\x87\xcd\x94\xed\xc9\x91_\xdaL\x11?L\xc6'G~\x94\xa4\x9fD\xd4G\xe4\x91\x1c\xf9\xf1\xf2~:\x81\x1f)\xf1\x93#\xff\xd9b\xff\x1c\xb9?P\xf0\x9f%\xf9\x87\x8b\xfe\xe4\xc8o\xb3T\x08@R\x08 \x15\x06\x90\n\x04\x88\xd7\xb6\x82`\x800\x1c\x00\xe7\xc8\xdf\xf9%\x1a)\x0d\xd6\x9a\x03p@\xee\x9e\xdb\x19\x81\xbc\xfcVl6\x1b\x7f\xea].\xdb\xfa\x88\xf3\xb8\x1c,\xdb\xe7:\\\x1e\xb1\x0e\x97\x1f\xc4\xc5\x9d\xaf\xa5X\xa0\xca?\xc9A\xe1\xf6\xfb\x1b\x9c\xcf\xe5\xf1\x85\x9ek.kc\x864\xe5\xdf\xaf\x18\xc9\xa8\xc7h\xd1\xc9\x8f\xbe\xe8\xe4p\xdb*\xf7c\xdd\xc9\x88\x8d<\xe3\xd5\xb7\xea\x94\xfb\xe1\xbb'\x15\x94T\xd0S#\x15t\xdaH\x05%\x15td\xa4\x82\x92\nj3RAGF*(\xa9\xa0\xa4\x82\x0e\x0d;\xf9!\x15\x94TPRAI\x05\x9d\xbf\x7fL*(\xa9\xa0\xa4\x82\x92\nj3RAGF*\xa8\xcdH\x05%\x15\x94TPL\xdb\xfa\xd9\xa8\xa0_\xb5\xfe\xa9\xddE\xc3b\xce\x1a1\xdaot\n\xea\x8c\xdf.\x04mQ\xe8-Z\xe5\x90jw#\xcf\xa4[n\x97\x9eK9\x1d>J]\xf2\xc2\xc4\xd3\xf1\x1b\xf9z\xf5)\x9f_w\x1fF`\xd4\x04\x9c\xbe\xd0\x80\xcb 3 !\x8e\xf4\xd2\x90\x9b`\x80\xf7J\x97\x16\xcf\xb5^\x1a\xda\xc1^\xda\x02\xc5\x9a\xe5r/\x0d\xbbI\x07\xb3\xdc\xef\x9d\xc9\xe9\\c\x9c\xf0\xa5\xa5v\xc5\x97\x96\xd4!_Zz\xb7|i\xe9\x9d\xf3\xa59\\\xf4\xb5\x8d\xfaW\xffnx\xb4n\xa8E\xe8\xf9\x10\xf6\xa1\x86|5\x10[\xdb\x87\x99\xfa>$\xd4\xf8a\x11\x9d\x1fbj\xfd\xb0\x98\xde\x0fq4\x7fXN\xf7\x87\xa5\xb4\x7fXH\xff\x87\xc4\x0c\x00\xc4\xe6\x00 5\x0b\x001y\x00H\xce\x04@:.\x00\x12\xb3\x01\x90\x8e\x0f\x80\x19\x8c\x00,\xc1 @zV\x00\xe6\xf1\x02\x90\x9e\x19\x80X\xdc\x00`\xd8\x01\x08\x9b\xba \x19\x02X\x96#\x00\x0fK\x00\x81\x93\xae@\xa6\xc0\x99\xd6p\xaa\x84\xe4\n \x05[\x00K\xf0\x05\xb0\x00c\x00Q9\x03\x08\x93\xc3\x01\xcb\x1b@8s\x00\x18\x01\xef\x0c\xf6\x00\x90\xe9{t\x86\x88\x1c\x02\xcc\xae\xfc0\x1e\x01\x90%\x9f\xc9%\xc09l\x02\xf8k<.\xa3\x00a\x9c\x02\x04\xb0\n\x10\xc4+\x00\xfe\xad\xcc\xe3\x16 \x98]\x00/\xbf\x001\x19\x06\x98\xc31@\x04\x96\x01\x90U\x1f\xc84@*\xae\x01\xb0\xf9\xf5|I \x19\x07H\xcd9@Z\xd6\x01\x92\xf2\x0e\x80g\x1e\xc0\xcb=\x80\x97}\x80D\xfc\x03\xa4c 1\x07\x013Y\x08\x08\xe7!`.\x13\x01\xb3\xb8\x08\xf0\x7f\xf7\x80\xd0\xb0!@\xc7\x0ea$`.'\x01sX \xf0WF:f\x02Rs\x13\x90\x90\x9d\x80\x84\xfc\x04Dn\x7f\x81\x1c\x05\x04\xb3\x140\x19f^\x9a]%\x9e\xb8\x01\xbb\xf8\x1e\xb2\x02\x7f\xcd\xdb\x9d\x12\x08\xc5\xbe\xaa\x88x<\x96\xa5\xc5V\xcfTzYi\xf6\xa8;\x8f\x16%\xdf\xbd\xf5g{i\x1bkx}wX\xfd\xee\xc0\xe5 D@>\xc88\x80Z\xb3\x0e\xf6\xcb}b\x97_\xe6\xd2G\xf0\xbb]Z\xbd\xfbC\xa8\x9d!U\xba\x7f\xb8\xb6_t~\xb4o8\xff\xa7\xda2\xcd\x9aF\xee\x07\xbf\xcb\xb6\xec\xbd<\xc5\xe0J\xfe\xeeHP\x9c\x0e-\x92\xe2I\x8bc\xd8a_5m\x7f\xd2}1\xb5\xc9+N\xf8\x8eT1\xb8\x18\xf8\xce\x9d\xa9\xee\xc0\xf1\xa9\xb3\xe8\x8d\xfd\xd6{G:f\xf5\x99g\xb6;ny\xca\xc4A\xdf\x17\x90\xb7\x8d\xde\xf9o\xe0X\xca\x0fs#7C\x9f\xf2\x89f\x8a\xfb\xfee\xb6\x8c\xc8\x00\xd5`\x88\xc8K\xd8\xbe\x7fw\xd3\x07\x0bP\xfdr3\x91\xdc\xd3\x8e\xd5N\x11i]\xd52-1\xf4\xe8S1to\xcfG=\xb1\x0fk\xd6\xd6d\x15\xe9\xbb>T\xfb\xbe\x0c\xde\x0e\xbff\x07&:\x8f\xef\xb3\xba{\x89\x98i\xd2\xa0\xaaD\x8bvM\x92N\xfbq\xd7\x87(\xa35\x0c\xa9\xad3\x036\x8ch3\xfe\x16\xe5B\xa6\xbb\x85\xc2-P\xb8\x85\xb1\xf9\xc7.\x1c\x9e\x81\xea\xa6\xb1\x9d\x94\xb4\xa8H\x86}K\xdf=\x9fL\x85b\xa4\xc70\xa2!\x18\xcb\xe0\x17\x11\xd0\x8b\x85\xb0\x8bE\x90\x8b%p\x8b\x94\xa8ET\xcc\")b\x11\x0d\xafH\x8bV$\xc2*R\"\x15\x89p\x8aP\x94\"9F\x91\x18\xa1\xb0lP\xf8z\xc2\xc4\xe8D\x14l\xc2\x8bL \xa7\x13\xa8\x05\xf1\xa2\x98DK\xe1\x16F\x96\x1c\x87H\x8dB\xc4\xc3 \x02Tx\x14\xfe\x10\x88>\xf8\xb4\xbd\xb9\xc8\x83/]\n\xb7\xe0\xb0\xd9H\x03\x85[\x80s\xb0\x850d\x81\xc2-\xa0\xd0\x84$X\x827\x8f\x14n!\x04AH\x87\x1f \xd1\x03\n\xb7p6f0\x071\x08\xc4\x0bf\xa1\x05\xe1X\x01\x85[8\xb5t\xe8@Rl \x152\x90\n\x17\x88\xd5\xb6\x021\x810D f\xb8\x85\xa5\xe2,\xf49\xeb%\xf6\xab\x07\xf6<\x95\xbd\x91B\xa6t\xe9Lu\xe42\xb4\xb8\xd4&MI\xee\xaa\x13\xb1\xc5\xce\xd46\x1f:Q\x0bE\x9a\xb7[\xb7(}\x05oK\xe1P.V\xb7\xd5\xfd}\xc3Z\xbex\x1cf\x17\x8c\xdd\xed\x86\xb5W\xa3\xfa\xfb\xbb\n$\xa1\xad\xaf\xc0\xfb\xachf\xd5 L\xednX\xaaV\xe6z\xaavG\x1b\x0d\xaa\x88\xa2\x82\xcb\xe3\x9e\xd5\xf9Z\xffM\xf4\x06\xeb\xac\xe4\xa5\x94\xdb<;V\xea\xd7q,\xbb\x1d\xb2\xd1T\xf8V\xa4V\xb0\xa6\xe9+V\xee;\x1d\x85\xcb\xf2\x03s\xd5\xb2\xaa\xd9a\x92_\xa4\x9aG\xf0\x80\xa5\xa2\x8b|\x9fc\xebY\\\xab\xa5\xdc)\x96@\xee\xa9\x9a-\\ \xbf\xc7b(\xd8\x1d\xe4&\x8b\xf9\xa7\xdb{(\xd8}\xab6\xf1\xf2Vv\xdcz\xea*\xb6\x84\xe5\x07$\x1f\xc2k\xfc\xeeY\x1e\xb9\x9f\x1d\x0e_]\xdd\x9a\x8cD\x7f\xbf\xab\x86\x8d;x=\x8b\x16\\\x89.\x0b\xf8?\xf2r\x93\xaf\xb3\x96\xf5\x91$d\xbd\x8a\x0bU\xa33\x93S'\xbe\x0f+9\x93O\xe9t\xb3\xd1{\x14\xea\xab\xb1u\xcc\x87&\x03+\xcaK\xf8t\xdb\x8c\xde\xdb(\xdbb\x86_\xb3F\xa9\xee\xe2\x93\xeb\xbfQ\xfe\x19^\xa9/,\xdf\x96Um|\x95\xc3de\x0d\xa4x\xadwUU\xb0\xact\xbd\xbc\x9a=\xb2z\x90\x9c\xeb\xc5\xa9\xab\xc7/-7\x18\x9b\x9a\xd9\xbf\x8dA:\xfc\x19L\x82%U\xbda\xf5x\x13\xefC^\xae\x05P\xd6\xec\xab\xe6\xb2\xd9<\xc0o\xaf\xfe\xf8\x87\xe45\x14-\xcc\xd0\xb5\x8e\x0er\xfd\xd3(P\xcb?\xaf%gg\xfc \xff\xe0\nM\xf4\xffL\x85&\xea#\x13!b\x12\x99\x07\xd8t\xe9\x99Q.T\xd8\"E\x02\"\xc2\x15\xa9+^v\xb4\"\x17\xddq\x16Z\xd8z\xe1\x0c\x94\x96\x82\xd5&\xc2\xb1\x0c\xb9i0\x9d^\x10\x94\x91\x06\xc9H\x0ddD\xc21\x96\x801\xceF1\x16\x011\x16\xc00\xd2C\x18\xe9\x10\x8c\x88\x00FB\xfc\"\x12|\x91\x12\xbdH\x02^\xa4\xc3.\x92@\x17a\xc8Eb\xe0\")na\xd9\xe6q\xf7uIQ\x8b\x08\xa0\x85\x07\xb3@M\x0cP\x88\xc5b\x80E;\x89W\xe0&0Q\xd1\x8a\x10\xb0\"2V\x91\x18\xaaH\x8bT\xc4\x02*\xd0\x8a?\x02\xa6\x08B)\xdc\x8a\xe4<\x8c\xc2\x9d\xe6\xa4Z\x10\x0d\xa0\x08\xad\xcc\x10x\x02W_A\xe0\xc4LlbZu\x89\x88L\xa0\x81 \x1c.\x81\x85%\xbc\xb5<\x07\x94\x08\xc1$\\\x90D$D\"\x10\x908\x0f\x8f\xf0\x80\x07!hD\x020\xc2\x93\xbb\xc9\x96\x9e\x0c\x89H\x08D$\xc3!R\xc1\x10(\x14\xc2\xa5\xd5\xba0\x88\xf8\x10D\x12\x04\"\x1d\x00\x11\x8e?\x04\xc1\x0f3\xd0\x87P\xf0\xc1\x89=\xb8s\x87\x95\xa5\xf1\xc8\xc3\x0c\xe0!\x10w\x98,n*\xd4!!\xe8\x90\x06sH\x039\xc4iIA\x80C\x08\xde`\x1f2'b\xe3\xdb\xc2\x00\x9c\x80\x0d\xa0\xa4>S\x82\xb0<\xe4PW\xd5\xfd,gM\xc4\x82X\xe5\x7f\xcf\xea\x87\x82\xc9G\xf1\x1e\x95}\xce\x9b\x96\x95k\xdbM\xe2\"g\xb4z\x95\xa8\n\x17\x9e\xb5\xaa\xf9\xf1\xb2\xca'\x17 Q\xf6g\x9d\x02\x80\xdb\xd8\x08\x8f\xfc\xef>l\x02\x15\xf3?u\xb4\xff\xa4q\xfe\xd3G\xf8O\x1f\xdb\xdf\x11\xd5\xdf\x15\xeb\xc2\x12} f\xf0\x01[n)\x1c\xc1\xd8(\x1c\x81\xc5\xfcC\x10F\xf1\xf6\x96Q\x1b\xaeo\x95\x16\xaa{;\x13\xb3\xef\xfb:\xb7>\x12i\xdf\xe9\xd5\xefh\xfa\xf72\nx\x04\x0d|!\x15|\x11\x1d| %<\xa5\x16\x1eU\x0dO\xaa\x87GS\xc4\xd3j\xe2\x89T\xf1\x94\xbax\"e\x95N\x9fJ\xa9\x8f\xd7\xb6\x82\xd4\xfa0\xbd\xfe\xe7\x1e\x8e`$_O\xe6oD\x1et\xaa\xf3\xc9mIr\x0b~\xbf\xe9\x91\x90\x1d\\\x90\x93\xdb\xbeTA\x8a\xaceM\xeb)\xc6\xd8\xb3\xde\xbc\x07\xaaGV\xd7\xb5X\xc0\x1bB\xb1\x1c\xe2xw\xa4}[\xe5l\x84\xdf9H\xaci\xabz,\xbc\x0c\xd5\xcc\xf4.\xd5S\x0e\xc36\x7f\xe1\xe3a[g\x1b\xb6Y\xa9\xafLz\x0d\xcb\xbbmN\xbf\x9f\xd4\xf57\xe2\xf2\x91\xbbo\xd9\xfd\x0c\xb7\xdf\xdf@!\xe5jq\xa5\xd5o\xd7\x92\x98\xba\xec\x859\xefZk\xd9\xa5\x88\x9eE\xd5\xb4^A\x13\xb5\xff\x88\xdd\xcf\x0b\x972\xe5D{:\xbd !3\x8d\x8c\x99Z\xc4\x8c$a.!`\x9e-_.\"^. ]\xa6\x17.\xd3\xc9\x96\x11E\xcb\x84\x92e$\xc12\xa5\\\x99D\xacL'U&\x11*\xc3d\xca\xc4\"eR\x89\xd2\xb24\"\x17^\x94,\xb9\x98(\xd9\x92\x0b\xaf\xb0\xc4BdZ\x192\x96\x08\x89V\xc9\x10\x02d\x90\xfc\xe8u\x96\x9c!=\x92\x0bo\x90\xd88Sj$\x17\xde@q1DZ$\x17\xdeIK &\x92\x0bo\x04 1\x95\x80\x88\x92\x0f\xc9\x85w\xa6h\x18.\x19\x06 \x863\xe4\xc2P\xb1\x90\\x\xa5\xa5\x92\x07\x13\x8a\x83i\xa4\xc14\xc2`\x9c\x96\x14$\n\x86H\x82n\x17^#V\xa8\xd5\x7fW\x9f\x07\xec8\xce\xdb\x15)\\\x9a\x90K,\xd2\xc4y.m6\xe1\xa4wb\xeb\xc7m\xf2b#/\xb6\xb1\xf9%\x1f\x8c\xe8\xe3-\xa36\xdc\xbe\x89\xb4P\xe9\xc7\x99\x98}\xeb\xc39\xfbO$\xff\xa4\x17\x80\xa2I@\xcb\x88@\x11d\xa0\x85\x84\xa0E\xa4\xa0%\xc4\xa0\x94rPTA(\xa9$\x14M\x14J+\x0b%\x12\x86RJC\x89\xc4\xa1Py(\xb9@\x94X\"\x9a!\x12%\x96\x89\xa2\x08E^\xa9\x08=\x9d@\xc9E\x0b\nF\xe4\xc5vj\x89\xc5\xa3\xd4\xf2Q<\x01)@\xf5@\x89H\x812\x92w\x0fw\xa6\x94\xe4O\x97\xbc\xd8\x1c6SZ\"/6i3\x85\xa60\xa9\x89\xbc\xd8P\xb2S\x12\xe1 \x91G\xf2b\xc3KP\xe9D(\xa4\x0cE^lg\x0bRs$\xa9@Qj\x96,\x15.L\x91\x17\x9b\xcdR\xc9TI\x85\xaaTRU*\xb1*^\xdb\n\x12\xac\xc2$\xab^\xb4\x9a\xe7x3:\xb1\x0f\xe1{3q\xda\xde\xc8\xfdf\xe4\xade\xf5\xc0\xb9\xba\xba\xbe\xba\xban\xf7\x87\xcb\xe6)\xdbnY}\xb9e\xa5-\xbb\xc2K\xe9J]t\xf5cS\x95\xf6\xdc\xa8\x87\xbcX\xff\x1d:\x85\x8f\\x\x94E\xd2o\x96Po\xce\xd6n\x16Qn\x16\xd0m\xd2\xab6\xe94\x9b\x88\x8aMB\xbd&\x92Z\x93R\xabI\xa2\xd4\xa4\xd3i\x92\xa84a\x1aMb\x85&\xa9>c\x99\x17\x92\x0b\x0fJ\x93YL\x91i\xc9\x85GXb\x15&\xad\x06\x13K\x81AK\x04\x08\xf5%H{\xf1:K\xcc\xd0]\xc8\x85'Hi\x99\xa9\xb3\x90\x0bO\xa0\xb2\x12\xa2\xab\x90\x0b\xcf\xa4%PR\xc8\x85'\x82~\x92J=Ai'\xe4\xc23S1 \xd7K\x82\xd4\x92\x19ZI\xa8RB.<\xd2Ri# \x95\x914\xbaH\x1aU$NK\nRDB\xf4\x10\xa7\x0b\xcf\x0d\xe2\x14\xbeP/\x9e\xe93\xa9\xec\x1a\x85\xd7\x91\xc7\x92\xdc\xc4\xbe\xe2\xc8\xb7g(\xcc\x90{\xcf\x89\x91{\x8f\xc5\xfcr\x10F\x10\xf2\x96Q\x9b\xff\xdb\xe9-T\x16r&f\xdf\x16q\xae\x0c\x12IC\xe9\xc5\xa1h\xf2\xd02\x02Q\x04\x89h!\x91h\x11\x99h \xa1(\xa5T\x14U,J*\x17E\x13\x8c\xd2JF\x89D\xa3\x94\xb2Q\"\xe1(T:J.\x1e%\x96\x8ff\x08H\x89%\xa4(\"\x92WFBO'PR\xd2\x82b\x12\xb9\xf7\x9cZba)\xb5\xb4\x14O\\\nPDP\x02S\xa0\xc4\xe4\xdd\xdf\x9d)3\xf9\xd3%\xf7\x1e\x87\xcd\x94\x9d\xc8\xbdG\xdaL\x11*L\x86\"\xf7\x1e\x94$\x95D\x94B\xe4\x91\xdc{\xf0\xf2T:\x81\n)Q\x91{\xcf\xd9b\xd5\x1c\xb9*P\xb0\x9a%Y\x85\x8bV\xe4\xdec\xb3T\x12VR\x11+\x95\x8c\x95J\xc8\x8a\xd7\xb6\x82\xc4\xac09\xcb\xef\xde\xf3+\xc3a\xa6*K&\x96?\xd7\x8f\xbfS\xee3\xab\xfe\x8f\xcd\xf5O\xddiV\xff\xfc\xd5\xb4\xa7\x8f\x11\x97N\xc6\x8b\xbb\xe9\x93\x18\x9c@\xd4'-6\xa8\x9b\x13=-SA\xf3\xba\xf4\xa6}\x81N\x9e\xa4.za\xbe<}\x95\xadD\x95%\xd3|\x1c;'\x83\xeaj\x8a|-\xd6\xf5b'<\xe4\xa5\xda\xe6d\x87\xba\xaa\xeegi`\x88\xad\x1c%\xe2\xeeY\xfdP0\xf9(\x9eq\xf69oZV\xaem7\x89\x8b\xd4\xe1Z\x13\xd9\x92\x89\xaa\x93\xb6\xb2Vu^\xbc&\xe4\x13\x9e\xb2\xa6\xdf=p\x94\xec,\x8f\xab\xd1Yn\x91\xf8\xea\xd11ecSE\x97S$u\x96\x9aVA\xbac\xed\x1ac\x87\xb4*}\xd9w\xd54\xa4\xcb\xbez{\xbcy\xaa\xc9\xed6\x7fde\x97/\xffg0\xb9\x19\xf7\x86g\x86\xcf\xbay\xaa\xefUz\x7f\x96\xcf\xcb\x1b\xc8\xcbu-\xb6@\xf90\xd9\x02\xcb\xf8\xc07>\xff\xcd\xb4\xa7]^0x`\xec\xc0\xab`\xe2\"\xfd\x9c7\xa25\xc8-\xb7l\xcf:U \x9aj\xcf\x0c\x17\xcb\xac\xd8Vu\xde\xee\xf6\x0d\xec\xb3gX\xef\xaa\x8a\xaf\x18&\x17\x9b|\xb4o\xcd\x9a\xcbKX\xb3Z(\x98\xeb\xaa\xdc(\xc1\x87]m\xaf`\x97\xd5b\xff\xfa\xa1\xb9\x90\xdd\xf7\xe5>[\xef\xf2rr\x190\xde\xa1\x87[\xf1J\x1a\x06\xeb\xaca\xcd\xc5\xa0&U G5\xd9T\xa2!N=Ae\x9aw\xe4yydZ\x99\xd8We\xdeJ\xc9\xb1x\x96\xe9e\x0d\xcf\x08\xe3mA-\xc4\x86\xafp\xea [\xd66\xb2\x96N;\x7f\xd9\xec\xa6\x83\xb7\x9e\x8cd^\xe2\x03\\\xa1[O\x87\xe0\x9e\xec\xe8n\"\xb0\x83\xc0\x8e\xb1\xf9G\x1d\x02;\x08\xec \xb0C\x19\x81\x1d\x04v\xd8\x8c\xc0\x8e\x91\x11\xd8A`\x07\x81\x1dC\xc3N~\x08\xec \xb0\x83\xc0\x0e\x02;\xe6Kb\x04v\x10\xd8A`\x07\x81\x1d6#\xb0cd\x04v\xd8\x8c\xc0\x0e\x02;\x08\xec\xc0\xb4\xadE\xc0\x8eCVg{\xd6\xb2z\x80w\xf0oL\x9f9\xb8\xca\xcd\x95\xe9`\xad\xa9e\xda\xceY\xd9&\xd7w\xda\x91\x91J^~+6\x9f\x8d?\xd5\xec\xef\xc7\xbcf\x9bo\xa1\xad\x8f\xe6\xa2\xdb\xa6\xf5X\x96\xf1\x88\x00\xb4C@\xa5\xd7\xb4\xa6a\x14\x1b{\xa2Q\x05\x15g\xb6\xfb\x9d\x0f\x15\xb0\xdeeyiGL~9p\xc9W,9\xe5\x9b\x08\xbbC\xc3o\xa0'V\xfa\xef`zb\xd9}S\xd1\xf3!\xbf\xc5\xd3\xa0\x02yc\xe4\xd1\xb1u&\xb7O\x1du\xe7\x7f\x83\xd2\x9c\xefQ\x1a\xe2mJ\xc3\xbcSi}\xe5\xfb\xaeD\xd7\xaf\xbaXJ\xeeR\x1c\xd4\xd5\xe4\n\xd00\xb4{\x96\xb5\xc7\xda\x9f\x7fl\xedJC\xd4\xb1\xb49E-\xf2F(N:\xeb\xdd\xb6}\xc1\xfaH\x15\xdd\xb6%\xb6*\xb0\xbb\x94\xd2~P\xf5,\x94\"5\xe3Vu\xcf'\x0dJ\x02\x12\x9b\xc6m\xe5I\xabd\xdb\xaa\xe5\xdfD\xd7o?\xb2:\xe7\x93U\x9fL Z\x84\xd3\x9f\xf8.+7\xcd.{\x98\xdc\x8b\x85\xbe\x1a=eT\xf9\x10\xa5TS\xf7\xac\xe4\x13$\xb1\xe9(\x0b\x06\x1b>4\xef\xf3\xd2\xad_\xb0r]\xf1\xb9T\xa3\x04&\xb1}\xdb\x88p\x1e\xce\xfb\xd6\xbb\xac,Y!o\xcb\xd6\x0f\xacm\xd4\xd3y\x1d\x8f\xba\x8e\xc9\x94\x1c\xe1\xc0\xa5\x0d\xfb)\xa9\x8c\xa8\x18(jQd\xd40+7\xce\xba\xc5\xb5gV\x1e\xf7\xee\xcf\xe3\x12>|\xfc\xee\xe3\xeb\xd5\xa77\xb7on?\xde~\xf7\x97\xdb\xffz\xfdj\xf5\xe9\xcd\x87w\xafon\xfft\xfb\xfa\x15\xean~/\xea\xc2\x8f\xef\xff\xf3\xed\xbb\xd7oP\xd7z.\xd4\xb8\xcd\xec\x02\xac\xabc\xd9\xb2\xfa\x90\xd5\xed3\xfe\xbd\x197\xc9i\xce\xfc\xb1\x06=\x00`\xbb\x7f\xd4\xa8\n\xf8\xe6\x03\xc1\xfd\x15\x8c\x83\xc4\xab\xf1\xb8\xd2:\xfe\xb8\xf6\xbc\xe9\x9dN\xa5\x05V\xe8\xeb\xb0\x00\xf9\x06\x064\xf0WUq\x83\xbe\x00'd\x03\xa6y:\xc4)m\x12\xdc\xc4V\xe0\xa1f\xf7\xf9g_\xcd\x8d\xbe\xa2\xfd>o\x05\x89\xd3\x91\xc4<\x91\xbe#\x1c\x17\xc3\xb3G\x89\xfd\x92 \xe0k\xe2\xf6\xc0\x9eW\xb8\xf2AX\xeb\x00\xbc\xbc\n\xe8\xb1\x94\xdb\x7f\x88\xfa|'\xab3o\xba\xfa\xcd\xda\x9d\xaad9\xa4\xf2j~`\xcf\x1eq\x02\xd4\xa6\xe0\xba*\x9b\xb6>\nr\xf1\x81=\xc3}]\xedE\x12\xef2\xb1O\xb7\xd1\xe9u\xfb\x1b\xd9\xe1\xc0\xca\xcd7\xfc\xf7\xab\x7fg\xcf\xfc\xff/\xfc\xcf\x1a\xdf%2|!2zu\xf5\x9b\xe9\xdd\xf6\x0d+\xb2\xe7\xd5\x81\xd5y\x15cI\x81\xa4\x9fG\xadZd\x02d&\xe6\x8e\n\xd8^\xe3V\xf7\x16\x9b~E\xdd\xcd\x12\xcd\xed\x06IAL%c\xec\xa2\x1aS\x9c\xc9\xcb\x8d-\x0e\xb9md\xbdrP\x06=\x8bn\xda\xaaf\x9b\xf1V\x81\xf8\xd8\xa7\xbe\xefC\xb6\xcd\xff?\xf6\xdetKn\x1cY\x13\xfc\xaf\xa7\xb0\x8e\xees%UI\x1e\x8bBk\xb7\xee\xdc\xd0\x9aQ\x99J\xa9\xa4P\xd6\xbdUS\xed\x82\x93pwf\xd0I\x17\x97\x88p\xe5\xd49\xf3\x1c\xf3g^q\x1ea\x0e\x00\xee\x0e\x02\x06.\xae\x90\x04\xeb>\xb7\x94\xe1$`0\x18\x0cf\x9f\x19\xc0\x80#\x07-\x91\xb4X\x14\xe5c\x05\x1a \x7f\\g\"\xf4\x86!\xa0W\xc9\xf4\x9c*\xdc\x05\x94\x82\xa1\x16\xbe\xaa\xc69\xa7\x9c\x9f\xbc\xaa\x99\xfd3+$\"q\xe6;\xbf#\x0b\xfa^\xdc\xa77\x11\xbf+\x1a\xe4\x1f\xf9\xe1M\xb1\xa6\x99h)\xac\xc28\x01\xca\xcbux-O\xcb\xebI\x98\x90\xbe_\xabA\xae;\x8c5\xe4\xecp\xb9\xf0\x7f\x883\x1dL\xe5\xf2\x02\xb1JE\xd2\\\xd1NU||[\x9a\xf2\x06U\xa6\xec\x92\xc4\x10\xd3\xe4\x0exI\x9c\xd7\xc0\xc5\x90\x06by\xba\xa2t\xe8\xd2kQS\x9c\x05\x10lUj\xda\xc3\x1a\xa8\xec\x05\xb0x\xff\xeeyY\xe6\x9e!\xbaqKs\x97K\x1a)K'\x9d0\x12mq\xb0:\xbf\x9f1\xc7\x89\x97$\x16AhUZ\xad\"\xca\xdf\xfa\x10\xae\xca1\xe8\xe0b\x88\xe8\x9ars\xfa\x8cD\xc5$\"\x92&uQq\x8dV\xa5Md)X\xc4\xd9%\xb1pf~\xe8\x9c\xab\xce\x9e\x0c`\x83\xec1\xa5\n\x99\xb3o\x8f)\xd9cJ\xbb:\xa6\xa4W\x1bqXi\xb0cJ\xf5\x03J2\x8e\xedm\xb45\xb2\x87\x96$\xa4\xdf\x83D3\xf6\xd0\x92=\xb4d\x0f-\xd9CK\xf6\xd0\x92\x94\xec\xa1\xa5\x06\xd9CK\xf6\xd0\x92=\xb4T'\xac\xf3c\x0f-\xd9CK\xf6\xd0\x92=\xb4\xd4\xbd\xdc\xdb\x1eZ\xb2\x87\x96\xec\xa1%{hIF\xf6\xd0R\x83\xec\xa1%\x19\xd9CK\xf6\xd0\x92=\xb4\x84\xd1\xad\xaf~h\xa9,\x8a\x99\x9c\xd3*\xe8S\x0b8\x1b\xc5%Y% \xc9\xcceD\x934\nD5A5\x89>)\xcaN8\xfe\xb3hTq\xf2T\xb8\xa8\x9cV\x95\x91L\xe0m\xc0\x13\xc5<\x86\x0c\xe7\xf3\x98&,D\xab\xb3\x0b\x15\x0c9\xa6\xb5\xfbN\xbd K\xbbW\xfeV\x1e\x9f\x9a\x13?\xeep~J\x90\x14C\x90\x88Vp\xdd&\xddF8\x9f\x0d\x91\x0b8HW4\xf2\x9c\xfco|\xcd\xe5u\xef\x1cLY\xd2 \x9f\x8e4(p\xa8\x86\xc3y\xca[\xf3i\x1c\x97\x82\x15\xe8N\xca\x93\x99\xe7T%\xe5L\xb2\xf5&\xbf\x8a\x98\x1b\xd9{\x89\xa0}o\xe5a\xe5\xcc\x9f\xcd\x13\xa8m\xd5?\x02\xb9\xacjx\x96nM\xfdzZl-\xa0\x8c\xea\x9fN\xe7\xe0\xd3y\x92Ae^\"\xccc\xee r\xe0U, \xd1 \x93\xf8l#\xf2\xfdd\xbd\xbev\xb2\xadV5\x95\xef\xab$\\y\x83\xc9\x99kp\xc8\x0f,\x02\xfb\x87\x17\xb8\x9e#\xce\x99d\x15\"B\xae\xfc\xc1L\xe9\xaa\xcdy\x81\xe3\xa7n\xc3\x89$\xa2\x97\";\xd5\x98G\x9e\xe3\xac\x00\xb4s~v\xa3(\x04\xf4\x02\xf8x\x1a7\xe6\xad\xc16\xf7\xa3#\x1ag\xb9m\xbe\xe4\xca5\xca\x96\xe1$[a\xde\"\xe0\xc5\x8b\xf9\xaa\xac7+$0\xc6\xb4\xce\xc2\xd0\xa7$PM^D/hTkN5q\xd9\xd3\xcdI\xf3*Uq\x11\x95\xaf\x8dZ;\xac\x0f*J\xc1\xc2\xc8\xa5Q\x13*\xfb\xe0\x05\x0e}\x02N\x18\xaf\xc2\xf8n\xec\x9e\xc3\xc1\xe4\xf8\xde\xe8\x122\xbf\x9e\xbd,\x98\xd8\xff\xa3v\x10@u7{\xa5\xe2\xb68\x0d\x1b4\x0e\xc2V\x0f\xf0\xb4\x1c\x80\xcd~\xfdn\xcf\xbf\xb6\x14/\x88R\xac\x8a\xa4:~\x00\x1at|\x82\x96W\xc0\x9d\x99A%\x1e\x06<\x85\xaa?\x83\x9a \xceHj\xcfFj\x85'H/BA\xf8\x93\xa7(yf\x8f\xf69u\x8a=s\x8a\x91\xa6 \xadL\x05\x99\x0fp\x8c\xb3\xa6\xd8\xd4\x12\x0cz\xce\xb4\xfb)\xd3\xc4\xf8\x8c)~\x84\x83\x9d2\xedv\xc6\xd4\xe8\x84i\xdbx5\x07L\x87;^\x8aR_\xdd\xd1\xd2>\x07K\x91\xc7J\xf1\x87JQGJ{\x1e(\xc5\x1d'\x1d\xed0)\xca\x9a\xe3l9bK\x04\xac\x9a\x80\xd12\x85\xc1\x0f\x90v<>\x8a\x91\xb8\xd1\xd1\xd1\x1d Kvh\xb4&4\xdd\xb8\xbb\x1d\x19590\x8a9N9\xeaaQ\xd4J\x01\xf4j\x01\xc3c\xa2hM\x00|1\x0b\xeeH\x14\x8cp\x1cma\xbd^>\x80\x19\x1f\xa0\xc6\x08\xc8t\x1dr\xa8`\x80Z \x1a4i\xd7-m7^\xe2n\x17\xa9\xbb\x01\x93w\xbbJ\xdf\x0d\x92\xc0\xdbY\noGI\xbc\xdd\xa4\xf1\xc6M\xe4\x0d\x9c\xca\x1b9\x997`:o\xec\x84\xdeh)\xbdq\x93z\xa3\xa5\xf5\xcc\x13{;H\xed\x8d\x9e\xdc\xeb\x94\xde\x1b=\xc17P\x8a\x0f\x91\xe43pB\x90\x89\xbe\x9d\xa6\xfa\xd4\xc9>\x13\xc7i\xe0\x84\x9fi\xcao\x84\xa4\xdf\x0e\xd2~\xe3'\xfe\x86L\xfd\x19\xe5\xa7\x90\xe9?\xe3\x04 \x02K\xef\x9c\x04\xc4\xb4\xad\x04\xfb\x06L\x05v\x13\xb6Y:\x103\xde\x8e)\xc1\x1eIA\x1d\xa0:hb\xd0(5\x88O\x0e\x9a\xa4\x07\x91\xb3\xd0-Eh\x9a$\xd4\xa5 \x07L\x14vH\x15\xf6O\x16b\x84m\x980\x1c)e\x88\xe2T\xb9RFL\x1c\x8e\x9c:\x1c5y8f\xfa\x10\x9d@\xd4\xa5\x10uI\xc4q\xd2\x88\xa3%\x12\xc7M%vK&\x1a\xa7\x13;&\x14\xbb\xa4\x14u{ \"\xf5\x83O\xfe\x98$\x16;\xa6\x16;$\x175\"\x18/\xc18r\x8aq\xbc$\xe3xi\xc6!\xb5\xcd0\xd5h\x9al\x94\x7f\xcbR\x90$\x89#}\x16\x17\xf5V>F\\I\xcaU\xbeF\\\xcd\x15\xe5\x16R\xdeT\xf5\x83\xc4\xfc\xad\xb6\xe9\xc0|\x8a\xd8\x1e\x8e\x96=\xa0\xcf;\xd9\xc3\xd1\x152g\xdf\x1e\x8e\xb6\x87\xa3wu8Zu\xefK\xe3Xt\xc56kOHKZk\xc9\x915\x0fMWw\x80\xf7\xef\x9eg\xe1K\xf1\xa2=\xb5lO-7I\xbf!\xe1\xca P\xe6\x1cki\x05\x0dZ\x00!\x07\xe0\xd5\xfe\xe6X\xc5\x0f\xe3\x97>\xc8`\x8aN\x85\x0f\xbb){\x18\xa0\xe8aG%\x0f;)x\xd8E\xb9\xc3\x98\xc5\x0e\x83\x96:\x8cZ\xe80X\x99\xc3\xb8E\x0e#\x958\x8cY\xe00Ry\x83iq\xc3\xe8\xa5\x0d#\x176H@\x0c\x9d%\x1c\xb9\xa8a\x90\x92\x06mA\x03\xd2\x9d\xd0\x02\x05\x82vX\xca\x90\xd8S\xcb\x0d\x1a\xbd|a\xec\xe2\x85\xe1J\x17\x0cr\xe9\xa8\xb2\x05\xc3\xa2\x05]&\xafk\xc1\x82\xae]{jYA\x9d\x0b\x14\xec\xa9e\xe8S\x92`V\x90`O-\xa3\x8a\x10F)A\xd0\xf2hO-\x9b\x14\x1e\x8cWv\x80,:\xb0\xa7\x96{\x97\x1at)40,3\xe8Td`^b`O-o\xd3xE\x05\xa3\x96\x14\x8cUP0V9\xc1P\xbaeXJ`VH0\xc6\xa9\xe5o\xf3\xb8r\x9e\xe2\x14\xe7?\xf7\xf3\x84\xee\xfe\x1f\x8d\x8c\xf9\xbf\xf6ER\xb0\xf2\x83\xf8\x83\xea\xb3r\xf2S\xcey\x97\x92\x83\xce\xf5/\x03\x0ct\xd6\xb9\xd6_\xf6\xecwv\xdc\xb91\x8d\xaa\xa4W\xaf2\x8aD\x9b\xb3BALX\xc8\xc6<[%|\xa9\xf6\xf6\x8crU\xe3d\xaa\xc6\xceS\x0d\x94\xa5\xdaE\x8e\xaaw\x86j'\xf9\xa9\x1dd\xa7\xc6\xcfM\x8d\x97\x99\x1a0/5bVj\xa0\x9c\xd4\x98\x19\xa9Q\xf2Q\xe3e\xa3F\xc9E\x99e\xa2F\xceC\x8d\x9a\x85\x92x\xbfj[7j\x06j\x80\xfc\x93&\xfb\x84r\x0cP\x99\xa7\x9d\xe5\x9d\x92\xd6\xac\x13\xce\x81\x194\xe3d\x92o\x1a8\xdb4r\xaei\xdcL\xd3Py&t\"\x04\x91c2\xca0\xa9\x81\xdan\xd9%u\x9b\xad \xca`y%Sa\x9a\xe4\x94p\xf22\xca'u\xcc&\xb5\x83Q\x03f\x92\xd0y$\\\x16 \x9bC\xd2J\xb9K\xfe\xc8${\xa4\xca\x1d\x0d\x9492\xcc\x1b\xf5\xcb\x1ai\xf21&\x19\xa3\x11\xf2E\x1a\xeeZ5}\xb4L\xd1\x88y\xa2\xd1\xb2Dc\xe5\x88P\x19\"\x15\x84\xad\xca\x0e\x0d\x9f\x1b\x1a%34^^\xc8<+d\x94\x13\xea\x90\x112\xcd\x07)\xb3Aj\xee\xb0h=>\x13\xd4!\x0fd\x98\x05j\x1d\xeeX\x19\xa0\x11\xf3?\xe3d\x7f\xc6\xc9\xfd\x0c\xa3IFy\x1f\x93\xac\x8f|\xcb\xcc\x8f\x8d\xea3\x0f\x8a\xeb?57wjC\xdf\xfa\xd9\xd5\xd3\x17\xf2\xee\xb5\x9fM\xb6\x87Ce\x0f\xe8\xb3\x1a\xf6ph\x85\xcc\xd9\xb7\x87C\xed\xe1\xd0\xebx8\xb4\x96\xf7\x1d\xf3|h=\xa1m\x8f\x886\xc9\x1e\x11\x95\x90~[\xc2\xa4\xdb\xb5c\xcc go\x05\x99&\xdd\x95\x8d\xc9Ag%\xee2R\xe2}\xfc\xd4\xfb`\xc9\xf7\xdd\xa4\xdf\x07H\xc0\xef(\x05\xbf\x93$\xfc.\xd2\xf0c&\xe2\x07M\xc5\x8f\x9a\x8c\x1f,\x1d?nB~\xa4\x94\xfc\x98I\xf9\x91\xd2\xf2\xa6\x89\xf9\xd1S\xf3#'\xe7;\xa4\xe7GN\xd0\x0f\x92\xa2\xd7&\xe9\xd1\xee\x84\x16.\x10\xb4\xb3T\xbd=\"\xbaM#\xa7\xed\xc7N\xdc\x0f\x97\xba7\xc87\xa3\xd2\xf7\x86 |m\xf6\xacc\x12_\xdf\xae=\"\xaa\xa0\x8eI}{DTP\xc7\x14\xbfY\x92\xdf\x1e\x11E%\xfcGI\xf9#x\xb4GD\xf1\xc9\xff\xf1\xd2\xff\xc8\x02\x00{D\xb4w)@\x97b\x00\xc3r\x80N\x05\x01\xe6%\x01\xf6\x88\xa8\x8c\xc6*\x10\x18\xb5D`\xac\"\x81\xb1\xca\x04\x86\xd3-\xa3R\x01\xb3b\x81o\xfb\x88h\xc9a#\xb5=v\xb7\xd0\x9e@\xde\xe2h+Q\xbb[\x8e\xda\x8e\xd1\xee;\xe1j\x9d&t\xff\xe2pF\x13r\xb8_f\xafdG\\\xf9k\x1c\xcef\xfbJD\x9c\x84\xa7\xbb\x98\x03q\xd7Y\x12/\xcf~7\x0e\xa7\xba4\xce~\xf8\xeeN\xa2\xbat\xea\x05\xf3\xf0\x1a\xa7\xd5\x04\x8f\x8a\xcf\xec\x1a\xc3`\x9ab '\xa2$iK\x9e\n2\xecP}@\x86$d\xba$\xf1rW\x1d\x8aDa\xef\xdef\xa9\xe7\xbb\xaa\xfa\x9b\x96vlz\xdd\xa6\xd7\x9b\x84\xb1\x03\x89M\xaf\xdb\xf4\xbaM\xaf\x83M\xaf\xdb\xf4z\x0b\xd9\xf4z\x83lz\xdd\xa6\xd7mz\xbdNX\xe7\xc7\xa6\xd7mz\xdd\xa6\xd7mz\xbd{b\xc2\xa6\xd7mz\xdd\xa6\xd7mz]F6\xbd\xde \x9b^\x97\x91M\xaf\xdb\xf4\xbaM\xafctk'\xe9\xf5\xf6\xdb\x8cey\xd8\xfd?\xb2\xdc\x9d\xea\xd6\xe1,%[\x06\xee\xb5\xccl\xf6\xf4V>6\xfb\xfb\xf7\x9a\x8eUeaz\x1d\x9e\xd7&SQ\x90\x07*\x91\xaaM\xa3\x1au\xa5\xc0V\x10 \xd4\xa1\xba\xd2\xa5N\x11\xfdh\xd3\xa6\x9a6\xd8h;%\xf8Z\x06h\xd3\xb16\x1d\xdb$\xbd\x1d\xb1\xe9X\x9b\x8e\xb5\xe9\xd8\x8cl:\xd6\xa6ced\xd3\xb1\x0d\xb2\xe9X\x9b\x8e\xb5\xe9\xd8:a\x9d\x1f\x9b\x8e\xb5\xe9X\x9b\x8e\xb5\xe9\xd8\xee@\xb6M\xc7\xdat\xacM\xc7\xdat\xac\x8cl:\xb6A6\x1d+#\x9b\x8e\xb5\xe9X\x9b\x8e\xc5\xe8\xd6N\xd2\xb1\xea\xd3\xce<\xd3Wi\xe7z\x9c\xd8\xd5\xa5\x8a\xf7\xf3\xfco\xacM\x1a\xe7Of\xbf6\xbf(+Zy\xb6\xf9\x9e\xf3\xc5b\x90\xd7\xfd\x08/q\xdd\x88\xc6\x8a\x07\x86\xc5v\xf2\xb9?m\xcd\xa4\x0bB\x8c\x0e\x90#\x04Ln]\x10r\xa4\x80\xcd\xb3\x0b\xd2f\xdb\x05u\xe8\\\x03\xa3\x01\xf8dF\x95i@0\xeb8\xbb5\x9c\xf5\x1b\x03qW^\x00O\xe1\x1e\xfc\xe3\xd6\"\\\x84\xdc\xb4N\x1c\x12'\xac\xc5\xdb\xf0T\xd3\x18\xc0\xde\xc2K\x96\xe9\x8c\xdbg'\x8cWa\x9c\xfd\xcf\xdd\xd8=\xdf\x17\x11\xc9\x89\xe3\x9c\x08\x1d\xdd\xfb\xa7\xda5\xe1r\xa6\xfaIV\xdc|^\xa7@\\R\xbf\x0c/\x05\"\xed\x05\xfc#\xdb\x9b<%p\x07~Oc\x1eu\x80\xfc\xde\xf3:\xc5a\x94(n\xcb/\xe9\x96@\xc1/\x974\x80\x94_\xfd\xfe;\xf3\x00\x13\xb2\x80\xbd\xbb{@V^\x10BD\xe7\x1c\xdaM\xc2\x12\xdf\x03/\xd1\x86\xfc\xe8\xb5\x05\x06\xeb\x8b\xd1\xcc\x0f\x9ds\xed\xa7\x13J2P;\xa8g\xf45\xebMP6\xcd\xcf\x18W\xe5\x87\x0ex.\x91\xfd\xa9\xc8\x02\xf2z\xa6K\x12\xe7\xea\x03D'\x14\x80\xe4j\xea\x05.\xbd\x1aq\x98\x08\xbb\"(\x1b\xe7\xd9\xd5)\xe3\x88\xe7\xe9`\x15\x06!\xff\x84\x008a\x1a\xb0P\xb3\xf2M 1\xfc[\xc4IR\xe2C\x12\x91 &\x1c\x84Et\xc6<\x15\x97^\xf1\xe4\xd6\x82\xc9,\x0cxNP\xa5r\x19\x83U\xcb\x0fq\x12F\xcc\x82\xc0\xdfN>\xbc)\xa7\xc1\x0b\xe2\x84\xc8?\x81\xd2\xd2\xd2\xdf\xbcd\x99\x99\x07\xb6\x95\x89 \xce\xf64\xb8uN7\xb7s\xb7\xb5\xfaV+\xb7u\xd7\xbax\xcc\x16\xe2\xd8B\x9c&aLcb\x0bql!\x8e-\xc4\x01[\x88c\x0bqZ\xc8\x16\xe24\xc8\x16\xe2\xd8B\x1c[\x88S'\xac\xf3c\x0bql!\x8e-\xc4\xb1\x858\xddS\x98\xb6\x10\xc7\x16\xe2\xd8B\x1c[\x88##[\x88\xd3 [\x88##[\x88c\x0bql!\x0eF\xb7l!\x8eA!\x8e\xc8^\xed\xff\x91%\xb7\xf4\xf76`Jp*\xc9\xb0\xef\xac\xfeFY\xd7\xa2\x05I\xb4\xf0H\x96\x8a\xcc3\x8d^=\xf1\x98\xed\x84\x8d\x19\xa8\x92\xbe\x0eF9v\xd0\x8e\x1f0U/Z9\x006#\xad\xadq1\xeaJ\x81Ji*ZP\xdd\x0cV\xc52T\xfd\x8a\xb6r\x05S\xb3bV\xad\x82\xa9F\x19\xad\x0eE\xab\xdb\x80\xd2o0\xaa:A\xa9\x06\x18U\x9a\x8cSc\x82\xab.1\x1e\x0e\xa2\xa2dg\xb5$&U$C\xd4\x8fdm\xf0\x8d\xb1\xda\xd0\xfbl\xdb\xca\xa7-\xdf\xc6\x84\xc78\xcf\xd0~\xfe\xda\xbe\xa6\x80\xe4\xfd\xbb\xe7Y\xf0Y\xfch\xcbFl\xd9H\x930V-\xb1e#\xb6l\xc4\x96\x8d\x80-\x1b\xb1e#-d\xcbF\x1ad\xcbFl\xd9\x88-\x1b\xa9\x13\xd6\xf9\xb1e#\xb6l\xc4\x96\x8d\xd8\xb2\x91\xee 7[6b\xcbFl\xd9\x88-\x1b\x91\x91-\x1bi\x90-\x1b\x91\x91-\x1b\xb1e#\xb6l\x04\xa3[_\xbdl$K\xf3W\xda\xa9E\x9a\xb8\xa2\x006\x1d\x9f\xb3z\x8f\x9cF\xaf>\xa9\xc4\xed}jO\xf6\xe3\x15\x89\x92^\x15(\x1fX\x0byJ\xedCB\x92\xef\xf4\x1e\x18\xfbM\x08\xc9\xd8lN\xb1F6\xa7hs\x8a\xdbds\x8a6\xa7\xa8\xe9\xc3\xe6\x14mN\xd1\xe6\x14mN\xd1\xe6\x14mN\xb1J6\xa7\xd8$\x9bS\xd4\x18e]\xbb6\xa7\xa8 \x9bS\xec+u\x9bS\xb49\xc5\xb6\x9flNq\x8blN\xb1A6\xa7(#\x9bS\xb49E\x9bS\xc4\xe8\xd6\xf7\x91S\xac\xbc\xbd\xcbTb9\n\x9e\xd0\x9c\xba$!\x0dV\x9a\x99\xce\x92\x979\xf1\xe3!\x99i\xcbk\xee\xafH\x9a,\x8b\xa4f&\xc1\xbbIx\xd7s\x88&\x93y\x1a$4r\x96\xc4\x0bN\x1c~\n\x92\x05k\xf9\xb5\xd3\x11M\xd2(\xdb\x03\xbc\xe2A \xe2I\xa8\xde\x0c\xbf\xf0.h\x00\xe1e@\xa3r\n\x03 \xd9\x0fN\x18\x04\x94\xc7\xbe\xb0&^\xfeZ-m\xaa\xe2${\xfe;K\xa0\x96\"\x9df\"\x9dv?\xdb_=\x07\xaa\x12eq.4i;\x14*\xe9[\x1c\x13\xddj6\xd7\x93\xf7\xef\x9e\x17/\xd9,\xae\xcd\xe26i\xa7Y\xdc\x11\xc1[\xd5.\xc7M_\xa5\xb9\x91\xb6\x86\xf2~\x97\xdc\xa0n\xdf\xf22x\xb7\xed\x055\x11]xq\"\x8cx\xb1\x01\xd1\xc0\x896\xeb\x84\xbawcJ\xdd\xfd?\xd6\xe9lzN7\xaa{]\xdeWv\x9a\xe2u`\xafs\xabD@tD#\xeaB\x10\xba\x94\xc7\xc7\xe9\xcc\xf7\x1c8\xa7\xf9Xk\xdb\xc9\xcb\xbc\x95\x0f\xb4\xc0\xc4\xbf\xb3\xfd\xa3\x10\xd4\x94 \xaa\x93Y\xb0\xa58\xd6\x88\x83N\xcc\x82~\x04#\x9eY\xaaJ\x83\xbb\x0c6Z\xfd{\xa9\x95\xad\xfe\xf1\xee9\xdd\xe0\x8c\xeb9\xdd\x94I\xdfj\x13\xd9K5\x1b\xfa\xbe\xf2\xfb\xcf\x85X\xbe3+Z\x88\xaeIZ\x15\xb3\xa6s\xfbgk:%\xf4\xbd\x98N3\x03\x95\\u4K\x95\xcb\x96\xf2\xc8\xbff\x96\xce\xae\xac1\xda\"k\x8c\xb6\x7f\xb6\xc6HB\xdf\xbd1\n\xf8\xdd\x90\xc5\xed\x93\x15\xd3S\xd3\xfd\xd3@4\xea\x85\x01\x90Y\x98&9\xde\x1c\x88\xd5\x10\x94\x1f\xf0-L\x16\xcf\xd7\x16\xf2\xab`\xd4\xdb\xef4\xd9\xfb@\x9d\x88&\xf0\xfe\xe5\x87\xb3\xec\xaf\xc6\xa6\xebW\x16\xf8\xc6 I\xd2X\xb76IY\xee\xb9\xff{\x1c\x06;X\xa6\x95.\xa7Y\x11\xa5|\xe2\xf5\n8K=\xdf\x9d\xd6%\xd8$\x84\xe28\xbeG\x03\x91\xe9\xeb\xd7N\xb8Zy\x8a+\x18\x11M,\x14\x9f\x04F\xbc\xde{\x08\xa2\x9e\xba\xbf(\x94\x13\x0b\xfa6\x1ak\xb3Iz\xd5\xe8y\xe7\xeb*\x0c\xbcs\xda\xf72\xd7\xac\x1c\xe1\x89(\xd1$I\x18\xdde\x92my>/\x84T\xaf\n@\x0d\x9f?u\xb4V\xfd\x8c\x1c\x03T\xc7\xf1P\xf1\x18\xbf\x08s\xe8\x0e\x0f\x0f\x14\xcf\x91\xf5\xe0\x03l\xeb.\xa0\xc9e\x18)\x86\x87\xea\xaa\xe8fA\x95\xdd\xeb\xda\xfd%%\xae\xde{\x1a\xc48\x8a\xba\x08\x95\xbb\x07\x9d\x8c\x94\xb8\xc5~\x99\xceZ\xf7i\xe0\x03\xc5\xde\xba\x1e\xa4\xab\x99\xe2t\x0b\xd4vZ\xc5c\x89\xa7r\xcd\xa1\xd3X\x8f\x0e\x0e\x1f\xde=<\xba{\xef\xe0\xec\xe0\xfe\x93\xfb\xf7\x9e\x1c<\x9e\x1c=z\xf8\xe7\x83\xc3'\x07*\x07,HW\xd3\xe4\n\xb5?\x98\x0c_\xd5%\xaf\xc9\x14\x1a\x8c\x9bs\x8d\x92\x01Z\xd1\x18-I\xbc\xd4=c0\x01P\x1d\xf5\xcb\x97\xf7_\xdd;>8>\xb8w\xfc\xfc\xfe\xd1\xf1\xfd\x83\xc3\x07G\x8f\x9f\xdd\x7f\xf0\xf2\xe0\xc5\x8b\xe7\xf7\x1e\xbd:y\xf1\xe0\xfe\xe1\xab\x03\xf5\xf5\xf5\xbe\xae\x1c\x06\xf4*\x99^\x7f6\x1d\xe6^\x05qzm\x19$\xeb\xf5ue\x8d\xaf\xe1\xec \xfeu\xe5\x91^x.\x0d\x1cz]\xf9c{[\x18\xd3h\xe0`\xb7\x16\x14\xcc\xa8\xb3\xbcw\x044p\xc2\xec$B\xa3\xd0}\x9b\x1a~\xe8\xa1K\xd7\xe7\xf7\x8f\x9d\x94\xfc\xbe8\xffB\xc9\x83/\xeb\xc5\xf9\xe7{\x0f\x92\xe0\xf7K\xf7\xcb\xc51\x99;\xf7\xdc#\x15<\xa7\x05e\xc0\xc4+\xc0{\x04\x08X\x10L\x04\x0bhx\x100\x10!t\xee\xbb\xadk\xbds\x8a\x922N\xc2\xd7uQ\xe9\x9dP\x94\x10\x00-\x08\xc0;\x9ehG\n0\xd3\x9d\x93~&\xc0d6`\xa0\x19Q,?\xed\x0c\xe8%o\xe3\xfc\n\xa1\xf5\xca\xc6\xf9\xfa%e\xe3|M\x8b\x08\x13\x0b&\xc2\x01#\x01\x01\xde\xdc\x82\x89n\xe4\x84\xd2\x91\x9cp\xb3\x05\xa63\x06\x03\xcf\x9a\x8d\xf3[\xc8\xc6\xf9}8\xb4q\xfe0\x0c\xda8\xbf\x17\x8f6\xce\xb7q\xfe\x0f\x15\xe7+7r\xd1U{q.\xe8\nt\x01\xc7o\xbe\xea\xbe>'\x15?C\xc7\xcc \xf1\xa0\x8d\x0d\xda\xc9\xc6\x06\x05\xe1f\x0bLg\x0c\x06\x9e5q\x11\xee\xca\xd3M\x1bf5\x03fE\x83\xd9\xfc\x9b\xcc~\xe1\x8b\xe2\xb6ZAF\xd2/{@\xd4\xc5 2j\xbf2\xb7{\x07\xea\x8bm\x00 \x0e \x1a\x93\x8b(L\x03\x8d5\x144&\x13\x89\xb7\xa2qBV\x88\xdd\xb8;#]a,A\xbcW\xedS\xc6v\xa9\xe4N\xfb0n\xeb\x12d\xb0F\xc1p\x9d\x82\x91y4\x9e.\x18\xd8D\x96\x84\xdc\xde\x04\x19\n\x10:\x08\x11\xcc6L\xcf\x9e?<\xfe\xab\x7f\x1e|\xfe\xaf\xbf\xbd\xbc\\<\xfc-x\xf0\xe6\xd1\xdb\xd5\xc3W\xe9\xdf\x0f^\xbe=\x9e\xfd~\x91\xfe\xfe \xba\xfc\xe9pu\xf6\xf1/\xd1\xfb\xf4\xcd\x9b\xbf_\x9c\x9c|>{\xfc\xdb\xef\xbf.\xde\x1d\xbc?\xd9?{\xb1~\x90\xee?>:\xf9\x1c\xfd}\xfe\x9f\x7f\xf9\xb0~\xf6\xd7\xa7O\x0b\x1e\xba\x15\xb8\xee\xe5\x15\xae\x7f\x88\xddEu)\xcak\x9a\x00\x11V\x05\x08\xfb\xa7C#\xfe\x1d\x0f\xf1j\xf68\xaa\xdeU~\xe9\x81\xe4r\x03q\x0fB\xad\x03h\x8e\xed\x19\xe7h\xeb\x99\xd6{\x11\xa4y\x91\xf6\xcb\x12jk\xa7S\xa1nEd\xc5\xb5\xef[\xec\xda\xb2\xdd\x82\xb4]\x00\xaa\x1b\xb0\xe9<\xd9\x13\xc6c\xed\xea\x07\xd9t\x9e\x94\xd0\x13\x00#\xecvH\x9f\x06-\x1c0\x12\x10\x98y0h\xdd\xc8 \xa5#9\xe1f\x0bLg\x0c\x06\x9e5\x9b\xcek!\x9b\xce\xeb\xc3\xa1M\xe7\x0d\xc3\xa0M\xe7\xf5\xe2\xd1\xa6\xf3l:\xef\x87J\xe7\xe9\x9dS\x94\x94q\x12\xbe\xae\x8bJ\xef\x84\xa2\x84\x00hA\x00\xde\xf1D;R\x80\x99\xee\x9c\xf43\x01&\xb3\x01\x03\xcd\x88-\xdb\x95\x93\x8d\xf3m\x9c\xdfN\xd7t1W ab\xc1D8`$ \xc0\x9b[0\xd1\x8d\x9cP:\x92\x13n\xb6\xc0t\xc6`\xe0Y\xb3q~\x0b\xd98\xbf\x0f\x876\xce\x1f\x86A\x1b\xe7\xf7\xe2\xd1\xc6\xf96\xce\xff\xa1\xe2|[\xb6[#[\xb6[#\x84\xc4J\x1a\xd2\xce\x81\x8d\x0d\xaa\x84\x9b-0\x9d1\x18x\xd6l\xd9\xae\x89\xf4m\xd9\xae\x84l\xd9\xae\x0e\xc6\x12\xc4{\xd5>el\x97J\xee\xb4\x0f\xe3\xb6.A\x06k\x14\x0c\xd7)\x18\x99G\xe3\xe9\x82\x81MdI\xc8\xedM\x90\xa1\x00\xa1\x83\x10\xc1l\xc3\x13d\xa8^9\x19m~\x82L\xe6\x18\xba\xcd3\x8c2\xd7\xdfI\xd9\xee\xb1\xaaz\xf44\xe0\x9bY\xb3Zt\xef\xf8\xe0\xb8\xfd\xa5\xf7\xf4sZ\\\x0c\x9b\xbd\nnH\xe3\xe0f\xa5\x89N\xe5\xc2\xfb%\x92D\x13\xe3kq\x8b\x97!\xa6F\xe5\xc2\x9d\xaank\xbd\x01\xd9\xbe\xa0\xf7\xba\xd7\xe0\xaa\x1c\x07\x8d>\x97\xd3\xa4z\xfd\xeb~\xd4\x05\xe1\xfe!Wm?\x94\xa5\x81\xb1\\\x10\x9f\xf1~\xf8\xe0jCWk\xbaZ\xaf\x1f\x1f]=^n\xbe|y|\x19-\xe6\x8f\x8f\xa3\x07\xbf?^\xde\x9f\x1f]\x1e\x07G~k\xbb\xd9\xa7\xfb\x06\x18\xdd6\x7fN\x18\xc4\xebtv\xf8\xc5\xf9\xddM\xe9\xfa\xf3\xc1Ez\xf4eq\xbe8?~L\xe7\xe4 \xf8|\xf9%pI\xf0\xf9\xfe\xea\xd8y\xb8&\xf7\xd2c\xb2\xfer\xbc8\x8a\x1e/\xe2\xf5\xe7\xc5\x83\xc5c'\xbew\xfe\xd8I\xe7\xad\xdd^\x84\x89\x17,\xa6\xeb\xf0R\x95\xc05\x1f\xc3\xde\xe1\xc1\x81\xc2Q,`\xb8u\xe4\x85\x91\x97\x0c*\xbfF\xdf\xdd,\xe0^\xc3\x04\xa2\xcfM4\xcc\x91=<\xc1\xa9\x83\x19\xaf\x1c\xa2\xb0f\xdc\x9a\xf1\x9c\xac\x19\x97\xd0\x8f`\xc6\x87w\xa0\x9f\xe5\xe7\xb52\xdf9\x08\x13 \x17\xc4\xf3\xc9\xcc/ma\xd7\xfd#\xb9b\xbb\x06\x89\x97\x92=\xc3\xa5\xeb\x88:$i\x18\xde\xc6Vrv\x05\xb3\x0d\x0f\xdc\xb2\xdf\xb7\xb6\x8d\xed/V6\"\x84$\xf2\xe8\x05\x05R\xfd\xb8%\xa4\xb1\x17,\xc0Kb\xdev\xfe\xc1E\xd3\xed\xa6dk\xab\xdf\xb3\xab\xe6\xcf\xfa}\xe6\xd9\xf3g/\x8f\x0e^>zq\xfc\xe0\xe1\xfdG\xcf\x1e?8yy\xff\xd1\xa3{\xcf\x1e>>zt\xff\xd1\xd1\xe3\x07'\xcf\x0f\x1e\xbc\xbc\x7fx|\xef\xfe\xf1\xe3\x83W\xcf^\xc7w\xe11\x8b\xd5\x18\xe8u\xd9\x93\xda\xc3}\xed:,\xa6\xe4\xc5\xc1\xa3\xfb\x87\xf7\x1e\xbdx|x\xef\xf1\xe3{\x8f\x0f\x1f\x1f=\xbe\xff\xea\xd5\xf1\xb3\x83\x93\xc7\x87\x07\x0f_\x1d\xbe:z\xfe\xe2\xe5\xc1\x8b{\x0fO\x1e=|\xfe\xf2\xe0\xc1\xf1\xf1\xcb\xa3\xc3\x87\xcf\x9f\xbd\xba\xf7\xec\xf8\xb1\xfc{N\xfaMR\x81\x85\x14\x8c\xdd{\xf0H\xf2@\xd2\x02\x01k7@\xfd\xf6\xb7\x8a[>B\x03\x88\xdd\x19t;4`f\x05`N\xb5 \xbeArj\x0b\x82J?h-9Y\x85is%4 #;\xc0\xc8\x0f\xb02\x10\x84\x93\x84 \x97\x06\xe1J\xff\x18Z.9\x15\xea\x1c'\xe4\xbc\xed+~%a\xc4)\xa8+\x1f{\xf7[\xf7\xfa\x15]\xf5\xfb\x94$\x02\xc5CM\x1fn\xe2\x10\xbd\x01\x8eoA\x85\x88\xde\xbc\xfc\xf8\xfc\xf4\xaf/\x0e\x8e\xe6\xf1\x8bw\x11y\xf4&\x99\xbd\x8f7\xcf\x0e/\x1f\xce>\x9f\xbd\xb9\x7f\xffo\xe9\xe1\xbdG_\xfe:{\xe5\xfc\xed\xea\xf8\xcf\xcf_mNN\x17\xf4\xfe\xdf~}7\xff\xf94\xbd\xf8\xf2\xec\xef\x0f\x1e\xbf\xd9|\xfe)\xfe\xfc\xe2\xd1\x87\xc3\xd3K\xef\xe5\xfa\xcf\xde\xc7\xd9\x83\xdf>\xb8\x89\xbf^\xfc\xd7S\x05\x17\x08\x17\x15)C@\xcb\x11\xf2&\xb5j\x84\x16%T\xc5\x99\x14q\xef\xfe\xbbt\xf63\xdd|\xa0\xce\xfa\xe8\xfe\x83sUM4`>\xf0+\xa8\x1bW'\x17_\x0e\x8e\x7f[&?\xffe\xf9\xe8\xe4\xf9\xf3\xdf\xbe\xf8\xa7\x8f\xc8Y\x18\xbf\xde\x1cx\xe7\xaf\xfe\xf3\xe7\xd3\xdf~\xfa\xeb\xbd\xdf\x7f~\x13\x85\xf1O*\xfb\xe78l\xc5N\xc5\x8e\x86\x997\x04\xa3\xc8<\\L?\xa7\xea\x8a\x10\x18\xb0WQ\x946\xda\xee\xeb\x87\xda\xddW9\x86\x05\x89\xa7\x97$`\xdev\x9ff\xaab8:8PDF\xac\xc34\x1e\xb2\xbb\x07\xf7\xee\x1f\xb7\xf5\x86\xf9`\xf1 \xde\x89\xd6\xac\xe8\xa7R\x90\xd6\x8c!\x05\x04XK mM\x1d\xd8\x9d\xe6\x11]\x16\xe1\xbd\xccS#E\xc5\x97>\x9eC\xc4k\xe5\xb7$)\x89\x9ce5N\x93\x86t\x92\xc7X\x90H/h\x90\xc4\xfaP\xees\xf6\xb5\xf2\x9cD,\x97}T~\"\x1al\x93\xc8^5\x86\x14\x1dB\x9c:K 1\xdc\xac7\xf14\xa6\x81{\x13.\x97\x9e\xb3\xcc\xacC\x0c^\xfd\xfb\xa0,\x8a\x9a\x87\xbe\x1f^\xb2h\x94\x06\xee:\xf4\x82\xe4 \xdc|\xfd\xf2\x8cK\xf9\xff\x90\xb59aQ:\x85dI\xea\x8aH\x89\xb3\x84U\xe8\xa6>\x057t\xd2\x15g\x8f\xc5\xb8\xe1e\xce\xed\x04\xfc0<\x87y\x18\xc1\xd5\xd54\xfb\xdb\xca\x05/`\xcc\xd4\x9as\xc2H\x84\x87.cN@9wc\xf7|\xdf\x0d\x9dx?^S\x07\\/\xa2N\x12F\x9b\xea\xba,}:\x1a\xb8\x95\xbf#CR\xdc4\xc5|\xd7DM\x13\xd3@\x11\xb4\x8a\x97\x84xkl\xb4\x89\xfa\xdf\xea\xdd=\xcdJSe@\xdb\xffYk\xb0\n\xbb\x1d\xf0\xd1r\x08(O[/)\xd0K\x0bp\xa3\x16\x84\x19\xbb d\x00\x83\x92DNF\x01\x8b^|\x82\xbaq\xd0\x1a\x98\xa8\x02\x12mW\xda\x00\x001Q\x98)\xd2\xf6\x03\x18n\x05}\xfd\xc0\x02\x11P \xe4\x06H\xd9\x012p@\x8a\x0f\x06\x08\x14P\x9bn\x17~\x06 \x08\xf0\x81\x00\x92E\x94\xc3\x8dq\xf8\x87\xe8o\x15\xba\xd2>4m\x17m\xf2t\xcc\xd6\x039\xf7\xf2\xe4\x82\xd2\xec+\xcc\xbdv\xbc\xe5H\x0f\xb7G:\xa7t\xba\x88X\x18 \x9dDM\xe3\xdd\x0eJ4\xf3\xab\x86w m\x1d\xccI\xae`\x95\xc6 \xcch\xe9\x8a}H\xdc\xb3\xab \xff9N\xd7\xeb0J\xa8\x0b\xb3\xc2ec\x13\\e\xcd\x0b\x1c?u)|\xda\xe3S\xb7\xf7\xe9VD\x934\n\x80\xcc\x13\x1a\xb1\x1e\xc4\xb5\x17\xb7\xef\xc0\xa7\xbdx\x138\xd5'j\xb0\xf6\xf3%u\xce\xcf\xaen\x03 \\\xf8\xb4G\xea\x0fG<5G.\xc9\xe6\xf6\xa4xIZzn\x9cT;\xbb*\xc7\xe7\x05\x8b,8\xad<}]\xd2h\x0e\x93\xd0t\xc4Zh\xa7e\xf5\n\x12\x1d4\x13\xb2urI\xdbGg@\xbf(\x00\x15\xd9b\xd8\xc0\x84\xe8\x98v\xbc`\xde\xaf6\xb6o}\x9b-\x00\xeb\xbf\x93\xe7VS\xa5\xf4\xad\xb7-p\x85\xe6\xffW1\xc3\xec\xff\xe8\xf4\x19\xee\x1f\xb4\xde]RQW88\xbe\x9b\xc52\x05\x9f\xa2\xb7\x98F\x1e\xf1\xbd/,\xa2\xd8$E\x1caQ^\x84M\xb5(\xaf \xbd\xa4@/-\xc0\x8dZ\x10f\xec\x82,\xca\xbbM\xda\xae\xb4\xe8+b\xa20S\xa4\xed\x070\xdc\n\xb2(\xaf\xe2\x19\xbd\xf8\xc0\xa2\xbc\x05!Y\xbc\x16(\xaf\x0c@L\xc2\x0c\xb8,\x9e\x1a\x08\x95\x13\xcd_\x12~\x12\xc9\xa1q\xb7& \xb9\x07\\(\xfb7\xe5\xd0\xea\xd32\x1f.\x9ey\xffI\x8f\x7f~\xf7\xd9\xfb\xfd\xbf\xfe\x1e\xfe\xfc\xea\xd5O/\xbf\xfc\xe5\x91s\xf4\xd3\xbb\x93\xf9\xc5\xd1\xcbW\x1f\x9d\xd3\xe5\xd5\xc1\xe6\x1dY\\\xbe\\\x9em\x0e.\xde\x9d\xfc\xf9\xf5\xeb\xe5\xf3\x97\xb1\xff\xf3\x7f\x92\xe3\x93\xf9A\xfa\xec\xcf\xab\xf9\x87e\xf8\xe6\xf9\xe2\xb7/\xee\xebW\xd1\xdf\xdf\x9f\xbexsvr\xf9r\xf1\xd7\xbf^\xfe%|S\xf4\xdfbe\x84b\x15O\xed\xc4\xcaT^\xbb.f\xa55\x88\xd09\xc6\x88\xc3\x17\xad\x8a\xd0\x1a%r{R\xe9eN\xfc\xb8ml\xf5\xf4~\x9cx\xccggj\xc71\xe4\x06.\xea\x90 \x08yyp\x1aS~\x99\x96\x13\x06\xbf\xa7\x81\xf8\xf9\xd2\xab\xed\xbau\xca-\xe14\x0c\xfc\xcd\xed\xad\xc7\xda\xc5\xab\xd6\x94\xae\xa27<\xfdfg\xda\x9f\x01Z\xd9V=\xbdW\xd1\xf4\xfd?\xb8D\xbc\x80+I\x9e+\xd8F\x0c%x\xa1@\x0b\xab\xaf\xdf\x90\xb2\xf1<\xf4\x02\xf9c-\xf8`1\xd6\x94$\xe1\xaa\xf8\xf3\xb6\xb2n\xc9\xae\xc7\x8a%\x10{\xc1\xc2\xa7|\xe9\xca\xd8\xfd\x96VnC\x9dpV\xb4m\xe0\xdd\xd5\x8c\xa4\xc9R\x02\x8a\xf7OHU\x82\xb1\xe2.Z\x95\x95=I\x0b\xbd\x1d\x15\x0c\xaf[D\xda\xa0\xe4\xe8\xf288\xf2\xb7\xda\xd3U\xb9t\xde\xc5\xbf\xdd\xc2\xe4\xc6iL\xae\xa8\x14H\x90\xf5\xc7BG\xdf\xfb\x9czy\xc50\xbf\x16\xba\xd0\x87\xac\x99o,\xf6\xea\x04\x07\xda\xfa\x94\x06\xe96\x0d\x9d\\@'\x1b\xc0\x8cS\x90~\xb4\x82\x10\xbb+j\xec9!\xd6mN:q \xea\xd2\xb7\xadO\xb1\xf5)\x80\x15\x19\xd8\xfa\x14\x0cs\xda\x18L\x1f\x85\xf5\xe9\xa9#P\xc3\xa2\xf4\x12O\xc9\x91\x14\x98\x85\xee\xa6\xda\xf4a{\xd3?\xd3\x0d\xacI\x1c_\x86\x91\x0b^\x0c\x97Q\x88\x06\xc5\xdb\x13\xb6f\xa0\xf8\xfe\x1f\x85\x7f\xc1\x7f\xfb!Ar\xc5\xe8j\xd2Q\x8e\xee\xed\x9a\x85%\xe2\xc1l\x88M\xd7\x0d;\xc4\x8e\x9e7b\xa4\x06\xe9\x80\xbf\xa64\xda\x88\xda\xa74\x8ahPE\x0faF\x93KJ\x83jj\x80\x17Y\xff\x98\xee**\xe6\xd4\x9a(T\xe0\xa7mE\x85\xf4k^U\xa2\xfc\xda\xddU\xbf\xb3~\x0f'\x0czl\x16\xc5\xfc\x0e\x04\xf5\xa3L}\x1a\xcc\xc4\xc7\xde\xa76\x13\x8a6}y&\xb4\x10\x9e\xcd\x89\xf6\xc6lP\x16\x12\xb14\x91V\x12\xd1\x92\x17x\x89G\xfc)*\xb9\xa9h\xa7\xef\xfbND\xf9$N\xd5\x1fE\x16\xed\xa8.\xcf^y\xc14\xf1V\x1aN\xb6n\xef\xedf\xd1\xca\xf7;\x19/u\x9e\x92\x04\xd2\xb5W\xac%\x9b\xb4\x14\xa4\xd5-\x9b\xb4\xb4IK \x19\xf5a\x93\x96\xca-S\x90MZv\xe8\xd5&-3B\xb9G\x1a\xf9\x0e\x92\xf3\xb3IK\x9b\xb4T%-?r\xaf\xac\x9e\xb2d\x7f\xa1n\x06<\xe4\xd1\xd1\x8f\x08\x03\xd9\xace\x83t\xbb\x86N.\xa0\x93\x0d`\xc6)H?ZA\x88\xed\x155\xf6\x9c\x10\x0b7'\x9d\xb8\x04u\xe9\xdbf-m\xd6\x12\xb0\"\x03\x9b\xb5\xc40\xa7\x0d\xc2\xf4aX\x9f\x9e:\xc26,L\x97A+\xdfT\xfeR\nj\xdbL&'\x9b\xc9l\xc9d\xb6\x03\xfa6\x99Y%T,\xaa\xb5\\\xa8\x80P\xdb\n\x0d\x92\xa8u\xd3\xd3y\x8f\x08\xaf\xba\xf7\x91%d\x0e\x01\xf4C\x154T;\xc8\x9c\x02`\xdb\xd3\xa5\x16\xa0\xad\xa1\x1e\xdb\xd4\xd0\xf9\xd2bg\x89he\xf5\xabw\x89\xcf\xcct\x14\x1d5\xb6\x89\x1b\xd2\xee\x8d\xb7\x88:>\x850}*\xe6\xcau\xc7\x02q%\x87\xbf\x11\xbf\xc2\xe1\x87\xc8\xf9Ma\xe4Gb2 \x0dX|\x11'\x83\xb2h\xb0\x85\xe4\x19\xe1\x9a\xea\xc0\xad\xb9\xe7'4\x82\xd9F\x0cS\xa8Q\x9c\xe3{\xdf\xd8na\x98\x11\xfe\x1f\x11\x9d?\x81\xbd\xff\xbe\xef\x84\xabu\x18\xd0 \x89\xf7E\x07\xf1\xfe\xfb\x8a\x98\xfa\xdft\x83\xf0\x08k\xf3\xf2Cz~F\x97\x92gY\xd6\x9a:\xdf(\x07`\x93\xab\x80\xdb\x18mr\xd5&W\xb7\xc8\xa8\x0f\x9b\\\xd5\xfa\xf1Z\x0c\x18\xe1\xcb\xeb-\x81 \x04\xfa\x8b\x10\x88 4\xf2\x8b\xc1}\xcd{\xb5\xc9\xd5\x8cP\x01\xadF\xbe\x83\xe4&\xfb'W\xe3\xc8\xc9\x07\xf1\x15\xc7\xd1\x11\xd4\xc9\xa9\x1c\x8e\x1b'_{Nz\x8e\xa5\xbd\xdaZ\x87l\x946\xf3\xa0\xcf\x05\xe6\x03\xc7\x18\xf6\x1es\xfd\xd4\xd9\x8c\xabn\x9c\x82\xf4\xa3\x15\x84\xd8sQc\xcf \xbd\xef\xea\xc5%\xa8K\xdf6\xe3j3\xae\x80\x15\x19\xd8\x8c+\x869md\xa6\x8f\xcd\xfa\xf4\xd4\x03\xca\xae\xe2,-\x99\xd6\xf1\xb0\xb1\xc2\xdf\xfa1\x811\x03\x94\xb7L\x14\x962\x83dI\x92Zj\xd0\x8b\xf3\x92\xb7\x02\xbd\x1e\xd8\x0b\xbbfH\xaf\xc6`\xeaLe\x98\xa5\x93{\x1f\xd8\xe9\xea\xf2\xc3\xe0n?\x88y\x89i\x10\xa7\xf1t\x9d\xce\x14\x1b\x0ebX\xdb\xcc\xb1\xc6\xd7\xe9\xec\xf0\x8b\xf3\xbb\x9b\xd2\xf5\xe7\x83\x8b\xf4\xe8\xcb\xe2|q~\xfc\x98\xce\xc9A\xf0\xf9\xf2K\xe0\x92\xe0\xf3\xfd\xd5\xb1\xf3pM\xee\xa5\xc7d\xfd\xe5xq\x14=^\xc4\xeb\xcf\x8b\x07\x8b\xc7N|\xef\xfc\xb1\x93\xce\xa5]\xfeN<\x9fjP9\x15\x00\x10'$I5\x13\xa9:\xa9\x94\x84\xe7\xb4\xfd&c\xad\xc4\xca\x88\xbe\xe7\xbd\x96U}R\xb6\xd1;Q\xbc\n\x03\xef\\\xb5\x03\"\xb8e\xe4\xb94H\xbcD\xe1\xde \x1b\xba\xa4\xb3\xd8k\x07\x81\x00\xdbNL\x9d4\xf2\x92\xcd\x94\xd9)\xe2\xf4O5\xbb4!\x9e\xafw\xbbT\xed0\xfb\x8c:N\x87[\x96m\xfe\x06\xef\xc6\x0b\x92\x88L\x93\xab)\xf7tt\xd0\xb3jUTz<\x90>P\xd6=\x8d?\xb6\xb2/\xfd\x91B\\O\x87\x8f\x1f\x1e\xdc=8\xbc{pxvp\xf0\x84\xff\xff\xbfK\xdfq\xc2\xd5\xca\x8b\xe3\xf1\x17e\xa4@A\x017:\xc0\xc8\x92\xd1\x8a\\Mw\xdd\x9f\xb3$\xc1\x82\xee\xb4\xdbt\xed\x92\x84v\xab\x15\xd9&\x9c\xeett\xcc\xcb\xf7w\xe1{\xdb\xf2DN\x03\x94'6\x8aB:\x8e\xae\xa3\x07\x88\x18\xa4y\xc0Q)u\xfa\x0e\xa3\x8dN\xc8..h\xd0\x9a\x91\xae\x01\xc30\xcaR\x12.X\xd0\x0eg\xc7\x81\x82*L\xd0\x05 \xaa\x10A\xe7\n\xa9\xc2\x03\x8d\x8cp\xa1\x81\xb6\x11MX\xa0\xf5?\xf4\xde\x876 \xd0*\x03&\x18@4\xa2\x0d\x04\x10m\xe0\x83\x00Dc\xda\x00@\xd3\x86\xd6\xf9\xd7\xf2\xa0\xf1t\x0c\xdc~\x9d\xa6k\\~\x9c\xc3\xdfw<\x18W\x1f\xdf\x07\xd2\xcd\xd79\xf9\x03,1\xb5\xdf\xab\x1d\x11\xe8%\x07(\xc7~\xc8\x9eP.\xfdP\x1d\xa2\x9cy\xb3\xce\xc6p\xe4G-\x16/=x\xd1\x86\x81w\x97\x17\x0d\x97\xbc9$p\xd9?i<\x81g\x1bp\xe9\x9c\xa4~\x02^\x02\x11M\xd2(\x88!\x0c|q\xe9\x9ep\xfa\n\xb6K6&\xd9\xdf\xda?\x82W/\xb9\xce\x1dl\xb1!\xb7\xc9\xe1lI+|\xf2C\xde\xe2\x85 \xbcIc^\x97C\xbddI#\xb8)8\xbby\x07n\n\xc3\xc1\xff\x1d\xd6\xad\xdb\xcd\xc2\xa6\xdc\x9cT~(\xd4\xa01:\xf4\x07\xf1\xd4C\\\x93\x05U\x0d\x90\xfd\x0e\"\x15%\xe5\xea\x10\xc5P\xd3\x9a\xab8\xf2\xbd\x95\x97\xa8XZ\x91+o\x95\xae2\xaeX@\xc3axX\xd3\x88\xb3;\x18\x9f\xdfX\xd0`S\x14\xbdc\x0el\xd4\x81\x1a\xd6\x8e#\x0f\x9b\xa2\xc8I\x1b\x8bh\x95\x1f\x10\x0b\x000\x11 \x82[@E%\xc8\x86\xb4\x91 \xb2\x1d|t\x82lP\x1b\xa1 \xda\xd1F)\x886\x10N\x9cA\xac\x82Y\x156E!H\x17\xbd\x0c\xb6(w\x89\xdd\xeb#\x99\xe1\xfbC\xc53\xc3v\x8b\x8aj\xcc\xbbTG6\x9d\x82\x90=I\x14\xd2?\x8f\x80G\xda\xbf\xcf\x8b\x00XtU\xfd>vvcU\xf6\xe9\xf8\x1f\xf1\xc8?\xce\xfd\xd5.\x88\xae\xae\xef0\xaaR\x12\xce\xed\xd5\x0eg\xc7.\xaf\x05\xdb\xc7C\x02\xb5\xae\xadV\x190n-\xa2\x11\xadK\x8bh\x03\xef\xce\"\x1a\xd3\xba\xb2\x9a6\xb4n\xac\x96\x07\x0b\xb6o\x11\xbe\x0f\xa4\xc3\xaasW\x07Xb\xbbA\xa4\xf5.\xea\x90=\xa1\x9c\xd3\xa1:D\xb9\xa5f\x9d\x0d\x00\xb6\x0f\x8d\xabc\\\xda~\x1f\xed\xffq\xdd[\xc5\x07\xfc\xbfq\xafv\xb7h0\xea\xc00`Vcy\xd4\xb5oK=QD\xd47*z\x83\x15\xda\x93|Z>\x05\x15\x8b\xeb\x1b\xf8\x80\xffW1\x90\x03}\xd5\xc7\x9aJ\xe5\x17~\xac\xd1\xac\x90n\xfd_G\xa3\x89\xbc\x9dO\xdbN\xdf\xf7\x91\xb7\xf1\xe9\xe3\x17\xdd5|\xf2\x16\xbe\x8e!+\xec\xd8:\x0c\xfd']\x16h\xf5\xdb\x83qB\x12\xca\xcc\x0e\xfbc\xd62\xb0\x96\xbf\xcd\xb5\xd9 \xa6\xf3\xc30\xa6\xd3\x1ex\x8d\xa8\xba\xe8\xd3\x82\x17\xcc}\xa1\xca>\x89\x93\xee!l\xd1N\xa7\xb7y\xa0\xc4\x19(\x03\xdbiDc\xda-f_G\xf4b\x9a\xc9\xc6\x18\xc8\xea\xbb8\x1a\xbbu\xbf%\"VE\xde\xa48\x15\x1e\xff@+\xa4TO~\x1f\x90\x88\xdf\x0d&S\xd6\xd2\x8a\\\xf5m\xc1\xeb\xa6\xe6\x8b\x90\xed]\\/;\xbd?\x00\xd4\xb4\"W\xd3f\x05\x9c\xbc\x89\xf6m\x8b#x\x8a\xd0`\xd0e\xe5\x93x\xc9\xd6U\xec-\x026r/\x98\x87\xdd\x96\x16k\x81\xe7\x89\xd8\xae\xb3\xf0.h\xd08\x19~C\xc2\xd8\xd6\x8b\xd2W\xb6\x96b\xc6u\xf6'\xd3\xca>U\xd9\xdb\xbb\xb2\xe4\xad\xf2H\x8b\xa7\xde\xb3\xc4\xacG)\xdc\x1bM\x19\x9c\x11\xef\xf7;\xf0~\xed\xec\xdfn\xbd\xf78!Q\x82rO\x95\xee\xb6K\xaf\xa6\xe1|\xde\xba\x11#\x1a\x11i\xb0i\x1a$\x9e\xdf\xb9\x11\xe6\x13Pw:\xf3C\xe7<\xc6U\xbd4\xed\x8f\xa1\xcf\xbcNg\xbe\xe7\xc09\xdd\xf0\xcb\xed\xc2\xa0pV\xb7V\x7fW\xe3\xb6WZ7%4\xc0$\x98c\x01\x06\x97\xc2~\xe4/\x02\xc9f`+\xfa\xad\xf1\xf8\x81\x06n\xed\xfe\xbe$\x84T\xd3@'\xab'\x03#\xda#\x155\xb0\xa1\xb0\x1d[\x00\xc9P\xb0\x05\xba\xb2\xf9\xc7\xbaw\xb7\xf5\xe26\xb5\xf9\x13\x84\xba\x0eTa\x1dZ/p\xd3\x0e\x0b\x10C\x03\xdd5n\x08\x0e\xc1\x00\xddT_\xe6\xa6\x95\x16\xe0F-\x083vAZ(X\x10J\x129!aaAz\xf1 \xea\xc6A\xeb\xe5\xaa\xbd\xaeZ\xd6^\xc1\x86\x98(\xcc\x14i\xfb\x01\x0c\xb7\x82\n\x91|\xa5\xeb\xde\x10\x17\xbe\xa1\xe4\x06H\xd9A\xde\x9cFY\x90\xe2\x83\xaa\x08;]\xfd\x86\xba\xfc\xad\x1b?\x03\\\x00\x87\xbf\x02\x0e\xcd\"\"\x97\x8e\xb9\x08\xae_\x7fRO\xc28\x88\xb0\xd7\xad\xea\xa7\xc1^\xb7\xaa\x1b\xa7 \xfdh\x05\xa1vf\xc4\xd8s2\xd8\x95u\xe2\x12\xd4\xa5o{\xdd\xea\xd7\xda\x7f\xb5\xbb\xafVV\x80\x92\x17\xa0\xf6]\x94\xc8\xa0\xf7\x9e\x8b\xd8q\xcd9\x19`\xb7\xc5\xee\xb5(\xe6\x10\xfb\xac~\x97\xed\xde\x93)\x02S9\x0c\x9e\x07\xaee[\x9d\x00\x97\x12o\x192K\x93\xb5Y\xc1;\xb2W4\xf8\x88\xb1s16B\xd9\xcd\x85 WSz\xe1\xb9Lk\xa6\xa4cr\x86\xd9\xce\x12\xde\xbb\xf4\x027\xbc\xec\xd4\xd0\xca\x0b\xa6Yck\x1a\xf5i\xc9\x0d\xd3\x99OycS\x91w\x99\xbai\xd4#\xc5\x19^\x06\x89\xb7\xa2\x834\xc6un:\x8f\x04V7\xad\xf0:Ls\x82U\x83\xb6:\xae\xc7Ex\xb1\xcf\xd4+\x8cI^\xb2n\x82p\x16\x9f\xbd\xca\xdb\xb8!\xe9\\\x86l\xc6-/6W\xec\xeb\xf0\x821\x1e8e@\xf0#\x81z\xf6cZ&\xa3\xb4\x1f\xd3\x02\x84\x07a\xd4\x87\xfd\x98\x16\"\xe2D\xa1\xe7\x83\xb8\xeb\x88H\x13!\x10A\xe8(\x13\x13c\x9a\xf7j?\xa6\x95Q\xe2%\xbet\xb0J\x99j\xce\xf8)\xdf\xcd\xf7\xdci[\xf4\xa7\x99\xcdJ\xa4w%\xf7V\xc3Xn\xe3t.ZuF\xd0\xc7]\x9b\xbb\\\xc7o\x82\xe5\xa5\xad.]\x87\xb1'\xd5w\xb5)P\x98\x01\xad \xd0/\x7f\xcd\xd2G-@\xd4\x92\xd7-w\xb3\x9ej\xcb\xbc6\xbfE\xb4\x99\xf2\xc4\xfe\xa7\xbd\x9aZ\xee}\x02\x87\x04l\xbd}\xdacj\xb6\xf7\xe9N\xa5\xb3O{E\xac\x97\x95\xa4\xed}\xba\x03\x9f\xf6\xe2p\x9e\\\x92\x88N\xd3\xf5\"\".\xdd\xfbT\xbcd\xe1\xe5*\xe965\x0b/[x\x19!.A]\xfa\xb6\xf0\xb2\x85\x97\x01+2\xb0\xf02\x869mh\xa8\x0f\x0e\xfb\xf4\x84\x83\x97\xf3]~\x88\x8fu\x19\xc1\xc6\xe2\xaa\x9a\x02\xec\xba!\xe9\xa7\xf1H\xedN\x1b\xe6\xe2\xeb\x11\xe6-\xbc\xca\xb4\xf2\xf8\"Lju\xc5u\x97\x89\xfd(\xf1\x84K\xdf\xa6\x19\xef K\xe5\xd41\xd9!lO\xd2\xd5-\xdc?\x05`\xf2uD\x1c\xa7\xb3xM\x86\xc3\x85\xe3\xdaU(MB\xa4\x1f\xb0\x1d\xbd!W\xbf\xb5/DA\xb1\xf2S-\xa6=\xee\xb5\x05\xe2\x9a\x1c\x83t\x96\xea\xc9e\xfeA\xa5\xb6@a\x16\xba\x1b\xf11S~K\xb1\x17\xc4\xfc*\x8c\xe6\x0b\xa5\x10\x06\xcax/im\x17\xb0\xe9o\x8d\xba\xd8\xf4\xb7n\x9c\x82\xf4\xa3\x15\x84\xf0\xf7Pc\xcf \xb5\x13\x08\xd2\x89KP\x97\xbem\xfa\xdb\xa6\xbf\x01+2\xb0\xe9o\x0csZT@\x8f\x0b\xf4\xe9 \x87y\x0e\x99\xfe\xdek \x9e\x7f\xe4\xff8lo\xe9g\xba\x815\x89\xe3\xcb0r\xc1\x8b\xe12\n\xab`\x7f'p \x05\xd9\xef\xffQx\x8f\x9d+X\xb2\x16nHx\xab=P\x07\xef\x81\x04n\xeb=\x06\xdf9\x06\xd5\xf6U(\xd5\xb5\x0e\xed7Ct\xe2;\xf3\xdcu\x9f\x82:x\xb0\xbe\xba\xba0\x1f\xe1\xf7\xe1k\xaa|\x05\x9d[\x85p7m\x8d@\x8b\xcb\xa4MDh\xa3Ze\x12B\xcbe\xb7\xa8\xb8w\\\xdcg\xb7\x91}\xf3\xfa\xf8\xe0\xb8\xbd\xb9Wa\x1a\xb8\x10\x84\x0d\xf3=\xcans\x11&\xb4sv\x98\xdf\xc1\xa3\xc8\x0d\x8b\xdfkW\x07\x0d\x98%\xfeV\xb6\x94kgpw\x9bH\xe6J\xa0\xb6\xb6\x8a\xf5\xae\xb57\x886BE)f\xcb\xeb\xc6\xeb\xbd|\xb3\xd3\x1a5K7\xfe\x16\x8a\x8b\x14\x0c3\x8c\x17\xd2\xd7\xbe\xfb\xd5g\x93\x8a\x82\xb4\xeb\xc4&\x15mRQBF}\xd8\xa4\xa26\xfc\xd0b\xba\x88\x10Do \x04i\xc3\x10\x94@\x04!C\x11L0\xd2\xa5W\x9bT\xcc\xa8\xd5\xa1\xd2\x86^]B\xa7\x9e\x81SN\xed>\x98\x86\xeb\xa2\xffM\xe58wm([\x97\xa7\x8b\xbe\xf6>\xc1\xdc\xa3\xbe[^m\xb9\xa1\xb1\xb8\xa42\x08\x9bW\xa8W\x8fK\xec}\xe2\x00\xd8\xa7\xbd\xec\x98\xc8\xe0\x17\xa7\x8f\xed\xdfw\x02Tl\xf2\xaeA:+\xa6\x93\x0b\xe8d\x03\x98q\n\xd2\x8fV\x10\xc2\xdc\xa3\xc6\x9e\x13\xda\xe4\xeb\xc5%\xa8K\xdf6yg\x93w\x80\x15\x19\xd8\xe4\x1d\x869mP\xa0\x0f\x0b\xfa\xf4d\x0c\xaf\xb0\x80\x91\xc3\x17\xd79s\xc7\xb1\xd4\xfd?\xb8\x7f\xd69e\xc7\xde\xbe!\xe1\xa8\xfc\xb5\x0dO\x85,s'\xbb\x19\xfd;\x07y\xda\xb2vm\x97\xc4\xcb\xef\x97\xef\xc4\xaf\xcd\xd6qR\x1by\x05\x06\xac1\"Z\xfcW\xf3\xbe\n\xfb\x95\xbe\xda\xd94u\xce\xf2TV\xfc(f\x89\x1f\xe177G\xafi\xf5\x9b\xa47c\xe0\xed\x80\xb8\n\x00H\xfd\xbb\xc3\x89\xb7\x92Z\xad\xd74\x89\xcdZ\x99\xc0\xe9\xbcr\xb4\xb6\x80\xa9\x81\x99\xf05\x0d\\/X\x94\x87\x0eoy\x13\x9a}\xd0\x00nf\xa7p\xde\xf1O\x13\xdc\xbc\x0d^\x02\x11M\xd2(\x88\x81\x04@W\xeb\xa4\xdc:\xaalLn\xe4\x7f\xfb\xae\x8d\xe4\xf7aJZ\xef\x8a\xd0z#\x15ODs\x8f\x81\xf2~\x88\x01\xfbi\xbb\x13b\xd0.t\xf7@\xf4\xee\xcc\xd8b\x96ov2v\xc2\xd6\x15Kq\xbfv_\x84\x81\x81\x13\x1e\xd5\xa2X\xe4E1\xd4\xd6-\xec\x12GL\xf9\xda\x84\xdf\x14\xb8\"W\xd3\xfa\xd7T \x0d\xca\xb3\xd4\x00$b\xbe\x1c\x04$\x08c\xea\x84\x81\x1b\xa3-\xd1\xf7\xb1\x96W^`o\xfbh\x90\x1eG1\xed\xaf\x0d?\xd9R\xcf\xde\xf6\xe1\xd1\x83\xe3\x03s\x0b\xf1\xbf\xc2dI\xa3)\xdb\xeb\xfe\x9dm\xf2A\xc8\x1c\x8f\xeag\x11\xb2\x1cn};DzW\xad\x8bz(\xf3\xc3= /X\xf4\xb7?\xc2'1\xb4>-/}K\x16D\xbd\n\x93eD\xe3e\xe8\xf7W\xcf\x83\xc9}\xe5^9\xd0\x1ey\xef\xde\xb1\xa2\x93r\xea\xa6k\x1a\x10?i\x81\xd7\x8c\xba<8\xbc^\x8b\xaeE)\x87Zr\xe2\xa2\xa2\xfe\x0bN\xb4c\xba\xe2\xb6\xde\x12\xdb}\xed\xc3hb\xa7\xcfv\xf8b\xb8\xdf\xf8N\xaf\x8d\xf1\xcb\xf1\xf7\xd6\xe9\xeb\xb8\x95\xb4\xa9KW\xb5\xde\xdbw=&\x8cY\xca\xa7\xc2\xa5>]\xf0\xbb\xbb\xf7\xff(\xfe}\xe2\xba\xd1\xbf\xf6#zI\"7\xaf\xd3\xdc\x0eC\xefnG\x8byQz\xa5\x9d\x1bR\xee2\xa8\xec\xc4qN\xf2\xe2\x9c9\xbc\xc8\xdf+\xdei\x89S\xb7p\xb0\x87\x97\x8f\x1f$\xee\xc5\x8a|!\xe7\xee\xe5\xf9\xe5Qz\xff\xe1\xd1\xd1C\xea\xa6\xa9O\x8e\x9c\xcd\xfd\x87G\xfe\xbcx}[\xd5\xb6t\xc4`\x81\xbf\xa6\x02O\xe0\xf7\xc8A&4\x98\x11\x9f\xaf\xdby\x14\xae\xf85\xe1\x99P\xbc0\x90.\xf8\xbc\x958]1Q\xb07\xd8\x7f\xe6\xcdQ\x12\x05\xd4\x85\xd9\xa6\xda\x0e\xfbO\x02\xb1\x17,|Z\x11s]\x88\xcd\xb5\xfe\xa22\xfb\xd7o\xb5\xf7\xf0\xeb3Q\xa9\x8c\xc0\xd7\xf5\xe9\x8b\xefUL3\xcc\xae\xfdQ\x84\xd5\x12T\x9b\x16tyEN\x8dutA|6\n-\xac|ty\x1c\x1c\xf9\xad\xed\x8a\x89\xd0\x0fN\x9d\xc5F\xe4\xb1Q3#\x083?\x82\xb4\x91\x97 \xe4\xfc\x08BFa\x82\xf4\xb1\x98\xa0n\x1c\xb4\xc4e\xdcx]\xdf\xa5\xa3\x9d\x14\xa40\x90\x13\xa1\x9f\x02\xd3\xfejb\xc7aW\x85!\xdf\x86\xf8;m\xfcf\xd5\xde\x7f\xf3\x92\xa5\x1b\x91\xcbb'*\xd8\xb9\x19W\xf6\xa0\xdc\xea\xde\x900\xd2\xad \xd4~%\xa9\xae\xfe\x1f\x11\x9d?\x81\xbd\xff\xbe\xef\x84\xabu\x18\xd0 \x89\xf7\xcb\x07=\x1a\xef\xe7\xfc\xbc/_\xdf+Z\xfc\x1ev@[M\xd5 \xdd:\xd6\xc9\x05t\xb2\x01\xcc8\x05\xe9G+Hk\xea\x007\xf6\x9c\x90&\x0f\x10\xe2\x12\xd4\xa5o[Me\xab\xa9\x00+2\xb0\xd5T\x18\xe6\xbe\x89j*\x85\x13\xf3\x15\xca\xa8\x0c\x91\x8f\xfd?\x8a\x90\x8d\xff\xfd[@B\xcc*\x82\x10H\x88bt5\xe9(G\xf7vM\xa3\xfc\xc1l\x88\xc5\xcb\x86C\xec\x18\xa4\"Fj\x80\xf9\xe4\x9fa\xd9\xf2boHd\x90?,\x80\x9a\xedw\x04\x8c\xf3=\xe06\xbb=\xe3\xab\xf4\x94\x10\x86\x0d\xe1\x19a\xee\xa3\xc6\xf5\xf1\x0d\x07\x808-\xdf~^\x1e\xe7e\x88h\xbe\x1a\x9af\x00\xa5\xf66\xfc\x93\xa9\xa4\x0d\xff\x1a\xa4\x8bgtr\x01\x9dl\x003NA\xfa\xd1\n\xb2\xe1\x1f\xe8;\xb1\xe1\x9f\x0d\xff\x14\xef\xdb\xf0O\xd05\x0c\xff\xc4\x0dE\x85K\xf0\xd5\x0f\xd6`#\xc2\xcb\xccy\xc8Sw\xdfB(x\x1d\x92\xe2y\xfe:\x97\x1f\xf1\x1b\xce\xac4 ^\xc9q\xdfT41\x81\xb3\xa5\x173eH\x96\xa5\x1crM\xf3\x02\xb8\\z\xce\x92\xb7\x98\xc64\x82K\xcf\xf7!\xa2\x0e\xf5.h\x85;\x98\xa7\x81Y\xfa\xe1\x9ay\x8b-\xeb\xb7Kn\xb8\xa9D\x86\x07\xef;Z\x85\x9e\xcb\xd8,\xb0yO\xd7>qh\x07\xf5\xac\xbe\x89T\xd1\xec\x92\x86\x80^B\x18\xd0\xb6\xfa+l\x903\xd0\x0dB\xaa\xed\xdc^\x13d\xaf \xb2\xd7\x04\xe5d\xd4\xbc\xbd&('\x9d%\x10\x84\x08u\x11\x02\x11\x84\x0es1A\xaey\xaf\xf6\x9a\xa0\x8c\x9a~r\xfb6\xd2*\xde.nKO\xc7\xe5\xdayt\x16\xff\x03\x8b\xff\xb5\x13b\xec9\xa1\x0d\xa3^\\\x82\xba\xf4m\xf1?\x8b\xff\x01Vd`\xf1?\x0csZ\xd7Y\xef<\xf7\xe9\xc94\xd2\x0f\xa3\xc27\xb8~\xa5 E\x12r\x80\x92\x8f\x1f\xb7(\xe2\xb7\x9cy\xa8\n\xb7zq\xd0\x0d\x890Du\x04\x87TZ\xde\xe2\xe7az\xe5\x8b\xbf\x07\xef.\xcc\xb4E}xD\xbb\xa0\xbby\xd7C)\\I1\xf5\xe7\xd3Y\x18\xb8\xd3k\x7fnG\xeb\x92i\x85.\x08\xe9\x8a\xe9\xdd0\xd3\xfeZ\xdc\xaf\x0b\xe2O\x9dp\xb5\xf2\xe2\xd8S\xdfVd\xe5_#\xd3\xfe:\xd4\xfe\x14fn \x88\x1c\xbd\xe1\xed\x87i\x12'\x84\xdfx4\xed|\x02\xf4\xc7\xdd\x04_\xd1\xc6FV\x91g\x91'\xf8\xde64[\xf7\xd7\xa4\x96\xb5?\xf2\xda\xb5\xeb\xd5x\xbd>/6@~\x8d%sK\xeen\x9fMS\xae\xd8\x16w\xd6A\xb7\\4h\x94\x1f\xb46`\x88\xf5\xb9{\x1b\xf0U\xf6\x7f\xb3\x14yQ\xcb\xcb\xf4\xb8`\xe5f\x8c:\xed\xd9|\xa7\xa9\xf8l1\x94k\xa3\xd9&J\xf5m\xfd\xafL--\xfe\xdf \x9d'\xaf\x93\x0b\xe8d\x03\x98q\n\xd2\x8fV\x906\xd8\x01\xdc\xd8sB\x18\xba\x9ct\xe2\x12\xd4\xa5o\x8b\xff[\xfc\x1f\xb0\"\x03\x8b\xffc\x98\xfb&\xf0\x7f\x85\x1b\xb3s\xcc\xbf\x1eE1\x0f$\x0d\xbcd3]\x87av\xf3\x89a\xd8\xc0_\x07\xf6\xba\xfe&D\xeb\xc17\xe9\x1b\xf6\xe0\x07P\xbffln\xa0z[\x08\xd37\xae|jE\xe1\xf5\xa8k~\x8d3\x8d\xa6\xaa\xab\xa54\xf39\x0b\x834\x1e\xa4\xa5\xd2t$\xe4\xca\xa0\x85\x8ez\xc36?/X\xf4Q\x997\xa2 X\x85n\xeaS\xbd\xc2\xb0\xe7\xbf5Eab\x9a*\x8c\x8afR\xbd`\xees\x96\xa6\xbc\xba\xcdY\x92`\xa1t/\x11-\xad\x8c\xd4C\xdaB\xc7\xfb\xe0\x17!\xf1yv\x8dvS\xf1\x99\x1f:\xe7\xf1tM\xa3\xe9\x86\x12\x93\x8fh\xf4T\xf2b\xe8\xc6:\xfe<\xfb\x9cC\xd6R)D\xe1\x0e~S\x9a>\x86dI\x10\xa4\xc4\xbf\xbb\x8e\xc2\x0b\x8f\x03/\xbd%,Z\x84\xb2\xc5\x1f\\\xd2\x97$^\xed;\xa1\x9b\x99\x8d*\xe0V9\x17\x95\x1d$`\x0fC\x9c\x84\x11\x05\xf6\n\xach\x1c\x93E\x9b\xf0\xfeF\xe2U!\xbc\xf1\x0e\x86(\\:{f\xa4\xae\x05\xf6\xccHFE\xe7\xf6\xcc\x88 \xa3\xe6\xed\x99\x91\x9ct\x96@\x10\x02\x1eE\x08D\x10\"\x82\x14\x84\x01F\xcd{\xb5gF2b[\xe1t\xb6I\xe43\xaf\x11l\x1f|\xee\xda\xf9!6\xed\x036\xed\xd3N\x88\xb1\xe7\x84\xb6mzq \xea\xd2\xb7M\xfb\xd8\xb4\x0f`E\x066\xed\x83aN\xeb\xfd\xea\xfd\xdf>=\xa9\xd3>\xcf\x88\x9b\xc7\xa7\xe5\x1b\x9d\x82\xe9\x1a0QD\xcf\xbfxq\"\xc2e/\x98\x87\xd9\xaf\xcaX\xf9{\xd8\xe0\x97\xd4[,[\x0c\xb4f&\xc5\xa7FG3\x97*\xce@\xcf\x1dh8\x84k\xbaY\xb7\xc7\xcb9\x89\x0e\xc5\x82W>\xeaD\x94$\xa1\xc2(\x08B\x08R\x90K\x122]\x92x9X\x8bq\x98F*[\"\x08\xdd\xdc,\xf5|We\x05\x055\xda\xdb+\xc1\xb5\xfd?\xd8\xff=}Q\x1c\xcd\x92\xc1l\xa7A\x9c\x90 \xf1\n\xa4\x8d\xad\xe5\x888 \x1eg\x93\x7fvW\xf2}\\QA+\x98\xaa\xfc\xb9fW\xb8\xcd:}\x01\x9b0\x85K\x12$\x90\x84\xe0\x95\x9c\xb4Q!n<&\xb9\xcfgn\xff\x0f\xfe?\xff\xc2\xad\x9c\xea\xd7 xBE\xdc\x9cpN7?\xd6\xd2\x91r\xdc\\O5>\x97\xf4\xaa\xf8\xbe\x83K\x12\xc2\xa3\xd1dI\x87H\x03\x19\xacn\xceB]\xb7jl\xe6\xbf\xe7Id\xb1\xba9\xc3\xb7X\xa0\xcb\xc7\x11\xa7\xebu\x18%\xd4\xbd-\xe5\xbb\x19\x9d#\x19\xb7\x8b[\xbb\xb8{\xf9\xb3\x08\x1fP\xe9\x05h\\\xaa6\xf3S\xcd\xe6\"\xb6\xe8\xb0m!\x9f\xda\xf3RQ\xc4\xd8\x96I\x92\xc7\xfd|\xff`\xc3%\xb1\xc7\x0c\xab\xd8O\xb2\xe7\x85U\x9e\x904YN.\x0eg4!\x87\x93w,\x9eh\xb4WS4\x99b\xad\xc8\xd5\x94\x19\xd2\xa9\xb3$\x11q\xea\xd1H\xeb\xb4\n4\xe5 \xa4^\x90<8.~H\xae\xa6\xb1\xb7\x98\xfa\xde\xcaKz\xb6\xf2\x85N\x9d0N\xf8\x15\xb2\xb3M]!\xcc\x9ac\x1c]\xd0\xc8\x9boD\x8b\xd4=\xba\x7f\xff\xf0\xf1p\x0d\xc69\xae\xdf\xb5\xc9\x9aF\x8aY\x04\x97\xce\xbd\x80\xc6\x1c\xcc(\x03\xc5\x02}a\x13\x9f]\xc7\xbe\xff\xe5f\xccA\x00\xd1xD\xd7\x11\x8di i\x95=>O}\x7f\x03\x9fS\xe2\xb3\x11\xbbB\x1eYS|\xe4\xb7H\x0c^\xb0\xfd\xf2'\xd6\xc5\xfe\"\x0c\x17>\x9d\xf0\xb1\xce\xd2\xf9\xe4E*\xc2\xa9O\xb7\x05\x87\xbc\xb9x\x19\xa6\xbe\xcb\xec \x1b$8$\x08\x03\xcf!>W\xe8\xed\x96o\xd1\xc9br\x87\x89\x82\x83r{\x93=\xf0b`\x96\x948\x0e]'\xd4\xbd=\xb9\xb1\xfd\xdai\x00k&\x1c\xcf\xa1w \xa1l\x1d\xa4qJ\xd8\xf0\xd6\x11e\x9e\xbb\xe73\x0e\x92\x90\x0fn\xe6\x05$\xda\xf0\xc2y6\xceX(A\xb2\xa4\x9b\xed\xa6\xe9\xd5\x9a: x\x1c\x18Ic>\x0eq\xda$H\xe8\x15\x17\xfdI\xb0\x99\xc0O\xe1%\xbd\xa0\xd1\x1d\xbe\xd2>\xbe\xff%\x86\xcb\xa5\xe7,\xf9+L}\xb6\xf5\x87\x9bi\xf8\xc4,\xf7\xa7;\xe2\x7f\xe3Ow\x98g\x1b\x84\xd9\xafw\xf8\xec;$\x80\x90k5\x1fQL\x13H\xd7l\xc3\xd9\xace\xed\x8ad\x12\x1f\xd2\x8a\xacc1\x95\x9c\xa3$\xcc5Q\x98 /\xe1\xb7'\xf3\x1d\xcc\xf7\xc3\xcb\xf8\x89D\xb6\x7f\x82\xd3y\xc9\x11\x9b\x0e~\xf1\xb2K\xdd\x82i\xf6G\x12\xc7\xe9\x8a\xba\x13Y\x03'\x01\xfctv\xf6\x0e^\xbf<\x830\xc8UU\xe8\xe8\xc6\xa3\xbe\x0b\x04\xfe\xd1T\xa7\xb3\xcd\x9a\xfe\xf3\x1f\xff\xdcj.\x03\xe6\xd8\xd5\xab\x8a\xce\xb9B\xe9H\xce*\xfb\xf7E\xe8\xb9@\x02\x99\x0f(:\xe6\xcb'\xa2\xf30\xa2w\xf2\x17Y{$\xf1f\x9e\xef%\x1b\x08(u\xf9t\xce(\xf0%\x1e]PW\xd2^\x18\x80\xb8P\x9e?\xccu}\x02\xb7>\xc6\x14.h\x14{a\xc0F\xcd\xd4\x83\xadU\xa1\x1f$(\xab\xb0\xab4\x8b(9gk2kpr{{\xa6\x7f\x0d\x13\xfa\x04\x12f\xe3\xe6\x99\xabC8\xbf\xd9\x1av\xc4E\xde\xfe\x06\xc8\x05\xf1|2\xf3\x8b\xe5\x14\xce\xe7\x9e\xe3\x11\xbf\xc5\x96\xce\xd29D\x94YHz\x87\x7f\xc8\xcdK\xf2F\xb9\x7f\xc5\xb7\xb7B\xcfgt\xe1\x05\x01c\x96;Z\xdb\xc6o\xb3\xa6\x13\xa1od\xed\xc5\x13'\\\xc9\xacJ\xe6qA\x98,\xc5\x82\n\x9a\xab\x15ne\xdb*]\xad\x93M\xb6Dn\xc3\xca[,\x99\xef\xb7\xdd$g\x96'\x92<\xe6n2\xe3-\x92K\xf1\x9a:\xde\xdcs \xa6+\x12$\x9e\x13\xd7UW\nF+\xb6\xc2\xdc_`.\x90j\x97|\xc3\xd6\xe0\x8c\xc5\xcc\xe2\xc39\xe5\xae\xb6\xb5\x89e;\x03\x99\x85\x174\xe7W\xa2u\\\xb87Z\xbakl\xca\x9fN\x82\xcd\xa7|\x0f\x8c\xd9\xaa%\xd1\xccK\"\xa6\xf1\nNr#F\xfc\xb01pq\xe8\xa9.wfj\xb85\x14\x9c\xcc\xb6\xf7\xf6j_\xf9V\xdd\xd0\x87w\xb9\x16\xfa\xde\x8c\xb3\x97\x19\xc18O\x0e\xb1\xc5\xb3&\xce\xf9~\x1a\xb0\xffa\x9b\x82\x98\xb48W\xf1\xed\x1d/\x9cC\x9a\x88\x15\x9d\xaf\x17\x8el\x10\xd7\xf5\xc4\xe2)\xc2\x01\xc6X\xb2\x0c\xc5w;Yk\xac}!\xeaz\x9b/E \x03\x87\xcc#t\xce\xf9b\xc9X\"\x85\xe0\xbc\x00\x9e\xff\xf9\xcf\x12[\xfd*\x0ca\x1e\x86\xf0\x14&\x93\xc9\xff\xdc\xfa\x99uJ\x82\xcd\xf6\x0f$\xd8LXw\xaf\xa2puk\x1e\x86\xb7\xb7\x1f\x99L\xb6\x8d\xb17\x87[\xec\xd5\x8f\x9c\xc1\xb3\xf0\xd6\xbf\xb1wo\xc3\x1f\x12\x03${\xff_\xf2\xb1\x1fi\xc6\xfe\x17rA:\x0f\x1e\x9e\xf2\x0d\x9f\xb5\xdaa\xa4^|\xebU\x18N\x1c\x9f\xc4q\xcb@\x05\x0b\xeca\xc1{\xe5\x85\xed\xbe\x1a\x12(DpO#\x82w\x9bd\x19\x06\x12!\x88\xde_\x85\xe1\xad\xc9d\xb2]\xe6[\x08\xe0\x96\xf47\xae\x04\\,X\xa9\xb0\x97N\x85P^\xbc\xfc\xf0\xfc\xfd\xe9\xbb\xb3\xb7\xefo\xcb\xc2\xf8RQ\xe4\x1d\x88.\xe4\xe28\xd6\x88\xe3u\xb8- .\x8a'O\xe1\xdf\xd6\xb3\xc9\xab0\xfcc2\x99\xfck\xfb!\x12l\xee0_\x83=\xb9\x16;\xec\x1b\x12\xc5K\xe23!\xc9\x19\x95\x89\xa2\xd9\x9b\xa4+o\xde\xe8\xe8c\xb0*\xbb\xe2\x8cp\x85\xe4O\xfd\xb7\xa7\x10x\xbeT\xc1\xe4\xfd74\xe9\x8c\xc7\x8f\xceyawr\xaf\x0ff\x9brO\xce\xad\xe1\xa5\xe7\xfb\xec\x07\x97\xceI\xea\xf3M\xb9\xde\xdcM\xc9\x9e\xbb\xcf\x02\x90 \xff\x81\xf9\x1f7\x99#ZXff\xb5\xd9l\xb1?\x88\x19\xab7X\x98\xc3\xc0\xdf\xe4N\xf6VDS\xf86@\xe6 \x15[5\x0f\x9cn\xee\xdf\xac7\x97\xd9\xe8\xbck\xe1\xc6g\xa0\x10\xec\xcd\xc3p2#\x11g\xfaj\x7f3\xf9\xb2'F,\x9c\xd7m?\x9cw\xb9\xc7\x9ec\xe6\xb9\xf6\xd3_>\xbc\xfd\xb5\xfe\x97\xa7O\x9f>\xdd\x96={\xae\x0c\xe0\x84\x93\x10\xb2\xe5\x92m\x9a\xc2 N\xe3l7\x8b\xe8\"\xf5ITog\xfbu\xf6\xa8K\xcb\xed\xee\x0e\xd0\xd5\x8c\xban\xb9\xf1\xdd\xc9\xf6\xd0F\xd8W\xd9\x92\xe6|\xd0\x9f\xfe\x83\x0d\xfbS\x16\xe5\x14[xU\x88\x93|\xf9=\x91xu\xc49gk\xaf\xf4\xfa\xe7\x9eO\xb7\xed[\xbeF\xdf\xd1(\x0e\x03\xa9:g\xe1\xf4\xdc\x8b\xe2d\xca%\xff\x14\x0e\xb7[*\x1ed\n\x90?w\xa4\xb7\xa8\x00\xd2^\xf7\xf8\xf8\xf7\x9e\xc0\x9eL\xb3\xeb\xc3\x9a\x08\xee\xf7\xee\xc8\xda\xe1|\xffJV\xac\xad\xff%X\xfcw\xe9\x83\x8c\xef\xc6s:\xe6O\xe7\x99wZ\x9fc1C^\x0c\x97\xd4\xf7\xef\x9e\x07\xe1\xa5\xf8:\xf2\x92\xc4,FO\xe3$\\I\x14\xb5\xaeNw\x84S\xd5\xd01a\x08*]2\xc5 \x16@\x84\xda\xd4\x1b\xfc\xc4\x958\xd7\xa1e\xe8\xbbB\x81*\x1cp\xd8 \xd3=\xc8\xc2\xf7L\xf5\xeam\xf1\xe6\x0b\x8d\x83[l\xfd\xe6\xc3\xdd\x8a-s\xa8\xe2\x9f\xff\xf8\xe7m\x89r\xf6\x99\xefz\x07\xf2)\xe7\xc3\xde\x13)\x84\xc3\xa3x\x1b\xcf\xce\x8d\x7f\xcdw\x96\xa1rl\x12\xc5\xf2\xcf\xfe\x9b\xcfl\x0e\xf6\xf17\xf6\xb3W\xe0\xfd\xbb\xe7EG\xc2z\xe2\x10\xc0\xb8\x1f\x04(\x81\x85\x9b)\x10I\xe2C\xd2\x87\xa0\xf6$G\xd2\x02\x18jr\x0c:\xd0p`\xd8P\x0d\x1c\x0e\x0b\x1d\x8e\x05\x1e\xf6\x84\x0f\xc7\x04\x10;C\x88\xa3\x82\x88#\xc2\x88\xe3\x01\x89\xc3C\x89\x03\x80\x89#\xc0\x89=\x01\xc51 \xc5AA\xc5\xe1a\xc5A\x81E\x1c\xb48\x12\xb88\n\xbc\x88\x06\x18G\x81\x18{\x80\x8c\xad5\xaf\xca\x0dT\x015\x8e\x0e6n\xc3\x8d\xba\x0d\xbd\x1f\xe4\xd8h\x8c\x03\x90R\xd0q \xd8q$\xe0q\x1c\xe8\xb1/\xf8\xa8E\xe0\x14\x00$\n\x82lA>\x8c`\xc8\xb66\xb6\xc2\xc6\x9e`$^\x18z@R7n\x04(i\x08K\xca\xc2\xe8\xde\xd0\xa4\x16\x9cT\xc3\x93:\x80R!%h \xaeH\x89\\\x1a5A_\x85[\xd2n\x15\xf3x\xe5C\xb8\xca\x8d\xb5,\x12y\x15\x86\x10\x87+:-\x1c\x8b\x968\xb8b\xf4\xab\xd3X\x0f\x85\xf3\x18c\xdb\xa1\xae\xbe\xee\xe5\xcb\xad\x08\xee\xbc\x00\x16l\xff\xc9\x8e|\xe7\xcc\x8b3U\x85\xd1)\x1a+\xfbgA\x9a\x98F\xddv\xd5\xc9?\x93\x85\x19f\x9b\x96<\xb4\x18 \xac0\n)Zl\n\xde\xbe\xcaC\x88\xee\xe1\x03*t\xe8\x156l\xe9^\xc5!jS\xbe\xec\x91B\xfb.\x97T\x04\xc6ESN\x18\x89\xc7\xf8jm\xa8+G>\xf8\xc6Z\x1d^eL\xf55\x99\xf5&Y\x94\x11]S\x9e\x15zF\xa2B\x96\xaae\x995\xc5\x95@\xb6\"\x9bp\xc2I\xb01\\ \x89\xa4\xf2\xa7E\x89T&s\xb0:\x9f\xb6\n\x9f\xa1j{\x86\xaf\xea\x91\xa1\xcf\xa8z\x9eq*y:\xd4\xf0\x8cT\xbd3J\xdd\xce\x18\x15;C\xd6\xea\xf4\xaa\xd2\x19\xb4>\xa7se\xce\xb059\x03U\xe3\x0cY\x873P\x05\x8e\xae\xf6f\xf0\xaa\x9b\x81\xebm\x12}\xa5\xcd\xc056\x9d\xaak\xb6\xeaj\xcc\x1c\xb5\x11\xabh\x92J\xfdL\xdb\xe6\xd8\xaff\xa6qL\xafY-\xd3\xbbNf\xf0\n\x99\xa1kc\xbaW\xc5(J@\xa4\x950\x9a\x1a\x98f\x02\x1d[\xf7\xd2|\xef_\xdbc\xebP\xe5\xa2\x1f\x9c\xba\xb2\xa5m4\x9aj\x16t\x1dK5\xd5\xd8\xabvEQ\xb5\xd2V\xaf\xd2^\xa9\"\x195\xae:E]\x97R\xafH\xe9\\\x8b\xa2\xadB1\xad?\xd9\xaa\xf9P\xd7\x9c\x0cRm\xb2\xd5gE\x13\x06\xac-\x19\xb4\xaad\xc0z\x92\xe1*IZjH\xeai\xf7z\xdd\xc8\x10\x15#\x03\xd5\x8a\x0cY%\x82\xa9\x0f\xd1T\x86\xa0jB\xf4\xd5 \x8d\x02\x8af/\xd8\xcc\xbf\xaa\xf6\x03U\xf5\xa1\xad\xf7\xa80:\\\x8d\xc7\xa0\xd5\x1dC\xd5u\x0cU\xd1\xd1u.5U\x1c\xea\xfa\x8d\x0c\xc3\x89\xd6\xcedA\x12zI6\x93(\x0d\x12oE'\xfc{\x06\x86P\x0e\xad\xbe\x03m\x8e\xb2\x13\xba\x12o\xda\x0b\x12\xba\xa8}\x8d3w\xa7\xbd \xb9wT\xfc=\x93\xad\xb6\x17\x97&\xc4\xf3\xed\xf9\xb5\x06\xd9\xf3k#\xa1^\x82:`_\x82FB\xc0\x04\x8d\x82\x83 \x1a\x03\x0d\xcbZ\x1e\x10\x13\x13\xd4\x0b\x19\xcb\x9b\x18\x10\x1f\x13\xd4\x19%+8\x1a\x10+\x134\x10b&hH\xdcL\xd0@\xe8\x99 \x1d\x86&hp$M\xd0\xc0x\x9a \x89\xbf`\xcf\xaf\x0d\x8d\xbc J\xec\xf953tN\xd0\xd0\x18\x9d\xa0\xeeH\x9d \xec\x91-{~\x0d\xb0(\x9f {~\x0d\xec\xf95\xe8\x80\x1f\n\xb2\xe7\xd7\x86C\x1a\x05\x0d\x887\n\x1a\x0eu\x14d\xcf\xaf\xe1\x90IA\x18|R\x90=\xbff\xcf\xafu\xc49\x05\x0d\x85v\n\xea\xa7\x01\x03\x9f_\xab\x9c\xc3\xf9RTx\xbe\x8eH`z\x14\x81\xb5\x10F\xde\x97\xad3m\x92\xf7\xdb\xda\x00\x05\xa4\xa8\x88\x87tp\xe2\xa0`\xa2\xbdC\x7f\x04\x08\xb1#\x808\"|8\x1ax8\x16t84p\xd8\x1b6\x1c\x1c4\xec\x05\x19\x0e\x0f\x18\x0e\x08\x17\x0e\x0d\x16\x0e\x08\x15b\x80\xc2Q`\xc2\x11@B\xc9\xc6j\xef\xd0\x1f\n\x16L\xec\x1d\xfaX(p\x0c \xb0\x1f\x0c\x88\xbbF~\xfb\x07\x04\x00h\xef\xd0G\xc2}F`\x9f\xbdC\xbfB\xf6\x0e}\x1c\x9cg\xef\xd0\xb7w\xe8\x1b\x02wC\xc3vX\xd0\x0e\x01\xd9\xa1\x01;\x1c\\g\xef\xd0\xb7w\xe8\xf7\x98o\x04,\xa7\x07\xe5J\xe3O\xaf\xd6^\xd4\x02\xa5\xb5\x9e\xc0qIB\xef&\xdeJw~\x97\xc3{\xb0\xf0.h\x0ck\x1a\xad\xbc8\xe6.h\x12\x02\xbd\xa2NZ \x1d\x98\xdc\xb3\x1d 3\xbd\xc2N\x94\xfc\x01\xaf\x9b\xe4/\xb4c\x89'2p0\xc1\x01\x8b\x0b\xd6\x00\xd5\x17X\x8a\xe7\xf4%\x92\x16\xa8\xb4@\xa5\x05*-PYi\xc0\x02\x95\x16\xa8\xb4@%X\xa0\xd2\x02\x95\xb5F-Pi\x81\xca\xe6\x83\x16\xa8\xb4@\xa5\x05*-Pi\x81JN\x16\xa8,\x1e\xb4@\xa5\x05*3jq\xfcQ@\xe5\x9e\xf4z\xce\xfb\x93\xa3\x9c\x8d\xed\xbb\x13\xb71F\xa0W \x0d\\\xa6.\x1c\x17\x14Fc\x16&K\x11#\xb8nDcf\x9b\x1a\xe0Y\x06\"rm\xcb\x80\xc7\xca\x96}Z\xdc\x93\xca\xa6\x9d\xb9\xbe\xb1\x17\x0b\xa1\xf27\xc4=\x99\xfc\xbf\xf9;R@\x94_\x12\xfdZ\xf4\xc3\xff\xa7\xebe\xe7\x9c\xbf\x9d\x1d\xf5\x96\xc0\xb0\x82\x14A\x9e\x04\x92\xd5\xbe\xd3\n\xcfV\xdf\x94p\x0eJ\xeeA\x01\xd8\x96\xbf\xb6\x9e\xb7\x03\x04x+\xa8+\x84\xdb\xd2\\=\xf8\x93\xf8\x80\x9c\x86\x84s\x05\x8d\x03\xea\n\xea\x05\xed\n\x1a\x0f\xe0\x15\xd4\x11\xe6\x154\"\xd8+h4\xc8W\xd0X\xc0o\xd6\xfa\xc0\xf0\xaf\xa0\xde p\xde\xcc\xc0P\xb0\xa0^\x80\xb0\xa0\xe1aaA\x03\x82\xc3\x82\x86\x86\x88\x05\x0d\x08\x14\x0b\xc2\xc0\xc5\x82F\x01\x8d\x05\x8d\x00\x1d\x0b\x92\xb8\x80\xed\xf6j\x04\x18YPg0YP\xcb\xc1x\xc0l\xd6\xca\x03\xf20>\xc8,(\xd9:(\xbf\xd5\xb5\xd4\x91\xe8\x07;K\x1aT\x1d\x9a\x87\xa1 hA\xa3\x00\xd1\x82\xc6\x80\xa3\x05\xf5\x03\xa5\x05i\xcf\x8e\x83\xfa0=\xe0`jA-\xe7r\x0d!kA\xedmI\x0f0\xf6\x04\xb1\x05\x99\x08K\x0fh\x0b\xd2\xcb\x04\x01n\x0b2\x82\xb8\x05Ie\xd5\x1f\xee\x16\xa4=\x84\x0f\xda\x83\xf8\xa0\x05\xc0\x05)\xa5\x88\x07\xc3\x05\xe9!qA\xb2\xc3\xf9\xd0\x17\x1e\x17\x84\x02\xc9\x05u\x81\xca\x05\xb5\x0b\x0d\x01\x9b\x0b\x1a\x0c<\x17\xa4\xe0H\xaa\xa9\x03\xc3\xe9\x82\x06\x07\xd5\x05\x0d\x0c\xad\x0b\x1a\x16`\x17\xa4<\xd0\x0f-\x87\xfa\xa1\xe5`?\x0c\x08\xbc\x0b\x1a\x10~\x1744\x08/\x08\x0b\xc5\x0bB\x00\xf2\x82\xd0\xb0|\xedq\xed\xa1\x7fh\xdd\x0bZ\x8f~\x83\x01|\xab\x83\xeb\xb3\xd6\xb0\xa0}\xf68\x06\xba\x17$\x1d\xda\xb00\xbe\xa0\xc1\xc1|ACB\xfa\x82\x86\x04\xf6\x05\xf5\xd7\x12\x04\xc8\x9f5\xa8\x85\xfa\x055\xb7-9\xec/H\x19\x9c\xb5\xa5\x00\x04\x99%\x02\xb2\xeeZ\xbe\xc6:\\R@\x90:5 \xc84A \xa86j\x81\xeas\xb0\n|/\xe6h^\xf67\xd1\xab\x9b\xebd\xc6P\xb9\xcfw\xfb\xa60 \xaa\x7f\xcd?ei\xbf)L\xec7\x85\xd1\x1f\x07k\xcfi\x81\xea\x83\xa9\x05\x13\xe2\xc3\xa9\xb5\x06\xda\xbe\x9f\xda\x9aL\x8bl2\xcd&\xd3l2\xcd&\xd3l2\xcd&\xd3l2\xcd&\xd3l2\xadB6\x99f\x93i5\xb2\xc9\xb4\x82\xf4\x89#\x9bL+\xc9&\xd3\x8a'l2\xcd&\xd3d\xb2\xb2\xc94\x9bL\xb3\xc94\x9bL\xb3\xc94\x9bL\x93\x90M\xa6]\xa3d\xdaL\xe4|\n&\xf2vl2\x0dl2\xadA;O\xa6E}\x93iQ\xb7d\xda\xb7\x91E\xb3\xd9\xad*\xd9\xec\x96\x94lv\xcbf\xb7jd\xb3[6\xbb\x95\xd8\xecVN\x92\xd8\xc7f\xb7jd\xb3[U\xb2\xd9-\x9b\xdd\x92\x90\xcdn\xd9\xecVI6\xbbe\xb3[6\xbbe\xb3[6\xbbe\xb3[u\xb2\xd9-\x9b\xdd*I\x19\x9c\x19d\xb7\xb6\x12\x19\x06\x9f\xb8\x10\x94\x98|\xe8B\xc2A\x0d\x8bVg\x9c\xd8\xac\xe7\xf9\xaf\xd9\xc6f\x9e2\xb2\x99\xa7k\x94y\xea\x94r:\xa9\xaf\x81\x96\x9c\xd3\x8c\x04\xe7E\xca\xe9\x05\x0d\xc2\xd5\xc7\xc03\xfd\xda\xb4\xcb\xde\xdb\xce3mMXmx\xfc\xa5rc\x10\x03\xcb6\xebjV\x81\x99\x8d {:\x0d\xbc\x84c\xfc\x90\x92$\\\xdd.\x17\x12\xbdZ\x87\x01-\xbf\x93]r\xe1\x05 ]\xd0\xa8\xf2\xf7\\g\x9a*\xa3\xc2w\xf2\xf6\xab\x0c\xaf\xc3K\xa14\x87\x07\xe5\xef|\xbb\x0b\x03\xca\x91\xe7\xbaFD\xc4\xcb|\xde\x19\x89\xe9T\x0c) \xd9\xb6\x15F.suC\xa0\xcc\x11\xae\x8c\xbb\x98\x92\x9b\xb1\x90A\xbd\xc9\xc3L0O\xe1\xf0\x7f\x17,\x94\xad\xd7\x1f\xe6\xc9\x91\xcc\x0d\xac\xb2\x10\xce\x858\xcb\xdc\x80\x13Q\x92P e\xf7\xec\xa1\x9b\xec\xa1\x9b\x12\xfc\xb2\xe8\xf9)<`\x1b~\x1a?\x81C`O3\xc6\x0e\xfe\xf7\x83\xad\xe9\"\xbeGb\xda'7\xb9\xa5\\\xd9b\xcfZ\xae\xdb\xfcL\xad\xf2\xdfr{\\Q-\xd9\x02\xac\x98\xc5R\x0e\x95\xf9'\xac\xdd\xd4I\x9a\x08\x1c\x11\x0d\xd7\x97G\xbe\x17\xa4\x99035\xf0\x1cH\xc2s\x1a\xb4/\xca74!.I\x88\xf1\x9a,G\xa2[\x99\x9c\xc1)\xe3\xac\xcf\x8c\x18e\x8b\xb7L\x86 \xa5\x0b2\x9c\xf9\xd8j\x1a\xb64T\x90\xcc\xac\x08j3.\x82\xdaL\x8c =\x90<\x84\xb9\x114\x82\xd1\x11ddz\x04\x8df\x80\x04\x99\x9b!A\x12c$H\xbe\x00\x04I\x96A\xf5\xa5\x16\x15\x1e\xc4H R\xbb\xdc\xbd\x0cV\xde\x01\xd6l \xca\xc6V1&\xcd\xe5\x99\x8f\xb4\xaa_l\x98Y\xff\xe0\x84^\xc9\x04\xd3\x0f\xad\xe5j\x88\x81\xbd\xd3\xec\x94\xffM\xe8\xd9\xad\xb2\xa6\x80\xfdR\xca\x88k\x14T\xa8\xa2J\x07\x15}q\xbdx\xed\x93\x8d)[\x8d\xd9\xc9Z\x01/p=\x87$\x19\xde\x13\xa7\x8b\x05\x8dYH\x92\xadQ6G\x05\xc3\xb2\x06D)\x9e\xe337\xba\x92\x88c\xd6\xcf\x94CyA\xe2\xbd\xbd\xed\xe9\xdd\xe3\xc65\x8fs\x92\xbcZ#/\x01aJ\x01\xb7\xe8\xe2 <\xe7M\xc1 [qe;\xf1f5\x0b}S\xf6\x1a6R4\x92;\xc3\xa2\xcf\xecoy\xc1F\xbc\x0c/\x03\xe0\x85\x91y\xfe\x99sur\xf6\xf6M\xc3\x00\xf0Z\x1b\xa7 \x8ce:\x12s Rt\x94\x89\xbd\x99\x89\x92\x8b.{\xa4M\x0f\xf2]\x1d\xb1<\x8bw\x08\xceaxG\"R\x9a&\xa4\xbb\x10\xd3\xc0\x9d\xd2\x80E<\xee\xf5\xf5\x01$\x0cV\xdf\x99\x85\xa1OI\xdd\x8e\xa9\xf7\xda\x0f4p_\x8aFEQ\x0b3APl\x92\xa4&\x17\x88\x13\x92\xa41\xdc\xba\\R\x9er'\xb2\x01\x81\x1777'\xd6\x08k\xa1jI\x04\x00?U\xcb\xbd>\xa0\xdaP\xc4,\xd7\x16\xe2\x9a\xfd\x89&4*7\x0f\xa6\x18\xb0\n\xdd\xd4\xa7\xed\n\xc3\xe3\xc5\x13\xdf\x7fF|\x128\xb4k\xb9\xe1,{\xfd\xfa\xaa\x0fY\xb1`\xdd\xe0\x15\xb5\xf2<\x17\xba\x92!>\x99\x1d\xca\xbc\x9b\xda\xe6I\x02\x97\xd7\x02\xf0\xee\xb7\x13\xd9\xbf\xbe={\xf9\x84\xa7\x08\xc4\x13\x19\x06\xefq\x18\xe94H2\xcc\xb3\xa8\xc5\xa8\x01\x9f\"\xa6\xdf\xd28o\x11\x90$\x8d(\xdb\x83?\xa7^$\xf2A\x8bp\x11r\x94\xb1\x159\xcb'17\xae\xc5\x7f\x87sQ\xe9\xc6\xcb\xd5\xbc \xee\x8b\x90 \x85-\xfe\x9ceq,Bf\x112\xb4\x87\xcc\xad[?hO\x06\xb4\xb8\x00\xa0\xb6\x88\x82FE\x93\xa0\x15Q\x02%\xaa\x04\xa0C\x96@\x8b.\x81\xd6q\xc9i8\x94 \xc6D\x9a\xa0\x1b\xda\x04\xe3#N\xd0\x03u\x02\x15\xf2\x04\xca\x85$\xa8\x15\x81\x02\x8c\xfa\x0f\x88D\x81\x16\x8d\x82a\x10)\xe8\x80J\x01\x0c\x8eL\x81\x04\x9d\x02\xb5\xcc\xc7A\xa9\xa0\x1d\xa9\x029Z\x05\x06lJf\xb17r\x05Z\xf4\n$\x08\x16\x18p\x8d@\xb2\x00\x86B\xb3@\x8ah\x81\x01\xbb\x12\xdb\xdc\x1d\xdd\xdajJ\xa0]-\x08\x17\x18\xa1\\\xa0C\xba@\xa3?]\x10/\x90\xa3^\x9a0@\xeaW\x99\xa4\xcek\x0dt\x08\x05\xf8\xfb\xf1@\x9e\xdd\x0e\xf1\x94V?P\xa3\xcf\xad\xbe\xa0z\x13\xd3\xa4PZ\x85\xe8\xe8Z\xfaR[\xac\xdd|xE\xe3\x84\xacZ\xd1\xc3\xca\xa3&C\xd6\x03Hu*\xc2MU\xd0Q\xa7N\xfc D_\xb2\xe2\x05.\xbd\xc22\x82\xd5Q\x13\x9bVde\xb0L\x0c-\x0d\xb3-\x99\xedx\xf5\xc3\x05\xeb\x882\xcf\xefN\xf6\x19\xb6\x95'>\x13'\xfe\xa9\x9b\x07\xd6\x1a\xc7+J,\x82q\xae\xdb\x97+;x\xfbC\xdc\x1f\x9dY\x7f\x14\xe3\x97Y\x7f\x14\xa3\xfc`\xfd\xd1\nY\x7f\xd4\xfa\xa35\xb2\xfe(Rqs\xc2O\x1dt\x99>0\x9fB\xeb\x8f*\xa9\x13?\x08\xd1[\x7f\xb4$\xb3-\xf9\x1b\xf2G\xb9\x19\x9a^\x84\x89\x17,\xa6\xfc\x1e \x8co\x8a\x10/\xd6\xf4\x94Z\xf65zG.{\xe3~\xf5\xcb\xbd\xa6Q/r\x84\x9ci\xce\xcb\x0c\x1f/3\x0c9b.2S\x85\xc4r\xdf.\xb9\x94\xd5\x0e\xe5\xe4\x84\xc1\xdc\xf7\x1c6\xc1\\\x95Z\xd5\xc1g\x9e\xd3T\x1c\x9b\x9e\x92$!\xce\xf9n\xb1\xfa\n\xa7Se\xe9\x92 T\xcf\x80\xee\x1d2;C]\xb4\xab\x80\xe6\x00\x8c\xb8\x80\xd6Z49\x19\xb1\x01\xc6\xac\x80\xba\x9aMN\xf8\x1a79\x19\x8f :\x8d\x0btUrrB\xdb\x83&\xe5\xf6AQQ''E\x9d\x9d\x9cv\xcd\xa2\xd9\x0eY%\\\xfd\x9eA\x83\xcdJ\xbfZU\x9fA;\xda\xfa?9\x8d^\x15('|\xad\xa0\x9cT\x15\x84r\xea\xa0b\xd8\xf0<\xa7\x0e]\xe07\xff*\xb5\xd5+\xca\xa9\x17[z\xdf\xa0N\xda\x8aG9\xed\xd0\x82\x9a\x85\x8c\xd0U\x80`\xe2\xb1\xd7\xa9\x13\n\x90S'IBgi\x829:\x90\x93Y\x04\xd6\xa4.\xeb&'s\x15\x80>j\x00\xddU\xa1#\x9a\x90\x93\x11\xaa\x90\x13\xa6\xceTN\x9d$\xd4I2&\x95\xaarR\xd6\xaf\xcaiW\xc3CT\x95\xcaiW\x0c\x0eUC+'le\xad\x9cv%\x03}m\xae\x9cv\xc5\x9f\xaa\xbaWN\xbb\xe2\x0cU\x1f,\xa7]\xb1\xa8\xad0\x96\xd3\xae\xd8\xc3\xd6(\xcb S\xb9,\xa7\xdd\x8co\x8c\xdag9\x89M\x0e7~c\xbf\xca\xdc\x9f\xba\xb6\xf1\x062M\x98S7\xc7\xce\x04b\xcf\xc9\x06\x1a\x82\x8c\xd7\x98 \x1bh \xa8\xcb\x82\xc9\xc9\\\x05\xa0\x8f\x1a@wU\xf8\x1a\x81Fy\x9c\x1e/#!\x1b\xd5=\xd5\xdb\xa4\xb9\xb9z\x9b:\xaavW\xc5\xce\xad\xd8t\xee\x13\xe9=\xb9*\xea\xa1,\xd8\xa2\xa8:\xdd\x85g\xbf\xbc}\xfe\xf3\xf4\xf4\xc5\xf4\xd5/'\xaf\xd1\x85BMj\xb6s\xf2\xec\xc3\xcb_1\xd5Nuj6\x83.\x9a\xaaS\xb3\x99_O\xf5\xb5Su**\xa9\x86\x10Om=\xb9\xaf|\xb2\xa8\\t-n\xacx\xe6;\xe1\xf9\xe9\x0b\xe1\x12\xe5+ <\x91m\xd5\xb5_\xa5\x0eY\xfc:\xf5P\xc1\x1e\xd6\n\x95\x0b\xdd\xa6\x01\x985\xc5D\x05\x19\x94\x05\xd4i\x00\x8e\x0d\xc5[\xf3\xc0\x9fs'\xf9\x83\xb7\x10\xa5z\xccg\xc8\xe1\x7f^:P=9F\xb2\xa71\xce\xb7\xb4\x9b\xfaA\xb5\"\x95\xcc\xcf\xc1\xe5\xa9\x91K\x12g\x9e{\"N\xef\x91\xecD\x1b\xaa\xd3*\xbc\xa2c\xb3\\\x191E\xf8\xe5F\xdb\x86\xd9fQ\xf2\x8cy\xda|\x9b4\xda\"\x8d\xc6)\xc8l\xb4\x82:X\xa3\x8eK\xa5\xd32Y\xa73\xd9me*\xea 8\xe8(>S;\xb6\xe6\xa6&\xc8P\x00X\x13 \xa8\x93\xd5\x1e\x89#S\x0b\x8df\x03\xcd\x00\x0e 3\xeeW\x0f~\xd5`\x9d_\xd8\x86\xf0\x9c\x97\xe9\x9f\xf0*}\xdd\x81\x81\xecr\xa2\x0b\x8c\x0e\x92$\xa1\xab5?,\x90\x84\xb0\xf2b\x9f\x12\x97\x7fTr\xb1L\xb2o\xaa\xd51\x9eJmSS.\n\xf3\xa52U#]I\xd9\x9ar\x15\xad\xa2n\xbf\x95\xa4Q\xed]\x94\x88\x91\x00 R\x8d\xbay\xc8 \xb7^u\x89B\x84\x00\x01#Dt\x9aO\x93\xd0S\xa7\xee\xd4\xfe\xd5\xb8\xf7w!\x93i(\x81\xea\x12d\xe6\xa90\xe3\xa4\x97qz\xcb$\x91\xd51e5Nr\xca \x0d\x85\x9a<\xd4Z\xd0\xee\x91F]\xe9\xf6FD\n\xc8\xa8\xbf\xd6\xa1\x0d\x9e\xc0\x19=U\xb3\x9d\x94\xa9u\xd9vi\xbe\xc9\x17%\x9bm\xb4\x7f\x84\xa7\xf5\xe2\xfe_\x98\x8a\x8bV\xec\xb5\xfdr+l\xaf\xed\xe7\xd4:yC\xca\xda^\xdb?D\x07\x98\xc3\x80\xb8c\x7f`\xaf\xed\x97N\xc4H1\x92\xbd\xb6\xdf\x86J\xdb\x84\x10 `\x84\xa8\xdd!\x1a\x8f\xd9k\xfbu\x07v\xfa4?\xd4\x91#\xec\xe1\xa2>\xbc\xea\x8f\x06\xf5i\xdd^\xdb\xaf\xd4\x0f{m\xbf\xc27\xb7\xd7\xf6\xdbk\xfb\xf3n\xba\xa9\x90\xbd\xb6\x7f\x9b\xec\xb5\xfd\xf8\xebB\xed5\xa9\xd8\x1bg\xec5\xa99a\xaaJ\xc0T\xd5q\xc1\x86 \xe4\xf9Gl\x9c#H\x9d\xa8\xab\x13\xfe\x9c#\xda\xce\x80\x91\xad\x01D\xe0U\x92\xd1D\x80\xdeOh\x122\xbe\xad\x93\x91d\xc0X:\x8c\xb4\x91p\x9d\xcc\xf4%'\x13\xc5\xcd ?u\xd0e\xfa\xc0|\n\xd1\xd1\xb5\xf4%\xdc9CDz\xa7x\xd4d\xc8z\x00\xa9N\x06\x99\xad\x9c:\xf1\x83\x10\xbd\xbd&\xb5$\xb3-\xf9\x1b\xba&\xd5^\xdb\x8f\xf7\xcb\xac?\x8aQ~\xb0\xfeh\x85\xac?j\xfd\xd1\x1aY\x7f\x14\xa9\xb89\xe1\xa7\x0e\xbaL\x1f\x98O\xa1\xf5G\x95\xd4\x89\x1f\x84\xe8\xad?Z\x92\xd9\x96\xfc\x0d\xf9\xa3_\xbd\x16\xde^\xdbo\xaf\xed\xcf\xc8^\xdb_\x12\x96\x050e\x03\x8cY\x01{m\x7f\x93\xd0\xf6\xa0I\xb9}0\xbc\x13\xdf^\xdb\xaf\x8b\xfb\xaad\xaf\xed\xb7\xd7\xf6c6\xff*\xd9k\xfb9u\xb3\xa0f!#t\x15 \x98x\xecu\xea\x84\x02\xe4\xd4I\x92\xd0Y\x9a`\x8e\x0e\xe4d\x16\x815\xa9\xcb\xba\xc9\xc9\\\x05\xa0\x8f\x1a@wU\xe8\x88&\xe4d\x84*\xe4\x84\xa93\x95S' u\x92\x8cI\xa5\xaa\x9c\xec\xb5\xfd\x19u`p\xa8\x1aZ9a+k\xe5\xb4+\x19\xe8ks\xe5\xb4+\xfe\xec\xb5\xfd9u`Q[a,\xa7]\xb1\x87\xadQ\x96\x13\xa6rYN\xbb\x19\xdf\x18\xb5\xcfr\xb2\xd7\xf6\xeb\x9e\x16\x84L\x13\xe6\xd4\xcd\xb13\x81\xd8s\xb2\x81\x86 \xe35&\xc8\x06\x1a\x08\xea\xb2`r2W\x01\xe8\xa3\x06\xd0]\x15\xbeF\xa0a\xaf\xed\x17\x84\xbciDN=\x94\x05[\x14U'\xf3\xbbJ\xe4d|\x83\x89\x9c\x8c\xef5\x91\x93\xc9m'r\xeax\x07\x8a\x9c\xc6\xb9\x19EN\x1d\xb2\xf8u\xea\xa1\x82=\xac\x15*\x17\xbaM\x030k\x8a\x89\n2(\x0b\xa8\xd3\x00\x1c\x1b\x8aw\xf0[_\xe44\xfa]0r\xb2\xd7\xf6o\x93\xd1\x16i4NAf\xa3\x15\xd4\xc1\x1au\\*\x9d\x96\x89\xc1\x85\xa69u\x10\x1ct\x14\x1e\x98_t\x9aSG!BWAB\x97\x0bPs\xda=\xb3;\xbe\x185'|\xd5S\x9d:\n\xa8[\xd4\xb3\xeerqjN;\xe2tm\xaf\xedG\xbedl\xe1\x8c\x85\x05\x9d\x04\x06]m['\xc1A7\xe1Aw\xab\xb6[6\xbf\x8a=\xebf\xcd: \xc6\xd4>@?;\xb6\x13\x1eM\x0bas2f\x0e\xcb\x98\xbd\xb6\x1fc\xf4LL\x9d\xc1\xae\x80\x96\xa8 #+a\xb0\x07\x18\x08\x02\x0c\x85\x01\xe6\x16\xdfP(`*\x18\xe8b\xdf\xc7gj\xc7\xd6\xdc\xd4\x04\x19\n\x00k\x02\x04u\xb2\xda#qdj\xa1\xd1l\xa0\x19\xc0\x01d\xc6\xfd\xea\xc1/{m\xbf \x8dh\xd5\x13i\xaf\xedo\x122Y\x89\xd8\x85t#\x01@\xa4\x1au\xf3\x90\x13n\xbd\xea\x12\x85\x08\x01\x02F\x88\xe84\x9f\xbd\xb6\x1f\x91 3O\x85\x19'\xbd\x8c\xd3[&\x89\xac\x8e)\xabq\x92S\x06i(\xd4\xe4\xa1\xd6\x82v\x8f4\xeaJ\xb77\"R@F\xfd\xb5\x0em\xf0\x04\xce\xe8\xa9\x1a\xfd\xb5\xfd\x92+\xf3\x0d/\xed\xaf\xb4\xd0\xf9\xca\xfe\xc27\xfe@\x93^7\xf7o\xfb\x0d-S/\xdf@\xe4\xa1\xae\xdc\xf0J\x0cn\xab\xa1m7\xb0\xad\xabR\xa1\xb2\xad\xd1\xa3\xd2\xd0\xab\x8d<{u\x9aF-\x9b\xb3v\xfd\xe0\x8e~\x9d\xc0\xc7\xf7\xbf\xecG4\x0e\xd3\xc8\xa1\x10\x90U\xa6\xd9i\xe0}N\xa9\xbf\x01\xa6\xee\x897\xf7\xb2\xd0*\x117\x98\xb4\x19\x1a~\xebf\xe4\x11\xdf\xfbB\xdd\xb6\x83R\xeb(LB'\xf4a\x96\xce\xe74\xca\xafA\x99\x88\x1bA\xc5\x98`\x95\xc6\xc5\xd2\x03\x92\x80OI\x9c\xb4\xb5\x18\x06\x14\xf6\xf6\xf7\xc0Y\x92\x888 \x8dX[\x94{\xc1\x10\xd3\xc5\x8a\x06\x85)\xf8\xf8\xfe\x97\x9b1\xacI\xb2\x14]\x14'\xc2\xdb\xdaf/\xcdS\xdf\xdf\xc0\xe7\x94\xf8L\x12\xae\x90S\xd6 \x97\xc8-\x12\x83\x17\xb45\xf1\x89u\xb7\xbf\x08\xc3\x85O'|\xf4\xb3t>y\x91F\xfcD\xd9\xa7\xdb\x82[\xdeh\xbc\x0cS\xdf\x85\x19\x15V\xca!A\x18x\x0e\xf1\xf9\xf2hk\xff\x16\x9d,&w\x98\x88\xf8 \xb7\xbd\xc9\x1e\xb3\x18\xfc\xe6V\xc7\xa1\xeb\x84\xba\xb7'7\xda^>\x0d`\xcd\x84\xe69\xf4\x0e$\x94\xacbH\xe3\x94\xb0\x01\x8bs\xf1k\xcfg\xdc$\xa1\xb80\xd5\x0bH\xb4\x11W\xc2n\xd64\xbb\xbb5Y\xd2M[\x07\xf4jM\x9d\x04\xbc\x84\x05/,\x0e\xcf\xae^e\x93K\xaf\xf8\xc4\x9c\x04\x9b \xfc\x14^\xd2\x0b\x1a\xdd\xe1\x86\xed\xe3\xfb_\xf2=\x96\xbd\xc2\xec\\K\xf3\xb1\xb3\xa4+\n\x9f\x96I\xb2\xfetG\xfco\xfc\x89\x9f\xe4\x0f\xc2\xec\xd7;\\C\x1c\x12@\xc8W\x04\x1f\x1d\xb3\xd0\xe9:\xbb\x95\xa7\xb5u\x1a]\xd0H\x0crE\xd6\xb1\x98n\xce\x1d\x0b\xc5\xb2\x0b|8\xf8\xe0\x89\x1bf \xdb\xfc}?\xbc\x8c\x9f\xb4\xca\xfcOp:/\xb9c\x93\xb5\x8eB\xb6\xb3\xb8\xc5\x00\xf8&\x16\xc7\xe9\x8a\xba\xad\x97\xfd\xfc N\x02\xf8\xe9\xec\xec\x1d\xbc~y\x96_\xbc\xfb\xf1\xfd/B\xb37\x1e\xf5Y\x94\xf8\x8f\xa6\xe2\x9dm\xd6\xf4\x9f\xff\xf8gK\xa3\xdc\xe6\xa6|\x96\xb2\xb9\x16\x96\x99Kt\x1d\x85n\xeaP \x01\xd0(\n[\xab\x8f\xff\x04'\xe5\x91\xc9\x98\xdf\x19L\x98L\xa8\xcb\xc4\xe6\x10\x87\xad\xce0\x0d[\xbf\xe9\x1d\x89O'\xc1\xe6S\xe9&\x93\x00H4\xf3\x92\x88\xad\"\x05o\x99\xf1\x944H\xfc0\xd3\x18 \xb2\xd9b&\x8e[d\xc1\xdb\xac\xee\x9b4\xbc\x90\xc2\xbd\x90j\xd4\xbb\\\xa7}o\xc6\x19\xce\x0cq\x0cq\xba^\x87\x11\xdf\xb4\xd6\xc49\xdfO\x03\xf6?l\xab\x12S\x1d\xe7\xcb\xa6mg\x0e\xe7\x90&\xc2z\xe4+1f\xb6\x8b\xb8\xae'\x96%,h@#\x92p&\x99\x8f^\x1c8g\xbd\x88\xe9\x90\xb5\xfc\xf2\x8a0\x0d\x85\xc3'\xf0\x8e\xf1\xc4\x96a\xc6\x1e\xa9\\*\x07\xcf\xff\xfc\xe7\xd6\xbd\xe3U\x18\xc2<\x0c\xe1)L&\x93\xff\xd9\xf2\x10c\x83\x04\x9b\xb6\x9fI\xb0\x990\x06^E\xe1\xea\xd6<\x0co\xb7=8\x99\xb4m\x14\xde\x1cn\xb1f>r\xf6\xcf\xc2[\xff\xc6\xda\xb9\x0d\x7f\xb4\x9a\xc2\xf6\xb6\xfe\xa5\x92\xd5\x91FV\x7f!\x17d\x10a\xc1S\xee\xce\xb0\x1ez\xca\xc4\x8bo\xbd\n\xc3\x89\xe3\x938V\x8aD\xb0\xc6^\x11#\xab\xbc\xd6\xd6\xbbTV\x85\xb0\xeei\x84\xf5n\x93,\xc3\xa0U\\\x82\x9fWaxk2\x99\xdcnW\x1e!\xaa[\x8a'\xb8zq1v\x91\"k\xe0T\x08\xf1\xc5\xcb\x0f\xcf\xdf\x9f\xbe;{\xfb\xfev;(Q*\xa2\xaaK\xd1\xa9J|\xc7\x1a\xf1\xbd\x0e[\xef\x90`\xa2{\xf2\x14\xfem=\x9b\xbc\n\xc3?&\x93\xc9\xbf\xda\x1e%\xc1\xe6\x0e\xf3\xc2\xd8\xf3k\xe1c\xbc!Q\xbc$>\x13\xaaj\x00\xedBk\xf6\xdf\xda\xb97ot\xfd1X\x95\x9ds\xd6\xb8\xf2\xf3\xa7\xfe\xdbS\x08<_\xa1\xc0*\x8e\xa4\x9a\xca\xe2%.\xd7\xdcn\xe6\xfe3\xcc6\xa5\x9f\x92\xdbt\xf1%\x8cM\x8e\x03\xb2\x9d^\xd6\xe8M\x89\x1f\xb2\xcfB\xbf \xff\x81\xf9j7\x99{_\xec5l\x1f\xca\xef\x0b\x11\xf3,k\xb60\xed\x81\xbf\xc9\x83\x99\xad\x88\xb2\xf0\x06\x81\xcc\x13*\xdc\x17\x1e\xbe\xde\xdc\xbf)k4\xdb{r6D\xd0D3\xfd\xdb\x9b\x87\xe1dF\">\x80\xab\xfd\xcd\xe4\xcb\x9e\x90\x81\x08 \xda\xe2\x1d\xde\xfd\x1e{\x9am;\x92\x07\xfe\xf2\xe1\xed\xaf\xb2\xbf?}\xfa\xf4i\xdb,\xb1w\xca [8T![\x9a\x99\xdb \x82\x8d4\xa69\xc4\xb5H}\"\xbdFm\xbb\x11\xf6\x82K\xcb\xad\xfe\x0e\xd0\xd5\x8c\xban\xb9\xe9\xdf\xc9\xbc\x08ih^\xd9\x88\xe7\\0\x9f\xfe\x83\x89\xe6S\x16w\xd6p\xbf\\\xd0\x93|\x91?i\xf5\x92\x89s\xce\xd6y\x19u\xcd=\x9f\xb6\xd9\xe1\xdc*\xbc\xa3Q\x1c\x06\x8a%\x92\xc1\"\xfc\x83*S>SO\xe1\xb0\xad\xd5\xe2q\x9e\x07\xcc\x9e>2\xdb\x0b\x00\x14\xdc\xecqI\xed=\x81=\xd9\x9a\xa9\x0f}\"\xc6\xb6w\xa7\xbd5>\xaa_\xc9\x8a\xb5\xf8\xbf\x04\xeb\xff\xaex\x9c\x8d\xaa\xf1\xb4\xc9\xd0N\xe7YtP\xd7\x151\xc7^\x0c\x97\xd4\xf7\xef\x9e\x07\xe1e\xc0W\xf7\x92\xc4@\xc0I\xe3$\\\xb5.\x81\xbar\xde\x11\xeeiCc\xf3\x0f\xf2\x14\x1d3\x05\xe4w!q\xf5\x935\xfb\x89/\x8f\\#\x97\xa1\xeff\xf70\x95\xdcp\xa0(\xd3d\xc8@\x9aL\x91e-\xf2\xae\n-\x86[\xccn\xe4\x02\xd8B\nr\x88\xea\x9f\xff\xf8\xe7\xedV\x85\xef\xaf%\xf5\xceT\x8a\xc2\xc5\xc1\x1a<\x9c\x1c\x1d\x1e\xc5{\xad\xd3^\xffou}\x822\xd0\xe1\xfeL\x82~\x8c\x80\xf3\xacnX!\xfc\xf0\xe4o\n\xd6|*\xab\xc9\xaa\x18\xfb[\xb7\x19\xe9\x9f\xee\x93\xa2`\xf9d\x8b \xbcd\xc2(\x0fe\x91}4=\x9e\x8d\x80\x12\xc7:\x10A6\x9f\xcd\x15\xaa\xad;]\x1dS\xef\xb7&{\xf5\x19\xb1s\xe5yD\xb9\xbeL^\xb3\xe4x\xdcz}\xe0K\x10\xb7\x99=\x92\x0f\xf9\xe4\xfa\x94\xe5\xbbm\x93\xdc\xd2\xa9\xe8\xb6\xb43$\xe3(;v4\x8c\x82\xc5E\x19b\xa2,4\xe6r\x93\x1f\x93\xc6\x10Q\xe6\xe0'\xad\x98=\x94\xbbS\xce\x04 \xa4\x9b\xb5\xc8\xae\xe7\x10\n\x16\xd2\xb36\x05`QGH\xf7,\xfdX\x9f\x0e\xd3\xa5\x95\xbf\xff(1\x18+\x90?K\x8c\xce\xc7U\x95\xa4H\xdd\xd6\xbb\x8f\xded\xd1\x0e\xf9\xe82+RQ\xbc\x89\xc3zV\xef>\xc2\xbfn\xfe\xed\x0f}\x9d}\xa8\xe6v\xb8\xa0\x8a.\"\xc7;\xdb>\x02\x0f\xeb\xdfj\x1fB \x1a\xc2o\x95\x0e\xfdU\x8b\xa8\xbf\xc2qy_\xa4Yq;S\xdf\xa8\xe5\xd7S\x16v]\x969K\n\xc3lG\x83ZU\xadn\xb6\xea\xab\x05\x93\xc5\x94\xb4\x993_c\x86\x161\xc3f\x8d\x19Zc\x86\xd6\x98\xa15fh\x8d\x19\xea\xda\x1a3\xb4\xc6\x0c\xad1Ck\xcc\xd0\x1a3\xb4\xc6\x0cM\xda\x1a3\xb4\xc6\x0cum\x8d\x19Zc\x86\xd6\x98\xa15fh\x8d\x19Zc\x86\x86m\x8d\x19Zc\x86\xfa\xcdz=[c\x86\xd6\x98\xa15f\xc83f\xc8\xe6E\xfa\x15\xa2\x86\xa4\xc3\xd4\xd3}5vF\x1b6\xd3\xe2x6F/8\x80\x8c]\xcb#\x87\xb2\x1d\xc6\xc8y\xec\xe72v\xacc\xbb\x17\x9eK\x89\xb8\xd4\xd0I n4O6\xd3\x18\x9cf\x96\x93\xe8\xb2o\xcdu\x91\xa1vl\x9bs,\xa4[,\x8eCl\x91+,\x9e\x13l\xa6\xfb+\xa2\xe3+\x9a\xcb+\x96\xb3+\xb4\x9bk\xb1\x83+\xb8kk\x91S+\xbc;+\xa0#+\xb4\x0b+\xa0\xf3\x8a\xe2\xb6\x8a\xe2\xb0\x8a\xe0\xaaB\xae0\x18W\x89\xe0\x9e\x9a\xed\x98B]R\x04\xa5\x14\xd1\xb8#;\xa0\x9a\x91\xeb\xc9&\x94\x97\xb9\x9b\xa4si\x00\x10s4\x05q1Eq.\xc5p+-s(9\xbc#F'\x12\xc1}\x84\xd9\x85}\\F\xd8\xf7\x7f\xc7\xe7>\xd3AD\x9b\xbc\xdb)d\x9b)\xc1\x11\xe4\xe5\x02\x1a[\xc5\x16\xbb}\x1c\x0e\x1f\x9b\xab\xc7\xee\xe41\xac\n\xdd\xb1\xe3v\xe9L\x9d9\x8b\xdc8$\x07\xce\x1c\xd7\x0d\xea\"q\xbbk\x829j\xd0\xf1G\x94\x14\xd8-\x13\xdc!\x13\xd8\x15\x13\xd6 cq\xbfL\xad\xceS\x97K(gK@7Kh\x07\x0b\xd5\xb5Bp\xaa\x90\xdd)4G\n\xe2g\xc0F\xa5\x1a\xc4]n\x13\xb2\xc3\x84\xe4*\x19!\x1f\xd6=\x12\xdc1\x12\xd2%\x12\xd2\x19\xb2d\xbf \x0e\x10\xb7\xeb\xa3c\xfe&w\x87A\xf5\xc7\xdd\x10V\xe7\x86\x07\xa4e\xae\x0c\x97E\xb23`z\xda$\xc7y^\xe8\x8c\xb0\x840\xb4#\xd5\xd4\x8b'\x80\xa1]\xf1\xc4/\x1c*\x9a\xf0e\x81:N\xf4j\"\xe6S\xe0I]\x96[(!\x99\xcb\x98\xc8\xe5\x01\x16O\xe0B\x93\xb7(P\xd1\xa4-?\xeb;8\x93\xb5\x0c\x88\xd0\x92\xb4\xc2&h\xf5\x0ecZ\xdd\x1f\x9br\xd3\xbe\xdf\xe1y\x12\x91GR\x1c\xece`\x9f@\x1f4\xa1\x03\x88\xf0\xf8Hoi\x8e_\x1d7\xaf\xa5z\xab\x97\xd3sul9\xe6\x86\xd3hLW\x9f\xe6\x95[(\xdb\xe2\xa1Ds\xc9\xe7\x81B\xf2\xc7\xfd\x01Yr\xc6Q`\x86\\q\xb4/\x92#\xbeH\x02`9\xe1tjE\xf3\xc0\xd1\xcf'\xf9\xdf\x9e\xc4b\xca\xf96\xee\x8e%\xd7{\xf2\x8d\xfd\x84\xbc\xeb\xa3N<&\x18\xba(\xaa\x064](^\xa8c\xf8\xf3p\x9b\x89\xd8\x8dN\x9ec\xbfG\xd4=9m~\x9f\x8fN\x18\xfd\xe3\xde\n4\xc2r\xf0M\x1f\x11\xe2\xcc\xa7\x0f\x9fx\xd2\xa1)eY\xb2\xed\xeb\xa4\xceRU\xb8?\x1b'>[\xd4\x15{\xf2\xe5\xef\xa5V\x86\xdby\xfd\x8a\x0b\xee\xa2>\xd5\x90&G\xf1\xf6\x89\xf6C\xaa?W\xa7\x9c\x89\x17.\xf8\x82\xa4\xac\xae\xe5\xbdK\xaf\xe8\x04\xa0\xf0\x84\xf2\x1f\xd3}\x92\x15g\xd3k\x90|\x99A@\xe1\x97\xba\xb6+\xec\x92&\xe1\xb3<\xa5\x12\x0fm\xa7\x91\x18h?A\xe7f{\\O\x81\xd7M\xd20h\xaa\xa4\xa8\xe5\xe5\xee\x90\xa4\xfb\xac\x18e\xad\x88\xf1|j\x87\xe0\xef!\x11\xe4\xd0tK\x9a\xcc\xa3|D\x07\x08\x7f\x85C\x18\x1dL\xcf\x1f\xcd\xa4m\xd3\xab=D*D3\x94\x08\xcf\x1cY\xb0\x05\x07\xc6\xe2s\xdb\xd3F\x12\xb6\xfdY#[\x18\x9flq\xdf\x82\"U\xab2\xb5\xc0\xf4 Y@\x0e\x18\x08\x98O\x13\xb3*\x94\xecNRYc\xdb\xbb\xb2a[\x13J\xb29\x14\x00\xd7X \xcd\xdal\x9b\x98~%\x0c\x01\xa4a@\x83\xb2\xfcNR ds=\xc8\x07\xe2\x01\xbc\xcb\xf3\xef\xde\xbey\xbd\xfd\xf1\xf2\xbb\xed\xd5\x7f]\xbcq\xbegg\xfa\xee\xe2\xfd\x9b\x9f\xdf]\xbd\x99\xf3\x9d\xf3\x99>\xd3\x97\xef.\xde]\xbe4\xbf\xd8\x07\xd0{\xb5o\xce<]\xecg\xd8.\xb3\xdb\x82\xed~\xaco\xaf\x94\xbfJ\xc6<\xf2#Z\x8b\x9f\xfa.|[\xad \xd9Z\x99c\xccvm\x9bq7^\x88G\xeb\x9c/\x13\x9b\xd7\xf6\x05\\\x08\xf9\x96\xe46 \xbf\xcaK\xe6\xc6G_\xbbF\xd1\xcfe\xeb\x0d\x8a<\x04\xdb5\xdb\x93\xb0]#\xf1\x03 \xf3\x04 \xbcy*\x1by\x91\xc1}q\xe87\xc2=k\xd8\xc8+\x00^\xab\xc0\x9b\xf3\xb1\xd9\xae\xd1\xf7_7*\xf1\xe9F\xdb\x16\xf0\xdd\x1a\xf0\xdb\x1e\xd2-\x0f\xfd\xc0\xf4dm\xbf\xa3\xf3\xd9O\xf0\x99\x9e\xdd\xf00l\x1e\xaf\x9c\xc2\x1c\x1c\x1cK\xdb\x0do,B\xda5:\xadQy\x0d\xe1\x01T\x08>k\xba\xc8\x13\xcf\xa1\xb6\xf1\x14\xe2\xb1\xd4\x8aqM\xe9LE\x94\x1f2\x19\xe5.\xffS(Q\x16p\xe2\x9e\xdc\xdd\x839\xb66\xb9\xd7\x93\x8ex\x07\xa1\xb3]\xaf:\x9b\xed\xbbUg[u6s\x0f\x0f\xb2\xa5\x8a\xcdUg\x9b6\xf2\"\x03\x95\x87\xcb\xb6\xeal\x86F\xdb\x16\xf0\xdd\x1a\xf0\xdb\x9eUg\x13\xcd\x1b\x87Ug\x9b4\xba\xc8\xfb\x8d\xebl\x82Ml\xed53\xda\xbe\x94%\xa4\xb0\x86\x8eb\x1ejD\xc2\xf1\xf4\x1a\xcb~,\x07\xd4\xf1Z[N9%\xbcQv\xd3\xce\xaa\xac-\xa9\xd2\xb3\xd0\xae\x8c\xd6\x85\x9aO\xd3\x82\x15\xb2\xa5eq\x93g)\xdf8A4\xe8\x16\xe7\\\xe3\xd8\xa6y\xc6\x8af\x9b4M\x92~\x8co\xbb\xeda\xb65\x86W\xc8\xe6\x1c\x0dH#\x82\xe2\x03lG\x12\xbd\xa4Q\x81<2\xa0\xb1/x#\x0f\x0d^\xc3\x83\xeb\xc5\x83q\xa3\xc5\xd4\xe0\xcdk\x0e\xe0=\x0f\xb0E\xe5\xe0\x8dtv\xc7M\x9feC\x04\x0f\xde\x0cq=x{(\xb4\xe8\xd2\xa8\xdf\xe8\xf1BD\x80hT\x91;\x8a\x08oQc\x8b\xf0F\x8b8\xc2\x9b)\x0e o\x9e\x84A\xb98\xea\xe6 \x9a&>\xfb\x0d\x8bz\xc2\xdblT(J\xafn\xd6\xb8)\xbc=\x00\xff\xa2_x`\xceB\x01UO\x1d6\xef\xfb\xa9n\xde+\x06\xb3V\x0d\xfc\xee\xad\xba\xd1\xef\x14\xe3\xe6K\xfb\xba\xf9m/\xcc\xddb\x98\xb7\xcd3\xee\xb9\xba\x91\xef\xbb\xba\xb9\xa2\xd5\xf0\xe6\xbd\x1a\xde\xab@\x8dw\xc3\x9b1\n\x0eo\xb1\xa7\xe3\x88U\xc3[l\xa4BD\xe2\xe1\x8d\x12\x9f\x87\xb7\xd8s\xb6G\xf8\xe1-6N\xa6\x18A\xbc\xc5\xc6\xc6\x19e\x88\xb7\xd8hY\xe3\x14\xf1\x16\x1b%J\xa4#\xde\\\xf1\x8fx\x8b;\x9f\xd0\x11\x94x\xc3\xdfS\x9c6/}\xc5OO\xf9M\xe9\xe2\x04\xe7\x8en\xfeJ\x12\xd5\x00\xab\xdb\xaa\x84\x93\xda\xaa\x84\x8f\x9a/\xd1\xeb\xe6\xb7\xbd0w\x8ba\xde6?\xa4\x12\xde\xba@\x88\x9b,\xd7\x01\x0b\x1c\xc6\x9b!\x9c\x18o3\xc8t\x0e\x91jn\xb3\xbd\xc9\x93[\xfag\xb3\x89\x80\x12&2l\xcf\xe0\x9b\x1f\xde\xbd\xfa\xcf\xed\xf9\xeb\xed\xb7?\xbc\xfc\x8e\x14J1nc\x18/\xbf\xb9|\xf3\xd6\x15\x032lc\x10\xa40\x92a\x1b\x83x{n\x8f&\x19\xb66\xb6d\xe9r\x0c\xce\xc5\xee\xdb<\xb9\x85\xac\xd8 \xdf\x8a.\xa6\xfaM\x9e\x96\x1f\xcf_K\x95C\x9f\n\xc8|\xac\x98\xde\xfe\xd4a\x9bI^39\x8c\xd3\xab5m\x0b\x11\xf4\xb1\xcd\xc9Ft\xd0\x0e\xdbB,=\x96q\xa0\xb9\xbe\x12\n\xe6ev+\x03\x93\xb8\xac\xd6&e\xe1\xc8\xed\xe7z$\xaa\xb7KiE\x87\x18\xa6\x95\xb4N@\x91\xb1\xa2\x8d\xe7\x9f\x92Zi\xbc\x8d\xcc\xafIT\xfe\x89s\xc0\xbe\xc9\xc0\x86^G\xe95#\x05&\x11\xd8:\x9d\x99\xe3\xef\xfd\xe2\xcdGd\x91\xc5\x15yN\xb2\xd1g&\x9b'\xf7\x98A\xf2\xde\xe4n|\xbc\x18o\x9e\x0b\x043\x16 \xf0\xaa0\xae6c\xb1`\xce\x82\x81\xa9\xea\x8c\xab=\x1c\x82\x11\xaa\xda\xb8\x1a-^d\xd8f,\x88\xff\xcd\xe0\xe8~\xa5\x05o\x91\xb1\xd3x\xb9\xd1\xf1:r~\x87\xcd\x8b\x1fy/\x88'\xe5zq\"\xafE\x01\xef\x85\x819<\xc8{\x81\xc0\x7f\x91`\x1e\xf7y\x18\xd4\x1e\x9c\xef\xf8s\x1d\xef\x85\xf09\xd30\x9f\xdfD\xc5\xcb'\xa4\xaf\xfd\xc6\x07!\n2\\o-\x8b\xad\xcbZJ\x1a\x972\xde\xf5\xfd\xdf\x92\xa2\xc9\n\xb6\xa5h\x95\x14m\xd2\xa9E\x12\x99\x12\x95\x15\x11\xb93i\xc5d#\x9fh\"/&N\x18<&\x0d~\x9c\xd7c\xf2\xe0\xb3\x00\xe0\xcbg\xe3!\xf2\x80\\\xd5\x87ExL\x98r\\e\xf3\xe6\x9e\x81\xb1\xf0\xe1\x94\xa4\xa1I\x83\xba\x8d6^cy\x84\"\xff\xc0\x99\xf1+\x11\x0c\xfcR\xc4\x02\xbb\xc2\x91U\xb9\x8b;\x17=%M\xc3\x0eG\x11\x8a\xdc\x94p\xc8\xea\x9c%;Hd\xf81\xc8\xf0\xe3\xce\x0e\xd1\x8b\x19\xe9\xaf\x81\x81\xbd\x98XI\xc0B^\xa8\x1bMB\xc2\x1d\x1af\xd7\xd8Z\xc1\x0b\xfe\xe1+x\x99\xdd1f\xbd#|\xc5\x16\x82\x83\xc4\xb9P6\xa7\x87\x9f{\xc3\xcb\x91\xe1\xe5\xb2\xa0:'f\xb8!\xc2;\x1c\x88\xae\x05\xe7\xc68\xe9\xd7*c\xc8\xe0m\xb2\xc5a\xd6'\x8f\x81N!\xa8Q>\xaa\xf9}lh\xc7+\xa9\x9e\xbf\xd6\xab\x84\x9ch\xec\x1c\x8f\xf9\x9ba9\xd1E\xb40xO\x19ky\xe9\xd6)\x18G\x8c;L\x818\x0bcF\x18\xb2i/\xbe\xedqD\x04\x87!\xd7s\xf19\x07gs\xf023\xf7\"\xf1\xab\x10\x1cj\xb2J\xaf\x06\xaa\x19\x95`'\xea\x98\x83d\x87$2Q\xc1LT\x86\xab^\x98\xda\xe5I\xeba\x08\xd4\xa9^\xcdT\x04\x8d*\x95K\x9d\xb2\xabR\xe1\xf5K\x87\xeadP\x9bp\x95 W\x97\xc2\x8a!zN\x1c\x00\xa6g\x03=\x15t4\x02\x9d\x81 a\xbe\xee\xd5\xdc%\xd2\xe4\xa8\xce\xae\xa7\xb8A\x0e\xbf\xe1\xe0\xdb\xf2s\x17\xd7\xd3\x8dUKwi\x1d\xdd@5t\xa7\xfb\x8c\xd5S\xf0\xdc\xf8iuYOeQt\x1f\xfc\xc5*\x12p\x85\x81^U\x8c^G\xcc\xa7r\x18\xb9V\x98gu\xb0\x01\xb9\xff\xcf4\x1d\xdd\xb7\x02\x98\xbd\xc6\x97\x7fU/\xff:^\xab\xady\xd6]\xc0y\x19\x02;\xb6\xe04r\xfe\xc3\xdb\x9a\x8d\xaa/\x818q\xb5\xd7\xa9\xa7\x13 O\xa6\xea\xa8\x115\x8f\xfe\x8d\xea\xb9?\x866 =\xa7\x82\xd3\xb8N\xd3\x17#\x1c\x86|\x0c\xa9\xd24\xad\xa5\xb9J\xa8UB\xad\x12j\x95PX\x8fUB\xf9B^%\xd4R e\x0f\x9e1L\x10'eK=@/8!\xec\x1b\x91j\xf7\x19\xaa\xf5Mn\xb73/\xb4\x84\xe7Y<\xf5\x07\xfc\x01\x96\x99\x8c\x1bSF\xc0\xcd\x9b\xcc\xe1\x07t\xc5\x04\xefm+\xc3\xed\xa3\xa0\x98\xfa\x1bKn{**@PV \xb8\xc2\x02\xb3\x94\x16\xd3W\xee\x12\xd9\xe6(a\xa2d\xc7%\xa3\xb1:\x82K\xe8\x9a\x19:8\xea\x1c,T\x15\xe2\xcaq\x92\xb2\x03\xeeY\x00a&\xe0R|\x80\xb0\x0f\xba\xb9\x15 \xd4\x03 , P\x16\x91\xa4\x10\x81])\x02\x9bb\x04nd]\x9e+\x82\x92\x04\xf4Q\xd0\xa5 \x94}v\xed\xaf\xfd\x9cY\x03\x8c\xe6c\xee*\x969[\x992\xaf\x90\xa1L\xb3\xa183\xfe\x8c\xc6*yi\xfdW\xc9\xbbJ^\xe4g\x97\xbcZ%/\xdaV\xc9;n\xab\xe4\x9d\x8d\xf9o^\xf2\xba\xf3\x81,\x937\x1f\x15\xc7s\x07\xb3`\x86\xb6\xaaE2{\x80\xfd\xa1\x02\xea\xf3\x04\x06\xb6hb\x85\xce\x07\x08f*S\xce'\x06\x96\n\xa1\x87\x90\x0d\x84g\x02\xfc\x1f\x07 \xe0\x06D\xfc\x80Z\xfe\x9f(U\xa0G\xf9\x84\x9a\xfa\x84\x02\xff1\x06v\xf1\xc6~\x0bT\xb8?@\xb9\xfe\x07+\xd2\xef_\x9a\x9fR\x90\x9f\xb4\x91\xae\x14v\"\x18\xaa.\xe5*\xaf\xef9\x98\xbb\\\x17\xb9\x80~\xe03\xeeR\x1a\x81>YpiL\xfdF\xd4\xc4u#\xce\x1ae\xe9\x89s#\xceiN\xe1yR\xb9\xf9\x90hz\x14W\x0f9\xecxu\x96\x96\x8c\xf7-\x14\x1fr.\xf4R\xf0!G\xa5\x14{\x0f9\x9eW9\xf7\x90\x03\x93\x0b\xb6\x87\x1c\x14r%\x16\xc8\xe6\x93\xa9)\x9b\xd7\xcc\xbdf<'wS6R\x06\xa7l\xb1\xd0\xf7\xc8\x83\x94-\x16\"\xa1\xb3\xf9a\xf3\\\x00?\xed\x99\x98\x854l\x910re\x0f\xcbF>2\xf4\xc3B\xe6\x1b^\x13\xf7\xa0B2\xc7 O\x1e\xbc\x16\x00|y\x85\xd7B\x80\xdfb\x80?\x97\x88\x8b\xce\x83\xf2\x07?\xee\xe05q\xea9\x84y|!\n.\xd40\xa6\xb6?\x15 \x17\x02\xd6\x9cf\xd9\x9cc\xb9\xc6\xa0d9\xcb\xe6\xd2\xbe\xacZ\x17\x81iPX\x05\x81K:WD6\xd2\xe9#\xf0D\xc2\xc4\x8089\xa0s@\xe2$\x81:Q\xf0\xe1w\xe1\x07\x7f \xeeF=\xc2\xc4 \xba\x8e\x96l^\\,\xd0\xc8T\x8e\xe5\x1c\xce9\xd0\xc3\x86D\x06\xce\xcc\x96mA~\xf6\xf7\x03\xcb8\xc2\n\xb0c\x8f\x84\xe9\xb9\x03\xf2\x0cl\xc6\xc4V,\xaf:\xa0\xbb\xa1\xf7\x01\x89KC\x82\xe1\xe6\x00\xb2\x85\xb2\xd1\x83\xd6\xcc!i\xd3\xe9c\xe1i\xd1\x02\xd1\xdc!gXp\x19\xba\x90SqoXo\xfcp\x8e\xc3\xbd\x1c\x1fOO\x9e1X\xcb\x93\x061w\x08\x81r&\xa2\xc2\xe1\x87\xb2\x08`\x9b\xd05z\x91$<\xd2\xd3@\x08K4\xf9\x80\x1c\x9c\xd0\"'\x1d\x1e\x1c\x83\xaf\xc6\x166\xe4\xa0\x88\x11\x0e\x94\xa0\x1f4\xbc\xc7g\x18K\xe0\x8a\x0f\x98\xa5\xa15\xae \x1a\x1f\\\xcc!0>P\xb0\x00\x16\x9f\xef\xad\xe1'>\x80\x8c\xc1#>@\\\xa1\x1f\xb6 \x0f\xfa8!C4&\"_\xa8 \xdf\xf4\xc5+Q\xec\x1b\xd3\x10|\xd9jH.hI\x19p\xeb$mO\xfb\x15\xc8u\xf5\xb1\x86\xfe;5H\xab\xee\xa2\x9b%\xa0?\xc4\x00\x940\xfd\x99:\x8ey\xc5\xc8\xa1\xf8\xd1t\x1e\xdd\xdc\xba\x8fn\xb6\x00{\xebFDz\x87\xd3\x14\x1aO\x04j\xbe\xb58\x03\xde\x17\x9e\x19[\xa8\x89\x07E\x1b\xaf\xe5\xc4\xd8\x1f\xc7,\x800\x13\xb0\xe9bm\x07\x87N\xa6\x9b\xeb\xba*\x9b+N\x87\xb0\x80@YD\xa7\xee6\xeaf\x8a\xb7\xa1\x84\x80\x13)\xd6\x80+E\xc7\xd3\xcd\x1a\xca\xbd\x04\x0dB\xf0\xf2\x12\xf0KuC\xdd\\:b;\xda\x02\\\xdd\xe1\xd3K\xa0\xdb\x82\xa2\x97\xc0%\x85:/\x19\xc0\x19\xc0\xbc\x04\xb8K7\xd5\x8d\x12\x88<\x1f\x8f\x90\xba\xabnx@\xf1L\x8d1\x92$^_\xc4\x1e\xb7U\x04\xff\x86D\xb0=\xc8Ubk\xf2\x8cY\xfcb\xce\xcdso\x1d1<\x95\xb4\xa0\xae\x10T\xff\xa0S\xef0S\xef\xc0R\x9fP\xd2\x99\xc1\xa3q\xc2E=\x02DI\x9bG:\x0b\xce\xb0O\xaf\xa1\\\xa1\x9d\x84`N\xaf\xf1\x8cS\x0b\x1e\xa2\x19=(\x13\x0b\xc34\x06^\x1a\xd8\x84\x899\xac\xe5\xca\x17sU\xa7\x1b\xde9\x01pO\x02hN\xf70CEw\xb1?\x80\xb7\x99\xe8J_0\x8e)\xfco\xa6\xb2\x1c\xe5\x8a`\xa5\xfe\x85J\xad\x83\xee\x9d+K D'\xc5/\x1f$2\xad\xbb(\x9d\xb8\xb58\x95\x93h|\xf6\x08\xee\xc0\x10\x0b\xe8)X\xdc;\x82\x05h\xe8a\x10\xfa\xc4h\xd2Z\x1d\xcaS\x1cZ\xeb?\xcd<\xd8\xe6;\xd9\xc2\x03\xe8\xa8\xe1Dw\xca\x80\x1b\x17 \xe0\x03.\x07\x0d\xb8\xc9Q7M?\x8e\xe2G\x8e\xeaK!\x07\xa38n \xb0\xf3\x06\xbc\x1d8\xf0\x10N\x1c\xf0r\xe4\x00\xa1Z\x92s\xa3\xec\x19\xe7\xce\xcf]\x9c\x14\xc0\xec\xe0\x01\xbf\x01\xec\x17\x1d\xa7\xb3\x07\xc2\x9d\xc5\x873\x9c\x90-P@\x9b\x1d\x10g\x08@\xb0FA;\xa6\xdb\"\x05$J\xd1\xcd\xb5\xc0@_d\xa0.4\xd9J\xd5\xebjK\xce\xa68\x8c\x806\x0f\x02\xfe>\xce#p9\x90 \x10Z\x04\x07\x0d\x04\x1a*\x94c <\x9cK\x10\x08w\xb7\xa3 \x02\x8d\xe4\xaa\xc4\x13b\x0c\x92\x03\n\x02\x0d\xe6tFA\xa0\x81\xa8\x8e) :\xa7 \x08^1\x1cU`\xad~\xb3P\xb3~\x00m\xc3Z\xc1\x86\"\xaezC\x18\xaa\xd5\xacj\xc6\xaaf \x8d\xb4\xd0\xa1\xd5\x0cw\xe5\x179\x83\xdf\xc6#\xdbDG\x19\xf8,\xbc\xcba\x06\xb3\x9cf\xd8WN\xc7\x19\xf6\x91\xd3y\x86}\xe4\xaa\xc52\xd3\x89\x06c\x9a\n\xe6H\x03?g\x1a\xf8l0\xf9\\9\x1dk0gX\x97\x83\x0dhN6\x983\xb6u\xca\xc1\x1dn\x06\xa0a\x9dn`\xa9\x7fb\xadzbaC\xd6\xe8jkF\xad\x9d9\xc6\x8d\x1ap\x9e\x12\x12\xb9\x10H\xc5\x99A\xeb\x9c\x0c\x90&\x04n\xe7\x85l\xa4\x89\x01mr@qg\xc8\x16v\xd8\xc8\x0e\x0e\xd9\\n\x0e\xd9H\x13\xa3\xe8E$\xc7\x87l\x01\xc649\xfa\xc0M\x92.b\x8c~\xf5r\x9e*\xc2\x99rM\x02h\xe7\x890\x19\xa0L\x08\xa8')\xdc\x80\x0fp\x86('\x880!\xf7\xe9!\x9f\x9d\xc5\xa3\xb9\x1d\x88\xe0\x1e\x06\x1f\xc2X\xed\xc2\x00\x0d\x87\xe2\xaag\x81K\xdd0o`\x1bO\xbeu=,\xb4j<\xe7\xd6\x13n?\xdb\xd6S\xed\xa4\x0f\xc7\xc1r\x9c\xe1e\xe0\xa3\x9eX;I\x936\x10;1\x84\x939\x03\xb6\xfd\x14z\x9d\x17\xf4\xea\xe2\x800\xbe\x96\xc4\xaa\xd1\xb0\xa02\xc3ER5\x97\xda\xc4\xa1\xa7\x86\x9c\x1a\xec\xacL\xccB\xf2\xbb\xa9 \x08_\xd1\xf9 \xb2F\xf3\xccdz\xf2\xed\xd0Y\xb3[\x9c\x80j\x08Q\xa0\x85&X\x18\x97\x8dm\x19C\x10\x88\x92\xc6\x10\x05`\x085X\x02\xd4\x15R03\x94\xa0]\xd1 @g\x08A\xd4\xd0\x01Z\xc8\x80)T\xc0\xb8\xd0\xb8\xb1\xde\xb2/f\x1e\x8c\x85\x00\x10\x00\xe1\xa6\x17\xab\xab\x7f&m\xc7Hf\"\xd8\xd4\x1d\x97\x04\xd7\x05\xc1j;71\xcc~sk\xb5q\x1dk\x04[\xb8\xc5\x06\xeer\xb1\x13(\x0c\xc1\x8b\xeaJ7\xba\xd0\xe7\x0c\xebp7\xcf\x01\x19\xc2%Nq\x85\xcf\xc1\xcd\xee\xf2\x9e\x03\xd1\xe4\xda\x9e\x03\xcb\xe9\xc2\x9e\x03\xd4\xea\xaa\x9e\x03\x90\xe2\x92v\xb9\xa2\xfd\xc7\x0d\xedr\x9e\xba\x9a=5\xa1\x80R\nu\x1d\xdb\xd8h\x0f\xd4\xc8U\xbc\x8a\xa7U<\x99]\xb3\x12\xb3\x87I\x01\"\xb8\\\x9d\x0bes\xb1\xfa\xb9V\xbd\\\xaa^\xaeT\xaa\x0bu\x86\xeb4\xbc\xcb\x94\xe8*un\x8c\x93~cW\x86t\xba>\xc9c\xa0S\x08\xea\xe2\x8c\xea\xda\x1c\xbb4\x0d\xd6\x82\x1f\xeb\xdb+\xbe\"\xea[du\x86g\xed\x19\\\x9e\x7f\xf7\xf6\xcd\xeb\xed\x8f\x97\xdfm\xaf\xfe\xeb\xe2\xcd\x84P\xa7=.\xde\xbf\xf9\xf9\xdd\xd5\x1b{\x8f\xd1Y\xc2\xfa\xbc\xbbxw\xf9R\x1f\xa2\xf6\xd8\xd8\xf1\x19\xac\xf1\xfft7\xef\xc1\xec\xe5\xfe\xf1\xb9\xf3\xfdSo\xa5\x1fX]'\xb7L\x07\xe4\xf7\xde\xb4\xef\xd6\xd98\xd7\x17\x82\x02j{O9\x9f\x17p!\x94\xa2$\xaf\xf1\x8dj\xad\x93\xc3Mr\xdat\x16\x95KC\xcd\xcc\x9e\x9a\x90\xc1\xa8LP\x85&g\xcfhB\xf6\x07\x16\xc9`\x1c\xc4\xeej5\x0c\x93!\x99)\xe8\xb2\x8bb \x12\xd1\xea/Y\xfd%\x14\xf2\x97\xedw\xe5/\xc1\xbc\xfd\x9e\x1c.\xd8-\xd6H\xa5\x16\x1a\xb5Q\xa8\x85>\x1d\xe4c%\x1e+e\xce\x07\x1c\x91&\x83e\xb5\xea\xe6\xa4Eo\xa8\x81\xfcvS\xae_6\xbe\x19\xb6MO\x15\xb4\x0c>\xbd~\xb9\xd5B\xbc\xd7X54\xf6B\xaeZN\x15\x11\xe8j\"XTE\x08\xa6.\x82\x97\xcah\xea\x8d\xab\x8d\xb0\xbcH\xf8\xc4\xdc$\xbf\xb6\xba8{f&\xcc\xc4\xe4\xc9OC\x99\"\xd7\xea\xe063\x91\xc1D\x14\xc2\xe9\xef\xb0$8\xa0\x0d\xa6\xd2\x01\xca\x8a\x1d\xfb<\x9f.Q\x83\x00\x1d\x13\x13[\x10W\xfc\x8a\x1d+V\xb3\xa2\x11\x06\x80\x8a\xdd\x95\x0d;\xe3\xff!/\xe8gPV\xea\xae\xce%\x11\x93\xfe\x8dN\xa7\x1eXcz,\x03\x86\xfc\\9\xd77\xad\x9b\xd8\x93\xad\x1b\x8a%\x18g?\xf2a\x8f\x1c\xe2>\x1f\x9b\x1c\xdfK\x1d\xde\xd0\x7f\xdc\x01utGqp\xdb\x1d\xdbiY\x1f\xcazs\x9d\xd4ls\xf7\xe55k\x92/7\xafY\xfa\xaa\xcc\n\xcf\x0d\xdb\xb1\xa2<8\xd7<9\x94\xa7\xc2\xc5\xeeM\xe4\xab\x10kU\xad\x04\x9a\xf2#+\xa4^\x95H\x0c\xb2B\xac\x80X\"\xfe\xa74;$\xb9\x1a\xb6'\xd7\xde\n\xe9u\xc5\x97M\xfc\x047\x19\xcbwBJ\x16|\x1ce\x92\xcc\x0e\xc7\x9c\x1d\xc4Y\x11{}\xaa\x9b\xf2\x00\x07\xd6\xec\xcb\xdd\xf4\xb0\xd6P\xb1_NY%M\\\xb7\xe5my\xac\xca\xa6\x1c\xac\xf4.\xe3S\xbd>q${+\x9e\xb3[\x81\xb7\xfa\xaf\xb2z\xcf>%\xd5\xces\x0f\xfc\x19Y5\x18\xa6\xeb\x16\xe7\x9e<\xa1\x11\xd9,RcJ/\x8eO\xeca+\x01(h\x041\x04!\x8d@\xd2\xe8\xc9vL\x0c\xd4\xd4g\xfd\xd2a\xad7\xaa\xfdV8\x1cw\xfa\xb3\xc7\xb5\xfeo\xbe \x92V\xdc\xd4|\x91T\xc9\xc1\x97\xdfs\x89s*\xb2\xe6~\xdb$\x88\xe0\x1c\xed4\xe7W\xdb\xf6Zc\"\xe2\xf1Geq\xaa\xbd\xbf\xe2\xa4\xb1\xab\x92O\xe2HmY\xc1ot\xc8W\xd7e\x99\xb3\xa4\x8bj\xaaYZ\xb1f{\xc3\xf5S\xb1|\xa4yM\xbf\xa2\x1d\xe4\x01)\xc8\xf5\x1fz\x94eh\xe2Q\xfe\xc2E\x14\xffk\x7f\xf7\xe0P\xeeN9s\xef\xee\xffsb\xd5\xfd+\xbd[\x17e\x99\xbfg\xf5\x91\x0bA\xcf\x1d?\x96%\x12\x9c\xb82\x9e\xdf>\xe3\x81\xf1t\xf9V\xb6SkO\xb2\xf8\xf3c\xfe\x87\xac\xa8Q\xa6\xd5[&3Y\xf1) eG\xff\x9bo\x81\xa6\xe1\xe1\xf7\xcf\x07\x00\xba\xe9\xbd\xbfx\xa5\xa6L\xa4\xef\x8e\x85J\xceY\xcf\xa4q\xc9c\x1e\xcc\x0e\xbd\x92yT2W\xbb9\xe0\xac\xfaoI\x9aV'\xed\xdb\xec\x84\xa6KV\xdb\xa9\xcd\x87\xf4'@\x96P\xfdU\xd9$\xf9\xef\x8a\xf4 \xd1\x00\x96c0\xd5\x05\xfa\x9f\xe0\xa9\xad\xc6\xc4V#\xf6\xb2\xb9\"~\x0c\x87X6\xcb\x1cd3\x1dh\xd9\x1c\x9f\xbbb\xbea\xc9\x11\xb7\xa0;=\xf6\xb2E8\xfc\xb2\xf9\xb0\x00\xbb\x95u\x99\xba-\x1bU\xe9F\xb0\x19\xb3\xa4$\xcf\x9dl\xa9\xec\x85\x0e\x1aRD\xe2\x9c\xd1U\x0b\xff\xa57Lw\xd6\xfa\x8f`\xf9o\xc2\xb7\xad\xd9\xe0*\xf9\xea\xc7*I\x1bD\x96[`\xda\xedy\xc3%~s\xc7\x8af\x183\xd5\xd1\x9fXF`wm\xf9\x96\xae}/\xe2\x1a9\x9dp2\xcc\xd2\xac\x11\xfc@\x85Z\xd6MY\x890\xe1\xf1gW{\xfeE\x0d\x05c;\xb6\xe3D\x9d&yz\xca\x93F\x04\xf8T\xe5\xb1\xca\xc4\x7fK\x0eP\xde@\xdd$\x1fea\x99\x8f\xac\x18[\x169Ev\xc6D\x9dh\x97T\xacU\x8c\x0bHn\x1a\xc6\x8f\x95\x9c\xcc>\xa9\xa1L\xd3SU1\xb3\xd5Q\x91\xcf\xd0\xd6\xa4\xfe\xe6R\xd7\x8e\xc9\xadb\x86F\x95\xb0\xeb2\xba\xcf\xb4\x7fV\xcb\xa8\x8f\xdf\x02ePd\xe7\x1b\x83\xd8Q\x82tG1Nh\xaa\x1bGs\x0e\xfe\x9fM \xd7|Zu-\xb7\xfa\"\xb9e\xef\xd9/'V7\x1b\xf9\xfb\x04\x8c\xbc9s\x00\x1c _\x12~\xab\xab\x1b`77Y\x9a\xb1\xa2\xc9\x87R\x18\x0d\x00%L\x0e=kjz\x88\x14\x94\xb6G>7\xf1\x1f\xc5\xe9p\xcd*N\x9e\xaa\x04@/\x1a>\x9b\xd63\xedO<\xe5\x84\xbd\x15`\xa6\xd2\xeaSRC\xcd\x9a3\xc8\x9a\x9aS\xd9Ip\xe2S!\xc9d\x07e\xb3g\xd5\xa7\xacv\x05BZy\xe9,\xe6\xae`xq\xf4\xf6\xe3\x97iz:\x88C\xbe{5\xb9\x9c\x10Y:~\xab\x89\xc9\xd5Ws>E\xc5\xa2\xaaW&R\xb5\x13\xc9@2u\x1dz\xd4\xd0\x02\x1a+O\x1f\xd9\xb1\x81\x84\xafZu*\n.B\xc4\xd1c\xd5\x19\xa4I\xc19SOF4\x90\x14\xf7\"\xdc\xda\x83\xac\xa7\n\x8f'M?\xb0\x0fy%\xe8h\x04\xfd\xef\x08A/\xbe'L\xee\x08\x81\xee\x07$\xe2\xee\xb4CO\xa2\xb6)\xc3\x06\xba1\x08eL\xf5E 89\xcbLE\xd7[\xc5\x0d\xa6\xdc\x86Pk\xd5&\xebz\x05\xc3k\xd6\xcb<\xd7\xd5\x1eg\xde\xb0\xd8\xe8\xbdH\x88\xcc\xbb\xf8'\xdbS\x85\xe4\xfa,\xb4n\xbc\x84\x9f\xde\xff\xf0\xbcbuy\xaaR\x06ErP\xb5\x1dNE\xf6\xcb\x89\xe5\xf7\xc0'\xdad7\x99R\xd3\x1b\x95d\xd6W\x96\xbaV\xb3*K\xf2\xeco\x0c\xb5E\x08\x06\x92\x969\\\x9fnnX\xa53\xd46\x92t\xe4\x1c\xe0p\xaa\xdb\xa2\x13\\2\xe5,\xa9\x1b\x0cZY0x\xf4\xfc\x11\xa4\xfb\x84\x9f\x14Vm\x04'\xcc\x93\xba\x81\x9a\xddr~\xa7=#?\xbd\xff\xe1q\x0d\xc7\xa4\xd9K\xf0\xed9\xc0\xe0\xf2\x0fnNy~\x0f\xbf\x9c\x92\x9c\xcf|'\xd7E\x01\x13+\xf0$\xa9!+\xb0\xcf?\xf0a\x9e\xdf\x96\xe5m\xce6b\xc6\xd7\xa7\x9b\xcd\xebS%\xa8\xf9\xc3S\x89\xa5\x00X\xef\xcbS\xbe\xe3\xb2X\xd4\xe3H\x93\xa2,\xb24\xc9\x05G\xc0`?a\x9b\xdb\xcd\x19_\x12\xc18\x1fm\x1e\x89\x03W6\\;`\xc7\x86\xed\x9e\xe2\xc6\xa5\xf3\x02\x8e\x82\x9d\xa4\xec\x0c\x1a\x96\x1cj8\xd5\xa7\x84OR\xa6\x06\x1d3\xae\xbb\x17\x9c\x8d\xee\x19\\gER\xdd\xcb\xc8\x82\xfb\xa3\xd8\xf9\xa4\xe1\xbf\xdcc\xc09\x17N\x1b\xc8\x1a~\xe6Ou?\xe3\xb0\xe1\xd7\x98\xf2\x06^\x16\xf7\x1b\xf8\xbe\xfc\xc4\xee\xb8\x02\xc2\x0f\xf8O\xef\x7f\xd0'\x9b\x7f\xc2\xc9 \xa3\xa7t\xcf\x0e\x0c>\xec\x9b\xe6\xf8\xe1L\xfe\x7f\xfdA$1\x15\xa5\xfa\xf5LP\x02WjJA\xe9bV5k\xe0tTI\x91(dV\xdd\xb1JN\xec\x90\x1ck\xb9\xad\x02\xab\xa6ls'\x85\xa8\xce$\x1bJj\xb8)\x85py\x81\xae\xf1?\xc3\xf9M\x87\x15\xdf\x98cUr>\xb1k\x11\x17\x92\xb9\xaeO\x07\xce\xa6P\x10/\x0b\xf8\xfe\xea\xea\x02\xbe{s\x05\xca;\xf2\xd3\xfb\x1f$\xd5\xde\x0b\xe1\x9e\xc0\x9f\xc7\xc4uu\x7fd\x7f\xf9\xf3_\x10\x80\xa0\xafQ\x85\xdeS)l\xc4\n\x1e\xabrwJ\x19\xd7\x15XU\x95\xc8+W\x02\xa3.\xf1\xa8\x16LX\x08X\xcd\xe0S~\xe2\xca\xf2\xe3\xe9\xd8\xde\x05\xaf\x13~\xe1-\x0b\x03\x8b\x00>!1\xfe>\xb9\x13\x1b\x7f\xe8\xd1\xe0N\x12a\xa2\xd1\xe5\xff}Wf;\xae\xa0\xa2\xc0\xe4\xe0\xe2PU\xec\xa6\xac\xd8\x99\xfe\x94CL\x9a\xec:\xcb\xb9\x06\xc0\xa5R\xad\xef\xe4\xfc\xf0Wwl\x87B,\x0b\xceR\x8a[&\xba\x0b\xfa\xdf\xc0\x93\x9fj\xa6K\xca\xf2\xb9sb\xe1gXRKR$\xb7\xf8\\\xaf+&e\x9c\x02\xb9y\x8a\xda~\xcb\x86\xbd\x80\x86s\xc1\x9bS\x91J*\xe6X\xab\xd3-$\x1b\xbf\xfc\xf7/\xda\x92:Ja\x19\xc0n\xd3\x8a\xdf^\x9f\xf85\x9dsQv&\xd4\xca\xac\xd1`O|\xa3\xc4\xcd\xb7\xa5\xfdkv\x9b\xc9\xeb\x02\x97\xb5({\xbc?\xb2\x8d\xa4\xc0\xe4\x98\xd5\x9b\xb4<\xe0<\xe7R\x9c\x83Z\xde\xda\xf9A+\xc6\xe7\x18\x9e(\x87&;\x1c\x9b{up\x9e\xc2A(\x1e\xd7\xe8\xb1\x15(\x0b\x85\xb9Uj\xa5\xc2\\\x1fY\x9a\xddd)\xd4\xec\x90\x14M\x96\xd6cr\x16'\xc1S\x80Zk\x0f\x0c\xa4\xeb\x8f\xfc\x84^3\xadW\xf5$\xe1D\xec\xe9\x8c\xbe\xeb\xf2\x8ei\xbcQZ\x14K\xfd\x85q\xc8\x89@\xff\xf0\xb2\xb8\xff\xd0\x15lJ\nH\xaa\xeb\xac\xa9\xf8i\xb0\xe0\xa3\x98\xdd\x08X\x92\x97\x8a\n \x19\xef\x04gI\x82sJ|\xae\xa7\xbaA\x7f<-\xe6'Tr\xa1\xe93\xcf\xae\x05\x92\x8aa\xd6P\x9f\x8e\xc7\xb2\x12\x02\xe5\x98\xa4\x1f\x9f\x9f\n\xfe\x7f\\\x8c\xc8m\xac5\xf9c\x92\xb2\xbc\x81S#O\xbd>M5\xc8\x10\x95L\x1e-\xb8e\x05\xab\xc4UZ\xde\x82\xda\x18\n>\x82\\\xf61\xd47\x9f\x13q\xa3\xf8\xf2\x05\\p\\\xf8QRh%\xfd\\\xfbW\xff\xf2/(o\xff\xb6,\xe1\xa6,\xe1k\xd8l6\xff\x7f\xa4\x03\x1f:)\xee\xb1\x9f\x92\xe2~\xc3\x07\xfd\xb6*\x0fOn\xca\xf2)\xd6i\xb3\xc1\x18xv\x03O\xf8\xe7? T\xaf\xca'\xff\xc4\xbf\x7f\n\xff\x8d\xb2+\x1c\xc6\xdfMk\xf1\x95c-\xfe\x98\xdc%\x8b\x16\x03\xbe\x16\xaa\x03\x87\xdb\xaa\x8e\xda\xd4 \xba\x12\xa2\x08F\xb6\xa67#[\xbaM(/\xb3\xa3K\xcb\xf9\x00 fE\x0fbC\x8fbA\x8fa?_f=w\x98\x8b\x8d\x96s\x82\xdd\x1c3\xbc\xf9\xd8\xcc\xb1\xef\xff\x8e\xcf}\xa6\xb5\x9c6y\xb7\xa5\xdc6S\x82\x95\xdc\xcbF>6e,\xb6\x8f;\xac\xe36\xdb\xb8\xdd2nX\x15\xbaU\xdcm\x13\x9fZ\xc4\x17\xd9\xc3I\xd6\xf09\xb6p\xd4\x06\xed\xb6\x83\x07\xb3\x82\xa3\xe3\x8f()\xb0\xfd;\xb8\xf5;\xb0\xed;\xac\xe5\xdbb\xf7\x9e\x9a\x0b\xa76\xefP\x16\xef\x80\xf6\xee\xd0\xd6n\xaa\xad\x9b`\xe9&\xdb\xb9iVn\xc4\xc6\x8d\x8dJ\xb5n\xba\xec\xdbd\xeb6\xc9\xb6=B>\xac];\xb8U;\xa4M;\xa4E{\xc9~\x13\xac\xd9n[\xb6f\xfe\xd3\xea\x05s\xac\x82\x98I\x10\xb3\x04\xde0v[%E\xd3Z\x02\xbf\xe3\xff\xf2\xb4\xfc \x08\xa4w,\x06\x93S\x9f\xe9\xe9\xe8\"'\x8ae\x9djV\xc9.\x82\x96\nyeO\xd4\x93\xf1\xcd\x9ee\xc3\xda\xfb7\xa7b\xd7\xbb@I\xe0\x94\"\xf0\x08N\xcc\x86\xd35\xe3\x08\xc9\x8e\xbb1bC\x06Z\xc8k$\xff\xecq=\xc6\xb0\xfd\xcc\xe8x\xe8\x00\xab\xac\x12\xae\x89\x957\xea}u~zo\xb2\xbca\x15\xbf\x0c3\xd6u_\xe0\x7fhV\x0b\xach\xab\x05v\xb5\xc0\xae\x16\xd8~[-\xb0\xab\x05v\xb5\xc0\xfe\x1e,\xb0\xca-.49\x10\x92\xaf\xac\xe4\xb3\xb4\x1c\xd2\x7f\xfe|)\xd2\xcb\x9a\x12\xf8\x81\xa98\x1b\x10\xca\x8c\\!.\x9e4\x9b\x15\xf0L\x8a\xa2\xf6YK\x95c\xa6\xcf\xd8G\x07\x12\xcfpu\xff\xd4\n\x18'B\xad\xb5]\xdfk\xa5r\x81\n\x84h\xb3\xe0\xa1\x01\x85\xd5ja\xaa\xd9\x02\xae\xdd\x827\x8e\x81\xb4\\pj\xba`\xdai\x88\xa1\xf1\x82y\xcb\xc1Q%\xc9\xa4\xfd\x82}m\x81\xa0\x05ChM\x18\x9c\x19\x81a5b\x88\xa6\x15\xc3R\xcd\x18\xa2j\xc70_C\x86\xb8Z2\xc4\xd4\x94!\xa2\xb6\x0c\x114f\x08\xa15C\x0c\xcd\x19\x96j\xcf\x10E\x83\x86\xb0Z4D\xd0\xa4!\xac6\x0dD\x8d\x1abi\xd5\x10G\xb3\x06\xbav\x0dq4lX\xa2e\x839\x7f\xd0)v\xad9\x84\xd1\xb5n@b\x1f\xc2j\xdf\x98=x\xa2tS\x0c\xc2\xedG-\xaaT\x8b\xf0p\xcc\xb9e\xf3ZU\xed\xc1J\xd2\x18\xf4x\x07IE\xd6\xe5Qm\xde\xa8\xcf\xfb\xe3\x1aP\xa7\xa7h\xf5\x16\xbd>\x92fo\xd5\xed]5Pm\xfa\xbd\x93\xd5\xd0t\xfc\xf9Z\xbe\x01\\3\x88U\xc2YoxM?\xa6\xae\x1f@\xdb\x8f\xad\xef/\xd2\xf8\xa3\xeb\xfc\x91\xb5\xfe\xb8z\x7f\x1c\xcd?\x90\xee\x1fI\xfb\x0f\xa0\xff\xc7\xba\x01\x04\xbf\x03\xc4\xb9\x05\x04\xbf\x07\xd0o\x02\x11\xef\x02\xd1n\x03^\xf7\x81h7\x82\x85w\x02\xcb\xad\x80 \xac\x1d7\x83\x07\xb9\x1bLo\x07\xe1\xef\x07`\xd4\xb4z<\x82\xff\xf3qM\xb6\x99\xcfK\x8aL\x8a\xfe_\xf5\xf5cM\x8a\\\x93\"\xe9I\x91\x86\xcb\xa6\xf5\x86\xdbb0\xba\xe9\x1a+\n\xdf\x96w\x9b\xee\xfd\xf8cYg\xbe\x11O\xf2M\x9d$\xdff\x0bjP\xee\xe4\xd0\xa5;p\xca\xf4\xf4\x7f\x9c\x8b\xf3\xaf^\xcb\xd5\xaf\x90k1\xaf\x82\xeb9\xe7\xa9\x0fS\xc1u\xf0\xc0\xbc\xd8\xf3>\xcfT\xb8)jP\x0fN\x16\xfc\x9a!\xfe\xde{\xfbK\xfc\xb5\xc9\xee\xd8\x84\x0e]\xe4=\xeb]\xf9CVlw\xc3\xe3\x01+\xe9\xfd\xe6I\x0f&\xbaMVd\x87\xd3AS\x18\xc8R\xbf\x9at8a1a\xe5\xba+\x85!K\x96\xd6\xed\xa0\x1d\x92\xcf\x9a\x0c\xe8ewm\xab\xfcc\xf2Y\xe0#\x81 t^\xf2i\xef\xcb|\xc7*A\xe9\x1aU\xbe\xd0\x1d\x91\xc39\xbf\x10\x8e\x1e\x7f\x91:\"|5\\\xadCY4{\xfc\xcd\x92\xc1\x91\x98\xbe\xfa&\xdf\xf8W\x08\xd4\x1c\x83\xdb\xf2\x8eU\x85\xb0]iTj\xe3\x81\xbbP=<\xcfZ\x10\x81\"\x14CLN\x905\xadf\x0d\xff\x14-\x8e\xf1k\x91\xd9+\x9e\xc1k\xa6\xa9+\xa2\x91+\x9ay+\x96a+\xb4Ik\xb11+\xb8\x19k\x91\x01+\xbc\xe9*\xa0\xd1*\xb4\xb9*\xa0\xa1\x8ab\xa2\x8ab\x9c\x8a`\x96jh\x06\xa9\x08\xa6\xa8\xd9F\xa8\xdfg\xf8\xe7d\xb85\x01\xbf\x0ftM\xc0_\x13\xf0\xc7\x1d\xd7\x04\xfc5\x01\x7fM\xc0_\x13\xf0\xd7\x04|\xd1\xd6\x04\xfc\xb6\xe3\x9a\x80\xff\x0f\x97\x80\xcfi6iNH\x9c\xe2D\xe9g\xc5id\xad~\x06\x17\xef\xdf]\xbc\xbb|\xf9\xc3\xf6\xf2\xea\xe5\xd5O\x97\xdb\x9f\xde^^\xbcyu\xfe\xed\xf9\x9b\xd7\x8e\x9e\xaf\xdf\\\xbc\xbb<\xbf\xda^\xbcy\x7f\xfe\xce\xd5\xf9\xe7wW\xe7o\xbf\xa3\xf5\xbdxyy\xe9\x1c\xfd\xfd\x9b?\xbeyu\xe5\xec\xf6\xed\xcb\xf3\x1f\x06\x9d\x94\xf4yA\x9c\xb8\xedf\xa2m\xa7\x97b\xfd\xc5\xea\n=\\\x12\xa8\xba+\x89\xdf\x98P\xc9{\xa6\xe1\x11=Y\xb7\xc1\x8a\xea\xc0 \xac%\xab\x18\xe6X'\xb9\x1a~\xe3\x1am\xb8\x95\xd3\x01\x87\xbf\xf7\x1c\x0e\xadU^\x0e\x04\xbb\x93`\x9f\x12\x19a\x92\x1e\x0c=\xb6\xd5\x1b\xd0\x19\x10\xcb\x14\x9b\xc1\xcf4d\xa4\xaf`\x0e.\x92\x18\xa7H\xc8\xbf[F\x1fl\xb8\xe4\x83\xfbd\xf8j\xb3t\xd3;Q\xd0\xa4>EB\xff\xb2\x0c\x8dk\xc6\n\xa8\xd8_Y\xda\x10\xb0\x91'j\x8a\x8b\xfc\xfb2Ln\x92,\xef\xa3p\x93\x15I\xbem\x92<\xbf\xdfJK\xdb\x02g\xc1=\xfe\x94\x1ej\x1cI\xaek\xae\xab\x90\xfb\x17\xa5G\xd7-\xd7\x9e\xb6w\xac\xa1~4`BW|5\xde\x8b\xc5\xe8-\xb6x@3\xa9v \x16K\xf9\xcc\x10OP\xb7\xb6\xf5\xe9\xfa\x905\xdb&;P\xaa\x8eh[\xd1.i\xd83\xfe\xcd\x17\x1dr\xd2\xd7\xc6\x8a\xddr`\"Fc\xf5\xe2\xfe\x1e\xbd\xb8\x92\xc5n\xeb&\xa9\x02P\x95\x82\x16\x80\xa8\x06K\xafE\xf6@l\xa6e\xc5\xd4R\x1d\xb8NZ)^e<>\x16?\xea\xe5@\x17CP\x1d\xea`4\xfd\xcb%\xb0-\x1dq\xbd\xcb\xa9s\x11\xf4-\x87\xae\xe5\xa1g\x99\x0eG\x18\xfd\xea\xe1t+\xd76\xc5\xd1\xab&z\xcc\xaf\xa0O\x11p\x88\xa5GMt\xa8\x87\xd5\x9fL\xba\xd3\xc3\xe9M}\x9d aL\"\xc8P\xc5\x90\xcc\xcc\x853\x8ac\xb2\xeae\x08\x17\x01\x9a\x7f\n\x89\x1bEc\x11\xad\xe0p\x91\x8d\xab\x15\x80\xab\x16`S/\xc0\x99\xcdeP3\xc0\xbe\x08`Q7\x9c\x9f\xba\x82]\xc2\xa9\x1e\x10G\xfd\x00/\x15\xc4>\xe1\x85\xb1\x8cCj\x92q\x8d(\x91\xa3Q\\\xd81\xa4\xe4\xc1j\xa4\xdf_\xbcj\x07s\x84\x08\xf7\x87\x9a\x9b\xfe\xaa\xe3\xc9\x1eJ\x05\xb70\x08\x07\x89[\x83\xcb\x8dlb\x81v\x8f1\x0b#\xbbp0\x0c\x17\xcb\xb02\x0d'\xdb\xb03\x0e\xe7\xe7n\xe6\x11\x96}Dc ~,\xc45\xf1\x90l\x04g$SV27\xc5\xa5Y\xdf\xfd\x12mMqY\x98\xe22\x16'\x1e\xa2\xab\xd3T \xe9-\xe2K\x19\xea\x17\x84\xc8\xe9\x82\x18y]\xb04\xb7\x0b\xa2\xe4wA\xd8\x1c/\x88\x90\xe7\x05as\xbd\x80\x98\xef\x05\xb1r\xbe\x00\xa2\xe4}\x81\x12O\x84\xdc/\x88\x93\xff\x05Kr\xc0\xe0\x7fUq\xd2\xc9\xb0\x882\xb0,?l\x02N\xe4\x8b\xa19b\x10*O\x0cb\xe5\x8aA\xa4|1X\x9c3\x06\xee\xd4)\xb0\xe5\x8e\x01-\x7f\x0cL\x89+\x9eyd`\x81\x83\xc4\xfe/\xcc)\x03\xaf\xc5q\xe7\x96\x01a\x15\x089f\xe0\x9bg\x06\xf8\xea,\xcf7\x03w\xce\x198\xf2\xce\xc0\x99{\x06\xf6U\xa3\xe7\xa0\x01)\x0f\x0d\xd0\\4X\x9a\x8f\x06\xd4\x9c4\x98\x99\x97\x06\x96e\"\xe4\xa7A\xc8\x1c5\xb0\xe1\x82Pb\xe0|5\x88\x91\xb3\x06\xe1\xf3\xd6 x\xee\x1a\xd8\xf3\xd7\x00\xcda\x034\x8f\x0d\x02\xe6\xb2A\xd8|6\x88\x90\xd3\x06@\xcfk\x03Zn\x1b\xf8\xe4\xb7\x019\xc7\x0d\x0c\xdc\xdc\x90\xfb\x04\x1e\xf9O\xae|7\xf0\xc9y\x03j\xde\x1b\xe0\x13\n\x9b\xff\x061r\xe0 p\x1e\x1c\x04\xce\x85\x83\x004A\xc8\x89\x03R^\x1c\x0cr\xe3\x00\xcd\x8f\x03\xfbeh\x9a'\x07\xae@bBoK\xbe\x1c\xfe\x819g\x0e\xef\x8f\xe4\xcd\xe1\x1d\xd1\xdc9\xbc\xeb$\x7f\x0e\xfcb\xbb\xbbO\xec\xb7\xb80\xb1\xde\xba=\\\xcc\xb7y\xc4\x87\x88\xfd\xd6\x0d\xcde\xc3\xd1\x8a\x1e\x0b>\x03\xa7X\xb1\xe1-*X\x9e\x1d\x8eJ\xccXq\xddl\xf9v8V\xb1b\xc7u\x1b\xe7\xdd\x813\xf7\x0e\xe6;\x86\x90<X\x03}\xfe\x17\x06\xfaX\xf3\xfe` !Yr\x00\x17\xc0\x8d\x90\x0f\x88\x06 \x8c\xe2\x03H!\x08\xea\x9b\x16[\xdf`\x84\xb9A\x93z:\xbf\xf7x\x7fC\x04\xc3\".\xd2\xac\x8f0\x11#\x1ab\xc64\x04\x88j\x88\x1d\xd7\xb0(\xb2!zlC\xe4\xe8\x86\xb8\xf1\x0dq\"\x1c\x02\xc58D\x8ar\x08\x10\xe7\x10+\xd2!x\xacC\x9ch\x87\xe0\xf1\x0e\xf4\x88\x87\x881\x0f\xd1\xa2\x1e\xbc\xe2\x1e\xa2E>,\x8c}\xf8\xdf\xf9\x08\xd3dhT\x91\x08\x1c \xe1\x8a\x85\x08\x18\x0d\x111\x1e\"^DD\x88\x98\x08\x92\xe3\xdf\x11\x17A\x8e\x8c\xb08K\xbd\xa3#l\xb0P\xafQ\x80\x18 \xbf\xc5\xa2\xc5IP\xd6\x84\x18+1#Z\xc2\xe4a\x0b\x121A\x8a\x99pGMP\xe2&\x1c\xab\xe8\x17;A\x8d\x9e0\xc5O\x04\x88\xa0\xf0\x88\xa1\x98\x1fEa[4b$E\xe0X\n+F(\xa5F\x88\xa8\x88\x14S\x11%\xaa\"F\\\x853\xb2\xc2\x14[a\x8a\xae\x08\x1b_\x11<\xc2\"N\x8c\x85_\x94\x059\xce\xc23\xd2\xc2'\xd6\xc2\x18ma\xf6\xad\xd3\xbd\xeb\x94\x88\x0b\xcf\x98\x0b\x8f\xa8\x0b\xc3\xd4\xc2G^D\x8a\xbd\x08\x1f}\x11>\xfe\"\x04\x95\x10c0\xa8Q\x18\xe38\x0cS$\x86\xe3b\x86Gc\xf8\xc6c\xb8]\xf4\xa4O\xec1\x19\x1eQ\x19^q\x19\xe4\xc8\x8cY\xb1\x19\x94\xbbe\xd8\xf8\x8c_#B\xc3M\x00qc4,\x11\x11NB\x8b\x19\xa7\xe1\x89W\xecX\x0dK\xb4\xc6\xaf\x15\xaf\xe1\x8e\xd8\xf85b6\xf0\xa8\x0dJ\xdc\xc6\"w\x98!z\xc3i\\\xb3Dp8\xbf\xc5\xa38\x08\x9f\xd9#9||\xf9!\xa39\xac\xf1\x1cD\xf7'\xee1wGu,\x04o\x8d\xed\xb0Ew\xac\x15\xd2\x02\xc4{D\x8b\xf8\xf0\x8d\xf9 D},$4G\xec\xc7\"\xe8Q\"@\xd6\x12mk\x89\xb6_\xabD[oW\xf0p \x9f\xe0\xa3\xda\xbb\xd6hO6\xce\x8c?\x12\xe2s\x1a{D\xa6\xf5\xf5i\x07k,\x1a\xb2A\x14\x8a\x10\x9f\xb5\xb8Rc\xd1~.\x1b6\x93\x0c\xee\xca\x06\xa9\xf4O\xa6\x02KP\xd9<\xbe\xc0\xf1\xa1W\x98\x96!-\xe3\xee.\x1d\xe15;V,M\x1a\xb6\xe3\xb2\x88\xdd\xb0J\x87\xe7|\x90\x00\xeb\x0f\x90\x15u\xc3\x92\x9d\n\xccjE~\xcd\xa6\xfaRV\x08N\x9a\xb1z\xcac\x84'f'\xed\xdf\xd9\x0d|\xc8Y\xf1D\x8d\xf1\x14\xbe\xfe\x1a\xbe\xfc\xa0\xac\xe8I\xa3&#ln\x9f\x98p\xd8\x7f\xb9\x81\xf3\x02\x92\x1ca^2\x04 MjV\x9f\xa9\x90\x07\x81\xa30\xb4\xe9+zS\xc2\xcf\xef\xae\xdel\xdf]\\\x9d\xbf{\xdb\xbf\xd1\x8fu\x0b\xcbf\x992s\x0c\x90\x1d=\xff\xeb\xcd\xa5\xa3\xc7\xcbo.\xaf^\x9e\xbfu\xf4z\xfb\xce\xd9a\xfb\xa7\xf3\xab\xef\xb7?\xbf\xb9\x1awm\xed5\x94)\xa8\xdd\xc2I\xf2a\x82\xaaq*\x97\xcd\xa9m\x9bLy\xe0\xb5\x89X\x7fl+\xb1~\xa6\x0d\xc5\xfa\"\xdb\x8aw3n\xael^[\xdc}\xe4\xbe[\x00pf\xfbN\x1eU\xd4$'\xca\xe5)\xaa\xd1\x92#\xbbc\xe3*\xc4\xba\xa1R\xc5\xd0\xd7\xbca\xc6\x89\xf6\x84ZQ>+\x8f}\xf4\x8c~\xc7\xc9>\xbf\x18\xff\xa1\x07\xf6^\x15\xd5\xf3\x03\xaa\x88\xe2\x05\xf6G\xe8\xd7y\x96\xaa\xc3\x8c\x11\xde\xbe{1\xfa\xf7`-fA\xec\xa8n\x0c\xbb\xfbe8\x8a\xb8v\xde\xe9\n}\x96\xf1$\xcb\x9fq\xc8Mji\xd7\xfe$@\xb3]\x8fr;\x1cOE&\xe2P\xdb*\x8f\xe2?\xeac\x9e5(\x1d^fE\xca^(U\xe4Y\xbd\xfb\x08\xff\xba\xf9\xb7?\x8c\xb9\xa3\xd4\xed\x1f\xe1\x9d\xfb\xae\x0b\x1b\xf6\x1c\xdf\x1e\xa6r\x01\x0b\xd7\x9d\x10Dl\xb7\xf8V\x14\xa0\xac\x9b\xb1}\xef\xfc\xf5\x99\xb6\xce\xb2\xea\xacuc#\x1b4\xd5\xeb\xfa\xaa\x16E\xa1\x13x\xf8\xe8qs\xf3 D\xc5\xc7\xa9&\xf7\xbb\xca%@\x95?+@\x93ht\xb3\xf2\xc0J\xa0]\x0d\x8c\xa8\x08\x06W\x05\x1d\x1bhv\x0d\xd2E-E\x8f\xa0\xea\x10\x04\xfd\xc1Cw\xf0\xd4\x1b\x0c\xca\xe1\xafc\x95\xb5\xa9\x89\x04E\xd1\xae*\xfam0\xf6\x85Y]\xa4o6\xd6\xdb\xa82zm\xbcl\x9e\xdb\xdf}\xe6\xe26\xb2\x05V\x1d=\x95\xc7\x07S\x1f#)\x90\x0f\xa1B\xc6P\"\x1fT\x8d\xb4+\x92N6\xe0V&\x03\xab\x93D\x85\xd2G\xa5t\xcdb\xbeZ\x19N\xb1\x9c`)\x0bvk\xd33\xffJ*\x13\x92)\xd4\xab\xcbcuy\xfc\xda.\x8f\xe9\x15\x85z\x01\"\x95x\x17\xa6\xef\x8b\xc1\x8b\x0c\xc4\xab\xcf\xf4\xe1\x04\xc3\x06\x19(\xcf\xc6.\x96>\x940\xa9\xaeo~\x14\x01}G`\xc1L\x02>\x82\x80>\x80`~\xfc`\x01\xd2\x86\xe5\x9f\xfb\xd8\xc1d\xf9=\x1f6\xe8\x11\xe5\x88\x97\x8a? R\xe7]\xb2\xe2V\xa1Q\x16=9\xd2\x8e\xadQ\xaa\xed\xe4\xff~\x10\xee\xcd>\xec\x9d\xfe\x81n\xf3\xa6{\xbc\xf1\x80\xdao\xbd\xc1n\xed\xce\xfb:\xed\xa6n\xc2v\xde\xed<\xcc\xbd\xdc\xa0^\xbc\x1b\xb0Jd\xfd\x87l\xd1\xcd\x0c\xcd,\xd0\xce\xf8\x8c\xec\xce\xc9\xe4\x88\xac\xcd\xc4\xd0\xe6\xb21\x9b*\xdc'\xach,+\x10\xa3\x8a\xc1\x9eB0\xa5\xa8\xac\x08?\x0dYq;\xeb\x92n|\x8d\xd5\xc0\xcf\x06\xa4Hx\x85u\xd0\xbf\x8f\xa7\xe9\xde\xa6\xa0\x0c\xeek\x84{\xda\x94\x8fz.\xc4T\xf1\xfa\xc7\xd5y\xed*TH\xae\x03\x06\xce\x031\xb9\xcf\x14\xf8l\x0e4\x05\x15\x86\x0bM\xe1\xce\xe3D\x18\x9c\xa0\xdc\x08P\x95\xc8et\xe8)\x16\x01\x14 \x8b\xea\xa38\xc5!+\x9a\x96U\xcc\xe2\x93\x1c\xc2v\x92`c`\x11J\xd5jT\xf5\x9f\xb4\xccD\x1e4\x87\xd1\xf6\xca\x8a\x9b\\X\xfd\xb7\xfc\xfcle\x15-:\xec\x83z\xa57)\x8aS\x92\xab\"\\\x90\x15\x1d\\\xe0p\x91\xe1\x0e\xc9g\xffa\xdcP V\xac\x0e\xaa2\x1f\x1a\xa0\xde\x96I\xbe\xbd.\x8b\x1d\xa3H$\x05\x93\x7f\xc4\x17[Y\x84A~\x0fIS\x1e\xba\x8c\xc1\xeb\xbcL?\xd6\\\xdam\xefY\xe2\xb6\x13Y\x1c\x07jXYJ\x90\xed\x14h>\xe1(h\xe9R\xd7\xa6\x1a\x08~>\xb1\xd7yR\xef\xb3\xe2v\xd9\xd5\xa1\xcen\x0b\xb6\xdb*\xc6\xf0)+v\xe5''Ew\xec`\xc8\x0d\x0eY\xb1U\x009\x8b\xf1\x866\xd0!v\xe5\xa7\xa2\xc9\x0el\xfb\xd7$\xcb\xb7;U\xed\xc8 M,\xcb\xf6F\x94\xe8.\x8b\xed\xae<]\xe7L`\xe5\xfc\xd4\x80\xc8\x04\xa2\xc4k\x1e8L\xe7n\xeb^M$\x7f[\"\xf8Z\x06 \xe9=\xc7\x14\xf1 =\x04:\xc1\x88\xdeM?\x86\x0e\xea\x02\x9a\xd0\x99\xca\x1c'\xa5\x11!O\xe2\xc9\xdcTg\x85L\xa3>+\x08\x0br\x04J\x9c\x07:\x02U\xb6ZA(I\xef\xa6\xf5\xcb\xec\xb6\xc8\x8a\xdb\xf3\xe2\xa6\x9cI\xf0wI.6++n\xb7Yq\x83\xc4\xaa\x90I?\xd9\xed*VO\\\xe8f\xca\x11%:\xf6\xa8\x03\x8f\xb0\xa1\x16\xb5\xec{\x19\x87\x91\xe8\xaa#\xc2\x10\x9a4e%B\xfbD-A\xf9t\xc2\x8e\xff\x99\xc1\xbb\xf7\xe2\x87S\xf1WQ\xb8h\x004+v\xec\xf3\xb6\xbc\xb9\xa9Y(,]\x0e\xf1s>\xa4.\x98RCV\xa4\x95\xa8\x99\xc2v\xc0\x92t\x0f\xfc\x04t\x06\xdev^\x89\xd2\x82\x91\xfc\xea\x82\xff\xc8Y\x92\xf0\xea\x1d\x92{Y\x1f_\xf2\x13\xe1\x03diy8d\x8d|\x14\xa1Qq3Y\x01iY\xfcU\xd5\xa6\x96vG\xf4\xa1\x85\x0f\x97\x02\xd27\x82\xeb\xfdI\xb0\xa6\x0f\xad\xbe\xd3\xb0\xea\xd0\xaa\xb2c\xd3=\x13q*\n\x96\xb2\xba\x16\xcf\x9bpR\x85\x8a%\xbb\x1a\x89/y[6\xea\x99\x9c\x0f\x97\xa7\xc3\x13\x8c\xcc\x9f~\x80$\xff\x94\xdc\xd7|\xb1\x92\xbc\x1e\x1e\x86W\x12\x81\xc1Y\xb0:\x81\xf4.\xf4$B?>@\xff\xfc\xb8\x06\xc5\xed\xf9\xd5\\\x04\x82\x0e\x97\xbd,\xb2\xa6\xacTe\xbelTfW\x93r\x06\xb2{\xc5\xd9K]g\xde)\x04i\xfb\xa1\x08\xd02\xc7\xa2\x8d;\x0eb4\xc4\xb3\xcd\xc2B\xa9;\x81\x8a\xb0\x17\x9a'W\x0f\x07\xac\x81\x9f\xbc\xb4b\x89\x0c\xa8\xec\x13J\xd7\xc7\xf3\xc6\xc3\xc7\xf3\xb8\x10\x0c\xe6\xc6\xbfmc\x10\x87S\x10\x8f\xa1\xdf\xca\x8b\xcc\x8e\xe5\xecV\\\xd6\xce@\xa8\x07\xda\xe5:\xb2\xca'\x9f\xb7K\xb0\xd1\xdf\x0fVXG\xa3\x8d\xd1\x1b\xeb^)bPaw2\x0c\xa8\xbaeN\xc4e\xb4\xd0b\xfc{`\xd0i\xec\x92,\xbf\x97\x8aXR\xb7\xcf\xcd\xb6\xd3\x98L\xa1\x9b\xb6q\x06\xa7#WW&\xef\x0d,Uqz`5\x89\x88\x17\x05[\x9dq\xb2#I\xadb\xae\xf0\x84\xa2\xee\xa8\xb6+\xd3\x031\n\xb1\xd6i(\xa3\x13\xe2\xe4\x02\xef\xfbg\x99\xc8\n\xc6{nX\xb9H'\x07;5\x14\x0c\x82\x9e\x16\xcaI\xb1\x9c\x12*\xbe!O\x87\xf3d\x98d\xf7\x88X|\xf9\xf9\xc0`\xa6yy'\xe7'L\xdd@\xb2\xaf%e\xf8\x0b\xae\x96\xa4\xb6\xd4\xeb\xefh)&\x004\x1d_\xb3t\xff\x87\xaf\x9e\xb1\"-\xd5\xf3\x82\xe2\xd7\xf6\xa5L\xf5YG\x11\xedL\xe7\xa22\x01@C\x05\x11\x9b\xf5>\xa9\x085\\F\xe3\xcb\xaf\x14\x05\xf4g\xc97^\xfdX\xb1\x94ew\x06\x9e\xd6\xb3?u\x1b:\x0e\x15\xe2j\x8c\xba\xf6\x96\x1fYQ\xc3\x9e\xe5\xe2\x99\x9a\xa4\x80$\x157\x0du\xa3j\x81\x95\x9f\n\xf9\x92MY\xf4V^\xbd\x98_CR\xd7e\x9a c\x91\xbeN\xb7\x19\x9d\xe5'i\xa9+\x0b6\xdd(\"I\xcet]\xee&4m\xf8\xd8\x04\x00\\\xf4\x0d\x1e\xe28\x1c\x9d\x83\x8b\xd6}\xd0\nG\xf3\x80\xd2\xbd\x0f.s\xe8\x7f\x02dR\x80'\xc09\x18@\x0ct\x18\xf0\xed\xec\xa6u\x9d\xe4I\x81\xc5\xb8{\x90\xaeO. \xfe\x86\x17\x85m\x8d\xac\xde\xb3\xdf\xea\xea\x03 \xf1DW\x1f\x1e\xf5e.\x13)M\x99\x11\xc7E\x98\x90\x92\x9c\x15\xc2(\xd3#5\xf69\x15\x96\x1aqsl\xba\xc7\x97\x93/\xc6\xfb;~\xf0V\x91yk$=\x94\x15\x83\xfa\x945\xc2\xbb!.ly\xc6\x07\xd4\x16\xf1\xda\xc1D\xbb\xf9\xa8\xa1\x89\xdc\xf3P\x16\xd9G\x92Ik\xa8W\xc9\xcfz\x04\xb0?\x1d\x92\xe2Y\xc5\x92\x9d\x98\x82x\xbfY\xc7\xbb t\x9f\xedX\xd1d\x8d;qc4\xb0\xfe\xaeo\xb2\x90\xd9\xc6I\xde\xfd\xd8\xd2\x01C1\xd2\xbf\xe5Y\xf1\xb1\xa77\xb0\xf4Te\xcd\xfdVPLJ1\xc4\x0f9\xe8\xe8{thvH\xb2\\l\x81\xee\x0e\xaa{\x87\xc8\x8e5I\x96{k0\xea3\xcd\xc2\xa5)\xb5\x1dX\xfd\x8a\x9e\xb5\x1e\xa1\xa2F\x98^g+\xc1\x7f\x9f\xd5MYei\x92\xcf\xf0\xe0\xecY\xb2\xc3H\x9e\xccr\xefXUgH@\xbat\xd5\\'u\x96*\x9fE\xd6\x0f\xeeR\xbd\xf0\xb1\xc0\x1a3\xa5\xb2\xc6\xa6\x7f\xb6\x8a]p\xf9b\x01\x92\xe314P\x9b\x9c\x06!9\x8a\x9a\x15\xf5\xa9\x8649Jf-/\xb4\xfa\xcf\xd5)\xef\x8a\\\xa6\xac\xae\xa5\xddJ\xaf\xe8\x04\xa0\x10\xf3\xfc\xc7t\x9fd\xc5\x19\x16l\x9c\xe6'\xf9ly\x9e\xf7\xba\xc2.i\x12>\xcbS*\xf1\xd0\x05\x86$\x06J J\x8e\xc7<\x93\x0e\x84\xc7\xc8\x13\x01u\xc3/\x96M\x95\x14\xb5d\xef\x87$\xddg\xc5(DG\x8c\xe7\xf3\xd8V\xc0 \xf4\x99\xe9 x\x88\x93x\x9d_,!6\x1by\x02\x8e\x15\xbb\x0b~\x00\xf6I\xbd_@\xaaH\xa0\x85\xc8\xadi\xb65k\xb6S\x96\xa0\x9b\x05[p`,>\xc7B'\xda\x1f\x05\xec\xach\xd8-\x9bZ\xe1d\xb3\x87\x16\x81ea\xc0\xbd8\xe0Z\xa0vK/\x92\xaa\xa9Y\xf3\xbdX\xa7)AH\x87\xdb\x16C\x85@i\xe6 \x18\x0eP\x9eDIN\xfc\xc0\x0ez\xf2?\x04\x1b\xb6\x8b\x0f\n\x06r<\x93\x9b\xaa\x1d!\x11\xf30Bg\xd5\x1dSq\x01\x87\xe4X\xcb\xed\x16\xd85e\x1bd)\xf8\x8dP\xfckH\xf8\xad%\xcf\xcbO\xf5\x0b\xe3\x9a\xff3\x9c\xdft\xd8\xf1\xcd\x12\xb5\x8dvl\xd7N@\xd9\x17O\x07\xb63>\n\xf4\xcf\xf0\xb2\x80\xef\xaf\xae.\xe0\xbb7WP\x16\x9a\xc0%e\xdf\x0b3Z\x02\x7f\x1e\x13\xde\xd5\xfd\x91\xfd\xe5\xcf\x7f1\x00UU\x15\xf8.\xa9\xbd\x96\xf2G\xac\xe8\xb1*w\xa7\x94\x89\x98\xaa\xaa\x9a\xc6\xd1\xeb\xf6\xcf\xf0\xb2\xbb0\xd5\x90T\x8cSL\xf9I\xfa&\xd3$\xe5\xa7\xb3,?\x9e\x8em\xbc\xe9uR\xb3\x9d\x9a\x84\x11\xb5\x9f\xde\xff \xf0\x10\xe1\x7f\xcd\x9e\x1dz4\xba\x93D\x9ah\xb4\xdb\xd8\xa9\xa4\x98>\xe3\xa5\x9bDB\x1c\xc0\x8a\xdd\x94\x15;\xd3\x9fs\xa8I\x93]gy\xd6\xdc\x8bw\"\xb4/N0\x8c\xean\x92\xf1\xd3\xb5\xb2P\xfeh\xf1\x898'\x1bx\xf2S\xcd\xb4\xd5\x80\xaf\x03'$~\xe6%%%Erk\x9e\xf7u\xc5\x84\xedC\x83\xdd<5\xd1\xc4\xdb\xb2a/T\x19w\x15\xf8\x98\x88\x19(\x8e\xa0\n>\xe5\xf7\xfd@jI9\xa5\x88\xfc\xc6\xa2\xa5e\xd3\x04\x04\x15\xe3\xdc\x98);x\x1b\xd1\xd3f\xa3wg\xe4\x9a\xddf\x85\x08\xff\xfa\x945{#\x8b\xbd?\xb2\x8d\xa4\xd2\xe4\x98\xd5\x9b\xb4<\x98\xf9\xd5\xa583\xb5285\xfb\xa4\x18\x9f}x\xa2L\x8e\xecpl\xee\xd5!{\n\x07\x11<{m<\xea\x02}a\xbcnM\xcd\xca\x1dqdiv\x93\xa5P\xb3CR4YZcd\x8f\xd6\"\x91\xcd)\xac\x1d\xd7\xaf\x914\xff\x91\x9f\xeek\xa6mf=\x89;\x11\xad\xdazq]\xde1=\x0f#\xdd\x8am\x98\xfc\xe6V$>\xbc,\xee?\xf4\x0c\xdf\x05$\xd5u\xd6T\xfc\x14YpS\xcc\x13\x01\x98\xe4\xa5\xa2\x98\xbe\x15\xbdk\x9c\xc5 \x8e,q\xbb\x1e\xea&#-\xa4U/P\x8a\xba\xd04\x9dg\xd7\x02a\xc5\x88k\xa8O\xc7cY5\xf2i\x95\xf4\xe3\xf3S\xc1\xff\x8f\x8b*\xb9\xd5\xb5>6&\xc9\\\xde\xc0\xa9\x91\xdcC\x9f\xc4\x9a\xf3.\xed\x02Hr\xb8e\x85\xa8\x8b\xbaS~\x8cVK\xe5\xa3\xc8\xed\xc0 \xbf\xf9\x9cp\n\x85/\xf9\x95\\\x05E+\xf4\x92V&e\x05\xbc\xfa\x97\x7f1\xca\x8eo\xcb\x12n\xca\x12\xbe\x86\xcdfc\x08\xf4\x17h$\xc5\xbd\xe9\xe7\xa4\xb8\xdfp\x04\xbe\xad\xca\xc3\x93\x9b\xb2|j\xea\xb8\xd9\x98\x04Ev\x03O8\x98\x9f\x04\xfaW\xe5\x93\x7f\xe2p\x9e\x9a2\x15\xac\xb0\xfen[\xab\xaf\x1ck\xf5\xc7\xe4. \xb2X\xf0\xb5Pg\xf8\x08\x0b\xd7$\xab\x9f|[\x96\x9b4O\xea\xda\xba$\x125\xfe\x89\x9cY\xef3\xd3\xe8\xe8Z\xb5\x8b\xf5\x07\xc7b]\xdc7\xfb\xb20.\x97\xc4\xe7\xdb\xb2|\xb2\xd9l\x9e\x9a\x89G.\xd5\x13K\x0fA^b\x19\xe7\xac\"\x07p.\x17\xf1\xf5\x9b\xcbW\xef\xcf/\xae\xde\xbd\x7fj2\x93\xc9\x01%!\xda\x86\x94\x83\xda\x96\xef\xdf\x1c\xcb\xf7]iZ9\xb1t/\xbe\x86\x7f:^o\xbe-\xcb\xff\xdel6\x7f7uM\x8a\xfb3\xae\x85\xf1\xfeG\xa9c\xfc\x98T\xf5>\xc9\xf9\xa2\xda&`^\xb4\xf1\xf8\xc6\xc1\xb3\x9b\xd1\xd0?\x15\x87np\x81\x9a ~\xd1\xeb\xff|\x0dE\x96[\x08\xd8\x86\x11J\xa9W\xa2\x0eN\xfa\xb1\xe5\x9bZ\x7f\x86\xeb\xfbNO\xd1<]\xbcds}\xafC\xaf\xb9\xa4\xc7\x80>F\xf4\x90\xe7\xfc\xea\xb7\x11?p]\xed1W\xef[Y\xc3\xe5\x90\xf6\x16\xc8}\xc6\xc0\xb6\xac\xbd\xc8\xef\xf5efr\xa3l\xb5AHn\x1a&\xd5\x17q}}\xfc\xfc1\x06T\xc9\x1e\x8d\x86\xbc41E\x7f\x8fn\xcars\x9dTb\x02\x9f\x9f\xdfo\xfe\xf6H\xae\x81\xbc\x12\x98\xee;b\xf8G\xbc7\x17;H\x87?^\xbe{\x8b\xfd\xfd\xeb\xaf\xbf\xfe\xda\xb4K\xfc\x9b\xee\x92\xad20\xf8\xd1Tj\x83\xbcl\x9cj\xa6\x93\xbfnOy2I\xfc\x04\x99\xa56\x02\xd2\x88\xb0\x91N\xd4\x9fu w\xea\xb4\x9d)-\x02\xbd\x9a\xf7\x04\xb1\x0c9\xf8\xf0\x1f|i>\xa8{g\xab\xd0\xf4\x17z\xa3\x0f\xf9\x0b\xa3\x96\x9c\xa4\x1f\xf99\xefn]7Y\xceL|Xs\x85\x0bV\xd5ea9\"\xca,\"\x92\xbc\xb6b\xa7\xcc z]wa?U\xbd\xc7)zm\xc3e\x01\x80\x05\x9bGb\xa5\x1e\xbd\x80G\xd8\x99\x19N}#\xe7\xf6\xe8\xcc\x0cM\xcc\xeamr\xe0\x10\xff\xafD\xfd\xdf-\xdd\xf9\xacF\xbd}\xa6v~\xa3n\x07CZ\x91{\x9c\xd5\xf0\x89\xe5\xf9\xb3\x8fE\xf9I\xc6\xad\xecE\x8c\xa7\x8a71\x1d\x81!q\x9eI\xf5tD\xb1\x92\x0d\xf5\x06\xe6\x04(\xbc\x9a\x82\xfc0\xb0\x1f\xc4\xf1\xd0\x14)KB7]\xf4\x8b8\\\xa3\xa8\x12\xfe\xb3\"d\x0c\xa2\x18\xaa\xa5bx\"2r\xd4\x02L,\x05\xdaD\xf5\x97?\xff\xe5\xa9\x91\xe0\x97S\xc9p0\x1b\xa1\x88\xe5\xe0\x00\xbf\xdc|\xf5\xe5W\xf5#\xe3\xb6\x0f\xff-\xb3\xe1L\xe6YRU\x04\x9dP\xa7\xf2\x83?\xa9\x04\xb7\x81I\xb9\xcbmS\xbd\x85SGe4\x8e\xa1C\x9b\xb8#S\x16\xbf\xc0~\x9c\xa2<\x8c\x01\x19$\x02\x8d\xb3u\xe0\x89\x1c\xfay\x9b\x1a\xa3\xfeK\xd8\x03\xc7\x80\xad\x97T\xf3\xd3a\xaeD*s\xdfQJ\x95\xbdc?\xb9\xca\xd4\xd3\x00\x90\x98p\xa5\x9b\x8c\x10\\\xe2\x8eP1\x86\xd3\xd8Fa\xfd\x12\xbf=\xc9\x8a4\xdf@\xcd\xf2\x9bg]\xe0\xe3dW\xba@R<\xda\xd2\x07\xab1\xac\xceI\"\x9fC\x95\x7f\xcc\xea\xfa$\x8dt\x83,>d\xed\xbb\x04\x83)\xd6\x93@4\xfc\xc7\xfe?\x06>\x9b\xfe\xdf\x1bV\x1dj[\x14\x99n\xcd|_\x0b\x12\x00\xd75\xa7\xf5&lP\\\xd7\xb0\xf0\xb8\xae\xf9\xa1\x15.d\xaek\xd3\xe0\xb9\xae!at]\xf3C\xdd?\xb4\xaek\xb6 \xbb\xae\xf9\xe1\x13,\xf0\xae\x0f\x7f\x12\x82\xd75?\xec\xbc\xc2\xf2tk\x05D\x8c\xeaZ\x03\xf4\xc6#\xe9\xc5;\xe37\xca\xf6G\xf9\xe0\xdb~T\xee\xa0\xd9g\x18#\x1a\x8b\xdf\xdbS\x81&\x83\x8a\xd6\x8d\x8f\x05D\x11\xe7I\xac\xfb4\x1c\xcb6\xd3\x03\xbf\xcee\x87i\xb5\x8b\xae\xf5rTK\xe1\x9b\xc8Y\xc3\xcc\xf3L'\xd9\xa9]\x1b \x99Ns\xe3\x9aafY\x97\x1f\x17\x94\xe7\xda\xd2`\xbbf\xc05@Bl\xd7(\xa9\xb1]\xb3N\x19\x9c\xd3\x06C\xe2l\xd7\x9c\xe7\x1d\xc6\xeb\x12.%p\xd8Li\xb5]\xf3\xc75h\xf2\xe0\xb0QR \x87\xcd\x91~\xdb\xb5y\xf3\x0c\x99t8l\xce\x14\xc4~3\xa4\xe9v\xcd9;7\xe3\x83 \xf3\x0b\x90\xc4\xab\x9b\xa81\xce\xf2\x9b-\x9e\xe6%\x1b]\x13F\xc0M\xaeP\x8fk\xa1\x9c\xc3\x8e\xa5y\"+\x83\xc8\x97C\xf8_\x91\xd9w\xa0\x86\xc8\xdb\xbdg?\xf7b\xde'q\xf0g\xd0\x94\xb7\xf2\x96\xd9f\x17I]]\xe5\xc9L\xc2p\x90(\x89\x9f{\x13\x12YPJ\xcfWf\xcb\xac\x02\xf6Y=\xed\"vA\x08\x97\xac\xa87p\xa9k\x89k\x07\xfd4\xbe%\xe1\xcb#iW\xd9#\x07\xc0\xce\xa4\xcf_\xb8\xad\xcb\xaabi\x03i\x92\xa7\xa7\xbc5\xe0\xdd\x9c\xb8\xb29\x06{*\xba\xd5\xac\xc5\xdc\xcbS\x03Y\xc3*\xc9\xa2\xcb;\xa1_\xb7\xd7\x0f\xf8\xd3\x9e\x15\x12m\x11i\xd0\xbfm\x8da\x0b\xc7x\x7f\x89\xc7\x85s\xd2\x8a\xed\xb26\xa3+\xe9\xa7\xa5}\xda\x975\xeb*\x92\x8dA\xf7\x977\x1b\xc63t;\xa6\xd0\xecP\x14\xcf\x87H\xbbu\xd3\xbd\xc74\x86=X\xd7\x8dz!S%\x99\xa5I\xc1\x05\x9c^Z\xb6\x136jA(\xea\xf9\x19\x89\xd4\x18\xe6\xe1\x947\xd91\xcf\xe4\xe0\xc3\x11TW\x13\xf5\x0e3/:K\xa9\x0c)\x14\xc4\xd5[\xd4B\xb2\x0f\xbe\x847\xc8#\xd9\"\x1a\xb1\xe7PQ\x15~\x9a\xb2\x92S9&\x95X9\x95\xfe\xa1j\xdb\xf3\x03\xda\x08\"\x93B\xe2\xc8*\xf9x\xb0\xb0\x7f\x15\x1fD1\xbb\x0eh\xc5\xc4{C\x94\xd4\x9a\x07\xc5G\xc1\xec!\x03\xfaO\xc2\xa1\x92 \xf6\xdb\xaeQ\x9f\x1b\x8c\xe4s\xc5z\xbf=9\xb2\n\x8eIV=o\xaa\xac\xec]\x90\xa7$\x14l:S\xd0zV\xdd\xd2v}\xdai6\xa5>:\x1d\x96|\xb6\xe4W,\x07Ht_\x0e\x14\x1e\xfega\xfcHe\xc2h\x97\x19\x8ar\x1a\xd3\xd3\xbf\xc3w\x10\x87\x07\xd4~\xfc\xca2\xf7<|E\xd9\xa8W\xc0\xb6S\x8b \xba\x14>\xbd\x07\xd3\xed\xbf2U\x96\xa2\xf8e\x17JU%\xa9\x98\xa5b\xe5\x9c\xb5\x16e\xf3L\xfdSf\xdc\xd6\xa7\xe31\xbf\xd7\xfa#\xff\xa9\x058]k\xc3\x12\x89\xba\x8a\x01\xf3\xf0\xb7\xd5\x08\x82\x01\x8a \xd2\x10\xdaX\xdd\xb3\\\xc2l\xd7/g\x86?\xb8\x14\xc9\x89\xb5%d\xa6?P\xb2\xfd\xc1\x13\xc5\xb0Y\xff`\xcc\xfc\x07O\xbc\xe6V\x00\x98\x00Bb\xd2\x96U\x02\x98\x80C*\x03@\xa4\xea\x00\x80W\x08\x00\xbcJ\x00,9\nH\xc5\x00p\xed!^9\xc0\xf1\x99k\xb7fW\x11\x98@\nQJ`J\xee\xc4z\x02\xe0\x98\xea\xa2\xba\x02\x03HX\x8d\x01\x08_g`4\x1d\x83\x84\x00\xc7\xdby\xdd\x17-\xae\xa6w\xf4,\"\xa9\xac:8s\xdf\xb7@\x84\x13\"\xa7\xe3\xa4;\xb9-\x17\xb3\x8c\xa8$\x81\xe6\xe4\xcb\xd1\x85\x1aQ\xac\xf9\"\x1a^\xb4\xd9\x84\x9b/vK\x04\x9c\x9bi\x06\x17rF1\x17O\xd0\x19E\x9dQ\xd8-<,\x06\x91\xe7\xdcY\xb3\xd8\xf3\xb1;\xa2\xbb\x18N\xf8E\x12\x7f~\x02\xd05\xe5pB\xd0,\x06#\x08B0\xf0\xc8\x81,\xe9\xb61\xcfG\xe7\xbd~\xdc\xbdA1Z\xad \xd3\xc4_\xa3\x18\x8c\xdeu\x19]\x92\xdb?+{\xac\xc6\xad?\x0f\xcfK\xd8\xfa\xae\xc5\xf0'k\xd9\x93\xdf\xdd\xbb\x16&C\x84S\xf72\xaa}C\x10\xcf1\x18\xf3\x14\xc0\x9f\xb4\x15n\xb9&\xd8\xd9F\x7f-E0L\xe2{hM\x8d\xa0\xa5\xd1\x91\x0b\xad\x9d!\x06S\xd9\xf0\xed\x92\x0d\xd9\xb4\xfeG\xb3K\xba\xc8x\x81\xb20\x06\xcc\xc8\xe6\xd4\x18]\xc13\xb2\x0d\xd6u4\xb4^U\xf5\xaf\xee=\x88\xcej\xdd\x94\xe5G8\xe6I\x8a\xa4\xf7\x81\xf4&\x1fs&`\x9a\x9d\xc4^\x93\xb1;\x8a\xc7\x13\x1a\x0e\xaf't*\xb2\xcf]TL7\x9b\xae;>\x1b\x15\x08\xb25\xaa\x90\xb2\x11f3\xc0r\x04v x\x95\x9a\xad\xba\xe42\xe7tw\xca\xa5\xd4RJ\xbea\x10\x80\xa4q\xce)\xf0\\,s\xe8\xf0u\xe35\x80\x89\xb0\xe77ES\x0d\"\x0e\xbbM\x94\x07O*\xba\x15\xcb\xd9]R\xe0\xd14\x07\xd6$\xbb\xa4I\x1c7$\xed\xceH\xe4cJ\xb8\xcbFu\xf2\xd1W\x91YI\xd7\xa4\xd4\xf2De\x95:+n\xf3\x1eW}\xdc{\x8c`\x04\x8e\xffur\xc5\x92NQ\x05\xa5\xef7\xe5K\xc6\x0f\xc0\xb3\xb2\xda1\xaeu\xe7\x037\xcd\xaa(\xae\x8a\xe2\xf8\xeb_GQ\x1c\x9f\x92E\x1a\xa3\x15\xd8<\xd5\xb1\x8d\x82\x99\xa9/\xb6\x87r\xaa%\x92\x8f\x87\xab\xe0\x91\x85\x92\x06k\x1f\xbe\xd8\x91\xbb\xd4\x91\xab\xd0\x91E\x99\xb2)R\x8d\xa5\xc4\x91C\xa4\xb9\x0d+\xf3\x8b\x1b\x81\xa9\x02\x89\xab\xb4Q\xe8\xc2F\xf1\xca\x1a5K\x8b\x1a\xc5-i\xb4\xa0\xa0Q\xe4rFQ\x8b\x19\xc5,e\x14\xa3\x90Q\x902FQ\x8a\x18-.a\x14\xa7\x80Q\xe0\xf2E1\x8a\x17\x05.]D-\\\x14\xadlQ\xa4\xa2E\x0d\xbddQ\xa4\x82E\x8b\xca\x15\x19\x8b\x159\xc4\xae\xa3P\xd1@*\xc7)S\xd4 E\x8a\\\xca@\xe0\x02E\xf6\xf2D\xc1\x8a\x13E+M\x14\xab0\xd1\xf2\xb2D\x84:;\xd6\x92D\xc4\x82D\xa6j#\xbe\xc5\x88Lp\x90\xaa\x03\x01\xca\x10\xd1\x17\x87V\x82\xc8\xb5\n\xc4\xf2C\xde\xc5\x87\xb0\x9a\x0cA\n\x0f\x11\xca\x0e\xb9\x8a\x0e\xb9K\x0eYV\xcd\xaf\xdc\x10\xad\xd8\x10^jhq\xa1!r\x99\xa1\xb9E\x86\x8c\x05}h\x05\x86\x82\x96\x172\xe2\x82Pb\x84\xc2BQ\xca\nE(*\x14\xbe\xa4\x90\xa3\xa0\x10^K\x05/&\x14\xb2\x94P\xe0BB1\xca\x08\xf9\x14\x11\"\x96\x10R\xe6\x07Z\x01!\xd5\x99P>\xc8P<\xc8\x84\x05\xb5$\x0c\xa5p\x90W\xd9 r\xd1 dB\xe1\x0b\x06E)\x17\x14\xbaXP\xe8RAKi\x82X&\x88V$h(x\xf0\x02A\xf22\x84\x97\x07\x1a\xdc9\x82\x17\x07\xb2\x94\x06\xc2\x0b\x03\x0d#\x0f\x83\x95\x05\xb2\\\x07\xf1\x92@\xf4\x82@\xc4r@\xd4b@\x84R@^\x85\x80\xf02@\x96\xf5\x18\xec@\xa8\x12@]\x80\xc7\xb2\xe7\x16\xc7p\x96\x15\xff\xe9\xe5\xde~a\x1a\xd2\x8eM\xfb\x8f\xa5e\x7f\x9ay\x9e\x07K\xc1\x1f\x87\x05d0\x91`\xc5~l\xa5~|\x10\n_\xe6\xc7\\\xe4\xc7R\xe2\xc7\x07\xe5\xf9\xe5}(\xc5}|0 ^\xd8\xc7R\xd6\xc7\x07\xaf\x19%}\\\x05},\xc3\xdb\xe2\x91\x06h\x05/\xe53\x16\x95\x96B>\xf62>\x84\xd9\x99\x02\x94\x0c3\\\\\xc0\xa7\x9b\x1b\xa1|\x8f\xb9x\xcf8njv\xe9\x9e\x99|\x93R\xb4\xc7\x80c\xc0\x92=>\x05{,\x13\x05B\x9c\x9f\xad,\x8c\xe3\x0c\xc3x-\xe2\x94\xe9q\x15\xe9\xf1\xc52Z\x81\x1e\xdf\xf2<\xc4\xe21\xe8\xe1\x8e\x08\x15_\xe8\x8e0\xf4\xc1*l\x94\xa19\xce\xd0\x1ai\x18/\xd6p\x91\xafe}b\xd0?\xf6p}b0T$\xa25\x16\xd1\x17\xbb\x19\xf1\x88\xee\x88D\x07\x12\xeb\x13\x83\xba\xc5\x8aP\xf4\x8cQ\\\x9f\x18\xa4\xc7+\xfaE,:c\x16]\xd3\x86\xf5\x89\xc18\x11\x8c\xfe1\x8c\xe4(\xc6\xb9\xf3\x8c\x15\xc9\xe8\x15\xcb\xe8\x8cf$\xcc\xce\xcd\xf8 ^L#)\xaa\xd1G\x13\x0e\x1f\xd9h\x8amty\xcf\x96\xc67\x8e\xc0\xadO\x0c\xaeO\x0cR#\x1fI\xb1\x8f0\xa6\xe0.Np\xc0\xd0\x06\xab\xd8/\xa7\xbe\x96Po\xdbZ\x19\xf37W\x19\xd3\x12?K\xad\x87\x89\x80\xf0\n\xe1\x1d\xbey93zw\x9f\xd5\x8d\xf1,\xf1\x1f\x07\xa7\xa8\xf7\xce\xa08\xa72|O\xbe\xfb\xa9\xee\\\x0b\x8e\x93|e\x14\xa77\xef\x8c&\x15-\x85i-\x8a\x12\xaf\x93:K\xe5+\xa5b6XO\xbb\xc2\xeeR\xd7\x05l\x93f\xe8\xd4\x9c\x1c\xe7I\xb6\xe4x\x8c9\x80;\x82\x07\xe0\x95\x0ee\x8649\xca\xe7D\xa4\x92\xa6\xff\\\x9dr\xf5\xee\xe6\xb1*SV\xd7\xe2\xb2d^1\xcd\xa1\xc5?\xd2}\x92\x15g\xb8\x03!+\xd2\xfc$\xfd y\xde\xeb\xce\x95\xcd\x84\xcf\xfc\x94J|\xb4\xa7Ub\xa2#\x9b\xba0\xc3\xc7\xe8\xf38\xd2\x92\xce\xa0\xa9\x92\xa2\x96N\x92C\x92\xee\xb3\x02 u\x12\xe3n3\xc4Q\xe0\xd8\x08s\x9dy\xc7\xfe\xd9-'\xd1\xf2\x8f\x84[P,\xb5i\xb6\xf2t\x1d+v\x17\xf5p\xed\x93z\x1f\x80\xf4\x8dqs\xc7\xa4j\xb65k\xb68[\xd2\xcdy\xa7w\xcf\x04L\xa2v\xd0A\x8c3}Cv\xdc(\xcf\x0e\xd8\x17\x0fh\x0b\x08\x94El\xc9\xe1\"\xa9\x9a\x9a5\xdf\x8b\xb5\xc4\x89J\xdc\xea\x9a\xad 5\"\xe5\x1aPQhp\xe0\x92\x03H\xd2\xe4\x8cb\xd2\x9b\xff1\n\x1a\x9d\x9e\x1b\x05\xfcx\x96\xc2\x85\xa88\x1d\x94\xa7\xe6xj\xba\xbfu\xe7s\x02G\xa8\x9b\x91q\xed\xf2_b@O\x8e\xc7(p\x05\x9d*\xad4\xca\x00\x8c\xdf\xe8\x8a\x94E\x01\xde\xd2G'\x9aQ\xd6\xcc\xf9UY\xb3%/\xd5Z\xf0\x18\xa8\x14\x92\x1f\x0ct\xccVl\xcb[\xe0\x15+v\xac:dE\xa3\x8e\xacd\xc7C |\x97\xe453\x14C\xc0\xde\x8f1\xbc\x1ec\xe5\xe5v.\xee\xceI\x03\xf7\xaa\x8d\x16'Fn\x1a\x10\xf3\xd3\x80\x94\xa3\x06\xaeE\x03\xe7\xc2\x81\x02a\xceW\x03\xca\xc2\x01QY\x95mV\xee\x9a\x05\xde$r\xdc\x18\xa4\x19%\x87\x0d\"\xe7\xb1\xf1\xd6,\xcfe\x83\x07\xc8g\x83\xa59m\xf0\x10ym\x10?\xb7\x0d\xa2\xe7\xb7A\xb4\x1c7\x08\x97\xe7\x06\xf1r\xdd L\xbe\x1bD\xccy\x83\x18yo\x10-\xf7\x0db\xe4\xbf\x81W\x0e\x1c\xc4\xcd\x83\x83\x98\xb9p\xa0\x04%9\x1f\x0eb\xe6\xc4\xc1\xf2\xbc8\xb0\xe7\xc6\x01U1 \\SG\xdaC\xac<9\xd0[\x84\xfeNS`\xe6\xe5\xcc\x19\x80i\x16\xed\xca\x9b\x83\xb0\xb9s\x107\x7f\x0e\xa2\xe6\xd0A\xa0<:\xa0\xa6\x87\x81;\x9f\x0e|r\xea\xc0\x9e63+\xb7\x0e\x9c0\x8d\xb9\x02A\xf2\xec`\xc6bR\xf3\xed\xc097\xef\xbc;\x98\x97{\x07\xb6u\x0c\x95\x83\x07\xd4<< \xe5\xe2\x011\x1f\x0f(\xab\xec\x9b\x97\x07\x1e\xb9y`\xc9\xcf\x8309z\xe0\x97\xa7\x07\x8br\xf5\xc0\xb9\xa0\xe4\x9c=\x08\x9f\xb7\x07n\xec\x8c\x94\x1e%\x87\x0f\xe2\xe5\xf1A\xac\\>\x88\x94\xcf\x07\x94\x9c>\xb0\xe4\xf5\x81%\xb7\x0f\x82\xe7\xf7A\x8c\x1c?\x88\x96\xe7\x07\xde\xb9~\xe0\x93\xef\x07\xfe9\x7f\xe0\x99\xf7\x07V9d\xcd\xec\x02\x8f\xec.Z\x0e \xf8\xe7\x01\x82_. \xd8\xa6\x1b#'\x10\xe2\xe5\x05B\x94\xdc@\x88\x92\x1f\x08\xc1(\x89\x9c'\x08\x1e\xb9\x82\x80\xe4\x0b\x82%g\x10\xda\x0b\xab)o\x10\xc6\xb7\xc0\x08\xb9\x83\xe0\xca\x1f\x04K\x0e!LRZ\x02\xe6\x11\x02\xe5Bo\xca'\x04\xcf\x9cB\xac\xbf1\xaf\xd0\xd4\x19\xcf-\x9c\xf6\xb6\x00\xf6\xcc1\x040\xe7\x19\x02e\xfd\x06\xbb\x17.\xdf\x10\xbaHfK\xce!xc\x18:\xf7\x10\xfax\xa2V\xa7\xfe\xf0\x14\xfc\xda\x7f,\xcfC\x840\xfe4kN\"P\xb6\x00&\x81\xef\xe1r\x13\xc1\x99\x9f\x08\xb3P\x8c\x91\xa7\x08\x8e\\Ep\xe5+\xc2\xac\xa9,\xc9[\x04r\xee\"\xcc\xc2-B\x0e\xa3\x1c\xc3\x92\xc7\x08\xb30\x9d\x95\xcf\x08\xa4\x9cF\xa0 \xe4\x0e\xc5\x1a\xa6\xbd\x84\xcfo\x04\xdf\x1cG \xe49\x82\xcf\xdc}\xd2~B\xe6<\x82\x7f\xde#8r\x1fa\x8c\xf0\xb2\xfcG\x08\xc3\xebi\xb9\x90`\xc6=h>$x\xe7D\x02e\x19\x80\xb4\x14\xe0\xcc\x8f\x04\n\xe9\xea6X\xafXy\x92@\xca\x95\x84\xd9xG\xcc\x99\x84Yy\x93\xe0\x93; \x8b\xe6\x1d/\x87\x12|\xf3(\x81\x92K \xd4\xd9\xd2\x98+L\x18l\xc0\xbcJ\xa0\xe6V\x02eR\xc3\xad\x8b\x90c \x9d\xd6\x8f\xee\x90\xdb\xf3\xba(\xdf\x12\x81\x87\xbd01\x1a)F\xde%\xc4\xcb\xbd\x84\xc8\xf9\x97\x00Qs0!r\x1e&D\xca\xc5\x04Z>\xa6\x89\xc2-\xa9d\xd4D\xb6\xe1\xd7\xf0\xfe\xe2U\x87#5\x99\xed\x82kJs\x9f\xa0\x10j\xd6@-\x18\xccV\xfe\xac\xcc\x9c\"JO\xb8\x8f\xb4j&\x8fbV\xc3\xa1\xdc\x9d\xf2%\xf9\xa0\xb3_/\xb3\xe9\xc1\x8a\xf5I\x9dX\xd9/Ep\x03\xae\xc7r\xc1\xd7\xc5\xee\xe38\xe0Y$\xb6\xeb\xcaD\xb6\xf6\xb2y\xb3\xa1T\xed\xd27\xbb>S\x14Y\xd1T\x88*\x17\x0c?\x05\xbf\x87\x1c\xe8? \xf7X&\x98u\xbb\x86}>\x81H\xfe\x8a\xf5~\x7frd\x15\x1c\x93\xacz\xdeTY92\x0bt\x19\x92Q\xa78\x1dF\xcf\xb4[\xfe^\xb2\xa6\xee\xd3\x94pdU\x9d\xd5\xa3k8_\x85\xed\x8e\x15\xe5\xc4\xb2J%\xda\x0e\xc2@\xd5\xe2\x7f\x16\xe6!\xce3A\xfc\xae\xd2\xb0Q\xbe\x84\xb0\x02#\x13R\xccG\xf6\xf6J\x9c\xbd(\xcb|.\xa7)\xcb\xdc\xccg\xca2\x1f&\x9d\xf3?d\xc5M\xb9\x80\xa7\x14e\xb3\x95\xfc\x7f\xeb\xf9t\xad\xefW\xc8N\xf4\x16\xca\xb9\x0f|\xae>\xbb\xf0\xbew\xa6\xe62\xfe\xfe\xb9\xdcj\xec\x06s\x95\x80\xe2\xbcC\xd4\x1f}\xaa\xf8Z/\xb5\xf6\xcblg\xf3\x0e\x98M2\x01\xaa9\xc65K\xf7\x7f\xf8\xea\x99N\x08\x19%\x96 U\x18\xba\xd6r\xf8m]\xa5!\x91E\x01O\x9dL\x03\xbe\xac\x929t\xf6\x0b:\x08\xe8\xe9\xd9g\xb3\xab\x9b8\xb3\xe9\x01v\xccf\xc7\xeaF\xb1J\xc3L\xf4DmS2\xc8 \xd9\xf0\xb3\xd15C\x96\x94l\x04\x9b\x0d\xc5b#\x0dEea\xb5\xb4\xca\xe6\\s\xd9\xdcVW\xd9\x86\xe6\xb0!\x1a0\xacz \xff\xa6-\xadl\xb8QMYNS(\xfb\xed\x98'\xa9!\xe0\x17\xa4\x1d\xe1\x9831\xb8\xdd4\xe0\xbd\x02n\xf3\xc0\xd4(\xd8Ge\xb0\x08\xa7\"\xfb\xdc\x19]\x07+\xd0}f\x9e\xa52)n\xaf\x93<)\xd2\x10\xb3\x1c\xfa~\x86\xe0Qk\xa6\xfe\xed\x13\xbfr\xf6'`\xdd\xbd\xbaI\xaa\x06\xb7\x7f\xa8\x0e\xe2V\xc6Ov\xe8Iu\x905\xaf\xe8\xee\xa0=\xf6\xf0\xac\xe7t\x97WWA\xcd\xe2.h\x9dZ\x7f\x0d\xccn\x99\x1eB}\x91\xfd\xa6h\xaa\x9e\xabmH\x11\x92-\xc8;x\xc5rv\x97\xa06\x10\xd9\x0e\xacIvI\x93\xe0(\x0c\x10\xd0zlR\xb1\xe9AT?\xce1\xee\xbc\x1f\x92s/\xa8+\xcf\xeaF&\xa2\x1e\x93\xaa\xc9\xf8\xd5\xbcg\xc0@=\xcc\x1dR\xc5\xadP\xc2\xd0+\xbb\x88\xd1\x18@U\xf2k\xe0\xb5\x18\x0d\xdb\xee\xb9\xd9\xaan\xe4\xf86no\xe4\xf4\x0e.\xef\xe2\xf0\x03\xfd\x8ccft\xf8\xae\xe2d\x15'\xab8Y\xc5Ilq\xe2 \x18\xc7\xba\xba% Lg\xd5\xbfA\xb3_N\xd9]\x92\xb3B$7\xe15\x90\xa6\xcb\xc2>\xa7\xec\xd8\xc8\x00\xd0\xcc\x90\xa5\xdd\xe5\x83\xb5\x949\x8a\xe0T\xbb)\xf9\x8e0wV\x0c\xeaS\xd6\x08\x03\x8d\xf0\xda\xe6\x991\x0b\xbc\xbd]\x0f\xd7\xd5\xbe\"\xfd\xa9X\x96a(\x7f{\xb3\x1d\x81\xcb\x9aZ\xcb\xb71\x92m\xaa|\xe8\xd9#\xf3^\xab\x10\n\xd4\xd7*\x84\xbd\xf60U\x08\xc7~\x1b\xd4\x86\xe6\xb2\xd4\x0d>j\xe1\xcd\xf2\xda\xfc\xa4\xed\xe7\xaf'\xc7\xdc\xd3\x92'-\xf1S\xcb\x1d\xf9\x148mf\x16\x8a\x89h'\xebL?\x0b\xd1\x9a\x00\xa2\xa1e\xb8'X}\x13\x0fS1\x87\xa4\xaa;\xf5\x1c\xb7znU\xcc3\x83J\xde9\x86\xb8>n\xd6\xb9I\xda6y\x12\x1e\xc1rc\xdd:\xc3\xd4\xean\x16v\x9d\x9a\xa4M;gA\xd6\xa0U`\xb9\xea\x92\xcb\x92\x02\xbbS.EH\xc5R\x96\xdd\x99.\x19I\xe3\x98K\xc09Xp\xef\xf0ta4\x80\x88\xf0\xcb\x91\xe2\xdb\x8b\xcd\xa4\xaa\xbd&\x85\xd7j9A=\x9f\x88\x05\xc5\xa6\xdf!\xb3\x81\xba)E\xacJ\x9eK\xabI\x9d\x15\xb79\xeb[L\xba\xa1\x07\xc0\x10C '\xe1\x16B/\xca\xa3\xe0\xcb\xc4\x89\xfcYY\xedX\xc5v\xc2J\x83:\x14\xc7\x02s*\xa7\xa8A\x0e\xc8d;l}\xfc^mx\xcf\xeb\xa9\xe8\xf6\x14\x9a=\xe3\xca\x83;\xbf\xba\xb1\x83J\x05\xa7\x18\x97\xcd\xef \x87\x15\xe9\xb29\x05\xbbl~\x88\x86\x15\xf2\xb2\x85K\xc5\x19$\xe0\xf4WH\x1c|\xf9\xa3\xe2\x8a\x88\x81\xc3}w\xee\xb1\x916\xcd\xb1\x0b#P\x91u\x92\xff\xeeY.B\x9d\x92\x02\x92T\xe8\xdb\xd8\xd4\xcf\xb9\x80\xc7\xae\xb3\xe5\xa7B\x86J\x95Eo\x9bU!\x1eQT\xaaL\xb3\xa4\x0d#\x13k\xdc\x8f\xd5*o\xf8\x97\x18d\xe3V\x18\xe5\xd2\xa2\xc3\x82Dl\xc8\xe6\xd8Yi\xf9\x99\xf1\xa9{\x17_\xc9H\x0fm\xc8\x11\x1b\xd6E\xe3u\x01 b\xb1\xf9\xfe\x1d\xe4\xf6a\xab\xf9\xf6\xdd\xd5\x9b\x17\"W\\\x99\xaad\x12v&\x04\xe5y\xa15\xb6\xb6\xb8\x90\xa4\x16\x95\xc5*\x192\x06\xb6\xcd\x01\xe2\xf4\xfa\xcb)\xab$1\xdc\x96\xb7\xa5H\x15\xf51q\xe0\x12eh\xe0x\x8d\x1a7 \x1b\xefwg\xc3\x19c\xbd\xd0\xa8\xb1Z1\xda\xb6Z1~\x0d+\xc6t?\x9c\xba\x10U1\xc3`\xf4\x142\xd1\x9b\xa4\x8f\xcdT\xc2Z\x8e\xbf\xc0x\xe1\xaa\x1eK5\x12\x84\xaf\x18\xeb\xae\x15\xeb\xaa\x12k\x91o6\xe9\xd6Xj\xc2:\x84\x9b[F\xcd\xac\x00\xab\x83\xf61\x80\xae\xda\xaf\xa1\xab\xbe\xc6\xab\xf7\xda,\xad\xf4\x1a\xb7\xc6\xeb\x82\xea\xae\x91\xeb\xbaF\xad\xe8\x1a\xb3\x96k\x8c*\xaeA\xea\xb7F\xa9\xdc\xba\xb8fk\x9cj\xad\x81\xeb\xb4\xc6\xa8\xd0\x1a\xb86+\xb5*k\xb4z\xac\x91*\xb16\xf4\x1a\xac\x91\xaa\xaf.\xaa\xbbj\xac\xb8\xea\x10\xbb\x8e*\xab\x03\xa9\x1c\xa7\xbej\x83TVu)\x03\xf3\xaa\xa9j\xa68\x01g\xaf\xa3\x1a\xac\x82j\xb4\xda\xa9\xb1\xaa\xa6.\xaf\x97J(\xeei\xad\x91J\xac\x8ej*I\xe8[\x11\xd5\x04\x07)#\x16\xa0\xfe)}qh5O]\xab@\xacs\xea]\xe1\x14+\xb2\x16\xa4\xaa)\xa1\x9e\xa9\xab\x92\xa9\xbb\x86\xa9e\xd5\xfc\xea\x96\xd2*\x96\xe2\xb5J\x17W)%\xd7'\x9d[\x99\xd4X\xf5\x93V\x8d4h\x1dR#.\x08%F\xa8:\x1a\xa5\xdeh\x84J\xa3\xe1k\x8c:\xaa\x8b\xe2\x85\x11\xf1\x8a\xa2!k\x89\x06\xae\"\x1a\xa3~\xa8O\xe5Pb\xcdPe~\xa0U\x0bU\x9d uB\x0d%3MXPk9R\xaa\x82z\xd5\x03%W\x02E&\x14\xbe\xfag\x94\xba\x9f\xa1+~\x86\xae\xf5\xb9\x94&\x88\xf5=i\x95=\x87\x82\x07\xaf\xe6)/Cx\x1d\xcf\xc1\x9d#x\x05OK\xedN\xbcj\xe7\xd0\x89\x1b\xac^\xa7\xe5:\x88\xd7\xe8\xa4W\xe7$\xd6\xe5\xa4V\xe4$\xd4\xe2\xf4\xaa\xc2IN\xa9\xee\xa0\xf7v T\xcd\xcd.\xaa\x01w\xf1S\xf1\x19\xc3\xe9\x9c\x06s*l\xb6\xd0,\x81\xe2vl\xda\x7f\x0c\xbc\x17\xfd\xbf\x13\xebi6\xf3<\x0f\x96\xea\x99\x0e\x0b\xc8`\"\xc1*f\xdaje\xfa \x14\xbe>\xa6\xb92\xa6\xa5&\xa6\x0f\xca\xf3\xeb`R*`\xfa`\x12\xbc\xea\xa5\xa5\xde\xa5\x0f^3j\\\xba\xaa[Z\x86'\xd7' ^\xcbr,*-U,gW\xe1q\x85\xe1\x1af\xb8\xb8Z\xe5 \xe3\xd3U\xa7\xd2\\\xa1r\x80\xde\x92\xda\x943\xf9&\xa5\x12\xa5\x01\xc7\x805(}\xaaOZ&\n\xce\xe0+{\xadI\xc7\x19\x86\xf1Z\xc4\xa9/\xe9\xaa,\xe9\x8be\xb4j\x92\xbeu$\x89\x15$\xe7\xcc/V\xd5H\x8fz\x91\x8eJ\x91\x8eY\xb9\xd8\x18LXY\xb0\xba\x90\x84\x8a\x90T\xad4|\x15H<;\xd5\xe6\x1fZT\xf3\x11\xad\xf0\x18\xb1\xb6c\x94\xaa\x8e\xf1\xea9F\xab\xe4x\x1d\xad\x86c\xf8\xea\x8d\x84\xba\x8d*r\x0e\x0fUs\xa5\xfau\x04\xfc\xfe\xe2U;\xb2o`\x1c\x92\xfa07c\xa1\xd3\x9a~\xad\x84\x05[\xc0\xbe\x95\xb1\x1a\xee\xcc^\x81\xfa\xc6\x8c\x02B6\x01\x1d\xb9\xd0Y\x04\xbf\xa9\x92\"\xa4\xb4A\xa7\x8c\x04R\xea\xe0X_\x0d\x9c\x0d\x83\x92\x88\xe1N\xc5p(_v\xd5\xab\xb1$d\x10\x04\xa1\x9d\xdb\xeb67-\xc3\x00\xae\x19\x04T\x1a\xe2\x9d\x82\xa7f\xc4L\xce\x08\x90\x9e\x11;AcQ\x8aF\xf4$\x8d\xc8i\x1aq\x135\xe2\xa4j\x04J\xd6\x88\x94\xae\x11 a#V\xcaF\xf0\xa4\x8d8i\x1b\xc1\x137\xe8\xa9\x1b\x11\x937\xa2\xa5oHaFL\xe0\x88\x96\xc2\xb10\x89\xc3\x92\xc6A\x10\xd6\x8eT\x8e\x914\x8f\x93\xcc\xa1\xb6a\xf2\x9b[\x91\x08\x9c\xd2\xe1J\xea\x08\x98\xd6\x111\xb1#^jG\x88\xe4\x0eR\x06\x83#\xc1\x83\x9c\xe2a\x89\xfa\xf6N\xf3\xb0\xc1B\xc3_\x03${\xf8-\x16-\xe1\x83\xb2&\xc4\xa4\x8f\x19i\x1f\xa6P\xe1 \xa9\x1f\xa4\xe4\x0fw\xfa\x07%\x01\xc4\xb1\x8a~I \xd44\x10S\"H\x80T\x10\x8fd\x90\xf9\xe9 \xb6E#\xa6\x84\x04N\n\xb1b\x84Rj\x84\xd4\x90H\xc9!Q\xd2Cb$\x888SDLI\"\xa64\x91\xb0\x89\"\xc1SE\xe2$\x8b\xf8\xa5\x8b\x90\x13F\x87NT\xf1JUq%\xab\x10\xe7i\x0e\xfa2\xccuq\xca\x8ag\xd2\x8a-me\x1a\x936;qe\x11\xcf\xa5\xa4\xaf\x18q\x0d\x98\xc0\xe2\x97\xc2\xe2\x8c\xa7tM\x1b\x1c\x89,\x84\xf3\x0e\xe3u\x89\x93\xcc\xe2Ng\x99\x83k\xb4\x94\x16\xff\xa4\x16rZ\xcb\xdcy\xc6Jm\xf1Jnq\xa6\xb7\x10f\xe7f|0a~\xc1\x92\\Hi.>\x9ap\xf8T\x170$\xbb\xb8\xbcgK\x13^F\xe0\x90(\x89\x88 0\x91R`b&\xc1DL\x83\x89\x99\x08\x13#\x15\x86\x94\x0c\x03c\n\xee\xe2\x04{\xfe\xde<\x17\xa8\xffrb\x15\x07\xd6\xf5\xe9\xc0\xac\x11\xbc\x02\xf55\x82\xb7\xd7\xa2E\xf0\xa2)\\\xee\xe8\xdcqTn\xed\x99\xc4\xd5\x7f\xe7M\xaf=B\x97\x96\x87e\xf0hX\xc3\xbe\x19\x8c;^)HH~T\x97\xccTW\xe9\\tP S3\xe5\xe0\xd1Q\x15\x82\xaacr\x07T0yq\xbf\x1b\xa0\xf7\xc2\xff|,{@\x1cX\xf6\x1en\x1d`\xa8\xd1\x9e\xa2\x8ads5\x11\xe3\xaa\x9d\xf9Z\xa4\x1b.\xe1&\x1f\xfe\xcde4q\xcb\x99\xb2E\x9a\x0f\xf1\xc6\x1e\xfc\x05eg\x8a\x16]k\x0d\xfdF\xb2\xe1ed\xdb{\xc8td\xe3\xbc}l~\xf1x0x\xc8w\x8e\xb1\xac\xac\xc1`>O\xe4\x9b.\x03\xf3\x9f\xc3\x1f<~\xdf\xc2\x1b%_\x85}\xfa\x9e \xfd\xde\xf4_\x9e'\x8a@\x0b\xdf2\x90\x9d\x89WE\xe3R#\xfed\xe1L\x0e\x8c1n\x14\x8b\x0fY8\x10EF\x86\xe3:\x13~\x83s\x1a\nR\xa1\xb9\x0b\xc6W\xc2q\x94\x11\x0f\xa1\x9e\x9f\x99\x99\\}t\xb6\xac\x7f\x10\x0d@L\x80\xc0\xadL\x10n\x14\xce\xcaU!\x0f(\xe0J\x84C\x85 \xcc\x82T\xa1*\xe0\xa1\x05\xb7\xea`\xc1:\xd2\x01\x06\x93\xd2`V\x19\xa8H\x86>\xd0`Q\x16\xc2\x1d\xec\xc1\x90SE\x81\xc6q):\xc1\x80\x1f\x80\xe3=\x7f9\x0d\xf9\xee]\x0bM\xbf\x7f\xd7\xfe\xa1\xb3\xde,}\xeb\xee\x8b\x1e\xeb\x19\x1eY\xd5\xe7[\x02\x06`\xfaV\x01\xf4\xa5\xf7\xa0\x16\x01xx+\xa7\xfd\x96#\xdb\xca\x8eae\xc7\x83\xe6\x9c\xcd\xca\x8e\x7f\x97\xec\xd8\xdf\xban\xe3\xc1K\xef^#`\xa3\x17\xc8G\xbf\xc6\xb8\x87\xc96y\x82\x9cr\xd3\xa4Nt4\xabN\xfa(90\xb9h\x86\x9c\x1f\xed\x9e\x89\x14U\xf2\xbcfZ\xef\x87\x14;e\xb8{aw!\x9a\x89\xca\x04\x00\x0d\x95__\xd2;E\xb1\x95/.\xf0g.\xa96\xe9\x94\xad$\xa4g:-gW\x95t\xcaP+\xd6d\xd99\xb7\x86\xa4\xb5Jc\x00\x9c\x17\xd7\x8a\x1c@\x0b^%\xd2\xdb\x13I\xa9\x0c9\x00\xd0\x0b`ZZ\x0dR]:4\xb89\x85\x1f\xe9l\xfd7\xecn\x9c\xc7D\x1e\xd0\xb38\x83YD\xf4(\xfa\xb3\x06\xc3q\x9c\x89\xdb\x02\x16\x10\xeb\xf0\x93\x9c\x87m\xcc\x9a\xe7)\xb0\x15a\xa4\xacW\xd8\xc2\x8b\xf6\x92\x8b\xb6b\x8b\x06\xbd\xc2\xa4U4\x86\xd2\x8a\x16Ya\xbf0\xcc/\xa4\x08X\xb6\x8f\xad\x84b\xc8\xe2\x89q\xca&6K\n&\xc6+\x958\xb3Hb\xc4\xf2\x88\xd1\n#\xc6*\x89\x18\xba\x18\xe2\xe22\x88\xc1\x0b .*}\x18\xbe\xe8a\xc0r\x87\xa1\x0b\x1d\x06,qH)n\x18\xa5\xaca\x84\x82\x86\x0d\xad\x94a\x84\"\x86\xb3\xcb\x17\xa2\x85\x0b-\xa2\xd0\x92 1\x90\x92\xe1\xcb\x146\xa3\x02\x856\xa1\xbc\xac(\xa1,A8\x00\x88\x95#\x0cR\x880J \xc2\x18\xc5\x07\x97\x95\x1dt\xd4\xd03\x96\x1a$\x14\x19\xc4\xaa\x87\xf9\x14\x16\xc4\xbe\xff;>\xf7\x99e\x04i\x93w\x97\x0e\xb4\xcd\x94P.\xd0\xabP\xe0\xb8v\xd2\xe2\xe2\x80\x8e\xb2\x80\xb6\x82\x80\xf6R\x80\x86U\xa1\x97\xffs\x17\xfe\x9b\x96\xfc[T\xec\x8fT\xe6oN\x81?\xb4\x90\x9e\xbb\xa8_\xb0r~\xe8\xf8#J\n\\\xbc/x\xd9\xbe\xc0\x05\xfb\xc2\x96\xea\xb3\x14\xe9\x9b\xd6&\x9b\x16\xe6\x0bU\x92/`1\xbe\xd0e\xf8\xa8\x05\xf8\x08\xa5\xf7\xd4u\xda]tOut\x94\xdbC\xaa\xd1a\xa3R\xcb\xa6\xb9\x8a\xeb\x91\xcb\xea\x91\n\xea\x8d\x90\x0f[D/x\xf9\xbc\x90\x85\xf3B\x96\xcc[\xb2\xdf\x842y\xee\x02y\x1d\xf3\x9f\x16\xc5\x93J\xff\xb4\x1c\xde@\xcf\x0eZ\x08\xcfP\x02oZ\xfcn\x18\xdc\x10\xa4\xec\x9d\xe1\x8a3-uG+rG(oG)l\xe7(iG.f7-cg\x98\xef`eC\x94\xae\xeb\xbc\xde\xd3\xa2u\x14\x1c\xc6\xdfwFe\xdfBu-\xa4\xba\x8f]7\x94\x19\x83\xf6\x1f\x03\x8bv\xff\xef\x84\xb2t\x8d\x9fU\xdaP\x84\xcer\x13\x1f \x1d\xa4\xf0\x9c\xa9\xe4\x1c\x15\x89\xb0e\xe6\xf0\x02s\x86\xd2rT\x14\xe7\x95\x93s\x15\x92\xa3\x8e\x1e\xb4x\x9c\xa1l\x1c\x15\x17\xcfRq\xb6\"q\x86!I>\xd3\xa0%\xe1\xc6\"\xc8P\x0c\xce\\\x06\xce1\x13\xa7\x835P\xd1\xb7A \xae\xad\xdc\x1b^\xe8m\xec\xf3\x9dU\xe2\xcd\x93\x7f\xb9\n\xba\x19p\nT\xca\x8dZ\xc4\xcd0)p\xc4\x04\x9b\xca\x83Y\xce\x1a\x8c\xe7\x1c\xbeL\x9b\xad@\x9b\x0ffQ\x8a\xb2\xf9\x94c#\x14b\xf3\x9dO\x8c\xe2k\xc4\xb2k\x96\x82k\x96Y\xb8\xc2\xbe\x86l&Hy5Ga5\x8a\xb6\x16\xb6\x98\xda4\xb4\xd8d\xe3_Z:\x0d\x06\x9e\xd3He\xd2\x82\x17H\x8bS\x1a-JQ\xb48\xe5\xd0\xc2\x16Bs\x96@S\xf16\xa7\xe3m\x95\xecX\x1bo\xf3c\xb9;\xe5\xecg\xe9\xe8\xf4\x8c\xb9\xe1j8\xe1\x90\xa9\"V\xfd\xc0\x89\xe4x\x84\x83\x18\xb9\xedw7D\xc1\x02\xcfX\xe2K\x0d\xd4\x86\xd7h\x98\xc6Q\x07'\xb2\x1738X\x94\xd6\x8b\xc7\xcf\xa5\xfc\\9W\xeb\xe9P=\xd3\xfaeV\xa4\x02\x1b\xbe\xee\xcf\xea\xddG\xf8\xd7\xcd\xbf\xfd\xc1\xb6\x17\x17y\x12i\x0bl\xee\xc5K\xd6H&7\xb8Ui\xdcd0\x8e\xf8I[\xad\x84{VR\xf5\x00\x90\xfadd\xbe\x1a\xedA]\xde4\x9fD\\g\xc9\xf7#\x97\xde\"\xb1\xc4I\x0e\x8f\xca\xe2\x99\x02\xf3H\xf0\xfd\xa4\xd8\xd5\xb0;\x89\xe9\x0c\xc0rX\xc2(\x08\xdf\xb0\xdb\xac\xf8&/[+|\xcf\x8c\xad`\x89\xd0\x8b\xa38\x1d\x1b8\x17N\xf1$\xafK\xa9~\x0d\xc1r\xa5\xa5\x111l\xca\x1a\x94t(\xeb\xa9\xf0\xd3\xb9O\x8a\x1d'\x04\xb8\xcd\xeeX\xd1-\x97\x08\x03\xf9\x02[\x17\xf5I\xcb\xc7\xf5\xb2\xb6\x06\xa6\x9a5\x9a\xb7\xea!\xcf k\xf4\xba\x8fL\xcd2\x92\xa4\x0d\xca\xe9\xb0\xccj(O\xcd\xb3\xf2\xe6\xd9N\xea8\xac\x18\xac\xc5\x15\x97\xabe\x05\xdf\xeb\xb8\xce\xb1\xfd2I\xf7\x9c\xe1(\xb7B\x0bW\xa0\xc1>g\xbd\x9b[\xe8\x1b\xc7\x882_\xb3c\xc5R\xce\xfe^H\xac%\xe7U\x13\xa9e,\x89X\xba]\xdbs\xd3\xeb\x89\xeeB^\xdef\xe9p\xca\xed\x0eT\xecP\xdei\x1b\x1f\x9f\xfc\xe5\xeb\xff\xdc \xc6\xe2\xacV\xf6}\x15]!\x02\x1b\xce\xdax\x9a\xf6\xa44\xfb\xaa\xfc\xd4\xd3\xa8\xc2\xde6GU\x1a\xaf\xd0Ke\xb7\xef\x07\x15\xc4pd\x15\x07?N\xddz\xa7\\D;~\xbf\xbbR\xca\x18\x9f\\\xcdz;\x9e\x157%\x01\x7f\xbc\x8e\xa4\xf0\x0dwqE]8G{L\x8b\x9bR\xdd\x8c\xb2\"\xcdO;!g\x9f\xa5\xfb$\x1bU\xe09\xa5{\xa9\xb6\xdef\x8dT\x10U\x06O+\xec9s>\xe5;HNMyH\x9a,\x15aaz\xa4^iJ\xcd\xb6\xb629g[7#\xb5\xdd\xf3\xf2\xd8\xac!\x99\xa2\xad!\x99kH\xe6\x1a\x92\xd9okH\xe6\x1a\x92\xb9\x86d\xd2LGkH\xe6\x1a\x92\xb9\x86d\xae!\x99kH\xe6\x1a\x92\xd9\xb65$s\x0d\xc9\\C2\xd7\x90\xcc5$\xf37\x1e\x929\xd0\x9d/\xf2\xa4\xefD\xc9\n\xa9\xe3\xf3\x85I\xae\xcbS\x03 \x1c\xf3\xa4(:\xd3\xae\xd8Ta\xb8\xce:\x8b\x9b\xb2\xc8\x94iz\xaa\xac.-\xf1\xf8\xc9Ki\xee\xe7c\xcf,\xcd\x1a\xd6X;\xac\xa2p-\xdc\x15\x98\xb5\x96\xaf\x84\xf0pk\x7f\x05\xb6\xa2\xbd\xdb\x88i\xb2z$\xdb\xfb0\xbd\xcfZx\xef/^ut%e\x95{\xb1_\xc9\xfb\xf1\x82\xc5>\xf6\\_0\x9e\xaeX\x13\x1dm\"\x87j)\x85\xff\xb6 \xd2g\xec?\x83e\x86\xda`\xbe40\xfa\xd3 \x9eO\x0d\xe2\xf9\xd5 \x92o\x0db\xf9\xd7 \xa6\x8f\x0d<\xfdl\x80\xf8\xda\x80fG!\x85\xe0 \x94\x1c\xd4\xf7\x06v\xff\x1bx\xfa\xe0`\xa9\x1f\x0eP\xf6\x0e\xb4\x15u\xbe\x03\x80\xbc\x9e\xb6\xd07\x07d\xff\x1c >:\xb0\xcf\xcb\xfc(\xda2\x7f\xdd\x04\\H\xa7\x1dP\x1cw`\x96\x07\xe0\x08\x92l\x0cN<\xb0\xaf%\x10N\x16\x84v\xe8\x81\xc3\xa9\x07\x81\x1d{\x10\xcd\xb9\x07K\x1d|\x10\xd5\xc9\x07\xf3\x1d}\x10\xd7\xd9\x071\x1d~\x10\xd1\xe9\x07\x11\x1c\x7f\x10\xc2\xf9\x071\x1c\x80\xb0\xd4 \x08Q\x1c\x81\x10\xd6\x19\x08\x11\x1c\x82\x10\xd6)\x08D\xc7 \xc4r\x0eB\x1c\x07!\xd0\x9d\x84\x10\xc7Q\x08K\x9c\x85`r\x18\x82[\xecZ\x1c\x87\x10\xdfy\x08\x88\x03q2,\xa2\x0c,s$N\xc0 \xc7\"\xeaL\x84P\x0eE\x88\xe5T\x84H\x8eEX\xec\\\x04\xb7\x8f\x0dlNF\xa09\x1a\xc1\xe4\xe1\xf0t8\x82\x05\x0eb$^\xe8|\x04\xaf\xc5q;!\x81\xb0\n\x04g$\xf8:$\x01_\x9d\xe5\x8eIp;'\xc1\xe1\xa0\x04\xa7\x93\x12\xec\xabFwV\x02\xc9a \xa8\xd3\x12\x96:.\x81\xea\xbc\x84\x99\x0eL\xb0,\x13\xc1\x91 !\x9d\x99`\xc3\x05\xa1\xc4\xc0\x8eM\x88\xe1\xdc\x84\xf0\x0eN\x08\xee\xe4\x04\xbb\xa3\x13Pg'\xa0\x0eO\x08\xe8\xf4\x84\xb0\x8eO\x88\xe0\xfc\x04\x0f\x07(\xd0\x9c\xa0\xe0\xe3\x08\x05\xb23\x14\x0c\xdc\xdc\xe0$\x03\x0fG\x99\xcb1\n>\xceQ\xa0:H\x01\x9fPXG)\xc4p\x96B`\x87)\x04v\x9aB\x00\x9a 8O\x81\xe4@\x05\x93\x13u\xec\xf2C\\n\x14\x97_\xef\xb3\x16\xde,\x97\xdf E\xae\x9e\xe9\xf5\x93\xd9t[u}\x7f\xb0\x8780\xa7\x9f\xe3~I\xcba\x94\x0d\xc9dT@l#\x18\xb3\x1a\xd5\xb7\xbe\xb9\x8d\xb2\xd9\x1d\x13A\xf2\x1ce\xb3d;\"\x98\x8c6^\x98\xe2\xdaw\xe1\xd4\xd8\xd2\x8a\xa3\x93\x9e\xb3\xaaCb0\xb4\x86Ar\x94\xe3Tk=8C\x00\xcf\x87\x10\xbe\xe8\x1f\xa2\xf6\xect\x7f\xf5\xcf\x01\x15\xa3\xfc\xa4<\x1b\xaf\xf4\x8c/\x9b\xa4a3\x0fY\xe7&i\xcb\xce\x1bR\x9c\x8c\x91\x0d#\x9b\x8a\xa2\xc5G\xf8\xec\x1eQ6\xc2>C\x9f\x0d\xc1!\xe1\x1b\xc3\xff\x9d]\xa7\x9b\x9eS\xab\xdedE\xc3*\xe1\xb2\xda&iZ\x9e\x8a\x86s\xf7\xa2\xa9\xca\xfcK\x10_\xeag\xa0\xd5P\x15\xcb\x93{\x8e):\xa4iM\xba\xbd\x18Z\xd4\xa6\xc3\xf0\x158\x7fu\xf9\xd5\xbf\x8eF\x10\xd5\x99Zx\x83\xf5Pk\xa1\xd6m\x10<\xcd\xf7\x81@*\xb3\x04g\xcd\x8a\xddl\xc19\xa2\x97>,\x94\x9f$y\x0eiU\xd6\xb5\x92\x14bM@\xcfax\xddSa\x81\xe3\x88\xca\xc1\xa1\x04\xfd\xbeY\xa8\x19\x8c\xc0-\x9e\x840oY\xa7\xe0\xaf\xb3\x9f\x7f\xf3\xaa\x1d\x0d\xd7\xd1\xdf\xbe\xbbz\xf3\x02\xaeJ8V\xec\x8e\x15M\xf7\x8e\xa1\xc4UV6f\xe2)?\x05\xa8b\xbb31\xc0\x80&\xaf\xf4\xa4\xde\xa8\xf5h\x87\x133\xabNL; \n\xfd1\\'\xc5G%\xdf\x1e\xd7p\xc9\x8a\x9d\xfa\xf8\x8b\x1ek\xd2P4\x7f\x1c\x1c\x9e\xa6\x84\x9b$\xafM\xd2\xbdO\xf2\x82\xaf\x8ac\xf9}R\xefg\n\xf4}R{sJ\xfe\x0d<\xc9\n\xd8\xb3\xcf\xea\xf6\xfc\xb4\xb3\xe2\xf7'#\xd8E\xef4\xbb\x14,|J\x14\xf1\xd2~$\x0c}\x1a\x1eY\xd2t\x03\x0b\x167s1\xc5\xe4\xb7M_`\x19\xbe6A\x00Dx\x81\x87v\x80\x04_,\x10d\x13X\x9aA\xe3%3H\x02\x0d\x8cB\x0d<\xe69S\xb8M\xe0Lj1-\x16r\x03x\x8aA\xa0\x82\xdf.\xec\x1c\x96\xa5)\xa9\x92\x0f\x89\xf8\xaa\x85f4\x8b\xfb\x1c\x97\xb9\xb7\x89\xdeyYry\xf42\x8bc\xa7\xcba\xb4v\x9d\xb0\xb0g\xccq\xca|\xce\x99\xed\xa4\xf9\xccy\xc1is\xad\xde\x92\x137\xe6\x1d\xad\x92\x89\xad\x1c\xf1\xd4\xc1\x18\xe3>\x8dB\xc5\x9aSUH5\xa8\x8f\\m\x16u\x9c8nU7\xcb\xbdYw\x19\xdd\x9d\xdb?\xab\xe0\x00}\xba\x17\xdc\x9e\x0b\xf6\xb9\xd9\x8e\xdec\x05;9X\xa2\x0e\xf1\x1ah\xd0\x1bG3&\xfe\x9f*\x046\xa9\x95u\xe3\"\xb9e\xef\xd9/'V7\x1b\xf9\xfb\x04\xcc/\x9c\xd5\x08\x00\x1c _\x12\x06\x07~Ce\"\xecT\xc4\xa4\x0eyB\xd9$>e\xc9\xac.)s\xda\x88\xacS\x9a\xe9\x82\xa5mA\xd56\x1c\xb9\x17'{3\xf9\xba?qa\xa4\xd9\n0\xd3\xe3\xfe)\xa9\xb9vy&\x1cT*\xaa\xba\x16ee\xe5s\x1e\"\xa8\xf5SV\xa3\xc5>'\xee\xd4\xb2(\x98\x8c7\x9c'6:\xe9\xb6@n\xfc\xfe\x0dP\xa6{#Xn^\xe0d\x85\x81\xef\x90`\xbeG\xc2\xf4. \xf6\xfb$,\x9c\xd9\xec\xbb\xe5\xf4\xdc\xe9\xc9\xe2\xf7K\xb0\xde1\xc3\xdb\xae\xd2\xb2b\x1b%\xdf9\x85\xbf\x92\xff\xe9I\xd5SW\xa5r\x84\xab<`\xf1\xbb&_\xadM\xb0b7!\xe1 \x87\xc3^\xc7\xb9\xbczy\xf5f\xfb\xd3\xdb\xf3\xb7\xe7W\xe7/\x7f8\xff\x7f\xdf\xbc\xb6\xbc\x92#{\xf3\xbe\xe8\x0fW\xef\xff\xeb\xdd\xc5\x9b\xb7\xe8o\xc6\x1f^\xfd\xf0\xee\x12\x7f&\x87\x8e\x9b\x8d\xe4\x84w\xb4\xe5\x02\xd9\x0d$\xed\xaae\"8\xbb,:\x05\xaa\xb5\xc2\x8bU\xaeG\xc13\x12\xd53\xe0\x08\x9d\x81\x9a\xed\x19\xf0\xff\xe5\xd4;\xc0t\x1c/\xe0\\\xea\x17\xf0ZE.J\x7f.\xfa5\xff\xf6\x05\xbclg\xb0Oj\xf8\xeb\xa9\x16TQ\x89\xd2\xe0{\x06\xe5\x91\x89\x8c\x89}R\xec\xea}\xf2q\x1c\xa3?\xda\xae1\xbc$\xfdX\x94\x9fr\xb6\xbbU\xf0Z8P7\xec\xa8\xd3\x82\x84\xa8b\xd51\xa9\x9a{\x8c\x83\x0cv~<\x86~\x15c4\xc0\x06\xde\x1dY\xa1{\x8aT\x9f\x11WJvBs\xe0\xdcQhw\xfa]\xffc\x92~d\xcd8\xbbbHcc$D\xf6m\x9a\x97\xb5JJN\x93\x02\x8a\x12\xf2\xb2\xb8eU\xdf\xf1\"F++=\xd8`\x8c\xc9\xc0e\xb5c\xfc\xe0!G\xb8\xff\xdeV\x8f\x06\xc5\x17L\x8cp*\xd4?\xe6\x9d\xe6w\xef_\xbfy\xbf}\xfb\xee\xed\x1b\xcb!\x96\x9d~z+\xfe\xdf\xf0\xeb\xf4\xb7\xf6T:\xc7\xb0\x1dF\x13\x8a/\xe0o\xac*\x9fI\xa5F<\x07\xa2\x96G\xaf\xe6x_G\x93x\xa1\xf7A\x17\x92\xdf\xb1<\xbb\x13\xab\x9a\x15\"\xd2\\\x00:S\xf1x\x87\xe4\x1ev\x99H,i\xb3\xaeE\x07\x18\x95\xddm\x13\x97\xef\xe1\x13\xab\x18\xa7\x84fBc\x83%\xeb0Q5\xfb\x15\x1a\xecs\x926\xe2\xd1\x8a\xdeh\x18\xf8\x16z\xff\x80a\xf2`t\xfe\x8cr\x80\xac\xca\xf0\xfb\xe963\xc8z\xb7\x1dF\xa4\xc1\x18\x99\x83\x9ak\xf9I]\xead\x06\x968Xx\x92\xaf\x16\xa4_ \x7f\xf4\xc3R/X\xb7Ff4{\xab\xaf\xf5\xe3\xed\xbe<.1ILp\xc2/\x12\xdag\xd7\x0d\xdc\xb7\x11\x9c I%iX\xe5<\x89\xf5\xd4\xc46\xa0\x1c\x10\xb9\x83C\x01$\xd2\xf9\xf4\x12\x88p\xd6\xa6J\xeeX\xdev\xa2?G\xa0\xf0/\x8f\xc9/\xa7\x8e\x91\xa9\xef\xf5\x11\xcbjHn+&*(\xf0\xab\xac\xa8\xbe1\xe4\xf6\n\xa4\x89_(\xf5\xa9\x15\xdd\xc7\xec\xc8\xf2\xac`:\x16\x9e\x1f\xa7ge\x91j\xe6\xaf\x0f\xdb=\\\xb3\xe6\x13\xeb\xe9\x8b:\x0b\xafwK\x11j\x7f\xcd\xe9\xa0f\xfcV\xd0\xa8\x125\x82\x08j= !\x0eUZ\xb8\xd0\x13\x98\x10\x13Gq\x95\xeb?\x98\xc1%\x84t\xde\xab\xb3/hl\xdc_ \x90^G\x8b\xf2\x88\x9c~\xa2\x06\x89\x9cc\x8a)?\xe0\xf9\x9d\x9c]\xfc\xdc\xda\xe9\xcb\xe7\xbc\xaaO\xfa\x8b\xd6s\x87\xf7!\xf5A\x18\x17\xff\\\x1f\xbc\xdd\xaa\xc3\xaf:|\xdb\x9cK\xbd\xea\xf0\xab\x0e\xbf\xea\xf0\xab\x0e\xdfB_u\xf8U\x87\xffG\xd0\xe1}\x94N5\xb4 \xb5nu\xbaM[\xa0*N\xc0\x99\x82K&\n\x1e\xa2-\xca$\xd3.\xa1T ,d\x8c\xec\xd0\x02\xebF\x95iz\x16\xad\xfe\x1d\xdf\xfd\xa129\x98\xd3P 8\x85\x81Y\x10\xe0B\x80&\x00L\xcc?\x00\xe3\x7f\x10\xa6\xef`\xf8\x91\x98\xbd\"E\xb1\xc3FUU\x8d)5\xcd\xfe\xde`\xc4r!\xf0\xba\xec\xdf%\x88\xf7\x0f\xfaa\x1c\xec\xb5Ftt4g^\xe3P\xd0\xb2\xdc\x1b\n\xbcf\xbf\x9cX\x81\x85K\x19\xd3\xb4&~\xda\x91\x03P\x98\x054\xdcn\xa4]\xd2$\x1e\xa3\x8c\\\xdd\x831\xda\x84`\x0es\x94:\\\xb7\x184\xed\xa3\x94\xe6\xd3\xd5\xdb\xed\x81\xcfR\x94\x7f\xc9R\xe9\x8b*X\xca\xeaZ\x95\xa4\xaaXSe\xecN\xc6\x1e\xd6M\xd9\x7flT\x8d,k\x0e\x1e82g\xfdK\x81\xfe\x8b\xd6\xbe\x8fM?n\xf2U\"2c\xb2Z{\xc2D<\x07?\xd9\x1c\x80\x96\x01\xba\xcc\xda\x00'\x91rp\xacD\x0cd\xdf\x1f'o\xbc2\x19\xbb\xc5i\x82\x92(\xc8\x95h\x94\xcclTz\xb0\xe5\xbf_\x89Z\x88K\xf2\x05[b\xb4\xbc\x88\xa6\xe4\x8c\xf8\xb9\x9dL]\xa6Y\xd2>\xad\xda\xbb\x11Lh\x8b\xac\xbf)\x04f\xe9F\x129D\xa4\xf6\x00\xaf%#\xd7\x92\x91k\xc9\xc8\xb5d$\xac%#\xd7\x92\x91k\xc9\xc8\xb5dd\xbf\x0d\xa4\xf2Z2\xb2^KF\xae%#e[KF\xb6m-\x19)\xdaZ2r-\x19\xb9\x96\x8c\x9c\xfeu-\x19 k\xc9\xc8\xb5d\xe4Z2\xf2aJF\xea\x86\x18h{=l7\x8c\x9e+\xb0\xb3$\xf7\xdd\x81}\x9b\xaf\xe2\"=\xa61\x80%\xfb\x0e\x97o\xec\x1d\xec\x84\xd9\xb1*\xcb\x9b\xf9~\x085\xe5\x03\xab>\xe6L\x02\xe3\xcc\x90}\xce\xea\x86\x15\xbd\xbc^\xf1\xd3\x16y\xddO\x02@\x1f\xe5\x13\xd0>%u\xebdX\x10\x93P\xb1\xbb\xac\xce\xcab+\x13\xe3<,\xdb\x94|<)+\xe4\x08\xdd\xc3e\xda\x18^\xf7L\x0fe\x81\xa35\xfba,\x17Zje9\xd1(\xe9,\xdfw\xd3#\x13)\xf4-\x1f\x8e\xab\x06\x1c\xc2{\xf5m\xfb\xd0\x1adEZ \xfb\x01\xe71\x0d\xb0\x84s\x0f5\xf2>\x1b\xa5\xc6~d\xec\x98\x8d\x9f\xc1\xd30\xdf\xca\xc4Eq\xc7M\x0e\xac5\x83B]\x1eX\xaf$f\x92\xdf\x96U\xd6\xec\x0f\xb2DU\xba/\xcbZ\xf7\x99\xde\x1a\xda\xe4\xdd^\x1a\xdbL \xde\x19/\xcf\xcc\xd8\xec\xb5\xd8#\xe3\xf0\xc6\xd8<1v/\x8caU\xe8\xde\x17\xb7\xe7e\xeauY\xe4q!y[\xe6xZP\xcf\x86\xdb\xc3\x12\xcc\xbb\x82\x8e?\xa2\xa4\xc0\x1e\x95\xe0\xde\x94\xc0\x9e\x94\xb0^\x14\x8b\x07ejX\x9ezNByM\x02zLB{K\xa8\x9e\x12\x82\x97\x84\xec!\xa1yG\x10G\x026*\xd5\xfa\xed\xf2\x88\x90\xbd!$O\xc8\x08\xf9\xb0\x1e\x90\xe0\xde\x8f\x90\x9e\x8f\x90^\x8f%\xfbM\xf0v\xb8=\x1d}\xe6?y\x0f\x89\x1e\x85\x8e\x06\x95\x1b.\x0dCG\xca\xf9k|\x80!\x12\xed\xe7\xabG\xa3\x07m\x91\xeb`\xf5h\xac\x1e\x8d\xd5\xa3\x11\xc8\xa31\xd7\x87!\xbf\xc6\xf2\x80T6\x1b\xc6\x1b+Y\xca\xb3\x9f\xf8;\x9f\xd1\xe0\xe9:\xde\xc5D\xc0~\xfa\xa7e\x08\x80R\xed\xc2\xf8\xc5\xa4\xb8\x088\n\x8c\x80\xad\xc8\x08\xd8\n\x8d\xc0\xbcb#@\xf0\x12\x05,:\x02\x0b\x0b\x8f\x00e;\xac\xc5G\xfe?\xf6\xdeu\xb9\x8d#\xd9\x13\xff>O\x91\x7f\xfe7\xceHg(\x88w\x89\xda\xd5\xc6\xf2:\xa6e\xc94I\xc9g<\xe1\x80\n@\x01h\x11\xe8\x86\xfaB\x12:;\x11\xfb\x1c\xfbe_q\x1fa\xa3*\xfb\xdeu\xeb\x1b-Y\x9511\xb6\x89\xee\xac\xea\xbade\xfd~\x95Y\xd0u\x02\x12x\xbc$$\xd0O\"\x12h\x90\x8c\x04\x1e'! \x88\x92\x92\x80$1 @\xcb\xe4$\xd0\xcc:h\x93\x88\x14\x1f\x14'+\x01e\xc2\x120\x8eY\xcf\x9eVO\xea\x0eb\xd8\xcb\xaaz\x8deO\xc4 \x89 \xf4\x17\xdb\x8e\"Kf\x02P'\xa1 \xc8WA\xd0\x04\x9cJ\x92\x9b\x80z\xfcB\xcfIN@\x96\xe8\x04\x94\xc9N@_\xebFIO@\x9d\xf8\x04\xd2b\xbb\xb9\x90L\x9c\x08\x05\xda&C\xa9h\x0b\xf8\xf9\x06\xc1!\x04mR\x14\x90\xdfP\xac\xff\xae\xee\x12\xa4\xa8mSw\xc9\x0eA\x98\xf0\x10zHz\x08\xad\x13\x1f\x82\xc5\x0c\x8a\xdaZm\xce-f`1\x83o\x023\x90u\xb3h\xcf\x0e\x069\xf9\x13\xe3)\xba\xee+\xfd\xc31\x0d8O\xcf^;\xc9V\xd4M~\x84\xc4\x1d/\xa2 ?\xee\x8ds>a\x9c\xe2&\xe1\xfeYj\x17\xfeR\xb4)E\x03a\x96\xb4\xa4\xe9\x95\x17\xc9f\xa6j/\x8dS\x99\xd5\xba!I\x88?4E 4\xfe\x8ex\x9fa\xb0\xf1U\xbc#D\"\xf4X\x84\x06\x8d\xd0\xe0\x11\x8d\x11 \xfd\xf6\xa5sT\xa2=.a\xd0AZd\xa2\x07l\xe2Q\xd1\x89\xde\xf0\x89f\x08\xc5\xa3a\x14\x12\x94B\x8eSt\x80T4\xb6\"F\xf8\x01\x18!\x16:\xcc\xa2.ja2\xf1;D.\x1e\x19\xbb0F/z\xc6/\xd4\x08F]\x0cC\x89b\xa8q\x0c%\x92\xa1E\x05\xfaG3\x14x\x86\x0e\xd10\xa8}cTC\x8bk\xa8\x90\x0d)\xb6\xa1\xa9\xb1\x1c\xdf\xe8\x1a\xe1P`\x1c\x86(\x87\x14\xe70\xfb\xc6.\xb1\x0eP\x0dr\x93\xca\xc8\xd2\xc3\xa2\xa8\x06\xa1\x89\xf6t\xc9\x11\x17\xa0\xb6\xc6m\x92\xc7\x8a\xbf\xa3\xdc\xe3\x92\x8c\xb2(\x85\xca\xa57\xfd\x87\x1e3\x8c\xa93\x919\xe3\x8e\xf6\xfa\xc9\xa4\xc5\xb3\x1b&\x93\xcdV\xfe\xa1zh\x87\xbdY\xb2\xf8\x93 X\xf2\xed\xdc, \xe5aX\xea\x19,8\xb7\x81\xf7\ng\xc1\x1c\x17fW\x97'\xd9\x9e>>\xa0\x150\xb7\xd0\xa7\x95ui\xec\xf9\xf8(\x87\x1a\x13\x82=9\xd5\xc5p\xaa\xc7 \xb3s\\R\xfc\x11G \x87c\xe3\x87\x9aO>\x0b5Z\xa8\xd1B\x8d\\\n\xdd,D\xe0j\x00\x8c\x85+o\xb5\xd7\x7f\x96\xae\xd9\xb5\xc8_\x83={]\xfc\xcc\"\x7f\x16\xf9\xb3\xc8\x9fE\xfe\xf2b\x91?\x912\x8b\xfc\xe5\xc4\"\x7f\xa9X\xe4/\xfd\xd1\"\x7f\x16\xf9+\xea\xf8\x1a\x91\xbf\xcc\x8b(\x05#\x90\xdc\xe8\xb4\x10\xa0\x85\x00-\x04h!\xc0\xa2\xb6\xc6\xc3\xd4B\x80\x16\x02\xfcf \xc0\xea\xca\xa1A\xe6\xeaG(VT\x19G(\xbe\xa3\x0f\xe1u|A\xdd\x15\xee\xb5\x1b\x02\x84|\x19L\xee\xba\x1b\xc6\xfb\xf6*Z(=W]\x99Xq\xbb\xf1\xd50\xd1\x9bB\x10hV\xd2\xa7\xed!\xee\x9c\xb6V\xf6\xcb\x9aUkV\xbfe\xb3\x9a\x19\xb32\xbd\x82.\x9b\xce\x96*\x0c\xa2\xb1Q\xc5\xab4\x8f\x8awK64\xab\xa5\x1b*[\xdb\xb88|G\x159\x8e\x1b\xbf\xa2\xcdk]\xae\xb5\xad\xd6\xb6Z\xdb\xfam\xd9\xd6rh\x8c\xd2\xae\x15.\x0d\x8e\xc75\xee(\xd3=\xf6\xd4\xcb<\xb6\\r\xcc\xd8$\xe1\xb4&\x8b\xc0\xeb2\x1e\x86\xffV\xcfR7\xa5\xc8\xcb\xf7\x1bWmf?Ty3\xb4\xb30\x95\x13\xf0Pz\xf36Jc\xf0SX\x98\xe2.n\x14\xd1\x8d\xdc(\xca\xc2\x94v\xaf\xcca\xc8\xee\xe8\x8e\x9f-\xdd\xd4\x8dbT\xba\xf0\x8e\xc3B\xd9\xf5\xef\xee\x16(\xa9 v\xed\xee\xf1.\xf7@\xf1Vo\x94U\x9b\xbb\xbdQz\xb8\xe1\x1b\xa5\xf9=\xdf`\xc1i\x0bN[p\xda\x82\xd3m\x87\xa9\xf5\xf4\xad\xa7\xff\xady\xfae\x14E\xe0\x17\x87\x82\x13\xabf\x90\x8a\xd8\xc9\xae\x89\xa6\x9c\xa4\xabyC\xef\xc9>\xa6)r\x92\xdbJZ\xd0$\x15\x0b\x9a\xa0X\xd0\x04\xc5\x82&\x164)\x88\x89sbA\x13\x0b\x9aX\xd0\xa4M\xb5\xacko]\xfb\x1a\xa0\x89\xc0\x1bn\x06\x98\xe4\x14\xd5\xc4J\xaep\x89n\xe8\x8c\xc7G\xec\x04\x97\xb5\x8c\x92\xcd\x12\x9cT\xdc\x18W5?afg\x935\x05g\x887\x06\x1bl:\xba^\x08d<\xa6\xab\x90N\x9e\x0e\xfeR}\xed\xc2\x85\x15k\x1cgL7!\xa4d\x19@\x14D|\xea\xae|\xca\xe6$3\xae\x8e\x1bz\xfc\xe3F\x8eK\xfc5\x90\xc5\x82\x7fg\x90\xae9\xeb\xaaj\xfa\xb0\xa2\xe3\x10\x9c\x90\x19\xa1(\xa0I\x16\xba\xe4\xc8\x877\x85#w\x9d\xda\xe3M>\xc3\xdf_\xfd\x14\xc4\xe0&{\xa5\x10/\x97H0\x9e\xd3%\x85\x8f\xf30\\}\xdc\xc4\x7f\x06\x1f\xf9\x81\x0f\xd7\x8b\x7f\xdd\xe4\xbd\xcfL\x8b\xc7G5\xff\"f\xbe\xa3\x15\x94\xadP\xaa\x97\xfaw|\xa5 !,\xc9*\xc0\xae\xe45\n\xbd\x94?\xe7.el\xeaI\x10\xfb\x8e\xcce\xac\xe8\xfbw\xb8\x98f5b\xdd\xb1\xf2\xbd;gB'i\xa5\xb9\xc9\x0c\x82hI'\x82\x9c\xa1\xff\x0eG.\xfcpss \x7f?\xbbI\x1c\xb2\xf7W?\xe1\x18];t1\x01\x02\xff,\x0f\xa7\x9b\xf5\x8a\xfe\xfe\xcf\xdf+\xea 9\xd7\xe0&\xfd\x88\xeb:o\xb9\x95\xefM\xa21\x05\xe2\x02\xf5}\xafrP\x8b\xd7f\xb5Z8c\x12\x7f\xbbO\xd98\xf0\xee\xd1\x91\x1a\x931\x9b[\x9ew\x1b\xad\xd2#\x03#\xc2\xdc,\xac\xb8\xa0:\xef\xaf~\xe2e\xcf\xc9\x1d\xef\xeaen\xccMp\xd0\x91\xa4\xaa\xec\xdf\xef<\x87\xb9s\xd5\x94u\x10\x17\xcc\xa7\x8fO\xa7\x9eO7\x93\x17\xf9\xba\x12:#g\xe1\x84kp)\x9d$\xab\"\x9f\xe2\xfe\x9d s&\xb3\x1d\xe9\xb2\xcc\x86>\x1b\xeb\x03x\xf2>\xa0I\xba7\xf6\xd5\xfc\x98\x15Y\xe23K\xe2\x92\x99\xe8+\xcb\xeb\xfc\xe0i\xb5\xa7\xdfy!w\xa3\x9c\x00\xa6\x91;\xc6\x11\xcb\xea\x1b\xcf\xe1\xcc\x8f\xcb\x9dv\xc1\xf1\xe0\xf1\xe39\xa2#-\xc9\x80\x00\x9f2\x0bI\x91Ip\xc2D)\xf7\x81\xf9\xb2\x9a\x8e\xf3\x11\x9d9.\xdfQ0?N`\xfc\xd6+:\xc0\xf1FVN0\x18{K\x91U\xb9\xe6#>\x88\xb3(\x86s\xe2\x96g+<\x89\x97s\xba\\\x85\xebx\x8a<\x85%_\xeaG\x82\xc9\xc9+\xcb\x0f\xae;l_\xc1\x8c7\x1e\xd4Jn\xef\x84\x80.\x89\x1b:\xe3R\x92U>\xe6k,\x85\x8a3X\x85U\xf2-\x9b\x83#\n\x84\x95\xe0Lr\xabZe\x11\x8bW\x062\xf2\xeehR_I\xbeVi\x02\xbb\xd2\xa2\xfc\xf1\xc8]\x7fL\xd6\xc0\x80\xcdZ\xe2\x8f\x9c\xd0g#^Q\x93\xc4\x88\xf1<\x8b\x05\x85\x98\x04\xaf\xd8\xee\xcc\xd4pk\x885\x19U\xd7\xf6|Y\xc9R]\x1a\x0f\x97\xc9(\\8#^\xbd\xd8\x08\x06\x10D+~\x185\xf4\xf8v\xeby\xe4\xb2\x7f\xb0E\x01;-H\x86xu\xc5c\xbe_\x883:\x99/\x01?\xf0\x97e\x12\xe4\x87!\xf9!&\xc4G\xd2[>\x98~l\xea\xa2\xce\xb3\x07\xc2F\x16l\xbf\xe2\x07,\xf9d\x89\xabD\xd2\x86s\\8\xf9\xdb\xdf\x04\xb6\xfa\xdc\xf3`\xeay\xf0\x1a\x06\x83A\xf5\x9c\x14+\x94\xb8\xeb\xea\x0f\xc4]\x0fXq\xe7\xbe\xb7|2\xf5\xbc\xa7\xd5G\x06\x83\xaa1v\xa6\xf0\x84\xbd\xfa\x9eW\xf0\xc6{\xf2o\xec\xdd\xa7\xc2\x03]\xa2\xf7\xff%\xfe\xf6\x1d\xcd\xb7\xffH\xeeH\xe3\x8f\x87\xd7|\xc1gZ\x1b|\xa9\x13<9\xf7\xbc\xc1xA\x82@\xf2\xa1X\x05\xf60\xd6=\xf7B\xb5\xacR\x0b\xa4M\xb0\xabi\x82\xcbu8\xf7\\A#`\xe9\xe7\x9e\xf7d0\x18<\x15u46\xc0\x13\xe1o|\x10\xf0f1m\x15\xf6\xd2\x056\xca\xe9\xd9\xf5\xc9\xd5\xc5\xe5\xcd\xcfWO\xcb\x96\x0eb\xf58P\xc4\x05`\x11\xe2\xe6\xd8\xd34\xc7\xdf\xbdjK\xf0\xa6x\xf5\x1a\xfem5\x1a\x9c{\xde\x7f\x0e\x06\x83\x7fU\x1f\"\xeez\x93\xf9\x1a\xec\xc9\x15\xae\xb0o\x89\x1f\xcc\xc9\x825\x92\xb8\xa2\xa2\xa6(\x97&(\xca\x99\x96\nz\xef.\xb3\xa2xE\xf8\x80\xe4O\xfd\x7f\xaf\xc1u\x16\xe2\xa3\x91\xc2\xf2K#\x89y\xf0\xbc\x9d\x12\xbb\x93x}0Zgkrb\x0dy\x8e\xda\xd1:\x81=\xd9:WT\xf7W\xc1\x9a\xfb\x9cm@\x06\xfc\x07\xe6\x7f\xfc5\xd9\xc2'\x0byzd\x00{\xac\xa805\x87\xeeb\x9d8\xd9\x95\x1dM\xea\xdb\x00\x99\x861|\xc27N\x7f}\xfe\xd7\xa2\xba\xd8F'E\xa3\x1bO\xe3\xd1\xb31\xf5\xbc\xc1\x88\xf8\xbc\xd2\x0f\xcf\xd7\x83/\x1b\xf8\xc5\xe8\xbcV\xfdp^\xe4\x06{\x8e\x99\xe7\xc2O?^\xff\xfc\xae\xf8\x97\xd7\xaf_\xbf\xae\xb6={.\xdb\xc0\xa1\x93\xc0\xa3J\xe2E\x13\x9d\xe0(\xa0 \x02?\x8b\x16\xc4/\xea\xa9\xbe\xce\x1e\x9d\xd0l\xb9\xdb\xcc\xce\xf2\xc6\xb3a3^CK\xdb\xbe\xdc\x92\xc4\xc3\xec\xe0\xe3\xff`\x9f\xfd1\xde\xe5\xa4Kx\xbe\x11\x07\xc9\xf4\x13\xdcD\xc0:\x94\xcd\xbd\xcc\xeb\x9f:\x0bZ\xb5o\xc9\x1c\xbd\xa4~\xe0\xb9\xc2\xe1\x1co\xa7\xa7\x8e\x1f\x84C\xde\xf2\x923\xbe\xf1\x83l\x00$\xcf\x95\xcf\xf7\n,*\x80\xb0\xd4\x0d\xfe\xfd\x1b\xaf`C4\xb2\x8b\x9f5\xc0\xdaol\x8a\xf4\xf0z\xbf#K\xa6\xeb\xbfa\x15\xff\xbb\xf0AV\xef\xd2s\xba\xca_Lc\xef\xb4\xd8\xc7\xd8CN\x00\xf7t\xb1xv\xebz\xf7.\x9fks\x0cG\x88\x82\xd0[\n\x06jq8m\x96\x02Ap\x8c\xa1!\xc8\x15\xc9\x06\x8e;\x03\x82\xc3\xa6\xa8\xf0#\x1f\xc4\xc9\x18\x9a{\x8bI|\x06)\xab\x01\x87\x0d\xe2\xb1\x07\xf1\xf6=\x1ezE]\\}:\xe2\xe0 \x9b\xbf\xc9\xe7V\xf6\x96 T\xf1\xfb?\x7f\x7f*\x18\x9cm\xfa\xbbX\x80\xb8\xcb\xf9g3U\xdb\x83\x9d\xed\x9d`C\xd0\x8d\xd9\xbf\x17\xf1\xb6 G\xb3\xc8\x0e\xee\x0b\x11\xc1|\xd6\xea\x9c\xaad\xb6\xe7'8\xfe\x9e\xaa+\xa7\xa7\x96\xb2 ' \n\xcd\x0b\xfc\xd5 \xe7\x8d\xf8\x05)\xe9\x9f\xa1\xdcXuK\xfc7\xac\x96!\xc9\x01\x96\xf87 @\xa0'\x12\x04z\"B@D\x86@\xd6\x8a\x16\xb8\xb7\xc0\xbd\x05\xee-po\x81{\x0b\xdc[\xe0>\x11\x0b\xdc\x17\x9e\xb7\xc0\xbd\x05\xee-p_\x12\x0b\xdc[\xe0\xde\x02\xf7\x16\xb8\xb7\xc0\xbd\x05\xee\xf3\x0fZ\xe0\xfe\xbb\x06\xee\x8b\xa8u\xfc\x80\xcc\xb9\x96a\xe8y\xf8\xbe\x04\x83W\x11\xfcT\xdb\xbc\x84\xfd\xa9\xf1\xfbK\xe2\x93,\xccO\x80\xfa \x13\xf0\xe3\x1e|\x18\x9fR\xae\xe2\x86\xcdc \x0bmT*\xa7\x10\xb3\x9e\x84\x14&x@\x81\xe0\xc0\x15W\xd4\xec\xf8\xbd\x05M\x01\xe5\x8a.\x8eO`\x81\xd0+\xaaZ\xb1GiH}y,\x05\xde\n\xc6\xff\x13\x157\x0c\xcb\\\x15z\xa1R\xe9U\xb5\xd2Y\xe5\x92\x95b\xe9M\xa2Ea3'(\\V\x01P\xf7*H{\x16\xe4\xd7\xee*6\xbc}\xf7r9\x05\x82\xa8\x8b\xea\xc4\xb1\xe5\xdf\x87\xab\xcb\x93lv\xa1gc2@\xf8\xe4n8>\xec\xf1z\x8b\xd2[\x94\xde\xa2\xf4\x99\x02\x8b\xd2[\x94\xde\xa2\xf4`Qz\x8b\xd2\x17\x94Z\x94\xde\xa2\xf4\xe5\x07-JoQz\x8b\xd2[\x94\xde\xa2\xf4\\,J\x9f>hQ\xfa\xef\x1a\xa5\xcf\x83\x89\xaaK\xa6\x04 /lz\xe5\x9c\xb6V\x07\xd3\xedyy{^\xfe\x9b8/o\xc00\x140~%\xc1P \x16\x8ay\xd4D\xfc\x02\x1c\xd3\x80o\x8ds\xf3\x83\xb7\xf5&\x87m\x0c\xee\xa1\xcaT*-\x851\x93\xd1\x94\xea\xcaS\x19m\x98\xc3Z\x97P s\x1d\xa1(L\x85A\xde#\x14\x19=\x13+\x91\xd5\x17\x94u\x06\x05a\x93\xfd*\xad:\x18\x907(M)\x1c\x89\xba\"\xf8#\xd8\x03r\xe9\x92\xceA\xe9\x87\xd4A\x11m\x84\x8c\xa9\x1d\x94\xfe\x08\x1e\x94\x864\x0fJ\x8fd\x0fJo\x94\x0fJ_\xc4O\xac\xbdc\xfa\x07\xa55 \x94\xa8\xe9\x98\nBiE\x08\xa1tO\x0b\xa1tH\x0e\xa1tM\x11\xa1tH\x14\xa1\x98\xd0E(\xbd\x90F(=PG(\x82-\xa0\xdc^\xf5@#\xa14&\x93P\x84\x94\x12\x8av\xb1V\xd0K(=\x93L(a\x89j\x12\x14-t$\xda\xd1N\x02\x85\x9c\x88\x12\x92O(\x9dPP(\xbd\x10Q(}\xd0Q(\xedH)\x14\x0d;\x83\"%\xa8P\x0ch*\x14!B\xce\xa5\x0ee\x85\"\xd7%\x80\x1a[\x93X(u\x1aKOh\xa1\xe8\xdb\xc4\x80\xdcB\xa9Eq\xa1\x08\xdb\xaa=\xdd\x85\xa2!\xbdPT\xd4W\xfa\x84\x82\x00CQ\xb6\xa29\x19\x86\xa2\xa7\xc4P\xaa\xc4\x18J+z\x0c\xc5\x88$CiB\x95\xa1\xc8\x1b\xcd\x806C\xe9\x8c9\x08\x1aW=\xb1\x9a\x17\xc7'\xb1m\xd6\xb4Y!f\xb3a\xab\xd9\xfck\xd01\x15\xd8\x0f \xd8\x8a\xfe\xeb\x8f\xf8kH\xf9\xf5H\xf6\xf5F\xf3\xf5E\xf0uM\xed\xb5&\xf5:\xa7\xf3Z\x11y\xddSx\x1d\x92w]\xd3v\x1d\x12v&T]/$]\x0f\xf4\x9c`\xdbf#\xbb\xba\"\xddB\x1b\xd9eJ\xa8\xf5A\xa5\xb5#\xd1\xcc\x82\x9bld\x97\x8d\xec\xb2\x91](M\xe8*\x1b\xd9\xd5\x9e\x84\xea\x98~\xea\x96x\xb2\x91]:R\xc9\x94N2 \x92\x8c)$3\xf2\xc8Fv\xd9\xc8\xae\x16\xfdm@\xfa\xe8\xe9\x1e}\xfe5apW\xe5P?\xc4\xe1G\x18\xe7S\xbah\xc4\xc6{\xe5\xb45\xa69B\x1b\xefe\xe3\xbd\xbe\x95x\xaf*5\xa7@\xfekQ\x15\x05\x0dY-\xae.ObO\x8d\xff\xc9\x8czh\xca\xd8\x94\xb8\x87G\x0b\xc5\x12O`\xf3\xfb\x9e\xe2\xa7\x9b\xc7Ti,\x1c\x8a\xc2\xa0\xa0(\xcd\nJ[\x9b\x87\xa2\xb1|qQ\xddV\xb7\x86-D\xd1qI-\xec\xa2@\x17\xb7\x94b\xeb\x88\xd2\x8f\x8dD\xe9\xc1R\xa2\xf4e/Q\xfa\xb2\x9a(\x82\xbb\xa5P\x14\x0c'J\x8b\x89\x1c\xda\xe0H\x03F\x14\xa5\x1f^\x14%l\xc3\x8e\xa2\xf4\xc7\x91\xa24dJQz\xe4KQzcMQ\xfa\xe2Nc\xed\x1d3\xa8(\xady\xd4DM\xc7l*J+N\x15\xa5{f\x15\xa5C~\x15\xa5k\x96\x15\xa5C\xae\x15\xc5\x84qE\xe9\x85wE\xe9\x81}E\x11\xa0(68\xb2 =\xf3\xb4(\xa1\x0d\x8e\xec\x86\xcbE\xe9\x83\xd1Ei\xc7\xeb\xa2\xd4\x89\xf7\xb3\xc1\x915\x1aK\xcf \xa3\xe8\xdb\xc4\x80\x1fF\xa9\xc5\x12\xa3\xd8\xe0H\x81\xe8Ye\x14\x1b\x1c\xd9\x1d\xff\x8cb\x83#\x8d\xd9i\x94n9j\x14\x1b\x1c\xd9\x8e\xc7F1e\xb3Q\x0c8m\x14cf\xbb\xf0\xb8\x0d\x8e\x14\xfc\xd0-\x13\x8e\xd29\x1f\x8e\xd2%+\x8e\xd2%7\x8e\xd2~\x94\x18\xf0\xe4\xb1B-[\x8e\"\x0f\x8e\xf4D7\x97\xa1\xa87:\xcdo1+)\xcaY\x9d\xf2]f(\x95\xd0Hq\xdd\x03!\xed/\xca\xe5jC#mh\xa4\x0d\x8d\xfc\xc3B#\xab\xe3X\xc5s7g\xda\x03S\x86\xfd\xfdj\xe6\x93I!\xd0\xbb!\xcb\x1e\xc5\x9a\x86\xf6\x06\xb7NY\xad~\xf8\xacVLV\x7f\x1cVC\xf6\xaaG\xde\xaa7\xc6\xaa/\xae\xaak\x96\xaa5?\xd593\xd5\x8a\x93\xea\x9e\x8d\xea\x90\x87\xea\x9a\x81\xea\x90{2a\x9dz\xe1\x9bz`\x9a\x04;\x10\x1b\xe7\xd7\x15\x7f\x14\xda8?Sn\xa8\x0fV\xa8\x1d\x1fd\x16\xeaf\xe3\xfcl\x9c\x9f\x8d\xf3Ci\xc2\xbc\xd88\xbf\xf6|J\xc7LJ\xb7\x1c\x8a\x8d\xf3\xd3\xf1#\xa6\xcc\x88\x01'b\xcc\x86\x98\xf1 6\xce\xcf\xc6\xf9\xb5\xe8o\x03\xfeB\xcf\\tz\x83\x9b\x0c\xa7\xd5\xe1\x7fu\xd0G\x81\x9a\x1c\x02\xa9\xce/\x96\xbe\xdbE\x9e\xb1\x0c\x85\xb4 \xc7,\x10i\x81H\x0bD\xe6\x15X \xd2\x02\x91\x16\x88\x04\x0bDZ \xb2\xa0\xd4\x02\x91\x16\x88,?h\x81H\x0bDZ \xd2\x02\x91\x16\x88\xe4b\x81\xc8\xf4A\x0bD~\xcf@\xe4\x89A\xc2\xb1\x96Xd\xeb\xb4CbM\nD\xd2[.\x9dp\x19\xa3\x92oy\xea\xb2K\x9fN\x9d\x87\x9a\xf0\xe3-]\x0fW\x85\x17A\xbe=\x12l\x8d\xaa\x07\x81\xf3\x95aM\x90\xe4U#\xe1\x1c\xb0$\x04\x0cB<\xfb\x9c\xf3;n\x10\x1c\nB?\x1a\xb3\xde\xb9\xa5k~=>\x7f\xf4\x92p\xdb:I\xdeK\xe7\x0bY\xad\xa8;y\xc2~\x1f\xbc\xa1k\xf6\xcf\xcdLg\xf9W^\x81M^\xf0`\xf0\xf4i\xb9U]\x97\xf2\xcd\x04k\xd5\x93\xf4\xbf\xce\xdcI\xcdf\x15^j/i\xd5\xc2\x10\x8bQ\xf3\xea\x18u\x02\xc8U/}=F#\x1e-ET6Ad\xf9b$\x91\xe2\xf1@A\xbc8\xa9\xb6\xfc\xda\xfe)%a\xe4\x8b\x92\xcb\x88\xbf\x0eE\xf0\x8d\xf9\x97\xd4UK\xeemJ\x8aN\x91\xa3\x05\xcd\x0cE\xba{\x97U]\x8d\xa4\x7f\x88\xbf;\x89\xbb`*\xe3\xb6`\xb6>F\n\xa38\x0c\xc0\xa53/d\xa3\x80?wq|R\xd2vG}\x87\xad\xedU\xa49\xc6Y\xe3\xe1\x02s\xe2N\x829\xb95\x86\x17.\x8eO\xd2>\x8a\xfd\x14\xe2\xb2\xd9\xc6w\xddq\xf5&4\xa4\xfe\xd2q)Pw\xec\xb1\xc5\x8a\xed\xc1\xcb\x03\x89\xe3\x0f\x01\xb3\x1d\xc5J\x8e\xe7\xc4u\xe9\x82o\xdb\x99OC\xc3 \xd6\xceZB:\xe0+\xe4Hq\xfa\xe4.\x8eI1\x8a\\CP\xb7\x18\x9c\"\x1e\x16\xd4\x8d\x96\xc5Q\xf4\x0c\xaeo\x8en\xce\x86\xef\xdf]\xbc\xbb\xb8\xb98\xfa\xe9\xe2\xb7\xb3\xd3\xe1\xfbw\xd7\x97g'\x17\xe7\x17g\xa7\xc2\xa7\xd9\xb3\xc2\x1fn\xae\xfe\xf1\xf3\xe5\xd9;\xe1o\xa5\x1f\xe2}\xc1+\xe3\n\xf0\xb0 \xea\xaf\x88\x1f\xae\xe5\xed\x94{\x08o#379\xb5\xf9(\xa11\x84v\x84T\x89n\x8a\xcd\xa6\x970\x0c\xba\xaf\xab\xe8#\x98F\xad\xea\xd1\x88[ \xff\xf7~?\xac0v\xe5\x1fX\xfd\xa0Rw\nrQ`\xe28\xd9\x07V\xbd\x02\xa8\x8e\xa2\xc4\x0b\xc9\xb2\xa7\xf2e?\x9dx\xe5j\x96w\xcf\xd2\x15H\x9d`L\xec\xb5$\xa24\xf6&Q[\x82ni\xee\xd5$\xd2\x87w\x93\x88\x89\x97\x03\xbc\xf7\x16d=\\Q\xdf\xf1L<\x13i\x08\x98j\x10\xf32\x00\xcb\x88\xb9\xb4(\x08yp\x1b\x8c85#\x886LV\x97\x98\x91(~!\xae\x0e\xcf\xd8j7\x8d\xe9'x\xf7\xf3\xcd\xd9\xabbY\x0bo\xe6\x8cY\xdfp`#e \x10w \xbce i@\x93\x91\x92\x052G\xbf\xe0\x05\xe6\xe2%y\xbd\xa7\xd1\"\x1e\xbclf\x92\xd8\xd6\xc43\n\x07\x04q9 \x92\xea\x0b\xe8\x8a\xf8|qrs\xab1~N\xc8c\xc9xs\xf1o\x18Q\xd8\x81$\xa2\xadP\x11\xce8\xd1 $\xa3\x85\x13d\xd6\x8c\xe4\xed\xc5\x88\x86\xf7\x94\xba\x10\xde{X\xb1\xa0\xb2\x89(\xba\xbb\xd5u\xa3oo\xb74tZ\x1au \x05m\x02\x83.\xb2uRC\xde\xc1\x07\x18\x1a\xef\xdc\x87\x14\xd4\x89\x0c\xb7\xdchW\x0db\x87\xc6\xba\xe6\x92/7\xd0\n\xe3\xac\xce\xcf]j\xeav\x06\xb9/clf\x88\x0b\xfd\x92\x9fw\x85}A\xad\x01/\xf2q%\x13=wYn\xfa\xf7\x9a\x13\xbe\xfeD\xc9\xd5/\xdb8\x0d\xda[\x10\xbb_F\xb1\xfb\xe5\xde\xf7\xcbb;\xf4\xb5\xed\x94\xd37\xedF\xd9n\x94\xdb\xfbT\x15}v\xa3l7\xcav\xa3\xdch\xa3\\\xd8\xad\x1aZ\x11\xd9\xb6T\xe4\xc4\x15\xb3\xf9$\x7f\xc4A\x9d\x91\xd0\x82\xa5\"w\xcfN.\x7f\x8f\xc4}\xcc\xdd\x08\x9e\x15\xdd\xe2\xa6\x8b\xc48\xb0\x11\xd2\xc6-S\xfb\x89\xc1\xc2\x19\xf3u\x8e\x1f].\xda\x0b^r\xd5\x0e\x14\xee\x1a\x07\xfc\x80\xaf\xff\x9e\xa1\xf4\xd8[\xa5\x9e\xc6\xcb\x90\xbdgH\x7f\xb7\x86juj|\x9f\x86\xbdg\xc8\xf0\xde\x8c\xben\xcc\x90\xdd3TI\x7f$3\x7fu8\xff\x8a\x12y\n$\x81\x01N\xff\xd4>\x11Rj\xfe\x15\xa9\x90\x0cc\xba\xe2\xadJs\xdb\xd3\xc4\x05.VN\xb2\xcf\x94}\x194w\xaeB\xc5%'\x1a\xd7J\xe7\xdcB\xd71W\xa0\x89\xbb\x82\x8ec\xaf\xa0\xb7\xf8+\x80\x961X\xd0k\x1c\x164\x8f\xc5\x82~\xe3\xb1\xa0\xcf\x98,\xe81.\x0bz\x88\xcd\x82.\xe2\xb3\xa0\x8f\x18-h\x1b\xa7\x05\xbd\xc4jA\xb7\xf1Z\xd0C\xcc\x16t\x1b\xb7\x05\x86\xb1[\xd0W\xfc\x16\xf4\x13\xc3\x05\xf1\xf2d\x10\xc7\x05\xfd\xc4rA\x9bx.P]W\xd2\x1c\xd1\x80\xf2\xaa\xdc}|\x17$\x0d\xff\x17E\xb1\x02g\xa0]\xacWE\x9d\xfa\x82\x92Nb\xbe\xa0\xaf\xb8/\xe8)\xf6\x0bZ\xc7\x7f\x81>\x0c\nt\x97\x92\x18\xc4\x82\x81\xe2\xbe\x81:1a\xa0\xd0#8\xc7\xdf2>\x0cj5\x8e>N\x0c\x0cZ\xc1 ^\x0c\xea\xc6\x8c\x81$+{\xeb\xd81\xd0\xc7\x8f\x81\xc1\xb5#\xfaKG\x14\xadf\x1eO\x06F1e \xbdl\xa4Ul\x19\x98\xc6\x97A\xc3\x183P]\xe9\xa1\x8f5\x83.\xe3\xcd@U\x17\xc1H\xec8\xf6\x0c\xfa\x88?\x83\xeec\xd0\xa0\xf384\xd0_)\"\xbeMA|\x9dHWqi\xd0ml\x1a\xf4\x10\x9f\x065b\xd4\xc0,N\x0d\xea\xc4\xaa\x81q\xbc\x1a\xc8\xaf\x0f\x91\xd5\xc24\x96I\x17\xbb\x06u\xe2\xd7\xc04\x86\x0d\xc4\x1f\xd4m,\x1b\xf4\x11\xcf\x06\x1d\xc7\xb4A\xc7qm\xd0\xc1\x980\x88o\x03\xa3\x187\x10\\\x12\"\x00hsO(C=2&1\x97\x0b+G%\xe61\xdf\xd8\x8a\xe4\x8cFA\x17>[l>1\xb9\x08\xdf\n\x9f\xe6\xd3\xd0w\xe8\x9d\xe5\xd3rbZ-\xcb\xa7Y>\xcd\x8cOS\xb1Y\xb585\x91\xa2\x86\xbcZ\x17\xd9\xfdlR?\xe8\x98X\xea\x87T\x12m?\x8c \xa5\xfe\xc8\xa4\x86DR\x8f$Ro\x04R_\xe4Q\xd7\xc4Qk\xd2\xa8s\xc2\xa8\x15Y\xd4=Q\xd4!I\xd45A\xd4!9dB\x0c\xf5B\n\xf5@\x08 \xb6-6\xa9_W\xa4Oh\x93\xfa\x99\x92;}\x10;\xedH\x1d\xb3\xbcv6\xa9\x9fM\xeag\x93\xfa\xa14!\\lR\xbf\xf6\xa4J\xc7\x84J\xb7d\x8aM\xea\xa7#ML \x13\x03\xb2\xc4\x98(1#IlR?\x9b\xd4\xafE\x7f\x1b\x90\x1ez\xc2Ct\xbb\x88AR\xbf\xf2a\xf4:A\xe6E>\xe5\xe2T\\\x80'\xbe\x90\xdd\x12\x1b9m\xad\x18\x04KlXb\xe3OBl\xb4\xce\x11*\xd3\xd5\x8c\xdehNh\x94R\x86@\xc1('1\x95\xb5\x92\xacJ\xca\x97\xd5\x01\x1a\xc6 \xb5J\x1c\x02\x92\xe4!Y\x99\xa2\x14\x1b\x92\x04\x1b\x92\x8fEQ\x85\x1c\xa9\x13\x8a\x80\xfa\xfb\xe3\x07\xea%\x16\x01er\x11P~=\x8a4\xc9\x08\xd4\xa8n7\xc9F\xc0\x80\x15k\x95tD\xa0-N\x10\"I<\x02`\x96|\x04\x0cj\xdeU*\x12P\xa7#\x81\xba)I\x8a\xdf!\x8c\xc0k\x93\x9b\x04\xd4\xc3\xa8\x9a\xa3\x04j\xe7)\x01U\xae\x12\xd0\xe4+\x01y\xce\x12h\x92\xb7\x04\x14\xb9K\xa0\xdb\xfc%\xa0\xb6U*K%5\xd0\xa0\x9f\xf5\xba\x81\x0e\xad\xf2\x9a\x08\xd5\xc5!\xff\x92\xdc&\xa0\xc8o\x02\xba\x1c'\xd0\xcf\x077\xcdw\x02f9O@\x9b\xf7\x04\xa4\xb9O\xa0\xfb\xfc'\xa0[5u\xeb\xa6.\x17\n\xe8{ \xf4\x11D\xf2\xbc(\xd0In\x14\xe89?\n\xd4\xc8\x91\x02\x8a<)\xd0b\x9f\xa5\x9b\x0cm\x13\x8cV\x14\nW\xb8~\x92\x8eB5\xf1(h>\xb9e\x02\xd2\x82\xae$\x19i\xe1\x8f\xc5\x8c\xa4\x85\x9fZ\xa6%-\x96\x9d7Y\xb2\xdc\xa4`\xd1\x93\xa2\xb6\xfa\xd3\xc7\xa2'\x16=\xf9\xd6\xd0\x13Y7K0\x0b%jRAKRmW\x97'Y=\xe2kU\xe0\x98\x06\xfc\xdcB\xd5\xa7\xda\xe4\xa7j\xdc\xf1\"\x9ap\x83\x8b\x93?Y[\xe3\xb6a\x0bo\xa6Ti)\x0c\xb2jU\x13\xca4\x86g\xda\xa4\xd2\xaa\x99\xe1T\x86oH\x1c\xa9\x92g\x986\xb9(/,\x8ab/Q\xa3\xa4\x06\x80\x8f\x1c\xf2Q\xc3\x1e\x9a\xbc\xaa\x8d]X\x1d\xf8c\xe4\xc26\x00\x80t\x10\x90\x1e\x04\xd2\xc0@u*\xde\x1d\x14\xa4\xf75\xa1s8\xc8\x04\x102\x87\x84\xd4;\x8e.\x01!-$T\x13\x14*\xbd/D\x85\xda\xe3B\x9aq%\xc6\x86\x9a\xa0C\x1a|H\x8f\x10)1\xa2\x86(\x91\x1a'\xea\x1c)j\x85k+\xf1\"\x03\xf3`2\x93;G\x8dLp#5rd\x80\x1d\xf5\xf6\xf1m\x10$c\x0c\xc9\x04ER\xe1H\xbd I\xda\x85X7Z\xc1\x08O2\xe89\xd0cJ:T\xa9+\\\xa9\x7fd\xa9\x1e\xb6\xa4F\x974m\xab\xdc\x8b\x96\xc6T\x93\xbc\xbc\x025\x95\xeei\x9c\xa3\xb7\xa4'\xb7h\x96~\x91\xc7\xd6\x96\xea\x96\xf8LA\xe8\xf9t\x92\xdf&\xa4\x13\xa78WVd\xe6\xb8\x1c\xf5\x12@#\xd9\x8f\xe9\x16,\xffP=\x18\xc4\xa5\x0f\xe1\xf0\x96V\x96'\x03\xa0A\x9e\x98\xfa\x7fV\xa7JRN\xb2yd\xff\x1a\x87\x8c\x90 \xf6\x85.\xc9\x8c^!K=\xc0\xdf+j>\xb3\x8d\x1aW\xc0\x14\xb2\xa6`\x1b\xe2 \x04\xcaC68\xa4Rx)\xf4BR'j\xcf\x04E\x11X\x02^\x0c\xff6\xfe/\x88)\xb1\xceM\xc2vr1&\xd3\xca\xdb\xf9\x0f\xe7&t\xc8\xd5T\xa71\xdb\xd1\x064d{\xe3 \x89<\n r\x138\x90\xe3\x8b\xf7N \x8d>/\xf5\x0c\x16\x9c\xdb\xd6{\x85\xe3r\x8e\x0b\xb3\xab\xcb\x93l\xa7\x1f\x9fa\x0b\xe0\x9e\x83\x92e\x1f{\xec\xf9\xf8(?e\x97\x1c8H\x0e\xbe\xcdI\x80~z\xfesK\xdf\x98<{\xed-\xb3\x8aIB\xff}\xba\xa2\xdcR\x1c\x13?mgyZ\x8a\xc2\xb7\xf2\x81S=q\x99\x1du\x93\x02\x938\x02G\x0bo|\x1b?\xd4|\xf2Y\x0c\xd2b\x90\x16\x83\xe4b\x88A\x9a\xa5z\xae\x80\x90A\xaaO\x84B\xf2\xff\x96 \x83\xd7\xf9\x9d\xb1`\xe4\x17\xf7\xb0\xe6;W\xe1~U\xb6K\x15\xecMk\xeeHe\xcd[L7\xe2L\x8b\x8e\x11\x1f!<\xea7vS02\x97\xe3.\xec\xc5 w\\\x99\x95\xbf q\xcd7\x81\xfd?x>\x14*\x96\xb7\xf6\xda\xa6z\x05\xa7q\xfc\xc6u1\x9fJ\xbe\xe9^\xc1Qy'\xc5\x96\x99OQ\xc0\x81\n\x9f\xb3ps\n\xde\x8ar\xb8H\x04\xe5\x94Z]\xa2\x92\x8co]\xef~A'\xb3Xe\xaa\n\x82\x90\xaeD\x1b\xb8\xb4\x88\xf2N(\xdf\x9f\x92\xe2\xc6\xder\xb5\xa0a\xb9,\xe5X\x8d\xa1\xb2\xe2h\xd5\x82\xd6bTSb\xe4\x8d\xd1K\x11bY\x13\x07\x97\x15\xde\x16\x81\x94\xcd\x85\x16Hc\x1eU\xcc\x1a6\xb7aP#\x8a\x01\x1d\xfb\x94\xb9~\xcbU\x14\xd2\xc1\xdd\xf6\x88\x86d{p4\n\xbcE\x14\xd2\x9b\x87K/p\xc2\xfa]\xcb\xbd\x14\x11\xc7*n\xdfd\xf5./\xdeq\xbb\x1f3m\xd9\xea\xca> \xdd\xa0\xf8\xe3B\x9f\x8cC\xee\xa2\xb2\xe5\x00\x17\xdd\xac\x01\x1e\x86\x8e;\xa1u\xee\xb9\xaf8\x11q=n\x1e.\x98&\x1e\xe7\xcfV\"\x8f\xafD\xc9\xcc\xcb;\x15X\xbd'd\x1cFd\x01\xa1O\xdc\x80T\xe1O^/\x1e4?\xe3\x13\xcf\xe5\xb9\x03\x92\xddp\\h\xb5/\n\xb7\xa6\x86\x1e\x04\x9e\x1f\xa6\xcd\x10\xa8\xfa\xf5\xc4\x9b\xd0\x0bw\xea5f\x99&\xd4,\x8cB\xd2\x92\xbc{<\x93\xe9.\xdc\xeaMHH\x86s\x12\xcc\x9b*\xc0\x8c'\xda\xb7G\x91\xb3\x98h\xac\x92\xb4\x85\xb1\x1bX+\x7fc\xad\xbb #\xba0x9\x1e\x97\xec\xdd\x00\xc8d\xe9\xb8\xf0\x1av\xe1\x9fOf\xde\xcc\xe3d\xc1`L\x82\x90\xbd\xfd\x14^\x17\x06\xfc\xc6\xcc \xe7\xd1\x88\xc7\n\x8d\xbd`\xe9\x05\xf1?\x9e\x05\x93\xdb\xe7!\x8f\xe6<\x1a\x8f\x8f&\x13\x9f\x06\xc1\xc6\xef\xff\xb5\xf8mt\"\xd8\x16\x956\x96.z\xc7s\xef\x1e!\x1c\xc7\x8d7N\xf1>m\x13\x97\xe8(@\x9f\x8d\xcd\x9d\xf2n\xe2 &p\xb8\x9fS\x17\"\xee\\~\n\xd8\"Kf\xb0\xf1l\x03\xc8\xd2q=\xf0\xe94\x9d\x7fI\x1c!8a)Z\xb8\xe6\xb6Lf6\xc1l\xf3\xa3\xd8\xfb\xb42\xa1 1\xa3`V-\xd5\x9e\xack\x93\n\xa6f5?Q\x11\x1ec5\xf8\xf5\xe8\xfam\xd6\x1c\x8e\x1b\x84$9:d0\xe1\x7fu\xc2y\xcf\xea\xd9d\x1d\xd3\x0d\x89\xe6G\xe3\xe21\xd1\x06\x11\xa8u2N2\x824VEiS$\xe3\xc8P\xa5(\xfb\x95l45W)\x1eSJ}\x92qe\xbe\xddJ@\xda\xd4\xe84\x1c$-\xfd\xaf\xd4j&F\xd1)\xda\xc8\xec\xcc\x12\xafh\xfa\x9e\xf5\xdb\x8a?Y\xbf\xcd\xfam\xd6ok\xe5\xb7I-\xa2!oUu\xdfJi\x06L,qp\xdc\xce\x8bC-\x8f\xbbj\x0b\x96\x00\x94\xa6\xeb\xa1\xcc\xb8\xa3(\xe6\xa9\xee\x10\x9a\xd4\xbf\x00]m\xc1d\x0eH}\x0d\xa8\xa3^r\xa8M\xb8$\xa0hU\xb7\\\x1eP\xda-\x12(\x92\xa5\x02Ewh\xaf\xe1\xb2!\xd1\xd6\xf1\xea\x81\xa2\x1c\x9b\xa0\x1d\x9f`\xb0\x9e\xa0h\xbb\x1c\x0c\xd6\x16\x94.W\x98X\xa3b\x9d\x89\x9f\xa8S}\xe9|C\xe9y\xe5A\xd1\xaf?(\xcdW!\xe9\xfb-1\x04\x94\x9aH\xc2\xf5\x92\xf8a\xa2\xaeM:\xff\x96{Z\x87\xf5]\xf8P\xac\xdc\x05\xfb#\xe7\xe7\x8f\xc6\xbc{\xcf}o\x19\xb7P\xc3j:\xa9\xca!A\x9dC\xb3\x8dM\xdew0\xa9\x97\xdc\x91H\xcbA\x87\xa2\xa2,\x19\x02W\x97'\xf9\x16\xf2\xe9\xcc BL\x16\x976\xd3\x9b\xecp\xa8a\x03\x94\x8e\x93\xd6\xec&a%\xf8w\x9c\xb9c\x7f\xbd\n\xe9\xe4\x9a\xd2I\xc3\xce\xa1\x89\x8ea@i\x1d\x96/\xad&go'\xa9\x8fU\xb3|C2\x1eW\xa1\xc7r\xba\x98+\xf3L\x0e\x95\xe0\xe9\xc4\xf2;\x0d\xb0\x10\x89\xdb\xa1x\xc3\xdc\x1d\xbc\xf0\xce\x1e\xc6\xf3\xcbhtK\xd7\x0d\xc7F\xcb\xbe1\x06\n\x9c\\U\xcb_V)\xf1''\xc8\x8c\xa7\xe3\xce\x16u\xbfJ\xd0\xb9\xc2n5\xe5\xad\xcd\x08j\x13\x8b\x87\x9f\xc66(\x7f@o\xf53\x93\x1ea\x125\xc3\x0c{\x85\x05\x93\x8el4>;\x1c\x9a\xe6'S:<\x82\xc2>\xfc\x87\\\x99\x86\x9f\xddr\xf8\x96*\xd0\xf4\xa0\x8bQc\x994\xff5\xf3Kq2\x7f\xaeY\x91\x11 \xe8\xd0\xcf^\x93\xbc*{\x9d\xc9\xd4\xf7*\x91\xa4\x8a\x91\x1d\xa7\xd2~\x05\xb8\xe7\xdc\x9e\x1d\x92\xb9\x7f\xf00\x9f\x87\xfb\xfe\xf2\xf3\x1du\x0fv^\xba\xb7\x8b\x87E\xf4e}\xf7\xf2\xcb\xe1\xa7\xcf\x9f\xc6\xcbqII\xe1\x18\xe15u'\xd4\xcf\x90f\x1f\xde\xd05\xfb\xb0\xf8^'/\xbd;\x01\x88t\x97\xb0\xa4\xcb\nDa\xf2\x15\xd7\xd4\x0d\xe1\xce!p\xc2?\x07>xk2\xa3>\xfc\xdf\xff\xf3\xbf\xffW\xe1\x1dtJkA\xd4i!\xa8\xfb\xd9\x0f\xd1\xa8\xf0D\xe2\xe1\xd6\x8e`H\x15ol\x15S\x0e\x07\xf4sD\xdd\x1a\xb4X^\xd7vQ\xd7\x8cT,\xb4\x91\x9a\x9d-&\x15]C2\xf9\x14\x05<\xfe\xb1\x91\xda\xed\xc1NQ\xe7\x94V\x97\x10\xf1\xf2\x04\xbd\xa4\xb3\x9cP\xb7:qP\x14\x1f\x84\x92~V\x10\x92[\x11\xc8D\x96ld\xb4\xd5\xbe\xb1_\x1e\x1f\xce2Z\x08\xc2\xd5Q\xe5\xc8\xf3\x16\x94\x94w\xdf\xa9\xb6)Y\x04\x15\x12.?\x91\xcf\x82\xd0Y\xb2i:\xe3\x17Q\xf9\xc5\xe9\nO\xc6\xc4u\xbd0=\xf7\x89\x11\x1b\x9f\xe2\xfbR\xf0\x86\x1f(I2\xf3\x87\x9e\xbbXg\xbb\xfc{\x12,\x87\x1cE\xd3\x1a\xe0\xdc\x07\x1c\xdd}\xd9\xda\xfb0\x0f\xdf\xfc8\x7fytr\xf2\xe1\xcb\xe2\xe2%\xb9\xf1\x82\xbf\xaf\xb7\x9c\xdb\xf3\xffxs\xf1\xe1\x87_v?\xbdy\xeb{\xc1\x0f\xfc\xfd\x0b\x8e\x0c\xf0\x93\xca\x89\x1biM\xb45\xd1\xb5\x14[\x13-\xd2dM\xf4\x9f\xddD;\xae\x13\x0e\xc7\x9e\xf3x\xe9\x9c$\xbd\xad\xec\x0be/\xcbz\xd8Lc\xa1gyk,\x83\x99\xc1rU\xe8/N\x85 \x8c\xc6\xe3\x0c\xa5k\xdb\xc6\x7f\xfe\x0bK;{\xa0\xe3\xc8\xaeWv\xbd\xb2\xeb\x95N\xad]\xaf\x121\xd7\xfe\xa7]\xaf\xecR\x95\xfe\x95\x8e\x0d\x97\xaa\xea\xeas2\xa7\xe3\xdb\x9b\x87\xab\x02\xf2f\xb8\xf0\x8c\xbd\x89\x00Ut\xdc\x90\xcerx\xa6\x11\x91\xc9\x8c\x03\x1b\x10zu\xec\xc9{\xe2\x96\x03\xb3\x84\xcf\x8a\x8fe\x97\x8a^x\xfa\x96\x0b\xc9\xec\xd1\x86\x9a\x80'Q\x0e\x0b\xe1\xfd\xb4\xc27\x92\xde/v l\x15\xbb\x8a\xff\x7f\xa1u\xd8\xffU{\n\xf6\xb7\xb6\xb6D\xdd\x02\xdb[\xf9_x'\xf0\xff\x976\xe73\xd8\xd8\x10\xfd\xe7)]8w\xd4\xb7\xc3S\xf3\xcc\x9fzx\xee\x17\xbb\xea+\x1a\x9e\xc7\xbeG&c\x12\x847\x0f'\xde\xbe\x7f1\xfa|\xf3v\x7f\xff\xd7h{\xf7\xe5\x97_F\xe7\xe3_\x1f\xf6\xfevr\xbe>\xba\x98\xd1\xfd_\xdf]N\xdf\\Dw_\x8e\x7f;8|\xbb\xfe\xfcC\xf0\xf9\xf4\xe5\xf5\xf6\xc5\xbds\xb6\xfa\x9b\xf3~t\xf0\xe1z\x12.V\xb3\x7fT\xe3\x86V\xd1H\x94\xa7\x18\xf4\x03K7\xac\xf8\xeb\x92N4\xe8\xe7\xb4IBN\xd8,\x1d7|~\x19\x8d\xde\xd0\xf55\x1d\xafv\xf6\x0fn\xb7\x85o*\xbc\xb5z\xe5\xd6>\x12\x92\x175\xd9\x02\xfa\xaaHI\x17P\x10/\xd0Po\xeb\xa3\xd7u\xb6\x01\xba=\x89\xb0\xeaz\xc2G\xbe1\xd2)<\xd8\xdd\xdf+\xea\xfb\x1ev*\x97\x98\xee\x9cN\xb8Wr\xf3Pr\x14\xb5\x8e O\xa5=\x1c\x8b},\xb9\x93\x90M\xda\x16\xaf\xae\xc8\x8c\n\xa6VM\x05\x95\x1c\xe6\xe6\xef/\x9c\xa5S\xab\xee\xbb\xd9\x96,|\x08\xaao\xf6\x83\xa0\xd6>\xce\xde\x87#\x89\"\x0b\x96\x944\x1c\x8a\xd0\xb5\x8c\xdf\x13D.\xb6\x98q\x02\x97\x13E\xed\x96\xb5\xbb\x07\\\xe0\x8a\xe6\xdfk\xe5\xd2I\x9cS\x14\x83e\xd0\xccSS]\x8d\xa5\xbd\x1c\xcb\xe0;Q\xf4_\x8b\xa2qcQ\x0c\xbe=\x11#\x97\x16E\xd7\\(M\xca\xae8\xb9(\"W\x17ES\x88\xd2M5\xe8\x12}ghJ\x00}\x1dQ\xfe8\xa7\x18E\xe1\x1a\xa3h\xdb\n\x8c\xda\x0b\x12U\xca!a\xd4d\xd0\xc2qFQ\xba\xcf(\xf5k\xd2\xca\x95F\xd1;\xd4(F\x95S:\xd7(*\x17\x1b\xa5mIU\xa7\x1b\xa5\xc5*&p\xc3Q4u\x95\xbb\xe4F\xaf\xeb\xdcs\x14\x99\x93\x8eR\xa7\x88\xaa\xc3\x1e\xeb\x10\xb8\xed\xf1/\xedWq\xe547\x99\xe4JSb\xd0\x00`2;+Z\xae\xc3\xc9M\xea* \xbeDTs\xe1 \x1fc\x0f\xb5\xf4 %'G\xd2\x98\xb2\x06\xacs,P\xbc\x06\xcb\xbb\xbe\xfb}\xdb\xb7vH\xaf\xecD\x08\xd5\x08\x97\xf3\x9a\xdd\xa8\xc1\xda\xd4;\xf4G]\xfe%\x8b\xbebP\xa8\x86\x84lY\xd7\xf4W\x93%\\j\x1aL\xcbj\xbcH\x7fe\x07\x8bc]\x84\xe4E\xd9\xcb\xd02\x9cN\xe4W\x80\x94\xd10q\xc5\x8a\xce{\xd9\xcf\x00\xc3z\x99\xf9\x1b \xf69\xc0\xb0\xaaEER\xff\x03\x9a/\xe9\x8f\xbe\xfe&\"\xf4K@\xfd!\xa0\x85\x00\x14>\n\xe8\xfd\x14P\xfb*\xa0h/\xd0\xb7\x19\xb4n7\xa1\xef\x02\x86ciw\xbf:\x98$~\x0c\x18\xce\x81F\x1f\xd1\xe4\xae\x89v%*\xdc\x8d^\xcb\xd5\xf9:\xbd\x16.\xf7{z-V\xe4\x03\xf5Z\xa0\xd2\x1f\xea\xb5d\xa9o\xd4k\xa9*?ISp=\x7f \xda\xfbL \xf6\x9b\xa0\xf9r%\xf4\xa1@o{e\xbe\x14\x88\xfd)\xa8\xa1\xb1\xab\xa3%\xa5\x92\x92\xd1\xd5\x9d\xc6\x9c\xc5o\xe1\xcbY\xff\xe3\xfb\xf5?V>\xc5\xf1#\xb1:\x8fC\xf3\xa4+\xaa\xcc\x04\xa2hZ#\xd3\xa2H\xc4\xaem\xd1\xb4=\xc5T\xb6*G}[\xdd\xbe\x17\xb9\xed\xd9\\\xa1j\xb6'\nB\xb2\x14\xda\xc5:\xea\xcd7I9\xcd\x8a2\x153'+S\xf0\xb3\xcch\xa1hf\xbcn<\x82fZ\x1a4\x18\xb4\x9e\x9a\x99H\x0d\x1b\x8a\xf6c\xc1\xe8\x83Ag\xea\xe2Gt\xdd\x96\x88\xc6\xec\xa1\xa8[\x19L[\x1a:jm\xa3\xb3\\&\xd3\xe4Ets\xf2b\xef\x97\xc5\xad\xfb\xf9\x1f\xbf\x9e\xdd\xcf^|p\x0f\xde\xbe\xfcy\xf9\xe2<\xfam\xeb\xec\xe7\xbd\xd1\xa7\xbb\xe8\xd3\x81\x7f\xff\xc3\xf6\xf2\xe6\xfd\x8f\xfeU\xf4\xf6\xedowGG\x9fo\x0e?|z7\xbb\xdc\xba:z~s\xba:\x88\x9e\x1f\xee\x1c}\xf6\x7f\x9b\xfe\xc7\x8f\xd7\xab\xe3_^#\xb5\xca\x11\x9f&\xb1O8i\x96T\x946\xc1\xd8]\xa8bG\n%*E\xa0\xc0\x91@\xdf\xdaZ< \x94\xe6Z3\x8e%\xd8\x12\x80\x18_\x82\x1a\xf5\xadgB%X\x13\xd4\xf8\x84\xaaR%\xee\x04z\x9b\xa2\xb3&\x7f\xa8O\x93\x88\xd2l\x1a\x18M\xddG\x82\x89\xc144\x97\x06\xc6Rg*\x0d\xda\x15:i[)f\x05\xfa\xef\x95aW`\x80_\x81\xfe#\xdb\x7f\x9c\"k\xfd#\x94\xae\x81\x96\xe01\xea`\x82q\xc1cTD\x8dw\xc1cTA\x86}\xc1c\x14\xae\xc5\xc1\xe01j\xa1\xc4\xc4\xe01j\xa0\xc3\xc7@_\x89\xfa8\x19T=\x8c&X\x19\xc8\xf12\xd0\xafB\xba\x15H\x8a\x9d\x81\xbeI\x00\xd4\x18\x1a\xc8q4\xa8\xa9\xbd\xa8\xdc\xc2M\xdf'\xdcT\x19\xacv\xdf\xa1\xd2n\xf7\x1d\x0d\xe6\xce\x1f6\xb8\xf3b\xf7\x1d\"i\xdf\xb6v\xdf\xd1[\xe9_\x83\xbbo\xf7\x1d\x99\xd8}\x87\xddw\xd8}\x87H\xeah/*\x97\x1e\xb2\xaa\xcdq\nJ\x17q\xfb\xd0i \x12\xae\x1f\x9a\xfb\xc0\xd6\x0f\xb3~X\x93\xb6\x95\x9f\x19\x00\xe5\x88\x87\xde\xd3\xae\x19\x9e#\x00\xb3\xd62:O\x00f\xbar\xed.\x0f\x91\xef\xe4\xfe{\x83r\x14\xe7\x0c\xa0\xc3b4g\x0e\xa0vQ\xf56\xb0(\xbc\x04M\xf9\x9a\xd9\x99\x95/yD}\x16\x01L\xc66\x18\x8do00\x03\x86\x8d\n\x9d\x98\x82L4g\x14\xc0\xb4\x11\xc0\xb8!\xc0\xc4\xfc\xc6\x8f\x99ts\"\x06\xa6\x18E\xdf\x13P\xa77\xa0\xc3\x1e\xe9\x9b\xd4ck\xb9EP\xe6\x1630N\xca!\x8a\xa2\xce!V\xa7\x8cB\x92\x0fI\x9a\xc3~\x86\xdc\xd7:{\x8fI\xd0\xe0\n\xf5\xf2e\x85\x92B\xcb\x00H\xedK\n\xbb\xbd\xa0\xd0(\xabK\xae\xd6F\x97\x126\xc9\xc8 \xb8\x88P\x9e+D\xa7,\xef\xb8\x8b\xf2\x83h\xdf\xcf]8X\xca*\xa4}\xb5\x9c\xd4J~\xc1\xa0VU\xe1b\xc1\xf2\xa5\x82\xdf\xe3\xcc\x04\xc9E\x81\xa8\xa6zI`\xaa\xa1|A`\x9f\x97\x03\n.\x06\xbc\xa1Ij\x9e\xf4\xc6\x85\x9a\xd6\xe5\xeb\xf6\xfa\x04\x89\x90t\x83;-o\xec\xb9\xc1*\x1am\x7f\x19\x7f\x9aDt\xf5y\xeb.\xda\xf92\xbb\x9d\xdd\xee\x1d\xd2)\xd9r?\xdf\x7fq'\xc4\xfd\xbc\xbf\xdc\x1b\xbfX\x91\xddh\x8f\xac\xbe\xec\xcdv\xfc\xc3Y\xb0\xfa<;\x98\x1d\x8e\x83\xdd\xdb\xc3q4M\x8b\xb9\xf3B\xc7\x9d\x0dW\xde}M\xb3\xb1]\x98\xb9)H\xbe\xf2\x1d\xcfw\xc2Z\xdf\x97\xd3uC\x1f\xc2K\xae+[[\x0d\xbb}\x15\xbf&4\xa6\xe5\x0byB'\\\xe8\xcd\\~|\xe8\x9eM\x8b\xe7\xbf\x1a?\x1d\x84$\x8c\xf4cu\xea\xb8L5Y,\xd6\xc3\xd6Y\xc5\xd7U+\xa60.\xb9\x95b\xb0\x95J\x11\xed!\xa3 $\x8e$\x16\xb0\xb1V\xd7\xfc\xd2\x01S\x85Cf\x82\x86w4\xecRu\x10\x8d\x96N84Jl\x84\xec\xf5\x84\xae\xbc@\x14\xad\xf7\xfd\xadQ\xb1\x01\nB\xe2\x1b4\xe1elg\xba\xb4\x0d\xc2\xa9\xa9\xb1\x86\xa7\xc5\x0e4\xac\x86\xec\xea\x9c\xef\xaf\xd7\xebtH\xa91\x08$\xdf\xc7dI\x1e\x86]\xea\x1a\xcf\x89;\xa3\x9d\xa9\x8cV\x13\x12\xd2J\xfb\x9b\xaa\x93\xf6C\xc6]\xd5\\\x0d2\xbbb\xba\x1c\xd4\xa7\xb7\x0c-\xd6\x88,\x88\x10\xfc3\x1eDB\x8f\xd3\xa4]\xab\xde\xa6*\xe9\xb8\xa6\xcb\x13?\xf3}2\xdd\xb2\xceip\xc1\xe9ct\x10uC\xdfy<\xc8\xd2q\x9d\xd0!\x8b\xa1\xa0\xc3Q\x14\xcd\xdc\xe4\x9d\xb1Oy\xeb\x0b\xcc\xa7\xf6\xdd\xa5\xe3\ng\xab\xe0\xa5\xb4\xbf\xcf\x8a\xcdi\xd8\xd1\x8aV\xa97]J\xcf)\xbe^\xf8\xbc\xe8\x8b\xe5\xdf\xfaU\x1b\x9e?\xacI\xcb\xcb\xba\xbcM\xf3O^\xd1\xc9\x1f\xd1\x9a\x81?n\xf0\xd6$\x08\x8d\xdfjc_\xfe\x8bO\xa7\xaf`\xe3\xff\x7f>\xf6\x96+\xcf\xa5n\x18<\x0f\xc6s\xba$\xc1\xf3|\x83mT\x9a\x90M\xc3\xba\xa9)j\xf7,\xab\xd5\x82\xf2W\xf4\x1d\x0c=\x8eI\\dY\xb7(\x1fMw\x8d\xa7N\x10^\xe4\xae\x847l\xa0od\xf7\x18\xd0\xc5t\xc8}\xf0G>\x9b\xf15\x83^w\xfcbG\xb9\xb3\xfe}\xb5\xc8e4Z8\xe37\xb4\xae\x89\xe0\x8f\xe9F\xbd\xfe\xca\xf9kg\xe6:\xee\xac\xc1\x14D\xa8\xdap5\xe7g\x86\x87\xdet\x1aP\xfd\xc3\x88m\x0c#7t\x04'K*~B\x10\xd0 \x86Q\x06\xf2\x1dn\xee\xadK\xe2\x93\xe5 \xdfP\xd5\xfd\xe4h\x14\xac\x88\x81\x15,\x0d\x9d\xfcO51\xa4\xb7\xe4!\xb5\x95A\xbe\"5\xf5ll\xe8\x06E\xee\xeb\xaf\xa3\xd5jQ{@~\xef\x07\x81\xfe_\x00\x00\x00\xff\xffPK\x07\x08\xc8\xee\xfb\xa9\xba\xf6\x01\x00\x81\xed\x1c\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00 \x00swagger/favicon-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\x19\x00 \x00swagger/favicon-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\x12\x00 \x00swagger/index.htmlUT\x05\x00\x01\x80Cm8\x9cT\xdfO\xdb0\x10~\xef_q\x98\x17\x98p2@BSH\xfa\xc0\xd84$\xa6!A\x1f\xa6i\x9a\x9c\xf8\x92\xdep\xec\xcav\xfa\x83\x89\xff}\x8a\x936\xe9\x18{\x98*\xb5\xe7\xfb\xbe\xfbt\xfe\xee\xdc\xf4\x80s\xf8\xf4\xf0\xf9\x16Jc\xc1y\xe1\xa9\x00I\xce[\xca\x1bOFC\xdeh\xa9\x10\xf2\x86\x94\x04\xce\xa7\x93\xf4\xe0\xfa\xcb\xfb\x87\xafw\x1f`\xeek5\x9d\xa4\xed\x0f(\xa1\xab\x8c\xa1f\xd3 @:G!\xdb\x00 \xad\xd1\x0b(\xe6\xc2:\xf4\x19\x9b=|\xe4\xef\x18\xc4=\xe8\xc9+\x9c\xde\xafDU\xa1\x85\xd9M\x1aw\x99\x0eU\xa4\x1f\xc1\xa2\xca\x98\xf3\x1b\x85n\x8e\xe8\x19\xf8\xcd\x023\xe6q\xed\xe3\xc29\x06s\x8be\xc6\\\xa7\xc1\x1b\x8aB6~\xa1A\x85\xd1\xdbj\xaaE\x85\xf1BW\xdb\xf2R,[\x9c\x9f\x9f\xad\xcf\xcf\xa2\x008zB\x97\xb1\x90\xf9o\xbd\xd3\x8b\xf5\xe9\xc5\x9e^\xc8\x0cz\xe1f]\x0c\xc1P\xf8\xd5\x1f\x00r\xb3\xe6\x8e\x9eHW \xe4\xc6J\xb4<7\xeb\xcb\x1dn\x96hKeV \xf0\xdaIK 9\x1e?\x9b\xa6\xb1\xa4\xe5t\xd2\xfb[XZxp\xb6\x18\x93x\xb7\xd5\xd1O\xd7\xd2;\xce\xf4\x9f\x05\xce\x0b-\x852\x1a\xf9\xc2\xa2C\xffz\xedv\x9a+\xd2\xd2\xac\"\xa3\x95\x11\x122(\x1b]\x84'ut<\xf2%\x8e\xe1*\xbc-\x01n\xe3<\xd6;\xa40\xdayh\x082\xe8_\xc8\xec\xe6*\xf4}4\x94\x034V%\xc0\xa2\xb8o6\xda\x88Z\xb1\x93\x11A\x9a\xfa\x07\xc9\x04\xd8\xe1\xc8\xa5=\x02\xe2\xe2\x96\xf4c\x18\xa7\xb7\x0d\x8e\xc1\xee\xb6.\x81o\x7f4\x11\xf5H$\x16\xe4N\x86\x16\xefwN\xdd\x05\xc2\xf7=5\xd5T\xa4\xff\xaa\xd6!\xd1\xb5Y\x05\xc3fV\xedU*\xb11\x8dO\x80\x0d\xfa\xb7!5\xba\xca\xf3\xf1\xe5dw\xe8\xed\x0f\xfe5\xb4[\xac\xcb\xedf\xedf\x95\xc6\xddB\xa5q\xf7\x87\xf6;\x00\x00\xff\xffPK\x07\x08\x02\xe7x\x88L\x02\x00\x00\x14\x05\x00\x00PK\x03\x04\x14\x00\x08\x00\x08\x00\x00\x00!(\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00 \x00swagger/oauth2-redirect.htmlUT\x05\x00\x01\x80Cm8\xc4VMo\xe36\x10\xbd\xfbW\xbc\xf0\x10I\xb0\xab\xa0=*Q\x82\"\xd8C\nl\xb7\xd8 \xbd\x04\xc1\x82\xa6\xc66\x1b\x99\x94I\xca\x86k\xfb\xbf\x17\x94eK\xb2e\xd4=u\x0e\x968\x9cy\x9a\x8f7\xa4\x1fn2-\xdc\xba \xcc\xdc<\x7f\x1c<\xf8\x07r\xae\xa6)#\xf5\xd3\xdb+{\x1c<\x8cu\xb6\x86V\xb9\xe6Y\xcaL\xa9\xc2\xc8k\xef\xbc\xda?kO+\x8c,\xdc\xe3\x00\x00\x82\xd2\x12\xac3R\xb8\xe0\xbe\xd2LJ%\x9c\xd4\n\xa6T\x08#l*\xad\x97%7\xd0\xbct\xb3_\x90b%U\xa6W\xb1.H\x91\x89\xed\x8aO\xa7d\xde^\xbeS&\x0d \xf7\xad\xb2\xbb\xef\xf8ZR\xee\xd5qGHk\x9c\xd8\xfae\xd7\xca\xd4\x08o&o\xecZ\xca\xae\xb5\xb4\x7f\xf2\\f#,\x8a\x11\xb81\xf7\x83\xe3\xb6\x9c \xbc\x13:\xa3\xad\xd3\x9f\xa4\xb6d\x8c6w\xb1#\xeb\xc2:\xfa\\\x0b\xees\x8dg\xdc\xce\xa2v\xae^\x16E\x93g\xc72\xb6\xe5\xd8\xd7LM\xc3\x9f\xa3&\x9e\x1d(\xb7\xd4\x07r\xf4\xb6\xc4\x8d\xb8\xe8\xdf\xc4\xce\x8dA\x8aE\x11\xdb\"\x97.d\xb7,j\xef\xc5\x13m\xbep1\x0b\x8f\xcd\n\x97#9\xfa\xc1\x8d\x89\xb0\x81\x7f\xbe\xcb\x0f\xa4\x08X\x80!\x96\xb1\xa1\"\xe7\x82\xc2 \x0dF\x08X\xc2\x82\x08C\xbf{\xbfk\x80\xabP\x17\x05\x9e\xf0\xdb\xeb\xb7\xdf\xe3\x82\x1bKa\xb0\xf1\x08\xfe\x9b\x7fi\xa9\xc2\xcam\x17\x8c:9\xa2M\x9b\xf0\x93\xd6#,y^\xd2iA\x0fb\xc8\x95F\xe1\x93\xd6H\xd3\x14\x8c\xe1i\xef\x80\x04\x19\xf9\x96\xbd}\x7fy\xd6\xf3B+R.\xdcc\x9d!\xed\x8e\x9a\x08 6\xad\xea\xd5\xa4\xa8+\xb8g\\\x9a6\xfc\xebr$l!\xd7t\xf3\xbf\xb1\x153\x9a\xf3xJ.d\x93\\\xafX\xb4\x8f\x96\x0bA\xd6>\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\x1c\x00 \x00swagger/swagger-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\xe3\xff\x07\x00\x00\xff\xffPK\x07\x08\x05\xef\x9fw>9\x05\x00\xf8\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'\x00 \x00swagger/swagger-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\x16\x00 \x00swagger/swagger-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\x14\x00 \x00swagger/swagger.yamlUT\x05\x00\x01\x80Cm8\xec\xbdk\x93\x1c\xb7\x91.\xfc\x9d\xbf\"\x0f?,I{\xd8#\xca\xf6F\xbc<\x87\x1bK\x93\x94<^\x89\x9c%\x87vl8t\x9a\xe8jtOy\xaa\xabZ\x05\xd4\x0c\xdb:\xfa\xefo\xe0V\xb7\xc6\xbdj\x86# \xf9E\xd4tU\x02\xc8\xc2%\x91\xcf\x83\x04\xb9A\xdb-\xae\x9f\xc3\xa3\xaf\x17_=z\x90\x97\x9b\xea\xf9\x03\x00\x9a\xd3\x02?\x87\x0f8\xab1\x85\xb7\x98\xdeT\xf5\x15<\x85\xed\xfb\xf3W\xf0-\xa2\xf8\x06\x1d`]e\xe4\x01\xc0\x1a\x93\xac\xce\xf74\xaf\xca\xe7\xf0\x12\xde\xbf\xf9p\x01yIq\xbdA\x19\x86MU\xc3\x8f\x0d\xaesL\x00\x95k\xa05* \xca\xd8\xd3\xec\xe5k\\\x13\xfe\xe2\xf5\xb3\xc5\x1f\x16\xcf\x1e\xec\x11\xbd$\xac\x06\xa7YEv\x159E\x0d\xbd<\xbd~\xb6\xc2\x14=;EYV5%\xe5\x0f\x00l1\x15\xff\x00 \xcdn\x87\xea\xc3sx)\x9f\x80\x1a\xd3\xa6. \xa0\xa2\x00z\x89\x01\x7f\xce \xcd\xcb-(\x1d\xf2\xcdA\xed\x1f}\xc8\xcb\x0c?\x07Q\xf6S\xb2\xbe\x82\xaf\x16\x7f\xfc\xc3#\xf9l\xb5\xc75bO\x9e\xad\xbb\x92\xe4o5&\xfb\xaa$\x98\xa8*\x01<\xfa\xfa\xab\xaf\x1eu\xff{d)\xd2d\x19&d\xd3\x14\xed\xdb\x8b\xde\xd3$\xbb\xc4;\xd4\x7f\x1f\x80\x1e\xf6\xf89T\xab\x7f\xe2\x8c\x0e~\xd8\xd7\xacr4\xef\x97/dh\xb3\xbe\x08e\xa8\xae\xd1\xe1\xe8\xb7\x9c\xe2\x9d\xe6\x15K\x0d\x84\x98\xeb\xd1\xbd\xbel\xeaB\xff\xabROh\x9d\x97[\xc3#\x03+\xfe\xc7S\xc3S\x00/\xe1\xe3\xfb\xefNkL\xaa\xa6\xce0\x94h\x87\x81^\"\nM\x99\xff\xd8\xe0\xe2\x00\xf9\x1a\x974\xdf\xb0\xae\xc9\xba\x08+\x1b\xaa\x8dQ!{\x86\xe0:GE\xfe/\xbc~`|n_W\xb4\xca\xaa\x02V\xcdf\x83k\xd8aB\xd0\x16/\xe0\xe22'\xb2m\xb0k\x08\x85\xac*)\xcaK@:S\n)0\"\xd4\\VUbxx\xfa\x10\xb2KT\xa3\x8c\xe2\x9a\x95\x82\xa1@\x84\x02\xc1\xdb\x1d.)T\x1b^\xf5\x8f\xef\xbf{D\x80\x0d0\xa36^\xa9\x1a\xefkLpi)\x95\xa9\xdb4Eq\x80\x1f\x1bT0\x0b\xae\x85}eQ\xdc\x92\x8f\x11\x81\xbc4+\xf9\xc4\xaar\xba\xad\xaam\x81\x17\xdcf\xabf\xb3x\xdd\x88!\xf6\xe9\x89h WK.\xab\xa6X\xc3\n3\x85&}\x082TVe\x9e\xa1\x82\xcd:;s\xc9\x8f\xf1b\xbb8a\xa6]\xb3O\xf1p\xf1\x10r\x02eE\xd9`\xc1{\x8a\xd7O\x16\x0f\xcc\xaf\x9f\x95\xb0g\xc6\xce3|\x02\x14\xa3\x1d\x81\x864\x88\x99c_\xe3\xac\xda\xed\xf3\x82\xd5\x94V\xdc\x18\xab\xbcD\xf5\xf1\x08S\xc2'\xa8\xc3\x9e\xf7AD\xd9\x1b\x07s\xd1\xf8\xf3\x1eg\x14r\n\xb4\x82\x86\xb0Rx\x19\xac#\xe1\xcf\xfcS\xbf,\x0f\x0b\xf8Ku\x83\xafq}\xc2\x0caT\xf6\xf1\xfdw\x04n.\xf3\xec\x92\xab\xa2\x97\xd8\\0\x9f\x8c0|\xba\xa4t\xff\xe9D\xfc\x97|:\x81\xaa\x86\xb2\x92\xbf\x9e\xf0\xde\x98\xa1\x12*>:\x99E\xcc\n1\x85f\x0f\x88\xb7\xddR.\xae\xafq-L\xb3C{\"\xba\x16\xaf9\xad\xd4\xc8\x825\xde\xe4e\xce\xd7\x14@\xc4\xa8lS\x15EuC\x9e[\xbe\xed\xef\xe0l\xd3\xb5\x88u\x8b}]]\xe7k\xbcn\x1b\xcd\xfe\x88\x08ivx\xbd\xb0)zY\xc2_..\xce\xe1\xdb7\x17P\x95j\x08\x8a1v\xc8q\xb1\x06d|\xfb\x1f\xe3aqq\xd8\xe3\x1f\xfe\xf1\x83\xf1\x05\x80kT4\xbc?\x88\xfe\xc6\x87\x00\xa2\xfc\x0b\xed\xebj\xddd\x18P \xb8\xae\xabza\xab\xf5~_\xe4\x19\x92\xb6\xac1\xeb\x9f\xd5\x0d^3sg(csKU]5{\xb6d5\x05%\xb0B\x04\xaf-\xf3\x13\xefW\xa6\x9fy'\xe4u\xbcD\xd7\xbc\x0b\xeezch-\x06\x11RMb\xff\xbe\xae\xf25\xa0\xd2\xdc\xb1@V\x90O\x1f5\xdeT5>Q\n\x98^D\xf3U^\xe4\xf4\x00%\xc6k\xde\x8dV\x18\xf8\x94W_[Z\xc2\xdb\x92]\xa2r\x8b\xf9K|\xcc.\xe0\xf1G\x82\x95\x17\xc3\xac\xc4\xba'\x9b\xb3D\xffD%\xda\xdaZ\xbf\xaa1\xbabs\x90T\xbcxb\xeeQo+\x8a\x9f\x03ek\xc8\xa6)31\xc2X;\xe4\xdc\x955u\x8dKZ\x1c\x00]\xa3\xbc@\xab\xc2:]\xb2\xfeXm6y\x96\xa3\xc2\xb1\x96\xad\x9a\x0d\xd4\x98\xadD\xf8\x84;q9U\x856\x04\xaf\xb9\x8f\xd7\x8eK\xa3\xaa\x15\xde\xe6e\xc9\x1a{\x93\xd3K\xcb\xe2r\xd8\xe3\x85\xe8\xffh\x9f\x93EV\xedl\xb3\xf1\x07>R T\xf4RL\x14\xe5x\x96\x82\xc7\xac~\xcc\x07\xdc\xed\xe9A\x0e\xed'\xe6E0\xdf^RXY&%\xdeh\xd6\x08\xc8w\xfb\x02\xb3E\x96\x0f\x18 {\x9c\xe5\x9b<\x03\x82w\xa8\xa4yF\xf4C\x8d\x8f\xd5 .\x90\x18\xdb\xcfau\xa0\xa6\xde\xe5\xeb%}\xcf\xa6\xa3\x15\x06\xc4*\x95\xaf{\x0e\xce\x91\x1f#\x17w\xb4\xaa\xae\xcd}Z\x9a@\x0e\x05]\xf3}j\xf6\xe9ey\xf8\xa4\xdc#\xb6q\x00T\xafrZ\xb3Al\xae\xa1V\x95Z#PQ\xc9\xae\x07H\xffi\xd9\xec\xcc\x17\x1aQ\xc3\xd5\xd0-\x1c\xb9\x7f\xadWg\xe8\x9a\xe7j\xe0\x14\xf9\x8aW[\xae#\x04H\xb3\xdfW5_\xc1\xf7(\xbb:mJ\xf6\x1f\xb6n\x8b~\xa1\x1fAr\xa17;6\xd5\x06\x1a*&65=\x106\xb1\xa2\xf5:\x17s\x05lq\xc960\xbc\xf2\xf4\xb2Z\x13\xd9,\xad>V\x1f\xf1 \xf5\xe5\xbd\xf9\x8cX\xe7\x87g\xcf\xe1\x9c\xd5\x9f\xcd\x0b\xb2)\xa85z^\xc2\xab\xdf\xff\xde\xb2L~SU\xb0\xa9*x\x01\x8b\xc5\xe2\x7f\x1b\x1fc\x95A\xe5\xc1\xfc\x00*\x0f\x0bV\x8do\xeaj\xf7xSUO\xcc\x8f.\x16\xe6\xf5/\xdf\xc0c\xa6\xea#o\xc8E\xf5\xf8\xdf\x98\xae'\xf0\x93e\x0e\xb7\xe9\xfb\xd9n\xbb\xaf\x1d\xb6\xfb+\xbaF\xb3\x19\x0f^p\xdf\x90\x952\x83\x85r\xf2\xf8\x9b\xaaZd\x05\"\xc4a QE\xf6\x92hc\xefEs\x1d\x0c\x96kM\xf7\x07\x87\xe9\xce\x0f\xf4\xb2*-\xc6\x13\xb5\xfa\xa6\xaa\x1e/\x16\x0b\xf3j\xd0\x1a\xee\xb1\xf5\x19\xde\xf9\xb8Yc\xad\xca\x94\x9c \xa3\xbe~\xf3\xe1\xd5\xfb\xb3\xf3\x8bw\xef\x9f\x98\x16 \x90\xc5\x8a\x8ej/X\x14m7\xe7\x1f\x1d\xe6\xfc\xb62[\x92\x9b\xf2\xf9\x0b\xf8\xb7\xfdj\xf1MU\xfd\xb4X,~6?\x8c\xca\xc3 sC\xd9\x1b{\xe1D}\x8fjr\x89\nfd{Cl&\x1c\xd7\xc2R\x85|3\xaa\xc0\xc7r\xd7U\x81W\x90\x0f\x10\xfe\xd4\xffz\x01e^X;\xb8\xbd^\x86\x9e\xcc6\xb7\xdc\xcej.V\x1b\x0dX\x1d:\xb7K\xad\x1e7yQ\xc0J\xef\xf5\xae\xf1\x065\x05\xf7\xc5\xf4E=\xd2\xb8T\xa7l\xff\xbe\xe0?0w\xf5\x11\xa0\xdej\xc7VB\x1e\xac3\xac\x0d\xa2\x87\xe8\x0bk\x97\x96\xb28\xa8}\xe5Q\xb0\xa0u\x93\x01m(w\xdb\xf4\x05\xf18\xc6\xa3\xd3G\xfa\xa2\xe4\x9a\xa8\xaa\xccw\xbb\x80e\x8f~\xb8\xa9\xaa\xc5\n\xd5\xbc\xb1\x9fO\x0f\x8b\x7f=\x14V\xe4{/\xad>\xf3V\x94W\xf5!\xd3\xc1\x96C\xed#\x7f\xfd\xf0\xee\xad\xfe\x97\x17/^\xbc0\xf7\x01\xf6^\x17s\x11~d\xc5\xa6\x03\xe9\x04\x89}]C\xa47R\xe3mS\xa0Z\xaf\xefX\x0d{e\x8d;\xb7\xe5\x04\xf0n\x85\xd7\xeb\xce\x819\x11\xee\xb8N\x1d2Doz.\xc5\x86od?\xfd'3\xdd'\x19Lh\xdd\xb6\xfe\xc7\xd1\x0f\x109\xfd<\xb7l@Pv\xc5\xe6\xa0nC\xbc\xc9\x0bl^7\xd4\x9cu\x8ekR\x95\xd6a+#q\x9b\xbc&t\xc9\xbf\xf0\x0bxf\xd6\xdc\xbe\xc0:\xa5z\xfe\xeb\xf0\x15\x0c\xc0Z\xab\x87\xdc\x96\x0f\x9f\xc3C\xdd\xa8\x1d\x9aa!Z\xf9\xf0\xc4\xa6\x8f\xb7\xef-\xda1\x9d\xffG4\xe1?\xac/\xb0\xf6\x8d\x9e\x0fm\xe4\xd9Fn\xb8\x86}M\xf4\x86\x9c\xc0\x0d.\x8a\xa7WeuS\xf2y\xe6\x12\x11@\x905\x84V\xbb\xc0\xc15\xec\xf2'\xc2\x81\x1f\x8d\x031y\xf6\xaa\xc3:\xb0as\x85D\x97\xd6\x17\xf6\x89\x0fF\xd5\xcf/\xabb-:\xb9\xa8\xb9\x18\xcay\xd9\x8e\x0f\x10\x11@\xbd*1d\xf4\xe5\xf0*,\xda\xc5\xf91\x9b\xd7\x94 \x8fBC*b\xfa\xc3?~xb\x19Hs\xf4\xb9a\x81\xf6n\xc7M\xc5T>[|\xfd\xeck\xf2\xd0\xd2\x85\xc6\x7f\x91\xe8\x93B.x\x18\xca\x86\xe1(\xd9\xa3m^\xf2\xaa\x1d\xbbM\x83]g\xf7\xa0\x08\x1d\xca\xb9\xb5\xf7g\xb9\xb4\xe8p\x19!V\x1c\xc4\x8e\x82\x94\xf83]^\xe1\x83\x19!\xb1n\xff\x9d\x9b\x7fi\xbe\xffg\xda\xf4\xab\xf2\xd9@d\x8dd\xff\x94Q0D\x88\x08\xf5\x9d\xa3-~\x8f\x7fl0\xa1\x0b\xf1\xbbA\xd9\x8f\x0d\xae\x0f\\\x0dS\xcbL\x88aW\x11\n\x98\xc7\x96x@J\xf3*\xad(2\x80@\xde\x06h\xf2\x92\xfe\xfb\x1fm&0\xc6=x\xf1\xbc\xfd\xfc\x1fe\xb3[\x89\x00\x87\x8aj\xf6Bh&@\xa8o\"\xde\x1d\x97\\\x99i\x04\xde \x02\x04\xd3\x13\xc8)Q\xc1Z\x02M):\xe0Z\xc4\xafnr2\xfc\xa6\xf6`\xc9\x7f3\xe3+ \xf2\xbd\xec\xab\xea\xb3\xaa\xbe+&\xdd\x8d\x8c\x81\xf1WN_\xea\x07\xd0\xfb\xf3W\xd2\x7f;\xde\xf5\xeb\xa1\xd1\xf6!\xe9\x84\x9a\xe1\xce\x12\x9aR\xc0\x17x-\xc2\xd0\xb7\x89z\xf2\x02L\x90\xa7\xb6oe\xd5Z\x13\x92\x13/\xe4%\xc5[M|I\xf5\xc4\xbc\xa4\x7f\xf8z\xf4\xab\x9c\xaf\x83\xea\xb0\xc6\x14\xe5E\x82j\x13T\x9b\xa0Z! \xaa\xe5\x92\xa0\xdacIPm\x82jM\x92\xa0\xda\x04\xd5rIPm\x82j\x13T\x9b\xa0Z! \xaaMPm\x82j\x13Tk\x92\x04\xd5&\xa86A\xb5 \xaa\xed\xc9\x1c\xb0Y\x82j\xb9$\xa8\xf6\xd7\x02\xd5\xeeQ\x8dv\x98\xe2\xba\x07\x1d<\xe53o\x1f[]\\\xe1\xfe*8\xd8L\x8e\xc0I\x89F\"9\x85\x8a\xc3{<\xa8$a6 \x14\xb5\xd0%\x0f\x05mG1\x13\x8eE\xb2ao\x87#\x17\xf0\x8e-xU\xc9\xf7\x8a\xd5fC0e\xdb\xafau\xa1\x17\xca&\x98\xf6'\xc5\xbc|.\xca\xea\xfd\xad\xc6?6y\x8d\xd7\xcfa\x83\x8a\x01\x88g\x08\x12h\x03\x03\x1a#\x8a\xfa\x99\xec8\xda\x94\xcb\xc6pS\x96\xcd\x0e\xd7y\xa6\xfe\xc6G[\x86J\xd6\x1e\x11\x15\xb9\xc4\xa52|S\xb6\x81\xa8\x91\xfby\xc6\xb5\x15\x98\x90\xce\x84\"t\xd3\x10f\xea+\x1ch\xcf\xa1\xfa[6\xee\x08\"\xd6\x98\xb7\xc8w\xb9\xafu\xf9\xb3\n^5!\xc7\"H\xd9\xef\xc1\x12\x8cm\x8a\x11x)B\x12\xfd?\x9dm\xa0\xc0\x1b*\xa3_9\x15\xd3\xa1r\x1ay|U\x0c\x10Q\x08\xb3\xf3\xea\x00\x18e\x97\x80\xf6\xfb/h\xc5>\xfe\xdd\xbdo\xb3e\xef\x0dfQ\xdeC+\xa0u\x83\x81\xfd#/\xd7y\x86(n\x91\x16iA\xfe\xa0\xecH}uy\x99\x15\xcdz\xe4\x12\"QJ\x0bu\x8d\xbe\x18\x07N{\x11X6u\x0f( \x03e\x1f\xcf\xc8\xe8k\x8d\x9a\xc0\xbd\xe8\x1a\x13 q\xf3\xe1\xd5\x8dG6\xe4\x16r4\xe5\xdb\xb2\xaaG\xf1k5\x1a\x87E\x08\xcbL\xfd\xb0\xab\xaa*0*m\x1f\xb0\xc6\xd7\xb8\x1e\xbcj\xfbx\xf2\xe9\xf1\x87\xcb{\xfc\x89\x1a\xebG\xc2@\x0f+\x03\x97\x1c\xd9\xab\xea5\xae\xc7\x01,\x07\xe7`\x0ekP\xb4\x1d,b\xff-\xb5Y\xcf\x9f\x9f\xfe\x84\xd6\xeb\x1a\x13\xf2\xb3\xf3$zw\x10]\xfe\xbf\xc4\xf8\x05\x18\x03\x15wA\x98*\xf5\x91u\x87\xcc\x1f\xa8\x96\xdd\xef3\xe6&\xdeB\x14K\x8aZ\xe9\x07\xce\xc8\xbbO\xe8zv\xe2\x81\x1f\xed \x86t`'\x17DQ\x0bx\x11\x06\x85Nb\xc1\x0c\xb4\x82HR\x81\x11\x8a\xf5\xa3\x14L\"\x14D\xd1 \x00\x15\x85\xc9\x8a~d\x82\x18*\x81\x0d\xe0\xf3\"\x12\xccL#\xf0\"\x11\xccH!p\x12\x08f\xa2\x0fL!\x0f\x04S\x07f \x0e\xccL\x1bp\x90\x06f\xa7\x0c\xdc\x0ea`v\xba\x80?Y \x8e*`1\xba\x8b(0\x1bM\xc0\x8f$\xa0\x89R\x98\xe7\xd7\x99 \x02.z\xc0Dr\x80\x85\x1a\xe0tO\x9c\xb4\x00?\xffe^J\x80\x8b\x10\xe0\xaeS\x1c\x19@\xcd\xec\x1a\x85.*\xc0\x8cD\x80 4\x00=y\xc7F\x02\x98\x97\x02`'\x00\xcc\x01\xff{\xe1\xd7\x0e\xe8\xdf\x1b\xf87ct\xe1\xa0\xbfY\x976\x1e>\x0b\xdc\x1fb,_\xa8\xdfm\x13o\x98?\x02\xe4\xd7c\x073\x01\xfc^\xf0\xbe\x1b\xdc\xf7\x81\xf6\xadV\x0c\x85\xf5}A}\x13\xa4?\x03\xa0\x1f\x00\xe7\xc7\x83\xf9\x16\xc8\xdc\x17\xc8\x9f\x19\xc6\xb7\xd4H\xdbS\xa3\x00|\x15w\xd5\xe83\xc0\xf73\x83\xf7f\xe8>\x16\xb8\xe7\x11\x01]\xc5\xf5\xb0\xfd\xbc\xa0\xbdi\xe3\xe7\x04\xecM\x88\xa2 \xac\x9f\x17\xaa\x8f\x07\xea\x0d\xa0|\x14$\xef\x84\xdf\xc3\xc0wo\xe8=\x10x\x0f\x81\xdd\x8d\xa0\xbb\xb96\xbe\xe0\xa7\x1f\xe0\x1e\x08\xb7\x07\x80\xed\xda\xa6\xcd\x0b\xb4\x9b\x06\xc5\x04\x90]\x1b\xa70B\xecq\x00\xbb\x0dL\x9f\x1fJ\x9f\xde\x93\xbcat_\x10}\xb8D\xfa\x1f\xef\x8c8\xdd9\xd2\xd6?\xdc\xd9\x95\x9fNm\x0e$\x9d\xdatu\xcaNf\x06O|\xe1\x938\x00\xc5\xa8,\x9d\xdaL\xa76;\x89\x81Z\x8c\xca\xd2\xa9\xcdc\x99 v\x99\x06\xbcD@/\xb3\x80/\xb3\xc3/N\x00\xe6\x16 \x98\xdb\x02an\x01\x86 \x01bb\xa1\x18\xeb\x1c\xee\x02cf\x84c|\x01\x99@HfvP\xc6\x0d\xcbL\x06f\xd2\xa9Mg\xcd\xe2\x80\x1a\xad\xaatj3\x06\xb2q\x816\xf3\xc06\x9eX\x84\x13\xba \x00o\x9c\xa7\xe7\x02\x01\x9ctj3\x9d\xda\xf4\x81v\x9cV\x0d\x85w\xfc\x01\x9etjs$3\xc3=\xe9\xd4f_b\xc1\x1f\xad\xb2tj3\x00\n\x9a\x02\x06i\xd5\xa5S\x9b\xda\x17\xbc\xe0\xa3tjs>0)\x9d\xda\x9c\x0c5\xcd\xd3\xe7\xbc\xe1&\x7f\xc0\xc9\xef\xd4\xa6<\x84\xd2\xd31\xd8E\xca\x9f\x07\xd9r\xd5\xdfh%\x93\xc0n\x86\x81\xaf\x9c'\xda\x1d\xcc|\xdd\xd1\x1cZ7\x8e\x03hA\x07sx\xd3,\xd7B\x9e\xf3\xdf\xbb\x8b(\x8b\xa2g\x0d\xed\xc9\x9b\xc5\xe2t\xb18\xa5\xbb\xfdSyE\xe6\xd3-.\xb5e\xf3\xc6/\xe4S\x8b\x7f\x92\xaa\x14\xa5=Pm\xbe\xa7\x87v\xfa6\xeb\xcb(S27\xdc0K\xb22\x9cZ\xffv\xd5\xba)\xe6\xcd\x91\xbcC\x9f\x97;\xbc\xab\x96-\xeeb\xc1\xbb\xbc\x98\xb6\xc6l\xc1\xf4\xf3\x92\xe4\xdb%?\xdcy\xabe\xfc\x0b/\xb3\x8a\xd0\xe5\x1e\xd7\xcb\xd5\x81N\xa5\x0e\x1b\x0bc\xad\xb9\xc6u\xbe9\x88\xf2\xf0\xfa\xeb?\xfd\xe9\xd9\xffwW\xc5\x11\x9c\xed\xbf\xfe\xd3\xbf_=\x9b\xbf@\x0f\xb8\\\x8c\xbd\x10\xb4\\\xce\x0d\xef\xcf_\x8d\xf4%\xb0<\x81\xe5\xceH\xb1O\xb0\x15\x12X\x9e\xc0r\xe3\x93 ,\xe7\x92\xc0\xf2cI`y\x02\xcbM\x92\xc0\xf2\x04\x96sI`y\x02\xcb\x13X\x9e\xc0r! ,O`y\x02\xcb\x13Xn\x92\x04\x96'\xb0<\x81\xe5 ,\xef\xc9\x1c\xc0e\x02\xcb\xb9$\xb0\xfc\xd7\x02\x96\xfb\xc0\xcf\xffj1\xe0m\x8dJj\xc1\x9f\xdf\xcb$\x90ENxX\xf4\xd3\xcb\x86^Vu\xfe/\x11]>\x01\xae@\xc4\xb5\xd8'\x14\xff\x8b\xd9\xe2\xdb\xfdo\xad\x05\xaa\xbf\xe5E\xcb_\xee-\xd8\xdc7P_\xe8\x17@}P\xdf\xf6\xf6\xb8\x87\xb1\x0c\xf0(\x07<\x10&\xf0\x0b\xb1\x80g\xa4BI(\xdadU\xa6\x0f9X<\xf0\xb9Q'p#O\x10\x81>\xd9\x1b\xa02d\xfa P0\x17\n\x05\x91H\x94U!3\xae7\x1a\x05\xd3\x11)\x08F\xa5\xac\xaa\xba,\x9a\xfe\xc8\x14\xcc\x8dNA B\x05\xa1(\x95\xbdg\xb7\x08\x96/R\x05s\xa3U\xe0\x87X\xc1\x9c\xa8\x15LF\xae \x0e\xbd\x82\xb9\x10,\x88B\xb1\xec\xc3A\xe5\x8dv\x8d\x9b[A\xb3\xe0\x16\x11-\xb8\x1dT\x0b\x02\x91-\x88C\xb7\\S\xb0\x1f\xc2\x05\xf3\xa2\\\x10\x80tA8\xda\x05\x11\x88\x97\xc7\x94\xf9\xc4\x03\xf5\x829\x90/p\xa1_\xe0\xef\x9ey\xa0`\x10\xe8\xc5\x05\xa3aVm\x1c)\xf3@\xc4 \xa0\x963\"c\x10\x84\x8e\xc1\xdc\x08\x19D\xa2d\xf6~E\xdcH\x19\xc4\xa3eF}\xacD\x17b\x06\xb3\xa1f\xe0\x0f\xfe\x80\x0fz\x06a\x08\x1a\xb8B\xde\x91H\x1ax\xe8\xb5D\xd5fB\xd5 \xca\xb8\xfe\xe8\x1ax\xb42\x02e\x83X\xa4\x0d\xecV\x9d\x0fq\x03\x7f\xd4\x0d<\x917\xf0F\xdf\xc0\xcf\xea\xe1(\x1c\x04!q`E\xe3`.D\x0eBQ9\x98\x88\xcc\x81\x87y\x03\x10:\xb8\x0d\x94\x0e|\xeah\x19 \xf3!v\xe0\x83\xda\xc1\x04\xe4\xce\xa8\x90=hC\xef`n\x04\x0f\x9c(\x1e\xc4\"yFmb\x8fj\xdf\xae{ z`\x05\x1e\xc0\x8a\xecA\x14\xbagTeE\xfd \x16\xf93j\xb3\xe4R\x152\x1f\x02\x08^( D \x81\x10\x86\x06B\x0c\"\x08\xc1\xa8 8V[\x07R\x03\x01h\x8d/B\x081(!\x84\"\x85`ox\x0cbhT\xd6\xc3\xe3|\x87\x8c\x1frh\x1d\x10\xe5\xd6\x8e\x1e\xc2\xbc\x08\"\xb8PD\xb0#\x89\xc6wb\x11F\x98\xb1\xef\x06 \x8d\x10\x846\xc2QFX%\xf8\xf3>\xaf=\x10*/f\xee\x1aQ\xfc\x94\xe6;\x9d\x95m\xd7\xb2*\xe1\x18#l\xf3kL`\x8f\xeb]N\x08\xdf\xa2\xd2\n\xf0g\x9c5\x86\x88\x07\xebJ\xd2+\x91\xcb\xb8\x98\xcb\xbb\xb6\x01\xab\xd4\xf1T\xec\x0e?\x0c0<\xc2\xc3\xc9-\xb8*\xb0\xc6\x16Re\x9d\xac\xc3S5\xbaF\xe8\xaa\x92\xeev\xc4\xe3/0:#\xdb\xde\x19\xa9\xce\xc9\xa2\xb2\xffWu\xdeP\x87\xaf\n\xa1\xf1'e\xd5\x95\xb8\x13O[\x1a\xc3V4\xa7\x056\xf6\x8c\xae|u\xd4\xb2\xbd\x9d\x17\xf6\x88\x10\x11\xe4\x16w\xf8\xfe\xd8`B\x17\xe2w\x832q\x90\x9cZ\xaf\xef\xd5\xbc\xca\xef\xe0\x9ch\x00\xe3\xf9\xd6\xd6\x04\xc68X{\x05\xa8\xe9N\xd8\xde\x11\x08S\xd0\xa6o\xa2\xfem\xaa\x86\xc7o\x10\xbfz\xf3\x04rJ\x14TA\xa0)E\x07\\\x8bh\xecMN\x86\xdf\xd4\xe3\xfc\xac\xa0\x13x\x9d\x9f\xd5\xbd~\xfar80S\xd2i)\xe9\x1cm:G\xdbI:G\x9b\xce\xd1v2+S!\x84\xa5\x10\xc4PH\xe7h\xa7\xb2\x11\"\x98\x08\xb3\xb0\x10\xc2\x19\x08\xe9\x1c\xed\x14\xc6A\x08\xdb \x82i\x90\xce\xd1\xa6s\xb4\xe9\x1c\xad/S`V\x96@\x0cC \x9d\xa35=\xe6d\x02\x04\xb0\x00|N\x89\x86\xa0\xff\xe9\x1cm:G\xeb\x83\xe4\xa7s\xb4\\\xa6\xa0\xf5\xe9\x1c\xadN\x93\x13\x91\x8fE\xe3\x8dkC:G{,\xe9\x1cm\x04\x8a\xeeF\xd0C\xd1\xf3\x00\xe4<\x185\x0fC\xcc\xd39\xda0T<\x9d\xa3m\xe57y\x8e\xd6\x96tZ\x02\xaf=\x1dy\xf9\\`\x80\xbd\xbfuI\xa37\xa8\x18\x00Z\xda=\xf5P9\xbe\x1d\xe5;\xb2]R z\xf4\xde\xb1m\x82\xdf\xc9\xe8\xe9\xc9\xe0\xe5\x13\xb8\xb9\xc4\xa5\x80\xf2x\x87\x16\x08(_f%\x8e\xbdC4\xbb\x1cw\xecm~\x8dK\xa6\xe9hC>c+;\x08{q\x85\x0f\xa6v\x8e\x90a \x05#\xb9\xc4\xd5\xfc\xe43\x0f\xfaI\x8cS\x02y-n\xccCu\xdbQL\x8b\xb7\x80M\xcbv,x\x01\xef\x98\xa5\xaa\x92\xef\xe5\xab\xcd\x86`\xca\xb6\xc7\xc3\xeaB\x0fj \x98\xcel-C\xe0FcDQ?\xcf\xfe\"\x1b\xc3MY6;\\\xe7\x99\xfa\x1b\x9f\x0d3T\xb2\xf6\x88\xa8\x15\xebC\xd2\xf0M\xd9\x06\nG\xdb\x833\xae\xad\xc0\x84t&\x14\xa1\xb5\x860S_\xe1@{\x0e\xd5\xdf\xb2qG\xf8\xbc\xc6\xbc<\x83\xb7\xa7u\xf9\xb3\n\xdd6\xc1\xf6\"\x88\xdc\xef\xc1\x12\x0bo\x8a\x11\xb8,BF\xfd?\x9dm\xa0\xc0\x1b*\xa3\x939\x15\xa3[9\xf5<\xfe-\x06\x88(\x84\xd9yu\x00\x8c\xb2K@\xfb\xfd\x17\xb4b\x9f|\xd0\xbdo\xb3e\xef\x0dfQ\xdeC+\x9e\xe1\x1f\xd8?\xf2r\x9dg\x88\xe2\x16 \x93\x16\xe4\x0f\xca\x8e\xd4W\x97\x97Y\xd1\xacG.;\x12\xa5\xb4P\xe4\xe8\x8bq`\xbb\x17!gKk\x8f\x803\x9a\\>\x9e\x91\xd1\xd7\x1a5\x81O\xbf5&\x92\x82\xc0\x87W7\x1e\xd9\x90[\xc8\xd1\x94o\xcb\xaa\x1e\xe1\x0bj4\x0e\x8b\x10\x96\x99\xfaaWUU\xe0\xdeia\xcd\x07\xac\xf15\xae\x07\xaf\xda>\x9e|z\xfc\xe1\xf2\x1ey\xa5\xc6\xfa\x910\xd0\xc3\xca\xc0%G^\xabz\x8d\xebq\x80\xf1C^f\xf89\x88\xec\x19O\xc9\xfa\n\xbeZ\xfc\xf1\x0f\xb3Z#&e\xc7\xa9t\x13N\x7f\x92\xff\xf8Yh\xd0%\xf1\xf8V\xce\xf5\xa1j\xf0@\xd9(\xa5\xfcp\x12T\xa4\xa7\x19\x0d\xce\xc8O\x18\xfd~J9\x92R\x8e\xa4\x94#\x16\x99H\xde\x81`\x02\x8fUUJ9\x92R\x8e\xc4\x92| \x8e\xe8\x03s\x91} \x8a\xf0c\x1f\x0e)\xe5H\x18\x01\x08\x02I@\x10G\x04rM\xc1~d \x98\x97\x10\x04\x01\xa4 \x08'\x06A\x049\xc8c\xcaL)G\x84\x04\x13\x87\xac\xdaR\xca\x91\x94rd$\xf3\x10\x8c\xc0\x9f'\x03>D#\x08#\x1b\x81\x8b\x1d\x10I:\x02\x0f\xbd)\xe5\x88E\xa2HI\x90R\x8eH\x89\",A\x10i R\xca\x11\x1f2\x13\xdc\x06\xa1 |\xea\x98R\x8e\xccKv\x02'\xe1 bIOFm)\xe5\x88\x1fI\xca\xa8-\xa5\x1c\xf1$OA0\x81\nR\xca\x11\xad\xc4\x90\xab\x8c\xcaR\xca\x11%)\xe5\x88F\xeeS\xca\x11'\x02\xda\x17{&\x86c\xfc\x15\xf0g\x8a\xcb5\x01$ <1\xb1\xaf*z\xc9;\x1dZ\xafkL\x88\xe1p\x8e\\CT\xee\x106\xea\xdaT!\xda\x17\xceZz\x00\xeb\xc2l\xfbLr\">&\x7f\x9b\xc3\xdb\xe2\xff\x8f\xde\x1f\xd8D2\xbflYM\x86\x17E\xa4\xdc%z\x0d)w\xc9o.w\x89\xa2G\xc4\xa70\x19\xf2\x0c\x80O\x19L\xc2@\xf6\x94\xc1\xa4\x95\x94\xc1D\x8a=\xc9\xc8(\x96\xdd\x9db\xa6u\xe3<\xab\x9f\x92o\xc4e6H\xc97n\xd1\xb8\xee\xb4\x11)\xf9\xc6\x1cVL\xc97R\xf2\x8d\xdf\\\xf2\x8dZ%\xdf\xa8\x9d\xc97\xeaQ\xf2\x0d[\xea\x8d\x93\x96+\xd5\xe6\xe0\xa8g\xcb\xc1Q\xa7\x1c\x1ccqQ,R\x0e\x8e\xe3g<\x0ey\xfa\xc0\x12JB\xa9%Vez|\xc1\x12n\x9b\x9bb\x02n\x9a DPM\xec\x0dH98b\xe9'\x10LA\xb1\xaaJ98R\x0e\x8eX\x9a\n\xc4QU`.\xba\nDQV\xec\xc3!\xe5\xe0\x08\xa3\xb0@ \x8d\x05\xe2\xa8,\xae)\xd8\x8f\xce\x02\xf3RZ \x80\xd6\x02\xe1\xd4\x16\x88\xa0\xb7xL\x99)\x07\x87\x90`\xea\x8bU[\xca\xc1\x91rp\x8cd\x1e\x8a\x0c\xf83=\xc0\x87*\x03at\x19p\xe1\xdb\x91\xb4\x19\xf0\xd0\x9brpX$\x8aV\x03)\x07\x87\x94(\xca\x0d\x04\xd1n \xe5\xe0\xf0\xa1\xe3\xc0mPr\xc0\xa7\x8e)\x07\xc7\xbct\x1dpRv \x96\xb6c\xd4\x96rp\xf8\xd1|\x8c\xdaR\x0e\x0eO\xfa\x0f\x04S\x80 \xe5\xe0\xd0J\x0c=\xc8\xa8,\xe5\xe0P\x92rph$\xe5\xe0\xf8\xc5\xe7\xe0X\x1dz\x95;\n\x07\xa7\x1c\x1c\\R\x0e\x8e\xdf`\x0e\x8ez\x9e\x1c\x1cu\xca\xc11\x94\x94\x83#\xe5\xe0\xe8$\xe5\xe0H98:\x99\x95\xf8\x10Bz\x08\"<\xa4\x1c\x1cS\xc9\x0d\x11\xc4\x86YH\x0d\xe1\x84\x86\x94\x83c\n\x81!\x84\xbc\x10A\\H98R\x0e\x8e\x94\x83\xc3\x97x0+\xe9 \x86p\x90rp\x98\x1es\x12\x0b\x02H\x05>\x19&B\xc8\x04)\x07G\xca\xc1\xe1C\x0cH98\xb8L\x01\xffS\x0e\x0e\x9d&'\xc0\x1f\x0b\xee\x1b\xd7\x86\x94\x83\xe3XR\x0e\x8e\x08P\xde\x0d\xc8\x87\x82\xf1\x01@|0\x08\x1f\x06\xc0\xa7\x1c\x1ca {\xca\xc1\xd1J\xca\xc1!e\x98\x83\xa3\xbf\xc1K98R\x0e\x8e\x94\x83#\xe5\xe0\x88\xb3b\xca\xc1\x91rp\xfc:sp\xacPy\xd5\xa6\xe0X\xa1\x02\x95\x19&\xa7?I\x06\x96%\xf9\xc6\xcb\xa2\xf8\xb3|\x9cWQ\xa1\xe2R\x07\xdf\x93\x14\x05d\x15\xf3\xecY\xd7C\xc0&\xd4\x02\x03\xcax\xcfR_}\x90I\xa3\xa7\xf5\x81j\xee=\xcd\xa3\xa1\x8cu?\x88\x12k\\V\xbbh\x88\x00\xed\xd8\x17\x89|\xdd'@\xff\xaa\xca{L6\xa0\xd5\x15.ep]T]\xcdJ\xcc\xbdG\xa5\xac\x90)\x96\xfc\xf6\xdd\xc5\x9b\xe7|7,\x9e\x93\xdb\xca\x9cG\xfe\xcfJ*\x1d\xee\x16m\xe9{\xddZ\x85\"\x08\xa1/\x8c\xe4\xdb\x12\xd1\xa6\xc6\xa4\x1dz<{L\xb5\xad\xb8\x8b{\xbcS\x1d\x18Du\x13\xb5\xae\xb6\xff/\x07\x88\x80\xe3\xf3\xf2\x08\xfa\x99\xc2\x15\xa4L\xae^\xd46\xd2\x12\xbfp\xb8[\xb6\xd8\x85\xf5Uw\xdcb\xce\xa8\xc5\xcc1\x0bs\xc4\",^\xe1\xb1%\x93\xbd\xd2k;&7`\xc3\x8e\xac$\x1d\xd9\x92\x92\xf6^i\xef\xe5t\xd5T\xfd\xf8Dc\xaa\x1d\xffQ\xd5-\x13\xd3\x15\xfb\x8bW\xf5B\x17\xd9A\x05\x83\xd6X^)\xb2\xdca\x8a\xd6\x88\"\xf3\xba\xda\x9b\x81^\xf3w\xbe\x97\xaf\x0cV\xda\xac\xe0;\x16\xa5N,\xb0\x05[\xf3\xb69\xa1\x98\xcdx\xcc\x16\xad\xaa\xfe\\M\xb4+\xef\xb00\xf9\xc4\xbd]\x80U\xc3\xef\xc9\x88\xef\xdb v\xd8\xf2O\xb4l\xca\\\x97\x9a\\\x88\xadiB\x8c\x0d\x14\xe2h\xa6\x10Wc\x85X\xe1\x16!\xce&+q\xfb!\xc3\xa7\xd9\xf8n\x19Kb@H\xa6Y\xffL\xe56\xbf\xc6\xf6T\xc2J\x173:?\xe3\x08\x0d\xa2\xd5\xee\x89\x85\x9b\n\xf8\xf3\xbe*\xb1\x19*\x12b_\xfd\xfa\xd2[ \x0d\xc1o%aVR\xf5\xec\x1bj_\xdd\x88=\xe2\xb3\xaf\xba\xdf\xf9V\xb4*\xcd\x07T\x84\xec\x1aW\xcaq\x80\x1a\xe5\x92\xbe\xbaB\x04/\xdb\x898/\xc5F\x88\xfd\x1b\xff\xd8\xa0B\x13\xb7\x1e\x0b\xffzbV\xfaX\xe6\xf4\x11\x91\xcb\x80\xe3\xb5g\xf2\x93\xbe\x80g\xff\xb7mbW\x1b\xd7\xeb\xfc\xa0\xabrp{\x8d\xa86\xa2kt'6\xb3\x1a\xb3\x8d\xbc=\xdd2t\x0d`*\x1e1\x15\x8f\xdf\x0b\xf8\xf7\x13\xa0\x97\x0dy\x0e\xcf\x80\xbd\xcf\x9a\xf6\xd5\xff\xfdw\x8f\xae\x8a\x8a\x1c\x11\xfb(\xf6\x99S\x848f\x16!\xde#\xde\x05\xe8(\x91M\x80A\xc2\x119\xd6\xd5o\xca\xf1\xf6\x1e\xef\xc6gl\xb1\xdc\xa1t\x9f\xb57\xbc\x10\xabY\x93\xd1\xf1\x99(\xe4\xac\xda`+\xd5\xc8\xde\"\xc7Q\x9e\x89m\x97\xe9K\xbbM\xd9[Y\xc6\xd3\xa62i\x7f\x9cq_\xc2\xa8L\x8c\xcb\x81s\xd1\x176f\xa2\x97@\xff9\x8e\x153n\x0b\xff\x9b\x18\xae\x8f\xbb 7\xfb\xa5m\x9dQ\x1f\x1f\xf1\xbd1\xf7\x95a`\xads\xb2/\x90\x01\xea\x0do\xa1\xa5\x8f\xc9\x92\xda\x90\xa1\\\xe6\x9a\xed\x16\x13\xb6\x11\x94\x93+\xebi\xee\x9b\x0f\xa42\x11\xae\x12\xbe\xa3\xe1\xa0%\xf7\xb8gj\x9d>\x81\xd2\x1ft\xe9\x93\xa0\xeb\xc8\x8f\xf8\x1a\xde\xc7\xf1\x07\x89\x12x\x04\xe21\xde>\x87W\\-\xbcd\xd3\xa0^'9\xecVU\xfc6\xcc\xbf;\x8a\x82\xba\x18:\xab\xa3\xfc\x9bJt@.\xab\x9b\x12x\xe2'yt\xd9\xa8\x8d\xb7\xee\xe5\xc5\xbb\xef\x9f\xc8\x0c\x18\x99-\xe1\x9f\xec\xe3\x84\x9f\x0d\x11\x15\x90\x9f\xdbz\x08\xd8\x15\x83T\xe2\xd3_\xdb-\x8a{2\xd4\xbe\x8f\xec\xf3\x9c\xfb+\xb4\xfb\xa0\xf6\xccho\x93\x94\x97\xc2\xc7RI\xa3$\xe7D\xa3\xa6\xb7{\xe2UI\x8c\x94\xc4HI\x8c\x94\xc304\xe0\x15\x05\xd5\xa99\x1d\xc53\x12/%\xc5F\xb5\xbf\xdf\xa7\xd8h\xe2}\xb8\x03\xa1\x90x\x1fRn\xd9\xb8n\xc6B\xe2}\xcca\xc5\xc4\xfbH\xbc\x8f\xdf\x00\xefc\x84I\x9d\xfe\xc4\xff`9\xf1\x12\x00Hq\nH\x17+\x1aD\xb8\xcc\xf8\xd3/\x0d~2\xf9TQ\xbb6'\x88\xe4\xf0n\x9c\x00\x92+\xd4k\x0d\xf1z@G.\xdf\x0f|`#\x0f\x17\x0e\x9c\xdb\x96\xf1\xb3\x01\x80\x91#D\x0c<\x99\x87/\\\xe4\x03\x16\xf9BE\xbe@Q\x88e\xe6\x05\x89\xdc\x10Q\x10@\xe4\x8c\x9aC(<4 \x1c\x9a\x19\x1a\x8a\x03\x86\xa6\xc3B\x1e\xa0\x90k\x9e\x10\xe2\x01\x08y\x8eeW,E\xc8\xbcP\x90m\x94\xfb\x84\xd8U\xeb\xa6\xc0\xdaH\xc1bq\xbaX\x9c\xd2\xdd\xfe)\xb9A\xdb-\xae\x9fnq\xa9\xad\x8c\xb8\xd6H>\xb5\xf8'\xa9JQ\xfc\x03e\x84{\x1a^\xe8\x1b\xb1/\x13\x82\x0b\x04\x97\xeb%.\xd1\xaa\xc0k\xdb\x8a\xf9k\x88\x0eX\x9b)D\x1fI\x1c\x8a\x9f\x87\x00\xf0\x01\x97\xeb7\xa2Hq\xe3\xc2p|\xa2\x81\xed\x81PD\x1b\x0b\xf7\xe3\xe6\x12\xf3\xbc\xec\xa8\x1d\xf3\xe6\x1d!S\xcc\xb4\xea=W\xb1\xa2-}\xbf\xbc\xc9\x18\x033\xc8\xe1;\xe44\xb4\xc3Wm\xbf4#X\xa3K\xef\x00\x88\x12\xda\x95\xbf_\xd2\xf1\xf2\xdfBdb\xd6\xd0\x0d#^\xb3\xb4\xce\xa7u\xfe.\xd7\xf9\xa0%\x93\xec\xe50^\x86d\x9f\xeay\xee\x1f\x94\x02m:*\xa6\x9e\x03B\xce\xbcT\xadB\xdb \xcd\xa3\xc2\xe4C\xf7v1MY\xaa\xa4\xf8\xacgs\x9e\xf7\x9c\xfd\xc4\xe7\x9df\xa9jGe\xcaW5\x94\xc4\x0eL\xec@)|Y;Z\x10\xb4\xbe\xdb\xf6\xfd\xf9\xab\xce\x81\x13\xb1\xa4\xa6\x1ew\xa0\xbeO7n\x08\x9bm\xc4\xba\xf4\x88hFgr\xf1\x92\x8bw\x97.\xde-\x1e\xa8\xd6,=\xf3Ft\x12\xbd1\x96;\x96\xe8\x8d\xb7h\\71/\xd1\x1b\xe7\xb0b\xa27&z\xe3o\x80\xdeH\x9a\xfd\xbe8\x98#(\x17\xac/|\xe0\x0f\x0d\x02&\xa2\x8f\x88\xb7\x07\xc1\x12m<\xa4\xa7\xe5\x81j\xd2=\x8d\x84\xf4\x0d\xd2\x97/\xe1\xd2\xa58\xc8\xfd\x89\x83\xc8\xdd\xaa\xec\xf1*\xfe\xd1\xf6\xff6\xde1z\xd1;\xdc\xa1\x8d\x04D\xc4@4Z\x9cs\x8e\x90\x14-\x11\x92\xa2%\xb7\x1a-15\x84/S\xbd\x85\"\x9e\xd7\xd2_\xb3\x8c\xac\x96\xf6\x8f)\x12rd\x9f\x14 \xb9\xd3HH\x8a/\x84m\xdeR|\xe1\x16\x8d\xeb\xde\x19\xa7\xf8\xc2\x1cVL\xf1\x85\x14_\xf8\xcd\xc4\x17\xdc\xa7&\x85\xbb\xf6n3det\xe1\x85~\xa6l=\xe5B*x\xa0\x9atO\xe3\x0b\xa6]\xf9\x84\xdd\x97%L\xe0pVRR\xec\xa1\x84\x85\x05|p_\xd9+\xbd63r\xfb2\xea\xc9JRZl)i\xefr\x8f\xf6.\xd3\x08\xf9\xb7\x04\xdd\xbaW(\x82O).\xd7\xb8\xde\xe5%\xed\xeex(\xaa\xec\x8a\x9c\x16\x88bB\xcdk\xd5\xb7\x98~\xc7\x1f\xf93{^.\xd7\xf2\xac \xff;pE\xdaej\xf8\xee\x03\xd5\xb6{\xbaX\xf1v,s\x0d%z\xc2ru\x89\xc8e\xc4\x92\x03\xee@\xe1\x1e\xd5tI0]^b\xb4\xc6\x9a\x99\x08\\5\x07g\xed\x99XB}\xe0\x9c\xbe\x94\xf8\x1cU7\x9b\n|\xcc\x05n\x93\xb5\xf1\xb8sTS\x82\xe9_\xb8\xe5\x8e?\xb7x\x88w\xda\xb3\xd7\xba^2o\x17\xb9\xdd\xef\xc7\\qmD^\x89l\xae8\xa3\xc7\x9b\xc7\x13$:\xbe\x84\xf5d\x87O\xbd\xc0l\xcc\xbex}w\xf0\x0b+\x0bA\xfb\xfd\xdd\x16\xe9\xf6\x1f\x95\xbcbS[I\x1a\x02\x19\xda\x0b\xd7L\xac&\xea\xcfuS\xc8C\xed\xfb\xbabs\xa2\xbd\x8a\xa8\xfd\x9e\\\x0f\xff\x9f\xec\x12\xe5\xe5\x89-\xa9\x80\xd8,\x8bS\xf4E\xef%\xe0G\xc9Z\xa6\x1e\xe1\xde,w\xf0X\xad,\n\xe5\x06\x1b\xed\xf7\x05\xdb\xb5\xe7U\xf9\xc8r\x86\x05\xf8\x89\x18\x0c\xb4F%\xc9\xb9\xdb\xbcC\xd9e^jH\xafBx\xed\xb43\xb7\x12\x8fOz\x89\xf3\xed\xa5%/\x87\x87\n\xbfy\x8e\xe6\xe6\x84\xba\x81\xc5\xac\x11\xc5O\x99>\xc3\x93\x05\"ti^\xd7\x94\xcc8\xa2\xed\x938\xf86\x10|&s!^\xeb\xa0\x12\xaf\x96\x82wk\xc1\xbd>\xb6\x8fy\xad\x93J|\xfa\x91\x12\xb7\xc9!\xc4\xec\xe0oz\xcf\xf5t\xf4\xb0~]U\xc2\xbblV\xedv9]\xde\x85G\x00]\xc5Xq\x82\xd4/f\xcd^\xde\xa9\xb1\xb0\x9f\xee\xa8z\xd7\xa8\xc8\xd7\x88V5\xb9\xa3\x02\xc7\xf6\xd8\xd4<\xd7\x04\x9f\xbf\xa1j\xe8\xbe\xa1\xdd\xdf\xf65\xbe\x16\xe62h\xe3\x90\xcc\x9d\xb7\xa1]1\xef\xa8<\xb4\xdf\xdfQI||\xc80\xea\x1d\x15\x89\xaf\xf35.3|G\xc5\xb5\xfd\xafs{,\xfe(\x9b\xa8+\x82\xeb\xa5$M\xdfv\xfd\x06\xce\x9c\x98\xf0\x06t\x95\xd6=\x12\x91\xdc\x8bv\xe3-'\x15\xb1J\xe9<\x19}\xfa8\xf0Y\xb5\xdc\xab\x15\xfd\xec\xb4\x8c=\xbd\x933\xb9\x93\x97y=\x0c\x0cA\x1e\xf3\xc5g\"0 \x0e\x85\xad\xa4\x93)\"\x99\xc2\x8d\xfcO\x19\xa0\xf8\x0b\xf7\xef~\xffL\xcb\x1aR\"\x82\xafeE\xc5\xb9\xae\xcf\x04.q\x8d9\\\xc1\xe7\xb0\x05\xc0\xdf\xf1\xa3\x1a\xc3?\x1bB\x01mk\x8c\xed\xcd\xad\x84\xe7-r\x99m\xf2\x9aPk\xf9<\x0b\xcc\x0e\xa3R\xb6JT\xfd\xe5~\xff\x17D.a]a\xc2+'\xe1,\xa6\x9a\xd8\x16h\xfa\xd9p\xa9\x83\x8b`\xf3\x9ay\xfaYUR\x94\xcb`\x0f\x07m7\xc2)G\x19\xfb2DUC\x8b\xddtbZ\x1d\xd4\xb4rk}\xde^\x00\xcc\xdb\xf1\x9d>\xa5\xbb\xbeB\xd6\x8d\xd8%\xe1\xe5uE\xf1\xd2\xdd\x08!\x9e\xb5\x80\x80\x9a0\xe1u0LKC \xa8\x00\x04V\x02\x94z\xaf'\xbd\xa7\xa2\xbe\xe0\xb2q\xdc]\xd6\x97\xa7\xf0\xe1\xec\xdb\xb7o^/\xbf\xff\xf0\xed\xf2\xe2\x7f\xce\xdf,?\xbe\xfd\xaf\xb7\xef\xfe\xfev\x82\x86\xf3\xf7o\xfe\xf6\xee\xe2\xcd4\x0d\xaf\xde}\xff\xfd\xd9\xc5$\x1d\xef\xce\xdf}x\xf9\x9d\xa7\n\x85\xc9L\xb4\x87\xff|?\x94\x0f\xf9\xb6\xc4\xeb\xef\xc9\xf6\xe2\xb0\xc7\x82\xd6\xc2\xbe=\xcf\x03\xc8\x7f\xf2\xd6$\xb1\x14\x15)i]\x0f\xebl=\x12\xe37}\x0e\x7f\xab\xa85B2\x12\xf3wy\x0e\xe7\xdc\xe1A\x85\x9f:WTc(\x11\x03'd\xa7*\xa4\xae\x9a\xd2\x9a\x8a\xa5/a\xdbf!6\xccL/\xee\x10\xc9P\x02\xe7:\x88\x98\xef\xc0{g\xdfI\xc4\xe7\x03_\x97l,Aa\x97\xa1DX\x0f\"-\xc8\xc43@3\x94\x98~\xa7$|H( \xfd\xe0\x10\xff\xd1!\xf6\xc3\x07\x06}\x86\xe2\x15\x02\x1a\n\xcdw\x98P\xb4s\x04\xed;\x890\x88o\x1f#\xf0C\x84M\x85]\x9f\xbd\x1f\xf5 \x9az\"k\xe2;\xe5\x84\xf6\xcf\xd7\n b\x9d\xf4\x8d\x84\x87:\xb0N\x01F\x1c\x7fv*k?\x8ct\xab\x81\xdeTL\xd7\xa6\xc83\xd6\x7fx\xafu\xf4\xb9\x829\xa2Kq\xb7\xc8\x12Q\x8a\xb2\xab/\x0d[\xf5Z\xb0\xf4 \x99\n \xa8\x0b\x04\xd6\x07\xe4\xd4\x88\xd7\x81^U`\x9d \xa2^\xe0\xe0 \xeb%\xa2b\x10Y9\xf0a1\xeb%\x94\xdb\xac\x97\xc8\xb6\xc2\x84\xf6\x82\x1f;Z/\x81\x13\xd6X\xd4\x04\xe6dR\xeb\xc5\xc9\xaf\xd6\xcb\x97\xact\xe8\x14<\x16?\xdev\xb0\xda!\xcf{\xc4\xe6\x0e\xd6\xe6\xc9\xfe\xd6\x8b/'S_\xec\x1cv\xbd\xccPQ_\x97j(\x9e,x\xbd|\xa1\xb9?&^\x00\xd3\x8c\x0c\xe1[\xab\xa1L\x08\x1c)\x99`m\x98hq\x88\x0d()\x89\xd9`\x8f%~D*\x89\xed80\xbd\xf3\xc0\xd4\x0e4)\x00\xa5$\"\x10\xa5\xc4\xff\xec\x81^&\xd8o\x82\xdd\xc2O/\xe8\xc5\xe3L\x83^\xbeD\xb3\xbdO\x14\xe8\xe5KT\xd9\xcd\xba5\x8b\xefQ\x8c`\xc5\xb6\xa3\x1bz ;\xd0\xa1\x97/a~\xdf#!z\xf9\x125v\x1f*\xd1\xcb\x97\xa8k\xc0\xb1\x14\xbd|\x89J{\x1el\xd1\xcb\x97\xa8p\xd8\xd1\x18\xbd\xf8\x1f\x98\xd1\xcb\xdd\xb7{\xca\xee\xdcyB'H[\xc0i\x1e\xbd\x08\xe7\"\xc4\xe4\x91\x1eq\xac'\xfc\x0b\xda\x83\x06\xb1\x0d\x94Lq\xd2\xc3\xd10%i\xf3\xe9#\x91\xd3\x83\x90\xb4\xf9\x8c\xee\xd7J\xe2\x87\xa2\x92\xd8\x8e\x03\xd3;\x0fL\xed@_z\xf3\xd9\xa5c\x0b\xb5\xa0\xb0\x9c\xfd\x14\x9b^\x9cg\xdb\xf42i\xa0L\x1b&j&]n\nd\xbcR\xdf.\x93;Z\x18\xa3t(O\xe1\xcf\xdf\xbd{\xf5_\xcb\xb3\xd7\xcbo\xbe{\xf9m \x9br,cm/\xff\xfc\xe1\xcd[\x7f\x92\xe8P\xc6\xca\x02\x19\xa7C\x19+{{\xe6K<\x1dJKC\x9d\xcfl\xf1\xbbp!bp\xaf\xbf)\xd0\xb6\xcdCKdV\xc6?\x17Yuu\xf6:\n\x9f\x11\xd2N\x03\x90\x0bv\x88\xeb\x85c\x89f/\x0de\xf28\x99<\x1d\x07p4\x8ee\xb6\xea\xc7\x81\x0eB\x82\xe9PC\x99\xad\x0dQ\x9f`\xca\xbeK\xc8+\xbe\xdd\xf9\x90o\x05\x83\x9b\xf9h\n\xe2\xe3\x0c+u\x80HW\x17\x90\xf3\xb3F7G\x10\xec\xbd\xdd\x8bX\xf7cV\xfb\xae-\xfe\xef\xc4zA\x11\x1eP\x84\x15\x84\xc4\xd8BH\xf4<>i\x02\x990y\xec\x9b\x95\xf9\x8a\x1c\x9bD\x1b\x17&\x19\x98 ^\x7f\xfd\xa7?=\xfb\xffb^\x9dhh\x98fl&\x04g\xfb\xaf\xff\xf4\xefW\xcf~\x89\xd5\x9f\xe2\x91\x9d7\xab\"\xcf\xfe\x0b\x1f\x061\xbe+|\x18\xa5\xee\x8fP\xdd\x10,\x92x\xf7\xc2~\x7fk\xe7\xa6@\x85\xa1t\xdc\xa1L\xfa>S\xf6\xf5m\xb4x_\xe7U\x9d\xd3\xe8!}\xa7uW\xb5\x0e\xa9l\xe4\xcc\x13;\xe7DN\xe9\x13\x8c\x19=D#'\xf3H\x83\xc2\x04\xa3\xc2\xb4i|\x82qa\x8a\x81a\xea\x04\xfe\xe5*\x1e?u\xdf\xda\xc4=\xe3\xb4=e\xd2\x9e\xf0M\xe2&=\x98c\xba\xbe\xf3Z\xc7\x1dVQ\x12Y\xdd\xb0\xaa\xb2\xddYU.\xfd\xa1\xb1\xc0Z\x85\xd5fu\xf8\x17*i^\xe2e\xd8>)l\x7f\x14\xb0/\n\x9e\xe7\xc3g\xf7\xe0\xc52\xf0\x0b\x08\x89\x98\x06\x83\x97\xc6`cA\x94\xc1 v!\x8c2\x1c\xc4\x19\x0f\xe2\x97\xbd\xbb\xadf\xcc\"w\x0b\xcb\xdb,\x0b[\xdcL\x1be\xef\xb0yM\xc8\x84\x05\xec\x0e\xea\x18\xb7X\x05V,\xb0J!Q\xf2\xc8\x9a\xf8F\xc0C\x83\xab\xdf\xb1\x05\xf5\x15?7\xf8\x92\x1f\x1b\x9cz\x9aQ&)\xed\x9d\xafE\x94\xe2\xdd\x9e\x9fd\xa4\x15\xecrR`\xb4\x06$\xce,:\xf5\x893\x8d\xba\x88j\x8f*\xac7\xbcs\xa2wO\xea.\x87\xc3\xebk\xfa\xf4&\x07\x93F\x94\xe3\xe2\x16\xf8\xb0c\xdc<\x18\xa7\xd9\xc0\xcbt\xe0EF\xf02 \xf8\xaf\x1aA\x1c\x14\xaf\x96\x82wk\x01\xbc\x19$~\xdfS\x89O\x07R\xe269\x84\x98\x1d\xfcM\x1f\xc8\xde\xf0\xe2i\xf802|\xbcj\xa7/\xed\xd9\x15|;B\x10G\"\xe0c\xf8\xf1\x1eb\x19\x0e\x91\\\x86H\xd6B8?a\x12\x13\xc1\xdf\x83\x9c\x8b]\x10\xc4#\x08f\x0c\x04\xf4\x9a\x80\x01\xec\xe9\xc9D\x14\xee\xe7\xc1x\xa3\xf5\x115p4?\xc4u\xf2E\xd59F\xee\xa1I\x8f\x18\xfb\xd5\xc8\x03\x137\xe0\xdc\x06\x85\xe8\xd8\x89\x0b\xb9\x88tx\xe5\xa0\xd7M\xa4#\x0d\xe2^\xd2\xd1\xb5\x87\xe9>R)6//\xddG\xea\xea\x9d\x9d\xbc\x84\x8f\xef\xbf;\xad1\xa9\x9a:\xc3\xfc~Q1\\\x9a2\xff\xb1\xc1\xc5\x01\xd8\x18\xa2\xf9F]\x0fME\xf6C\xa3BqGC\x9d\xa3\"\xff\x17\xd6\xde\xf7+\x84_\xed\x9bU\x05\xac\x9a\xcd\x06\xd7\xea\xa3-\xc4\xd5\x13\xa2m\xb0kH;\xa6\x01\x99}\x92\x02#B\xcdeU%\x86\x87\xa7\x0f!\xbbD5\xca(\xae\x17\xfc^c\xb6w\x02\x82\xb7;\xdc]\xbe\xfe\xf1\xfdw\x8f\xc8\xf8\x1a\xd4\xa1\xf0J\xb59\x99\xcc\xa52u\x9b\xa6(\x0e\xf0c\x83\nf\xc1\xb5\xb0\xaf\xba\xe7\x9dY\xf21\"\x90\x97f%\x9fXUN\xb7U\xb5-\xf0\x82\xdbl\xd5l\x16\xaf\x1bq\xb9\xe9\xa7'\xa2%\\\xad\xb8n\x1eVx|%|_\x10d\xa8\xac\xca\x01\x8a\xd1\x8e@C\x1a\xc4\xcc!2W\xed\xf3\x82\xd5\x94V\xdc\x18\xab\xbcD\xb5\xd9u\xe5\xb7\xa0\x1c\xf6\x98\xb4\x17\xed\x1f\xccE\x8b\xb9\x0er~\xe3{C\xfa)7)\xfe\xcc?\xf5\xcb\xf2\xb0\x80\xbfT7\xf8\x1a\xd7'V\xb7\xe4\xe3\xfb\xef\x94\xdb\xc3T\xb1y\xda\xf8,\x9fA1|\xba\xa4t\xff\xe9D\xfc\x97|:\x81\xaa\x86\xb2\x92\xbf\x9e\xf0\xde\x98\xa1\x12*>:\x99E\xcc\n1\x85f/s\x8eZ\xca\xc5\xf55\xae\x85ivhOD\xd7\xe25\xa7U\x9bx\x94\xc7\xffrqc\n2\x87\xe96UQT7\xe4\xb9\xe5\xdb\xfe\x0e\xce6]\x8bX\xb7\xd8\xd7\x15[l\xd7m\xa3\xb9K@H\xb3\xc3kK\x82\xd3\xdf\xb1\xc5\xe9/\x17\x17\xe7\xf0\xed\x9b\x0buG\xcd\xc7\xf7\xdf\x891v\xe0\x17\x8e\x9b=\x87\x7f\x8c\x87\xc5\xc5a\x8f\x7f\xf8\xc7\x0f\xc6\x17\xe4E\xcd\xac?\x88\xfe&\x97\x11\xfe\x85\xf6u\xb5n2\x0c\xa8\x14K\x98\x99\xbf\xf6;x\xd9\xe5\x05!\xfcR\x1e\xc4l\x86\xd7\xcc\xdc\x19\xca\xd8\xdcRUW\xcd\x1e\xe4IDX!ba\x17V\xaeD*\x1f\xdf\x7f\xc7\xebx\x89\xaey\x17\xdc\xf5\xc6\xd0Z\x0c\"\xa4\x9a\xc4\xfe}]\xe5k@\xa5\x0d`\x11\x15\xe4\xd3G\x8d7U\x8dO\x94\x02\xa6\x17\xd1|\x95\x179=@\x89\xf1\x9aw\xa3\x15?\xd9\xcb\xbb\x9a\x8d'Y\x95l\x9a-\xb7\x98\xbf\xc4\xc7\xec\x02\x1e\x7f$X\xa5NbVb\xdd\x93\xcdY\xa2\x7f\xa2\x12mm\xad_\xd5\x18]\xb19H*^<1\xf7\xa8\xb7\x15\xc5\xcf\x81\xb25d\xd3\x94\x99\x18a\xac\x1dr\xee\xca\x9a\xba\xc6%-\x0e\xbd\xe8\xb7e\xba\xe4w&m6y\x96\xa3\xc2\xb1\x96\xad\x9a\x0d\xd4\x98\xadD\xf8\x84g\x93\xc9\xa9*\xb4!x-\xbc<5.\x8d\xaaVx\x9b\x97%k\xecMN/-\x8b\xcba\x8f\x17\xa2\xff\xa3}N\x16Y\xb5\xb3\xcd\xc6\x1f\xf8H%P\xd1K1Q\x94\xe3Y\n\x1e\xcb\xfb\xf0\xf1nO\x0frh?1/\x82\xf9\xf6\x92\xc2\xca2)\xf1Fs\x98 \xdf\xed\x0b\xcc\x16Y>`\x80\xecq\x96o\xf2\x0c\x08\xde\xa1\x92\xe6\x99\x81*z\x0b\x97\xaa\x8f\xc5\xd7K\xfa\x9eMG+\x0cH\xec\x06z\x0e\xce\x91\x1f\xa32\x07\xad\xaaks\x9f\x96&\x90CA{ \x9bG\xcd>\xbd,\x0f\x9f\xba-\x0f*\x01\xd5\xab\x9c\xd6l\x10\x9bk\xa8U\xa5\xd6\x08TT\xb2\xeb\x01\xd2\x7fZ6;\xf3\x85F\xd4p5t\x0bG\xee_\xeb\xd5\x19\xba\xe6\xb9\x1a8E\xbe\xe2\xd5\x96\xeb\x08\x01\xd2\xec\xf7U\xcdW\xf0=\xca\xaeN\x9b\x92\xfd\x87\xad\xdb\xa2_\xe8G\x90\\\xe8\xcd\x8eM\xb5\x81\x86\x8a\x89MM\x0f\x84M\xach\xbd\xce\xc5\\\x01[\\\xe2\x1aQ^y\xb6\xd1R\xc9\xa0\xb4\xfaX}\xc4'\xd4\x97\xf7\xe63b\x9d\x1f\x9e=\x87sV\x7f6/\xc8\xa6\xa0~F\xf0W\xbf\xff\xbde\x99\xfc\xa6\xaa`SU\xf0\x02\x16\x8b\xc5\xff6>\xc6*\x83\xca\x83\xf9\x01T\x1e\x16\xac\x1a\xdf\xd4\xd5\xee\xf1\xa6\xaa\x9e\x98\x1f],\xcc\xeb_\xbe\x81\xc7L\xd5G\xde\x90\x8b\xea\xf1\xbf1]O\xe0'\xcb\x1cn\xd3\xf7\xb3\xddv_;l\xf7Wt\x8df3\x1e\xbc\xe0\xbe!+e\x06\x0b\xe5\xe4\xf17U\xb5\xc8\nD\x88\xc3@\xa2\x8a\xec%\xd1\xc6\xde\x8b\xe6:\x18,\xd7\x9a\xee\x0f\x0e\xd3\x9d\x1f\xe8eUZ\x8c'j\xf5MU=^,\x16\xe6\xd5\xa05\xdcc\xeb3\xbc\xf3q\xb3\xc6Z\x95)9\x13F}\xfd\xe6\xc3\xab\xf7g\xe7\x17\xef\xde?\xb1\x85\xc9\xba\x8ej/X\x14m7\xe7\x1f\x1d\xe6\xfc\xb6\xb2\xe4\x88c\xa6|\xfe\x02\xfem\xbfZ|SU?-\x16\x8b\x9f\xcd\x0f\xa3\xf2p\xc2\xdcP\xf6\xc6^8Q\xdf\xa3\x9a\\\xa2\x82\x19\xd9\xde\x10\x9b \xc7\xb5\xb0T!\xdf\x8c*\xf0\xb1\xdcuU\xe0\x15\xe4\x03\x84?\xf5\xbf^@\x99\x17\xd6\x0en\xaf\x97\xa1'\xb3\xcd-\xb7\xb3\x9a\x8b\xd5F\x03V\x87\xce\xedR\xab\x87\xb8{S\xef\xf5\xca(\x19sK\xf4E=\xd2\xb8T\xa7l\xff\xbe\xe0?0w\xf5\x11\xa0\xdej\xc7VB\x995P\xabP\xf4\x10}a\xed\xd2R\x16\x07\xb5\xaf<\n\x16\xb4n2\xa0\x0d\xc5\xba\x18\xa1\x10\x1e\xc7xt\xfaH_\x94\\\x13U\x95\xf9n\x17\xb0\xec\xd1\x0f7U\xb5X\xa1\x9a7\xf6\xf3\xe9a\xf1\xaf\x87\xc2\x8a|\xef\xa5\xd5g\xde\x8a\xf2\xaa>d:\xd8r\xa8}\xe4\xaf\x1f\xde\xbd\xd5\xff\xf2\xe2\xc5\x8b\x17\xe6>\xc0\xde\xebb.\xc2\x8f\xac\xd8t \x9d \xb1\xafk\x08V\xf1\xd5mS CF\xebc5\xec\x955\xee\xdc\x96\x13\xc0\xbb\x15^\xaf;\x07\xe6D\xb8\xe3:u\xc8\x10\xbd\xe9\xb9\x14\x1b\xbe\x91\xfd\xf4\x9f\xcct\x9fd0a\x10\xa9V\x1fG?@\xe4\xf4\xf3\xdc\xb2\x01A\xd9\x15\x9b\x83\xba\x0d\xf1&/\xb0y\xddPs\xd69\xaeIUZ\x87\xad\x8c\xc4\xf1+c\x97\xfc\x0b\xbf\x80gf\xcd\xed\x0b\x9c\x98 \x9f\xff:|\x05\x03\xb0\xd6\xea!\xb7\xe5\xc3\xe7\xf0P7j\x87fX\x88V><\xb1\xe9\xe3\xed{\x8bvL\xe7\xff\x11M\xf8\x0f\xeb\x0b\xac}\xa3\xe7C\x1by\xb6\x91\x1b\xaea_\x13\xbd!'p\x83\x8b\xe2\xe9UY\xdd\x94|\x9e\xb9D\x04\x10d\x0d\xa1\xd5.pp\x0d\xbb\xfc\x89p\xe0G\xe3@]\\\xdcV\x87u`\xc3\xe6\n\x89.\xad/\xec\x13\x1f\x8c\xaa\x9f_V\xc5Zf\xa1\xe55\x17C9/\xdb\xf1\x01\"\x02\xa8W%\x86\x8c\xbe\x1c^\x85E\xbb8?f\xf3\x9a2\xe1QhHEL\x7f\xf8\xc7\x0fO,\x03i\x8e>7,\xd0\xde\xed\xb8\xa9\x98\xcag\x8b\xaf\x9f}M\x1eZ\xba\x90\xf8/E\xdb\x1eh\xf0\x14>\xe0\xfa:\xcf\x98\xf5N\xb3\x8a\xec*r\xbaB\x04\x9f\xd2\x96\x99wz\xfdl\x85)zv\xca\xd1/r\xfa\x93`\xf3\xfc,\x94l\xbbC\x97\xa4\xd9\xedP}x\x0e\xdfb\x016\xfd\xf9 \xae\xaa\x86\x1f\x1b\\\xe7\x98H\xfc\x8c\x99y\x9b_\xe3R\xf2\x82\xd4\x9cU\xed\xb1h\xf1\xd9\xfaX\x87|F\xc1N\xbd&<\xfa\xfa\xab\xaf\x1e\x99\xb1+ M\x96aB6Mq\x9b\xa0\x95\x99\x10dT\x06N \xc7\xccBqF/\x1c\xb1\x0b/\x82\x8f\xb5\xe6\xe0\xac=\xb8\x89<\xd4\x8b\xc0\xe3C\xdc\xb9\x8b\x1b\xfd\xbd\x889VB\x8e!\x11\xfa\x94.r\xbb\xdf\xcf\x99\xad>4/\xbd\xb3N\xe0U/\xf0\xcb*\xef\xf5\xdd\xa1\xf7\xed\x9dI\xd7\x9d9\xe1\xe7.\xd2'\x8e'\xc4/w;\x0cs\xb1\xdb\x9a:\xc8\xd2\xee\x9bu\xdd7\xbf\xfa0_\xbaEah&\xf5\xd0\x9c\xe9\xee\xec\xe8\x1e\x9f\xf4\xce\x18\xae\xf6|\xe5A\xc5\xb8\xa8D\x9e\xd9\xc6g\x1c\xd1n\xd6\xa5W\x03\xc1g2\x17\xe2\xb5\x0e*\xf1j)x\xb7\x16\xdc\xebc\xfb\x98\xd7:\xa9\xc4\xa7\x1f)q\x9b\x1cB\xcc\x0e\xfe\xa6\xf7\\OG\x0f\xdb\x89\xae\xfey\xaf\xbdZ\xe4\xd5\x92\xf0\xac\xd5\x1e\xf9\xa9\xe7\xaa\x9ewz\xe3\xb9\n\x1c\xdb\xc3\x99\xe8\xd9\x9a\xb89,E\xf3\\m\xf0M\xb0SU\xb3~\xc2\x03\x8c\xd6\xf29\xf1q\x87Q)[%\xaa\xfer\xbf\xff\x0b\"\x97\xb0\xae\xb0 \x93HV5SMl\x0b4\xfdl\xe0U\xb8\xce\x00\xbcf\x9e\xfe <-\x99\xd0\xdc)G\x124\xef\x93\xbb\xcd\xe4%\xd3\xea`\xbf\x96o\x86>\xef\xbe\xf7o\xc6\x8e\xef\xf4)\xdd\xf5\x15\xb2VW*.\xf9\xad\xf8\xeeF\x08\xf1\xac\x05\x04\xd4\x04\xd4\xcd\xfc\x86ii(\x01\x15\x80\xc0J\x80R\xef\xf5\xa4\xf7T\xd4\x17\xbf\xf3DJ\xd2\xcd\xfcR\xd2\xcd\xfc=I7\xf3{\xbd\x13\x94+?l\xdb,\xc4v.D/\xee\x10\xc9P\x02\xe7:\x88\x98\xef\xc0{g\xdfI\xc4\xe7\x03_\x97l,Aa\x97\xa1DX\x0f\"-\xc8\xc43@3\x94\x98~\xa7$|H( \xfd\xe0\x10\xff\xd1!\xf6\xc3\x07\x06}\x86\xe2\x15\x02\x1a\x8a\xf7QL%\x11\x06\xf1\x8d\xa7\x0e%\xf8\xa4\xaa\x92 5\xf4\xfeT\xe9f\xfe0\x8b\xc5\xb8 \xbf\xe8\x9b\xf9\xb9g\xbf\xf2\xf9\x00\x81\xf3u\xe8<\x9d<\xfb\x91$\xcf>y\xf6nI\x9e\xbd\xebiH\x9e}\xd8\x1a($y\xf6F \x1f\x12JB?8\xc4\x7ft\x88\xfd\xf0\xc9\xb3W\x92<{!\xe1\xf3m\xf2\xec\x8f\xe5\xae=\xfb{\x98\x19\xb2\xeb\xb3\xf7\xa3>ASOdM|\xa7\x9c\xd0\xfe\xf9Z\x01D\xac\x93N\xcdR\xd9~\x18\xe9V\x03\xbd\xa9\x98\xaeM\x91g\xc7\xf3W.E~\xca%\xe2\xc93\xbf4l\xd5k\xc1\xd2\x83d*$\xa0.\x10X\x1f\x90S#^\x07zU\x81u\x82\x88z\x81\x83\x83\xac\x97\x88\x8aAd\xe5\xc0\x87\xc5\xac\x97Pn\xb3^\"\xdb\n\x13\xda\x0b~\xech\xbd\x04NXcQ\x13\x98\x93I\xad\x17'\xbfZ/_\xb2\xd2\xa1S\xf0X\xfcx\xdb\xc1j\x87<\xef\x11\x9b;X\x9b'\xfb[/\xbe\x9c\xf0`\xc5\x03\x0ey0S\\/\xa1\xfcq\xbd\xb8Y\xe5z\x89\xee\xc8a\x11\x1d%\xd1\xc5\x85\xfaL}\xb1s\xd8\xf52CE}]\xaa\xa1x\xb2\xe0\xf5\xf2\x85\xe6\xfe\x98x\x01L32\x84o\xad\x862!p\xa4d\x82\xb5a\xa2\xc5!6\xa0\xa4$f\x83=\x96\xf8\x11\xa9$\xb6\xe3\xc0\xf4\xce\x03S;\xd0\xa4\x00\x94\x92\x88@\x94\x12\xff\xb3\x07z\x99`\xbf v\x0b?\xbd\xa0\x17\x8f3\x0dz\xf9\x12\xcd\xf6>Q\xa0\x97/Qe7\xeb\xd6,\xbeG1\x82\x15\xdb\x8en\xe8%\xec@\x87^\xbe\x84\xf9}\x8f\x84\xe8\xe5K\xd4\xd8}\xa8D/_\xa2\xae\x01\xc7R\xf4\xf2%*\xedy\xb0E/_\xa2\xc2aGc\xf4\xe2\x7f`F/w\xdf\xee)\xbbs\xe7 \x9d m\x01\xa7y\xf4b\xbb\xa5G/\x91\x1eq\xac'\xfc\x0b\xda\x83\x06\xb1\x0d\x94Lq\xd2\xc3\xd10%i\xf3\xe9#\x91\xd3\x83\x90\xb4\xf9\x8c\xee\xd7J\xe2\x87\xa2\x92\xd8\x8e\x03\xd3;\x0fL\xed@_z\xf3\xe9s\xc3\x93^\x84\xe5|oS\xed\x8b\xf3l\x9b^&\x0d\x94i\xc3$\xe8>)\xbdL\xeeha\x8c\xd2\xa1\xc4\xdeH\xa5\x97\xc8{\xaa\xf4\x12y{\x95^\xc2\xef\xb4\xd2\xcb\xa4\x9b\xae\xf4\x12\xbf\x0b\x172\xd7\xadXz \xba+K/\xd1\xec\xa5\xa1L\x1e'\x93\xa7\xe3\x00\x8e\xc6\xb1\xccV\xfd8\xd0AH0\x1dj(\xb3\xb5!\xea\x13L\xd9w \xf1\xbd\x1d,Bu^\x02\xb2\xde\x19\xa6\x97)m\xf2\xb8_,H\x9f\xfe.\xb2\xf6\xd6\xb1 ]\xa6\x1b\xcaL\xd2\xcd\x11\x04{o\xf7\"\xd6\xfd\x98\xd5>\xec.y%q^P\x84\x07\x14a\x05!1\xb6\x10\x12=\x8fO\x9a@&L\x1e\xc1w\xd1+\x896.L20\xc4\xdeQ\xafd\x92\xa1a\x9a\xb1!\xfe\xeez%_\xb6\xfaS<\xb2[\xb8\xdb^\xc9,w\xdc+ \xa5\xe3\x0ee\xd2\xf7\x99\xb2\xaf\xdf\xc7\xdf\x81\xaf\xe4\x0b\xd4]\xd5:\xa4\xb2\x913O\xec\x9c\x139\xa5O0f\xf4\x10\x8d\x9c\xcc#\x0d\n\x13\x8c\n\xd3\xa6\xf1 \xc6\x85)\x06\x86\xa9\x13\xf8\x97\xabx\xfc\xd4}k\x13\xf7\x8c\xd3\xf6\x94I{\xc27\x89\x9b\xf4`\x8e\xe9\xfa\xcek\x1dwXEIdu\xc3\xaa\xcavgU\xb9\xf4\x87\xc6\x02k\x15V\x9b\xd5\xe1_\xa8\xa4y\x89\x97a\xfb\xa4\xb0\xfdQ\xc0\xbe(x\x9e\x0f\x9f\xdd\x83\x17\xcb\xc0/ $b\x1a\x0c^\x1a\x83\x8d\x05Q\x06\x83\xd8\x850\xcap\x10g<\x88_\xf6\xee\xb6\x9a1\x8b\xdc-,o\xb3,lq3m\x94\xbd\xc3\xe65!\x13\x16\xb0;\xa8c\xdcb\x15X\xb1\xc0*\x85D\xc9#k\xe2\x1b\x01\x0f\x0d\xae~\xc7\x16\xd4W\xfc\xdc\xe0K~lp\xeaiF\x99\xa4\xb4w\xbe\x16Q\x8aw{~\x92\x91V\xb0\xcbI\x81\xd1\x1a\x908\xb3\xe8\xd4'\xce4\xea\"\xaa=\xaa\xb0\xde\xf0\xce\x89\xde=\xa9\xbb\x1c\x0e\xaf\xaf\xe9\xd3\x9b\x1cL\x1aQ\x8e\x8b[\xe0\xc3\x8eq\xf3`\x9cf\x03/\xd3\x81\x17\x19\xc1\xcb\x80\xe0\xbfj\x04qP\xbcZ\n\xde\xad\x05\xf0f\x90\xf8}O%>\x1dH\x89\xdb\xe4\x10bv\xf07} {\xc3\x8b\xa7\xe1\xc3\xc8\xf0\xf1\xaa\x9d\xbe\xb4gW\xf0\xed\x08A\x1c\x89\x80\x8f\xe1\xc7{\x88e8Dr\x19\"Y\x0b\xe1\xfc\x84IL\x04\x7f\x0fr.vA\x10\x8f \x981\x10\xd0k\x02\x06\xb0\xa7'\x13Q\xb8\x9f\x07\xe3\x8d\xd6G\xd4\xc0\xd1\xfc\x10\xd7\xc9\x17U\xe7\x18\xb9\x87&=b\xecW#\x0fL\xdc\x80s\x1b\x14\xa2c'nX?{\xbd\xc6\x97\x0e\xbe\x97\xf7\x052S\x89[a\xe5\xff\xb3O\xc8>\x8ef0\xfdw\x83\xeb\xc3\xe9\xd1\x15\x88\xef\xcf_\xc9;{\xbb\n\xa9I\xa1\xa7axwa M\x89?\xefq\xc6\x1a\x8d\xeb\xba\xaao\xf3\nC^\xc0q\xe7\xb5t\xd7\xacZkz\xbb\xddC\xb0yz2\xdb^P\x1d\xd6\x98\xa2\xbc\xd0\xcc9\xb6\xc5\xd5\xb8\xa8:\x16S\xd7\"\xca^_6\xb5\xd1\x8d\xf2\x18\xfa~#\x07\xe0%||\xff\xddi\x8dI\xd5\xd4\x99\xbc\xe5\x99\x0f\x99\xa6\xcc\x7flpq\x006\x8eh\xbe\xc9q\xef\x8a`\x0b1D\xdc\xd3\xa0n0\xb6\\\x15\\W\xb4\xca\xaa\x02V\xcdf\x83\xdb\x1bS\x17\xe2\xfa \xd16\xd85\xa4\x1d\xd7\x80\xcc~I\x81\x11\xa1\xe6\xb2\xaa\x12\xc3\xc3\xd3\x87\x90]\xa2\x1ae\x14\xd7\x0b~\x993\xbf\xaf\x9a\xe0\xed\x0e\x97\xed\xe4\xf5\xf1\xfdw\x8f\x08\xec\x91\xe1\x92e&\xbcRm^&s\xa9Ts\x956\xb7\xaf,\x8a[\xf21\"\x90\x1bnnf\xf2\x89U\xc5x\xa9\xeb\xa7'\xa2%\\-\xb9\xac\x9ab\x0d+6\xf9\x1a\xf5!\xc8PY\x95y\x86\n>\x86\xcc%?\xc6\x8b\xed\xe2\x84\x99\x96\xa7\\x\xb8x\xc8\xe6/~-I\x96\xe1=\xc5\xeb'\x0b\xc3\xed\xdaL\xceJ\xd83c\xe7\x19>\x01\x8a\xd1\x8e@C\x1a\xc4\xcc!\xb2W\xed\xf3\x82\xd5T\xdc\xba\x0b\xab\xbcD\xb5\xd9}\xe57\xa1\x1c\xf6X^IB/\xf1\xc1\\\xb4\x98\xeb \xa7l\xbb\xdd\x90~\xdaM\x8a?\xf3O\xfd\xb2<,\xe0/\xd5\x0d\xbe\xc6\xf5\x89\xd55\xf9\xf8\xfe;\xe5\xfa\xc8\xfb\xd1\xcd\x05\xf3\x19\x14\xc3\xa7KJ\xf7\x9fN\xc4\x7f\xc9\xa7\x13\xa8j(+\xf9\xeb \xef\x8d\x19*\xa1\xda\x8bk\xb9\x0bs\xb3\xd92\xd4\xece\xdeQK\xb9\xb8\xbe\xe6\xf7\xb2#\n;\xb4'\xa2k\xf1\x9a\xd3\xaaM>\xcac\x80\xb9\xb85\x05\x99Cu\x9b\xaa(\xaa\x1b\xf2\xdc\xf2m\x7f\x07g\x9b\xaeE\xac[\xa8\xeb\xf0\xdbFs\xb7\x80\x90f\x87\xd7\x96$\xa7\xbfc\x8b\xd3_..\xce\xe1\xdb7\x17\xea\x9e\x9a\x8f\xef\xbf\x13c\x8c\xdf\xfdn\xf1\x1e\x8e.W\xbe8\xec\xf1\x0f\xff\xf8\xc1\xf8\x02\xc8\xfb\xd9\xf3R\xf67\xb9\x8c\xf0/\xb4\xaf\xabu\x93a@\xa5X\xc2\xcc\x1c\xb6\xdf\xc1\xcb.7\x08\xe1\x17\xf3 f3\xbcf\xe6\xceP\xc6\xe6\x96\xaa\xbaj\xf6 O#\xc2\n\x11\x0b\xc3\xb0r%S\xe1\xf7\xe5W5\\\xa2k\xde\x05w\xbd1\xb4\x16\x83\x08\xa9&\xb1\x7f_W\xf9\x1aPi\x03YD\x05\xf9\xf4Q\xe3MU\xe3\x13\xa5\x80\xe9E4_\xe5EN\x0fPb\xbc\xe6\xddh\xc5O\xf7\xf2\xaef\xe3JV%\x9bf\xcb-\xe6/\xf11\xbb\x80\xc7\x1f V\xe9\x93\x98\x95X\xf7ds\x96\xe8\x9f\xa8D[[\xebW5FWl\x0e\x92\x8a\x17O\xcc=\xeamE\xf1s\xa0l\x0d\xd94e&F\x18k\x87\x9c\xbb\xb2\xa6\xaeqI\x8bC/\x02n\x99.\xf9\xbdI\x9bM\x9e\xe5\xa8p\xace\xabf\x035f+\x11>\xe1\x19er\xaa\nm\x08^\x0b?O\x8dK\xa3\xaa\x15\xde\xe6e\xc9\x1a\xcb/\xfa7W\xec\xf8\xeao\xdbl\xfc\x81\x8fT\x02\x15\xbd\x14\x13E9\x9e\xa5\xe0\xb1\xf0C\x01\xef\xf6\xf4 \x87\xf6\x13\xf3\"\xc8\xdd\xd1\x95eR\xe2\x8d\xe6PA\xbe\xdb\x17x\xd7^\xf0N\xf68\xcb7y\x06\x04\xefPI\xf3\xcc@\x17\xe5cu\x82\x0b\xe4\xb1\xeb\xf1\xf5\x92\xbeg\xd3\xd1\n\x03\x12;\x82\x9e\x83s\xe4\xc7\xa8\xecA\xab\xea\xda\xdc\xa7\xa5 \xe4P\xd0^\xc4\xe6Q\xb3O/\xcb\xc3\xa7n\xdb\x83J@\xf5*\xa75\x1b\xc4\xe6\x1ajU\xa95\x02\x15\x95\xecz\x80\xf4\x9f\x96\xcd\xce|\xa1\x115\\\x0d\xdd\xc2\x91\xfb\xd7zu\x86\xaey\xae\x06N\x91\xafx\xb5\xe5:B\x804\xfb}U\xf3\x15|\x8f\xb2\xab\xd3\xa6d\xffa\xeb\xb6\xe8\x17\xfa\x11$\x17z\xb3cSm\xa0\xa1bbS\xd3\x03a\x13+Z\xafs1W\xc0\x16\x97\xb8F\x94W\x9em\xb4TB(\xad>V\x1f\xf1 \xf5\xe5\xbd\xf9\x8cX\xe7\x87g\xcf\xe1\x9c\xd5\x9f\xcd\x0b\xb2)\xa8\x9f\x15\xfc\xd5\xef\x7foY&\xbf\xa9*\xd8T\x15\xbc\x80\xc5b\xf1\xbf\x8d\x8f\xb1\xca\xa0\xf2`~\x00\x95\x87\x05\xab\xc67u\xb5{\xbc\xa9\xaa'\xe6G\x17\x0b\xf3\xfa\x97o\xe01S\xf5\x917\xe4\xa2z\xfcoL\xd7\x13\xf8\xc92\x87\xdb\xf4\xfdl\xb7\xdd\xd7\x0e\xdb\xfd\x15]\xa3\xd9\x8c\x07/\xb8o\xc8J\x99\xc1B9y\xfcMU-\xb2\x02\x11\xe20\x90\xa8\"{I\xb4\xb1\xf7\xa2\xb9\x0e\x06\xcb\xb5\xa6\xfb\x83\xc3t\xe7\x07zY\x95\x16\xe3\x89Z}SU\x8f\x17\x8b\x85y5h\x0d\xf7\xd8\xfa\x0c\xef|\xdc\xac\xb1VeJ\xce\x84Q_\xbf\xf9\xf0\xea\xfd\xd9\xf9\xc5\xbb\xf7Ol\xa1\xb2\xae\xa3\xda\x0b\x16E\xdb\xcd\xf9G\x879\xbf\xad,y\xe2\x98)\x9f\xbf\x80\x7f\xdb\xaf\x16\xdfT\xd5O\x8b\xc5\xe2g\xf3\xc3\xa8<\x9c07\x94\xbd\xb1\x17N\xd4\xf7\xa8&\x97\xa8`F\xb67\xc4f\xc2q-,U\xc87\xa3\n|,w]\x15x\x05\xf9\x00\xe1O\xfd\xaf\x17P\xe6\x85\xb5\x83\xdb\xebe\xe8\xc9ls\xcb\xed\xac\xe6b\xb5\xd1\x80\xd5\xa1s\xbb\xd4\xea!\xee\xdf\xd4{\xbd2J\xc6\xdc\x12}Q\x8f4.\xd5)\xdb\xbf/\xf8\x0f\xcc]}\x04\xa8\xb7\xda\xb1\x95Pf\x0e\xd4*\x14=D_X\xbb\xb4\x94\xc5A\xed+\x8f\x82\x05\xad\x9b\x0chC\xb1.J(\x84\xc71\x1e\x9d>\xd2\x17%\xd7DUe\xbe\xdb\x05,{\xf4\xc3MU-V\xa8\xe6\x8d\xfd|zX\xfc\xeb\xa1\xb0\"\xdf{i\xf5\x99\xb7\xa2\xbc\xaa\x0f\x99\x0e\xb6\x1cj\x1f\xf9\xeb\x87wo\xf5\xbf\xbcx\xf1\xe2\x85\xb9\x0f\xb0\xf7\xba\x98\x8b\xf0#+6\x1dH'H\xec\xeb\x1a\x82U\x84u\xdb\x14\xc8\x90\xd5\xfaX\x0d{e\x8d;\xb7\xe5\x04\xf0n\x85\xd7\xeb\xce\x819\x11\xee\xb8N\x1d2Doz.\xc5\x86od?\xfd'3\xdd'\x19L\x18D\xab\xd5\xc7\xd1\x0f\x109\xfd<\xb7l@Pv\xc5\xe6\xa0nC\xbc\xc9\x0bl^7\xd4\x9cu\x8ekR\x95\xd6a+#q\xfc\xda\xd8%\xff\xc2/\xe0\x99Ys\xfb\x02''\xc8\xe7\xbf\x0e_\xc1\x00\xac\xb5z\xc8m\xf9\xf09<\xd4\x8d\xda\xa1\x19\x16\xa2\x95\x0fOl\xfax\xfb\xde\xa2\x1d\xd3\xf9\x7fD\x13\xfe\xc3\xfa\x02k\xdf\xe8\xf9\xd0F\x9em\xe4\x86k\xd8\xd7Do\xc8 \xdc\xe0\xa2xzUV7%\x9fg.\x11\x01\x04YCh\xb5\x0b\x1c\\\xc3.\x7f\"\x1c\xf8\xd18P\x97\x17\xb7\xd5a\x1d\xd8\xb0\xb9B\xa2K\xeb\x0b\xfb\xc4\x07\xa3\xea\xe7\x97U\xb1\x96\x99hy\xcd\xc5P\xce\xcbv|\x80\x88\x00\xeaU\x89!\xa3/\x87Wa\xd1.\xce\x8f\xd9\xbc\xa6Lx\x14\x1aR\x11\xd3\x1f\xfe\xf1\xc3\x13\xcb@\x9a\xa3\xcf\x0d\x0b\xb4w;n*\xa6\xf2\xd9\xe2\xebg_\x93\x87\x96.$\xfe\xbbG5\xdaa\x8a\xfb|\xdb\xa7|\xe6}.\xb9:=\x15y\xf9|\x1c\xca\xae\xf1\x8fM^\xe3\xf5s\xa0u\xd37\xbaaC\xadc^P\xb4\x1d\x94\xfe\x01\xd7\xd7y\xc6\x94\x9df\x15\xd9U\xe4t\x85\x08>\xa5-C\xf0\xf4\xfa\xd9\nS\xf4\xec\xb4\xac\xd6x\x99\x97\x9bJ\xbc\xbe\xed\x8e}\x92f\xb7C\xf5\xe19|\x8b\xe9\xdbj\x8d\xcf\xcaM\x05?6\xb8V\xb8\x83\x0c\xdc\x00S\xc1\x13N\xa9\xb9\xb2\xdaca\xe9\xb3\xf5\xe0\xed\x07\xaa\xc1\x02\xe9\xea\xd5\xf8\xd1\xd7_}\xf5\xc8\x0c\x97\x01i\xb2\x0c\x13\xb2i\x8a\xdb\xc4\xc9\xa4C\xb2\x1c\xd9\xa4/F\xad\xe0\x04\x91\xd4\xa6\x7fiMZn-\x00\x9c\x85\xf0'\xbe\xb6`\xe5\x1eQ\x9a\xae\x8bY\xb3f;\xf2\x90\xcfW\x905s\xf8<\xc5\x0c\xbf\xbc\x81\x88\xe6(\xaa\xc8 \xc5%\xa7JD\xbd_bzS\xd5\x06\x8b:\xde\xf5\xe8R\xc6w\xb3KT\x96X\x07\xb4z\xbc\xec\x8c\xe9\xed\xaa2\xbf2\x91\xde\x1c\xcayh\xf4\xd6\x86 \xfd\xec\xba)\xc7\xd9v\x80z\x9f\xb9\xc91\x16=\xbd\x94\xe6\xe6ya\xc2\xa4\xc3\x97\xa1\x18\xdb\xa3\xfd~\x19\xfd\xf2\x94\xee\xb8\xcd}\x18\xb4\xc6\xd7WM^\xac\x97\xc3\xf50\xe0\xf5m\xe53=;J_\xe3\xbd\xb5t3/\xd0\xca t\xf6yWg\x90\xcf jecz\xf4z\xfe\x98\xe0\xae\xed\xaauS`;<\xefqKGT\xa1R\xaf\xf1yb'&\x86\x95\x99]\xe2\xec\x8a4z?\xbf}\xea{Q\xb3\xbc\xb7\x89dN\xf0\xdfDM\xcf\xf4Y9\x85\x8b\xb6$\xeb\xabI\x9d\xaf\xad\xc4\xa3\x0fy\x99\xf1t\xa0L\xefS\xb2\xbe\x82\xaf\x16\x7f\xfc\xc3\xa3\xa3w\x06^V\xaf\x8eG\xf5g\xff\xd3s\xe4Z\xfaT\x0b&\x18\xb5\xea\xa8XGjZ\x16\xd6\x8f\x0d&tXlK\xbb\x1ay\x91J\x12\xffJJ\xe2_%\xfeU'\x89\x7f\x95\xf8W\x9d$\xfe\x15M\xfc+\xbd$\xfe\x95\x92\xc4\xbfJ\xfc\xab\xc4\xbf\xf2\xf4\x92\x12\xff\xaa\x95\xc4\xbf\xeaK\xe2_%\xfe\x95F\x12\xffJ\xfbL\xe2_%\xfe\x95A\x12\xff*\xf1\xaf\x12\xff*\xf1\xafz2\x07\x17&\xf1\xaf\xb8$\xfe\xd5\xaf\x85\x7f\x15\xcf}\"\x872\xcbK\x99\x0b\xc5\xc0|\xfa \x9ei\x89O\x9c\xec$_4\xf1\x9d\xe4;\xf2\xd7{Kw\x1a4\xbf/B\xd7\xaa\xaa\n\x8c\x86\x81 '\xb4'\x9b\xee\x95_\xa1\x83\xf6\x86\x06S\x92\x90=) \xd9K\xc8^' \xd9K\xc8^' \xd9\xa3 \xd9\xd3KB\xf6\x94$d/!{ \xd9\xf3\xf4\x92\x12\xb2\xd7JB\xf6\xfa\x92\x90\xbd\x84\xeci$!{\xdag\x12\xb2\x97\x90=\x83$d/!{ \xd9K\xc8^O\xe6@Y\x12\xb2\xc7%!{ \xd9\xeb\xb2\x84cJN\x0bD1\xa1V\x98\xef;\xfeH{m\xd2\x07L[\xc4O\xbc\xdd%\x1e\x7fJ05!\x7f\xc7j\xe4\x83\xf7\x16\x04\x14\xb7B\x98\xee\x94\xb1F\x1elW\x80\xd8.\xa1\xa3_\x00er\x9c\xd1vFX\x1c7\xba9j\x07\x1e5\x04\x0f,\x0c|\xaa*\xc4'\xa6\xa2$\x14\x17\xb3*\xd3\x07G,{\x85\xb9\xf11pcd\x10\x81\x93\xd9\x1b\x80\xe8\xa57V\x06s\xe1e\x10\x89\x99Y\x152\xe3z\xe3f0\x1d;\x83`\xfc\xcc\xaaJ\xc6\xf5\x8304\x98\x1bG\x83@,\x0dB\xf14{\xcfn\xb16_L\x0d\xe6\xc6\xd5\xc0\x0f[\x839\xf15\x98\x8c\xb1A\x1c\xce\x06sam\x10\x85\xb7\xd9\x87\x03\"x\xed\xc6\xdc\xe0vp7\xb8E\xec\x0dn\x07\x7f\x83@\x0c\x0e\xe2p8\xd7\x14\xec\x87\xc5\xc1\xbcx\x1c\x04`r\x10\x8e\xcbA\x046\xe71e>\xf1\xc0\xe7`\x0e\x8c\x0e\\8\x1d\xf8\xbbg\x1ex\x1d\x04zq\xc1\xb8\x9dU\x1b\xc7\xf4<\xb0;\x08\xa8\xe5\x8c\x18\x1e\x04\xe1x07\x96\x07\x91x\x9e\xbd_\x117\xa6\x07\xf1\xb8\x9eQ\x1f+\xd1\x85\xed\xc1l\xf8\x1e\xf8\xc3T\xe0\x83\xf3A\x18\xd6\x07\xae\xe0|$\xe6\x07\x1ez-\xf1\xbf\x99\xf0?\x882\xae?\x0e\x08\x1e\xad\x8c\xc0\x03!\x16\x13\x04\xbbU\xe7\xc3\x06\xc1\x1f\x1f\x04O\x8c\x10\xbcqB\xf0\xb3z8^\x08A\x98!XqC\x98\x0b;\x84P\xfc\x10&b\x88\xe0a\xde\x00,\x11n\x03O\x04\x9f:ZF\xc2|\xd8\"\xf8\xe0\x8b0\x01c4*d\x0f\xdapF\x98\x1bk\x04'\xde\x08\xb1\x98\xa3Q\x9b\xd8\xa3\xda\xb7\xeb\x1e\xd8#X!\x12\xb0b\x90\x10\x85C\x1aUY\xf1I\x88\xc5(\x8d\xda\x84\x1fh\x89\x9a\xcd\x87U\x82\x17^ \x11\x98%\x84\xe1\x96\x10\x83]B0~ \x8e\xd5\xd6\x81)A\x00\xae\xe4\x8beB\x0c\x9e \xa1\x98&\xd8\x1b\x1e\x83m\x1a\x95\xf5\x90C\xdf!\xe3\x87qZ\x07D\xb9\xb5\xe3\x9c0/\xd6 .\xbc\x13\xec\x98\xa7\xf1\x9dX,\x14f\xec\xbb\x01\x98(\x04\xe1\xa2\xd0\xc3F\x87r]\xd1\xbc\xdc.\xf7\xd5\x8d)a\xb2Wd\xc2}\xa9\xff\xbe\xae\xf6\x15\xc1\xf5r_\xe7U\x9dS\x07\"6\xa9\xb4avR\x05(js\x93j\xc1Y%{\xb4\xcdK\xfe-\x8e+;(\xa3{P\xc4\xb91\x8fQ\xf4\xfe\xaa\x8a\xd3\xe1\xb1B\xa8\x0d\x08t\xa4j\xc6\x9f\xa9\x19ct\xda\xd3\x19Q\x92\xc9a\xff\x9f)>\xa3\xcaW\x06f\xff\x94\xe1XD\x88\x88?\x9f\xa3-~/\xb2\xb4.\xc4\xef\x06e?6\xb8>p5L-\xb3!\x86]E(`\x1e\xd4\xe4\xd1P\xcd\xab\xb4\xa2\xc8\x80~z\x1b\xc0\x92K\xdeu\xdf>/\x9e\xb7\x9f\xff\xa3lv+\x11-SG[z\xe7(L\xf1\x94\xbe\x89\xb2\xaa)\xe9\x92+3M=7\x88\x00\xc1\xf4\x04rJ\x14\x8a@\xa0)E\x07\\\x8b@\xe9MN\x86\xdf\xd4y\x0e\xf7\x98\x88\xe0u$w\xa4\xa8=\xa0\xdbW\x94n>\x1f\xff\x9a\xce\xe7\xa6\xf3\xb9\x9d\xa4\xf3\xb9\xe9|n'\xb3\xf2\nB8\x05A|\x82t>w*w \x8270\x0bg \x9c/\x90\xce\xe7N\xe1\x07\x84p\x03\"x\x01\xe9|n:\x9f\x9b\xce\xe7\xfa\xe2\xfa\xb3b\xfa1x~:\x9fkz\xcc\x89\xdb\x07`\xf6>\xa7OC\xb0\xfat>7\x9d\xcf\xf5\xc1\xdd\xd3\xf9\\.S\xb0\xf5t>W\xa7\xc9\x89\x9f\xc7b\xe7\xc6\xb5!\x9d\xcf=\x96t>7\x02\xf3v\xe3\xdd\xa1Xw\x00\xce\x1d\x8cq\x87\xe1\xdb\xe9|n\x18\x86\x9d\xce\xe7\xb6\xf2\x9b<\x9fk\xbb\xf9\xbcCM\x17W\xb8\xbf\n\x0e6\x93#0R\xa2\x8fHN\xa15\xa6M]\xf2\xa0\x92\x84\xd5$P\xd4B\x95<\x14\xb4\x1d\xc5L8\xf6\xc8\x86\xbd\x1d~\\\xc0;\xb6\xe0U%\xdf+V\x9b\x0d\xc1\x94m\xbf\x86\xd5\x85^({\x84-\xe7\xe5sQV\xefo\xdde\xee\x1bT\x0c@;C\x90@\x1b\x18\xd0\x18Q\xd4\xcfd\xc7\xd1\xa6\\6\x86\x9b\xb2lv\xb8\xce3\xf57>\xda2T\xb2\xf6\x88\xa8\xc8%.\x95\xe1\x9b\xb2\x0dD\x8d\xdc\xcf3\xae\xad\xc0\x84t&\x14\xa1\x9b\x860S_\xe1@{\x0e\xd5\xdf\xb2qG\x90\xb0\xc6\xbcE\xbe\xcb}\xad\xcb\x9fmi\x08\x06\xa4X\x04)\xfb=X\x82\xaeM1\x02/EH\xa2\xff\xa7\xb3\x0d\x14xCe\xf4+\xa7b:TN#\x8f\xaf\x8a\x01\"\nav^\x1d\x00\xa3\xec\x12\xd0~\xff\x05\xad\xd8\xc7\xbb\xbb\xf7m\xb6\xec\xbd\xc1,\xca{h\x05\xb4n0\xb0\x7f\xe4\xe5:\xcf\x10\xc5-\xd2\"-\xc8\x1f\x94\x1d\xa9\xaf./\xb3\xa2Y\x8f\\B$Ji\xa1\xae\xd1\x17\xe3\xc0i/\x02\xcb\xa6\xee\x1e\xe7c4\xb9|<#\xa3\xaf5j\x02\xf7\xa2kL$\xc4\xcd\x87W7\x1e\xd9\x90[\xc8\xd1\x94o\xcb\xaa\x1e\xc5\xaf\xd5h\x1c\x16!,3\xf5\xc3\x8e\x13zk>`\x8d\xafq=x\xd5\xf6\xf1\xe4\xd3\xe3\x0f\x97\xf7\xf8\x125\xd6\x8f\x84\x81\x1eV\x06.9\xb2W\xd5k\\\x8f\x03X\xfa\xeb\x8cg\xb5\xc6\\\xa9&~\x12\x99\x14~\x16\xba\x0c\xc9&\xb4l\n\x95nb@e\x02D\x01\xc16\xbf\xc6%\x08\xcd\xa6\xcc\x13:\x9d\x0f\x94%R\xee %\xf4\x0b0(R\xee \x8b\x84r>\xac\xca\xf4\x81\x7fK\x1cln\xee\x07\xb8\xf9\x1f\x10\xc1\x01\xb17 \xe5\x9e\x88\xe5\x85@07\xc4\xaa*\xe5\x9eH\xb9'b\xf9#\x10\xc7!\x81\xb9x$\x10\xc5%\xb1\x0f\x87\x94{\"\x8c[\x02\x81\xfc\x12\x88\xe3\x98\xb8\xa6`?\x9e \xcc\xcb5\x81\x00\xbe \x84sN \x82w\xe21e\xa6\xdc\x13B\x829)Vm)\xf7D\xca=1\x92y\xb8+\xe0O\xc1\x00\x1f\x0e\x0b\x84\xf1X\xc0\x05\x8dQ[\xca=\xe1\xc7\xbf1jK\xb9'\xe0\x8c(\xa5\xdc\x13\xbf\xa1\xdc\x13:*B\xca>\xd1\x89\xa57\xa5\xec\x13\x9a\xd7S\xf6\x89\x00\x06B\xca>\x91\xb2Ot2+\xb3 \x84U\x10\xc4(H\xd9'\xa6\xb2\x07\"\x98\x03\xb3\xb0\x06\xc2\x19\x03)\xfb\xc4\x14\x86@\x08; \x82\x19\x90\xb2O\xa4\xec\x13)\xfb\x84/\xb2?+\xaa\x1f\x83\xe8\xa7\xec\x13\xa6\xc7\x9c\xc8}\x00j\xef\x93[!\x04\xadO\xd9'R\xf6 \x1f\xe4=e\x9f\xe02\x05]O\xd9't\x9a\x9c\x08z,zn\\\x1bR\xf6\x89cI\xd9'\"Po7\xe2\x1d\x8av\x07 \xdd\xc1(w\x18\xc2\x9d\xb2O\x84\xa1\xd8)\xfbD+)\xfb\x84\x14u\xa4\xf9\xb2\x7f\xfe\x15\xe4 \xe1Q(\xbb; L\xeb&\xe0\x18\xbc\xf3\x14|\xcaw\x01n+\xa6|\x17\xb7h\\w\xa6\x86\x94\xefb\x0e+\xa6|\x17)\xdf\xc5\xaf5\xdf\xc5:g\x03c\xd50K\xb4\xc9.\xb2j\xb7k\xca\x9c\x1e\x96\xfb\xaa\x92\xa0\xbc.\xc9\xc5+\xf5\xdcyU\x15mj\x0b\x81<\xca_\x80i\x80\xac\xcaK\xa2\xcdi1P\xf1@\xb5\xf1\x9ef\xb2\xe8\xac\xd1\x17\xfa\x05\x08\x13k\\V\xbbh\xa8\x00\xed\xd8\xe0\x8e|\xdd'P\xff\x1ag\xaf\xaa\xbc\xc7q\x03Z]\xe1R\xc6\xd9E\xed\xd5L\xc4<}\xf6\xa7,\xdf!=i]T\xd7\x14q~\xfb\xee\xe2\xcds\xbeg\x16\xcf\xc9\xcdg\xce\xf1\x81\xd78\x93ny\x8b\xc9\xf4}s\xadB\x11\xaa\xd0\x17F\xf2m\x89hSc\xd2\x8eD\xb6Hm\xabm\xc5\x1d\xe1\xe3\xfd\xec\x90\xfe\xc7\x06\x832\xcap\x8c<\"\xc3Q\xa2y\xfb\xc8\xd8\x9c:5\x18A\xf1\x04\xac\xe1@\x1c=\x92XXR\x12\x0b\xcb6\xaf\xdc\x02\x809^\xc1\xfe[\xae\x87\xd6\xf5k\x8d\x0b\xbc\xe5\xa9\x81N\x7fj\xff\xbd\x94 z~>\xad\xf1\x0d\xaa\xd7\xc4\xbc\xae\xf5\xf6o\xaf\xc5\xebyU^0W\xe8\xbdxu\xb0\xd6 \x1fI*\x05\x94eu#f\x05\xc4\x9d\xd7VU\xcb \xd6.\x84\xfa\x82\xe4\x93\xf7vE\x1c\x98\xb2/_\xa2\xff\xb6\x06^N\xcd\xc5$\x9ae\x7f]\xdf6!\xc6\x16\nq\xb4S\x88\xab\xb5B\xac\x8e\x80\x10gk\x85\xd8\x9d\x02!^\xaa|\x1c\x04!\xc1n\x82\xd5\x10\xdc\x81p8\x0bB\xa2\\\x06\x8b>\x19\xe8\xb39\x0eB\xc2\xdd\x07{dII7y\xbcV\xd3\x9d\x98@\xba\x98\xa7\x98\xab\xbaN\xa5\xd5Sm\xb8\xd9\xa5\x8aGD\xfd\x9b}\x001&\x1c\x0e\x8e\x9a\x05\xdb/Z\x14\xd2\x0f\xd1\xcc\x8emAc\xa5\x06\x8e\xfe\x97\x98S\x92\xa3\xddJ\xd4\xa8\xf9B\x8e\xb6X\x93\x95U8G\xa7\xd9\xf1\xee=\xec\x90\x16o\xfbh\xa8q\xd7C\xbfL\xc7\xbb\xdd\x06\xff\"9\xdcR\x92\xc3}\xc7\x0e\xb7\x0do9\xf2\xa5M]\xf1\xe8\xc1\xc1Pl\x7fU93\x81V\xf28\xd7f\xb8\x18L\xc4snq\xf3p\xfa\xd3\x91\xb7i\xc9\x06\xdb\x8d\xf2\xc0\x0dD\xb7\xfe:6\x0di\xbfp\xfc\xb3k\xf8\xa5\xb5\xbd\x95_\xd2\xda>\xf61]\xfeeo\xf0h\xb4\xb9\x96\xf9\x19W\xf8\xb4\xb8\x8f$-\xeeiq\x8f^\xdc\xbb\x9a\x1f\xad\xc4\xa6\x9a\x1f=8\xa8y\xfb\xebm\xd7\xfc6\xdc\x92q6t\x8b\x17R\xd5\xedI\xeb\xa1\x1f\xd2\xe9\x18\x05\x02\xb4\xbeGo\xd5Z,N\x17\x8bS\xba\xdb?%7h\xbb\xc5\xf5\xd3-.\xad\xad\xe1f]\xc8\xa7\x17\xff$\xbd\xc0EW\xb9\x07\xca\xb4\xf7\xd4\x99\xb9\xa5\x0c\xf4\x86A\xedv\x19z\xdfO\xdb\xafI\xff\x9b\xb2\x85L-\x90\xda)d3\x8e\xcb\xf8/\x9b\xfd\x8f8y\xe1\x1ct\xd7\xb4tJIKgZ:\xef\xd5\x02\xc4v%\xeb\x1a\xdd\x0c\xb1\x17\xeb2\xf4w\xf9\xcaK\xd9Z\xb5\x16)U\xad\x19?P-\xbe\xa7\xf3xk\x9e\xc1\x1f\xef~\xeaf\xfd\xb8\xfdf\xe1kJ\x9a\xf9\x03\xbf{\x9a\xf9\x7f\x953\x7f\xd4l\xc9\x97\x0b\x8b\xe3{\xce\x7fo\xe7D\xf1x{\x1c\xb3\xa7\x11v\xd5\xba)\xf0]\x84]D\x9d\xa4\xca{;\xbb\xf6-\xdb\x97Ae\xa4=\xfb3g\xb7\x80+3\x0f-\xdb\x89\xb5\x0f\xdb{p\xc7\x96\xd7.\x02\xe0\xee\x84+D\xf0\xb2\xcd{j#\x9f\xb9\x14UeCf\xd14X\x90\x96\xb8D\xab\x02[5\x8d\x8fatBpVc\xba\xd4\xf9\x12zU\xc6J\x1dk\xb2\x12\xfd\xfcV9=\xabZ\x8c\x0b\xaf5M\xaebrt\xbf?\x7f5\xd2\x97V\xb0\xb4\x82\xfdBV\xb0.T\xac\xe37\xf0sA9!\xb9Js\xac[\xe4\xda`\xed\xab\xf6\xe1v\xc5CY\xd6\xec\x9a\x82\xe7\x1a\xeat\xf1q\x84\x1c\xf4h\x8dZ\xf9\xd8\xbd]\xb4\xc6\xd6\xea\xcb\xa0B=S\xf4\x17/\xf1\xe7\\& \xec\xd0\xa9\x1ag8\xbf\xc6\x1a*\xe6\xc4E\xccTYp\x0c+p1\x9e\x1d\xc3\x0b\x9c\xb5\x13\xe2\xe4:{\x8c\x14\x17o\x03\xfc\xd4\xb8\xc1\x18!\xc1\x1c\x0eK\xe3}\xf9\xcdQ\\\x0e\xa36Ons\x18\xa7\xc3\x94(\x9cOR\x9a\xa1\xee\xb5\x0e\xebt\x9d\xea\xa6\xa3n[\xd9\xbe\x92\xd6\xe4\xd1\xafiM\xbe\x855\xd9\x16O\xfcM\x90\x18\x1c\xfeE\xd5PB\x11?2\xbdt\x1e\xd2jG\xf6\xbb\xee\xad1\xbbR\xd1\xc2x\xb4\xf1\xc84vG\xe3X\xed\x03e\xa5{\xeap8\xc8\x95Q~\x81Q'$\xa7`,\xc9)\x18I\x98S\x00^&\xb4\x0d\xfb\xdea\xa7\xdeT\xa2Q\xf2\xb8)\x9f\xaa\x08G\xf9Dur]CF{\x13\xc8\xb9\x17P\x92\xfc\x1a\x8b\xcc\x10(\xbb:\x11\xd9\xb0 \x10n> \xa8\xcc\xb5\xf7\ng\x978\xbb\n?\xe1mi\xb2\xd31\x1a\xe9\xd3ds\x1f\xf9I\x1a\xb3\xa60\xbc\x94\xe40%\x87\xe9^9L\xa4@\xe4\x12\xfb8I\x1f\xc4\x93\xadg\xc4\xdf\x04|-&\xcb\x8d\x7f\xfcE*z\xa0\x0cpO}\xa1\x81e\xfa\xf2%\x86V\xf7\xe5\xf6\xb8\xce+\xc7\xc1r\xafAb\xb9\x82j\xc3o!1\x05r\x9c\xa5\xb8\x97`\x18\xf5\x867\xac\x17\xf5\x17\xdf\xfe\x82\xd9\xebh\x86l\xc3\xf2\xa6\xa7\x9cp\xef#\xcfxf0z)s\x8b\x11Z\xd5\xfc\xa60\xc3\xdb\xfc\xf6\x9c\x9c\xf0k\x1b\xd4}\x14E\xc6\x83\x8c\x80\xf6\xec\xcb\xd49\xff\xf7Ne\xcb\"\x94_\xae\xa0\xd5\xc6\x1d1\xad# \\\x81\xeeH\x89\xba#\x05\xd5\xb8\x05KJ\x99\xb7\x16\xc9V_\x1an\x1d\xa92~+\x83\xeb0\xb5\xec\xc3\xc3c\xac\xf2o~!\xc1)\xf7\xd2 \xfc\xac\x970l\xe0`\xcc\x1a|L\xf7\xd2\xa5{\xe9\xa2\xee\xa5s\x04\x10\xe5Z\xe5t\x92\xdd\xd1C\xb5|&WXJr\x85\x93+\x1c\xed\nw5'\x14\xd5\xfc^\xd9\xa3T\xbe67d\xf4\xd6\xa0\x11\xea\x92\xb1\xf6!\x99%\xb8k\xcbx\xb0\xcb%u\xdc\xbe\xd0\xcc\x8bG\x1f\xd4\x91`T\xa4\x86\xbc\x85\x86\xcb\x9c\x93\xf7\xb4\xd9)\x83r\x98\x19S\x06\xe5[4\xae\xbb\x8f\xa6\x0c\xcasX1ePN\x19\x94\x7f\x1d\x19\x94\xc7Q;|\x9d\xafq\x99\xe16b\xa7\xfe`\x8e\xc9\xbd,\x8a7\xf2\xa1\x8e\x19U\x14\xa0\xde\xd4\xc6\xdfz/=P\xed\xb8\xa7\xa1\xb7\xa1\x05\xfa\xf2\x8b\xf4\xe5\xfd\"b\x90\xae\x96NWK\x1b\x9fLWKsIWK\x1fK\xbaZ:]-m\x92t\xb5t\xbaZ\x9aK\xbaZ\xda\xdc\xa7\xd3\xd5\xd2B\xd2\xd5\xd2\xe9j\xe9t\xb54\x97t\xb54\x97t\xb54\x97t\xb5\xb4\x90t\xb5t\xbaZ:]-\x9d\xae\x96\x1e\x8b\xef5\xbf\xe9ji.\xe9j\xe9_\xcb\xd5\xd2\x9d\x0cv\x88\n\xbf\x90\xd0\xd4\x10\x9c9\xda_'\x8a%\x97D\xb1\xfc\x95R,\xf5G\x92zpd<\xbb\xb2\x0f\x84\xbe?\x7f5nD\xe2Y&\x9e\xa530\xe9\x13\xdb\x83\x84\xcd&l\xd6\xf8d\xc2f\xb9$l\xf6X\x126\x9b\xb0Y\x93$l6a\xb3\\\x126\x9b\xb0\xd9\x84\xcd&lVH\xc2f\x136\x9b\xb0\xd9\x84\xcd\x9a$a\xb3 \x9bM\xd8l\xc2f{2\x07N\x96\xb0Y. \x9b\xfd\xb5`\xb3\xb6t\x07\xe9\x08y\xd8\xf9\xdct\x84\xfc\x16\x8d\xeb>\xfc\x9c\x8e\x90\xcfa\xc5t\x84<\x1d!\xff\x8d\x1d!?\xfdI\xfdky\x89\xc8\xe5\xcf\xe6#\xe5G\xe7\xc9[\x0e\x13\x07d\xa0*\xbb\xbf0U\xda#\xe6\xbf\x96\xf3\xe5Q\xfc(j\xa5\"8\xa3\xf0>a\xec\xd9I\x08~\x14\x84\x18\x02\x82\x9dh\x10E3\xe0E\x18\x14:I\x063P\x0c\" \x06FX\xd6\x8f^0\x89\\\x10E-\x00T\x14&+\xfa\x11\x0bbh\x056\xb0\xcf\x8bT03\xa5\xc0\x8bP0#\x9d\xc0I&\x98\x89J0\x85H\x10L#\x98\x81D03\x85\xc0A \x98\x9d>p;\xe4\x81\xd9\xa9\x03\xfe\xc4\x818\xda\x80\xc5\xe8.\xd2\xc0l\x94\x01?\xc2\x80&ba\x9e_g&\x0b\xb8\xa8\x02\x13\x89\x02\x16\x9a\x80\xd3=qR\x04\xfc\xfc\x97y\xe9\x01.r\x80\xbbNq\xc4\x005\xb3k\x14\xbah\x013\x92\x02&P\x02\xf4D\x1e\x1b!`^:\x80\x9d\x0c0\x07\x15\xc0\x0b\xcbv\xd0\x00\xbcI\x00f\xbc.\x9c\x00`\xd6\xa5\x8d\x8d\xcf\x02\xfd\x87\x18\xcb\x17\xf6w\xdb\xc4\x1b\xf2\x8f\x00\xfc\xf58\xc2L`\xbf\x17\xd4\xef\x06\xfa}`~\xab\x15C!~_\x80\xdf\x04\xef\xcf\x00\xee\x07@\xfb\xf1\xc0\xbe\x05>\xf7\x05\xf5g\x86\xf4-5\xd2\xf6\xd4(0_\xc5`5\xfa\x0cP\xfe\xcc@\xbe\x19\xc6\x8f\x05\xf1yD@Wq=\x84?/\x80o\xda\xf89\xc1{\x13\xbah\x02\xee\xe7\x85\xed\xe3A{\x03@\x1f\x05\xcf;\xa1\xf80 \xde\x1b\x86\x0f\x04\xe1C x#\x00o\xae\x8d/\x10\xea\x07\xbe\x07B\xef\x01\xc0\xbb\xb6i\xf3\x82\xee\xa6A1\x01p\xd7\xc6)\x8cp{\x1c\xd8n\x03\xd6\xe7\x87\xd5\xa7\xf7$oH\xdd\x17P\x1f.\x91\x1e\x07;\x83Nu\xcas\x9c#\xe0@I\xba+CJ:\xc3\x99\xcepv\x92\xcep\xa63\x9c\x9d\xc4\x80-Fe\xe9\x0c\xe7\xb1\xcc\x04\xbcL\x83^\"\xc0\x97Y\xe0\x97\xd9\x01\x18'\x04s\x0b \xccm\xc10\xb7\x00\xc4\x84@1\xb1`\x8cu\x0ew\xc113\x022\xbe\x90L (3;,\xe3\x06f&C3\xe9\x0c\xa7\xb3fqP\x8dVU:\xc3\x19\x03\xda\xb8`\x9by\x80\x1bO4\xc2 \xde\x04\xc07\xce\xb3t\x81\x10N:\xc3\x99\xcep\xfa\x80;N\xab\x86\x02<\xfe\x10O:\xc39\x92\x99\x01\x9ft\x86\xb3/\xb1\xf0\x8fVY:\xc3\x19\x00\x06M\x81\x83\xb4\xea\xd2\x19N\xed\x0b^\x00R:\xc39\x1f\x9c\x94\xcepN\x06\x9b\xe6\xe9s\xde\x80\x93?\xe4\xe4w\x86sp\xb2\xa5\xa7I\x9b\x89\x97?4\xc8\x9a\xcb\xff g\xc3Z\xe4C\xc5\xeb\xa3\x1b\x14\x01f\xb8\xaaZ\xbb9w\x9d\xe9\xd9`\xbc\xadQI\xdb3=<\xe8\x86\xf8\xa1\x1e\xfe\x03\xae\x7fV\xff\xc2\x96\x83=/\xd5km2\xe2\x0d\xc6 \xde[+\x90S\xaaanF\xf7\xbf\xb5\xf6\x8cO\xab\xef\x812\xc5==\xe4\xd3\xda\xeb\xd8_\x1e\xd4\xa7}N\x9cH\xed\xfeW\xd9\x88\x8d\xb4\x9e\x81F\xc6\xe9\xc4XGp\x82`Rg$7\xd7'z\xd2\x96\xa1\xe0XuA\xbb\x1c\x02\x0d\xc1\xb2\x95\x1cX/;;\x18\xd4\x89\xf7\xf2\x1a6M\xb9\xd6\xc6\xb4\xa4\xcd\xee\xa0Q\xd8\xd6\xa8\x15f-R\x1f\x13\x99\xa2\x9f\xddw\xe7\x9e\x96\x08\x1d2\x05\x8f\x88\xb9\x89\x96>\x06\xe6~&\x0f8\xb3md\xb5\x81\x15\"y\xc6\x97\xbcM^P\\\xb3\x1e\x87q\xf7\xb8\xdeK\xb2v6pv8\xf0\xc0]=>\x12x\x7f(\x88E_-\xfa\x8e\x02p\x96\xfd\xe8\xbc\x08\xac\x13\x83\x9d\x1b\x85\xf5\xc7agBb\xe3\xb0X\x8b:fPo4v2\x1e;7\"\x1b\x88\xc9\xce\x8c\xca\x86\xe1\xb2\x81\xc8\xac\xad\x0f\xb7\x98\xad/6;3:\xeb\x85\xcf\xce\x88\xd0N\xc5h\xa3P\xda\x99p\xda\x18\xa4\xd6\xa2\xac=\xf6m\xc7jo\x05\xad\xbd=\xbc\xf6V\x10\xdb0\xccvv\xd4\xd6\x17\xb7\x9d\x15\xb9\xf5\xc7n\x83\xd1\xdbp\xfc\xd69\x15>\xf1@pg\xc0p\x1d(\xae\xa7C\xe5\x81\xe4\x86x]\xc1h\xaem\x11\\U\xd7\xd8\x89\xe7\xda\xae1\xf9\x96\xf9\xe1<'\x07\xad\xea.\xf5\xcc\x7f\xfd\xed\x03\xfb\x7f6\xdc\xd8\xe4Q\xaf\x01 \x97]|\x0f\xe6\xceh\x94\xc9\xc5t\xf0\x8b\x07C\xb5\xdd\xc2zQTu\x1aN\xbb]u\xe2\xa8JI\x1c\xd5\xc4Q\xed$qT\x13G\xb5\x93YwC!{\xa1\xa0\x9dP\xe2\xa8N\xdd\xffD\xec~f\xd9\xfb\x84\xef|\x12Gu\xca\x8e'd\xbf3\xf3n\xc7o\xaf3\xe3N\xc7w\x9f\x13\xb8\xcb \xdd\xe3$\x8e\xea@\x82w5\x89\xa3\x9a8\xaa\x908\xaa\x9d$\x8ej\xe2\xa8&\x8ej\xe2\xa8\x9a$qT\x13G5qT\x13G\xb5's\xf0\x05\x13G\x95K\xe2\xa8\xfe\x168\xaa\x92s\xd7\xd3a\xdbE\xc62\xf4Z.\xde@\xdb\x11im2\x8fu\xd8*\x1c\xd4\xaa \x8a\xde\xa0i\x03e.b\xde\xc46\xc6\x93rI\x10\x17\x97\xb4d\\\x1eFW\x94[\xc2=\x01i!;\xfbV\xed\xb6\xef?\xfd\xf6\x9e xV\x8a\xadW\xf4\xca'\x00\x04\x13\x86\xb1Q\xa1\x9bj\xeb \xdb\xdeB\xf3\x82\xc6\xb3QW\x14\xe9\xd6I\xbb\xf5oK\x18'\xd7\xad\xc6\xb4\x9dr\xf4]\xf0\xe8\xbf\xe0\x81B\x83\xdf\x97\x86\x00\x0bA\x04\"mU\xa6\x0fKZv\xe9s#\xd3\xe0F\xa7!\x02\xa1\xb67@]_\xe1\x83R\xc3\\H5D\xa2\xd5V\x85\x81<\xde\xc9\xa85\x04#\xd7VU\xdd\x15\x17\xfe\xe85\xcc\x8d`C \x8a\x0d\xa1H\xb6\xbdgG\xb0zgF\xb4\xc1\x0f\xd5\x869\x91m\x98\x8cnC\x1c\xc2\x0ds\xa1\xdc\x10\x85t\xdb\x87\x83/\xcb\xf7V\x10o\xb8E\xd4\x1bn\x07\xf9\x86@\xf4\x1b\xe2\x10p\xd7\x14\xec\x87\x82\xc3\xbcH8\x04\xa0\xe1\x10\x8e\x88C\x04*\xee1e\xfaq\x7fg@\xc7\xc1\x85\x90\x83\xbf{\xe6\x81\x94C\xa0\x17\x17\x8c\x98[\xb5\xf91\x81\xed\\\xe0\x99\xd9\xc0z>0\x18\xcf\xe1\xf5fO\xf6\xbf\x8fH\xe0\x89\xcf\xeef\xc2\xe3\x0f>(\xb1w_\xa3:\x81\x8c\xca\xfe_U2\\\xddv\\\x88u\x03a\xdf:\xa8\xebh\xcd\xc4\xd6i\x17\xbf\xc8/\xfc\xffL\xbd\xaf\xbd\x0eWn\x18\xdb\x9bqa\x8f\x08\x11\xeb\x96\xb8?\x97\x1f\xc2^\x88\xdf\x0d\xca\xf8=\x8a\\\x8d\xf9\xea\\]/\xac(\x8a\xbd\x98\xcfp\xc1h_\xec\x9d\\\x16\xcf\xdbo\xb8\x8f\xb5\xc7|2\xf1x\xfb&\xea\xdfdjx\xfc\x06\xf1k/O \xa7Dy\x1f\x04\x9aRt\xc0\xb5\x98`or2\xfc\xa6!\xe4y2\x03{\x9e$\xfa\xbc\x92D\x9f\x9f'<\x15\x1a\xacP\x01 \xa3B\xdf@\xc5\xacA\x8aD\x9fO\xf4\xf9Nf\x0d>\x84\x04\x1e\x82\x82\x0e\x89>?5\xc0\x10\x11\\\x98%\xb0\x10\x1eTH\xf4\xf9)A\x84\x90\x00BD\xf0 \xd1\xe7\x13}>\xd1\xe7\x13}\x9e&\xfa|'>\xe4\xf0D\x9f7\xfd\x96\xe8\xf3\xdag\x12}>\xd1\xe7\x0d\x92\xe8\xf3\x89>\x9f\xe8\xf3\x89>\xdf\x939\xa8\xcc\x89>\xcf%\xd1\xe7\x7f;\xf4\xf9\xbe%'\xf2\xbb;\xd5\x1d\xfa\xba\xb8\xc2\xfd\x05v\xb0O\x1d\x81\x9a\x12\xc5Drv\x16\x1cn\x01[\x0bxNbP-\xe4\xc9\xa3L\xdbQ8\x86c\x98lF\xb1\xc3\x98\x0bx\xc7\xd6\xd2\xaa\xe4\xdb\xd0j\xb3!\x98\xb2\x9d\xdd\xb0\xba\xd0\x8b\x92\x13L\xc7\\\xf8\x1f%\x81]Ig\xac\x0d*\x88\xd3Z\x86\x98\x83\xc6\x88\xa2~&;\x8e\xf6\xfb\xb21\xdc\x94e\xb3\xc3u\x9e\xa9\xbf\xf1\x81,\xc9\xb8\"\xe0r\x89Ke\xf8\xa6lc\\#\xcf\xf6\x8ck+0!\x9d ET\xa8!\xcc\xd4W8\xd0\x9eC\xf5\xb7l\xdc\x11\xb4\xac1o\x91\xefr_\xeb\xf2g\x15(kB\x9cE\xfc\xb3\xdf\x83%\x84;\xbe@~/\xa2\x1d\xfd?\x9dm\xa0\xc0\x1b*\x03k9\x153\xad\xf2Gy\xe8V\x0c\x10Q\x08\xb3\xf3\xea\x00\x18e\x97\x80\xf6\xfb/h\xc5>n\xde\xbdo\xb3e\xef\x0dNS\xc1\xbc}l\xa2\x01\xf6\x8f\xbc\\\xe7\x19\xa2\xb8\x05q\xa4\x05\xf9\x83\xb2#\xf5\xd5\xe5eV4\xeb\x91\xb7\x89D)-\x8a6\xfab\x1c\x93\xed\x05w\xd9\xaa\xd0\xe3\x8e\x8c&\x97\x8fgd\xf4\xb5FM\xe0\x0ez\x8d\x89D\xcf\xf9\xf0\xea\xc6#\x1br\x0b9\x9a\xf2mY\xd5\xa3\xd0\xb8\x1a\x8d\xc3\"\x84e\xa6~\xd8UU\x15\xb8\xc7]\xd5|\xc0\x1a_\xe3\x9a\xf8\x9e<\x92O\x8f?\\\xde\xe3]\xd4X?\x12\x06zX\x19\xb8\xe4\xa0aU\xafq=\x8e\x8d}\xc8\xcb\x0c?\x07qF\xe8)Y_\xc1W\x8b?\xfeaVk\xb8\x0e&m\xab\xeb\xf6L\x12_Q\xc9\xe9O\xe2\xbfK\xa6\xcer&\xe9\x9c?\xc5\xab\x97cq\x1e\xa9[\x92U\x9f\xdcV\xd7\xb0\xab\xd6M\x81\xb5\xa7\x92\x16\x8b\xd3\xc5\xe2\x94\xee\xf6O\xc9\x0d\xdanq\xfdt\x8bK]\xd5\xb8\x11\x16\xf2\xa1\xc5?IU\x8a\xe2\x1f(\x9b\xdc\xd3\xc3L\xd7\x15\xcd\xcb\xedRX\xd4\xc1\xf6\x1a<;\xb8r\xa2g\xd7\x1a\x17H\xde\xbf \x9e\x9f\x95\xf2\xa5\xaa\x80\xeb\xbcZG\xd2\x9e\x06m\xfa\x0e\x97[\xda^\x97!\xd4\x83P?\xae\xf8\x1a\xef+\x92S?[\x0d\x1f\xf60\x96|aVk\xed\xf2r)\xf5\xdal\xa5g\xcc\x80\x8d5\x03\xae\x8a q\xb1g\x80\x9b\xad\xacv\xb6\xb0\xa0\xf3\x832A;\xb6\x18LT\xe3\x83\xe40yU\xe5=\xc2#\xd0\xea\n\x97\x12\x89\x11\xcdQK\x18\xdb\x0b\xa2RV\xce\x06\xfa\xbd}w\xf1\xe69\x0f\x9f\x88ge\x1c\"\xe7P\xd1YI\xe5\x0e\xad\x85\xe7\xec\xa7\x91\xe4\xf6MD\xae\xcc\x85\x92|[\"\xda\xd4\xfc\xd0\xa6\x98\xb39)\xb4\xdaV|o\xa4\x0fq\x0c\x8c\xf4}^\xe6\xbbf\xa7z\xaf8\xe5\xc9?{EP\xc1\xfa5\xe6'\x06\xad\x03\x8b\xc9\x0e}^\xb6cf\xb6\xd1m\xfc\x86\xdf\xa3\xcf\xbc\xde\xa2(^\xed\x97\xccdl\x0b\xcc\x06f7 \x81}\xc6\xb6E\xa6\xb0\xe8Y\x99\xd3\x1c\x15\x12\x08\x851\xcd\xad\x95]U\xd2\xcb#\x10\x95\xa2\xa28\xf8\xcd+\xfdG=f\x15\xfe\xf8\xacs\xca\x8fMU7\x86\xf1\xea\xfc8N\x9c\xd7\xf3\xeb\xc9^\xb7\xc7u\x86K\xca\xf6\x98l\x02\xe7\x8e \xa1\xe8\ns*D\xbb\x08 \xcf\xd2DN\x91~-w\x96L\x9f-\xabJ\x92\xaf\xf9iI\x8e*k\xf9\xe0\x975&\xac\xff\xdc\x13\xdb\xb0\x1e[\xab\xb0\xe9\xff`\xc2-!\xcea\xf7\xc7\xe7\x1e\x11#\xeb\xff\xb5\xdc\xf8\xc8^\xfd\xd5\xe2O\xba'\xaf1\xad\x96\xf7\xac\xf5b\x97Vm\xe0oX\xf6\x01>\xa6/x\x17\x11\xff\xcb\x9d<\x0b\x9f\xaco$s\xcf`\x8dg\x1b\x8b\x91\xa9\x9e\x9d\xfeah*\x0f\xfe\xb1p\x18\xbd\xb8\xc7\x92m,=\xdc\xf7\xe7\xafF\xfa\x12\xef8\xf1\x8eg\xf3v\x12\xef8\xf1\x8e\xf5\x92x\xc7\\\x12\xef\xf8X\x12\xef8\xf1\x8eM\x92x\xc7\x89w\xcc%\xf1\x8e\x13\xef8\xf1\x8e\x13\xefXH\xe2\x1d'\xdeq\xe2\x1d'\xde\xb1I\x12\xef8\xf1\x8e\x13\xef8\xf1\x8e{2\x07\x074\xf1\x8e\xb9$\xde\xf1o\x81w\xdccN\xf5\xf4\xd8v\x92\xbd7Z\xbcY|\xb6\x1e\xe2L+\x99\xbfhS\xd5'\x8a\xe4*\xf8\xa8\x03e\x0f\x05\x0f\xe0\xe1\xc9\xd0\xbc\x0f9L\xcd~`\x1b\xad\x87\x12y\x7f8\xa6\xddM\xa0G\x07\xb1\xcc$\xf0'_\xd0R\xcb\xd4#CvY\xfb\xd76\xf9\xe06\xbf\xc6%\x10\x8ah\xa3O{\xddjz\xa0\x1auO\x89b#\xab\xf4\x85~\x01\xfcKUg\x99\x1b\x10\xe7\xa0\xf8\x8f%\x03\x16G\x04\xcc\xcc\"G3\xc0\xa3)\xe0\x01\xe7\x81_{\xc03,\xa4$\x14\xda\xb3*\xd3\xc7w,\xdb\x9d\xb9!>p\xc3|\x10\x01\xf5\xd9\x1b\x90\xf2\x1f\xc7\xc2\x7f\x10\x0c\x01ZU\xa5\xfc\xc7)\xffq,L\x08qP!\xcc\x05\x17B\x14dh\x1f\x0e)\xffq\x18\x84\x08\x810\"\xc4A\x89\xae)\xd8\x0fN\x84y!E\x08\x80\x15!\x1cZ\x84\x08x\xd1c\xcaL\xf9\x8f\x85\x04C\x8fVm\xbe\xf9\x8f!\xa0\x963\xc2\x90\x10\x04E\xc2\xdcp$DB\x92\xf6~E\xdc\xb0$\xc4C\x93F}\xacD\x17< \xb3A\x94\xe0\x8f\xb4\x81\x0fT ap%\xb8\xf0\x85H\xd8\x12<\xf4ZB\x983A\x98\x10e\\\x7f(\x13u\xb4\x8c\x84\xf9\xe0Q\xf0\x81Ha\x02LjT\xc8\x1e\xb4A\xa507\\\nN\xc8\x14baS\xa36\xb1G\xb5o\xd7=\xe0S\xb0\xa2<`\x85Q!\nJ5\xaa\xb2B\xac\x10\x0b\xb3\x1a\xb5 ?\xd0\x125\x9b\x0fn\x05/\xc8\x15\"`W\x08\x83^!\x06~\x85`\x08\x16\x1c\xab\xad\x03\x16\x83\x00h\xcc\x17\x8e\x85\x18H\x16BaY\xb07<\x06\x9e5*\xeb\x81\x9f\xbeC\xc6\x0f\xa6\xb5\x0e\x88rk\x87ja^\xb8\x16\\\x90-\xd8a[\xe3;\xb1p.\xcc\xd8w\x03`]\x08\x82v\xa1\x07\xef\x0eE@\x8b\x13 0\\\x9aN\xf3\x02GJ\xcf\xdf\xbf;\x7f\xf7\xe1\xe5w\xcb\x0f\x17//>~X~|\xfb\xe1\xfc\xcd\xab\xb3o\xce\xde\xbc\x0ex\xeb\xf5\x9b\xf3w\x1f\xce.\x96\xe7o\xde\x9f\xbd\x0by\xf1o\xef.\xce\xde~\x1b\xfe\xde\xf9\xcb\x0f\x1f\x82j\xf8\xfe\xcd_\xdf\xbc\xba\x08z\xe5\x9b\x97g\xdf\x19_PG.#\x0c\xe8\x1bUQ\xd8\xf1\x07\xde\x07\xf8\x97\xe4{\x7f18e,\x88\xff\x869C\xd9<\xf5t\xc7\xdb\xcd]\xd0\xda\x15\xac\xcd\x1c\x9cSW\x1e$/rO\xc4\x89\xed\x1e:\xeeU\xf2\xb0;\x1d\x17>\xfc\xbd\x97\xaa\xa1=\xd4+\n\x85uS\xab|e\x92u`\xb6\x911w\x81\x14G\xe7=\xae\xe5\xe0g\xbfJ\n\xfe\xc4\x9cu\x14\x03\xe5\xb8r\xe2\xef\x96Z\xb1\x0e\xd5;$\xcd\xd6\xa1K\x0b0$\xae\xc4\n\xaa\x9a\x1a\x92\xc7\x95S\xbf\xccW\xbd\x15\xc6%\xd4\xf8\x9f\xfc\x04tP-\xc5,p\\G\xf1\xf7\xf9j\xb8Aya\xaa\xda&/Q\xb1\x14\xb9!\x048t\xcb|\x85G\x07L\x1eM\x8e\x86\xa3\x15a\x1e\xf7d=\x8f\xcajze\xcaj\xc9v\x10\xcbkL\xab\x89\xca|'\xf0\x0b\xf6\xc1\xde\x8b\xfc\x13]?!\x14\x95kT\xafE\xf2\x0e\x99Re[]\xe3\xba\xb4^\xa6n\xcfQB\x9a\xd5.\xa7K\x9a\xef\xe680\xb5F\x14?e\xba\xb4\xcf\xa9D.\xb8\\\xdfM\x81<\xf5\x87=\xd5\x91\x9d\xa6$\xc4\x9a\xee\xc8k\xec\xf8\x8d\x1e\x8f\xa4G^\xc6\x01\xaf\xc4G\x9e\xaa|;mp\xfa#g\xe5\xed\xd0\xe1\xbc\xa9\x91\xbc\x93#\xc5\xa6G\x92\x19\xca\x08E\xf5\x1d\x8d6Y\xe2\x1d\x0d6\x9fn\xa2\x1c\xd3\x81\xe3\x97U5\x96\xdfn\xc7v\xa6\xb5\\\x01\x1d3\x9biV\x9brG)\xe51\xd1^\xa2I\xa0\xe9\x8e\xd2tG\xe9/\xe0\x8e\xd2\x96.\xec\x95&H\xa7\xe1\xb4\xe3.\xbf?\x7f5n@J\x1c\x94\x12\x079\x97 \x9f%\x00\"\xd8\xc5\xa2\xef\xa6\xc4A\x1eL\xe2YX\xc41\x0c\xe2\x948hF\xb6p\x08S8\x88%\x9c\x12\x07Me\x04G\xb0\x81ga\x02\x87\xb3\x80S\xe2\xa0)\xac\xdf\x10\xc6o\x04\xdb7%\x0eJ\x89\x83R\xe2 _\xb6\xee\xacL\xdd\x18\x96nJ\x1cdz\xcc\xc9\xc6\x0d`\xe2\xfa\xa4\xc5 a\xe0\xa6\xc4A)q\x90\x0f\x9b6%\x0e\xe22\x851\x9b\x12\x07\xe949Y\xb1\xb1\x8cX\xe3\xda\x90\x12\x07\x1dKJ\x1c\x14\xc1du\xb3XC\x19\xac\x01\xec\xd5`\xe6j\x18k5%\x0e\nc\xa6\xa6\xc4A\xad\xa4\xc4AR\xda\xc4A*\xdf\x8a /\xf5t\x0dv\x93#\x1cr\xf4\xd6\x00\x80\xedXP\x1c\x8eU\xa8\xd4\xd8O\xba[\xda\xe1\x97\xa3\x1aj\xa9{_\x88R\xe8Y\x97\xdb\xa4\x0ej\xe9\x82wO\x11\xb4\xd1\x02\xef\x96\nxL\xff\x8b\xb9{\xf1(\xa8uL\xff\xf6\xa7|\xbb\x06\x8b\xe3a3\xb5\xdb\x8b\xce\xedI\xe1\xf6\xa0m\x07Q\xb5\xd5\x84x]\xd1A\xbck0\x0d\xf2\x1f\x07\xf3\x8f\xf8\x0bZ\xafkL\x88\xc2\xe7\xfb\xb3^\xa7i\x86\xef\xaa*)'\x9a\xcaX\xd1\xf6\x81\xd1d)\xae>\x93\xd5\xc5\x046u\xb5\xbb\x93\x1a\xa7\xdb\xab}\xace\x08@\xa7\xdb\xab\xe75\xae\xfb\xde\xe5t{\xf5\x1cVL\xb7W\xa7\xdb\xab\x7f\x03\xb7W\xab\xa5\xf3\xf4\xa7}\x97\xbd\xd2v\x81\xb5r\x08U\x92\xd1}\xc7\xab\xe5\x8c\xb2.\xc9\x97z\xf4\xec\xb5\xfa\xda\xda,\xa3\x0fT\x1b\xefy\x92Q\x13U.\x8a\x82\xdb3\xf6m\x91P\xadIB\xadU\x07g\xf5\xc1\x83\xb4\xe7\xd1\x06\xf0\x04~\x85DQ\xf7,\xfa\x82\xd2\x82\xceJ\xdfs\x12\xf8\xe6\xa6\xf0\xf9\x93\xf8f\xa2\xf1\xc5\x11\xf9,\xea\x02\x13\x81N$\xf3\xcdM\xe7\x0b$\xf4\xcdL\xe9\x0b#\xf5\x05\xd2\xfal}8\"\xf5\xe7\xac\xd4>/r\xdf\x8c\xf4\xbe\xa9\x04\xbf(\x8a\xdfL$\xbf\x18\x9a\x9fE\x99w\xaa\xcf[\xa0\xfa\xdd\x1e\xd9\xefV\xe8~a\x84\xbf\xd9)\x7f\xbe\xa4\xbfYi\x7f\xfe\xc4\xbf`\xea_8\xf9\xcf9\x15\xfa%\xf5\x9cL\x00t&\xf4\xf4r\xa8\xe8G \xf4\xa5\x10zX9\x9cF\x18B$\xb4'\xe2\x9c\x85L\x18H'\x9cF(t\x194\x80Tx\x0b\xb4Bg\xed\x8c=}>r\xa1\x07\xbd0\x9e`hPG\x9d 7g%\x19\xbah\x86\x91DC\x83.w\xa2M\x0f\xb2\xa1=\xc9\xa6-\xc5\xe6\xdc\x94\xc3\xd9I\x87f\xda\xe1\x9c\xc4C\x1f\xeaa8\xf90\x88~\x18A@\x0c\xa5 :\xd2f\xdak\xe7K\n\xf3%\"FP\x11\x03\xc9\x88\x96\xe6\xc6\x10\x12\x0d\xaa<\x12e\xc6\x90\x12-]\xde\x9d$sFb\xa23A\xe6m\x90\x13\xe7\xea\x8b\x01\x04\xc5\x10\x8a\xa2>\xfd\xa5-\xf9\xa5s\xffnK|\xe9\xcf\x81\xb2\xbd\xe3\x95\xf42\x84\x17e{\xcb\x9a\xf0\xd2\x93+e{\xc1\x92\xec2\x88?5|\xd1'\xf20W\x9a\xcb.\x93\x90\xa9\x9b\xdd-\xd7\xd4V\xee]\xb1N;q\xa4\x8e\xfcBL\xd4N\x82\xebw\x9b\xec\xd4N\x1ci-\xef\x9e\xb1\xda\x89_J\xcb\xbbe\xb1vbNg\xe9\x9b\xcc\x92N\xc7\xd5\x1di,\x9dk\x88G\nK\x0f\x1d\xf6\xf4\x95\x1e\n\xfcRW:\x15\xf9M\xc7s&\xad\xec\xa6\xe4\xe3\xdf\x9c +\x9d\xed\xf1Kg\xe7\x93\xaar\x96\xa2<\x92TRKB(p%\xa8t\x8e\x07\x9f\x11\xe1\x91\x9a\xd2i\x0c\xf0JK\xe9\xa1\xc6\xafC\x06'\xa4\xf4H;9o\xd2I\xcf\x94\x931 '=\xd3M:\x8d\xed\xd3\x81\xbd\x12M\xceP\x92\xfb\xb3\xcf\x97`R?\x03\x05d\xe2\xf3J\xc47J\xbd7\xd2\xf7\xfe\xfcUJ\xbc\x07)\xf1\xdel\xf3a\x14{/%\xde\xf3\xe1\xec\xcd\xc2\xd8\x8b\xe1\xeb\xa5\xc4{3\xb2\xf4B8zA\x0c\xbd\x94xo*//\x82\x957\x0b'/\x9c\x91\x97\x12\xefMa\xe2\x85\xf0\xf0ff\xe1\xf9q\xf0fd\xe0\xf9\xf2\xef4\xa1\xf5\x94xo(\x1e\x8c;_/)\x98m\x97\x12\xefyq\xecb\x18v)\xf1\x9e\xe91'\xab.\x80S\xe7\x93V.\x84O\x97\x12\xef\xa5\xc4{>\xac\xb9\x94x\x8f\xcb\x14\x9e\\J\xbc\xa7\xd3\xe4d\xc6\xc5\xf2\xe2\x8ckCJ\xbcw,)\xf1^\x04\xff\xcd\xcd~\x0b\xe5\xbe\x050\xdf\x82yoa\xac\xb7\x94x/\x8c\xe7\x96\x12\xef\xb5r\x1b\xdc\xb69\xfa\\\x00\xaf\xcd\x9f\xd5\x16\x94x/\xef\xcf\xdc\xc3\x1b\xce\xbaG\x06\x80\x98\x88\xf6C\xbe\x1e'\xd9\xeb\xcfH9\xbf\"m0\x0dv)0h\xdd\xc4&z\x99!3\xc6\xa9\xc4\xca\xa5\x1e]\x8a\x8c\xd7\xf2\x896E\x06\xe2\x19o\xe4\x1f9\xfcG\xf2r[\x1c\xb7}\x90\x1fC\xa9y\xa0\x0cpO\xf3c\x0c\x0d\xd2\x17\xfa\x05\x10-gb\x8d\xa0\x88\x8e\xe5\x86\xb76KYt1v:\x82\xcdxB\xd2\xcd\xa0\x1e\x01\xb5`\"\x86\xb3\xf2\xbf\xa2\x9bA}\x8c(\xa7\xa1\xce\x82\x8a\xaa\xa2F\x80(\x87\xfd9\x13\xb9\xa9TBA\xc3\x95\x8d\xfcI\x9a_\x1b|{\x13\xfd*\xdd\xad\xc9%\xdd\xad\xf9\x9b\xba[S9\x01!\x8c\x9e\x91\xe3\xa0$1z\xa4$FOb\xf4t\x92\x18=\x89\xd1\xd3Ib\xf4\xd0\xc4\xe8\xd1Kb\xf4(I\x8c\x9e\xc4\xe8I\x8c\x1eO/)1zZI\x8c\x9e\xbe$FOb\xf4h$1z\xb4\xcf$FOb\xf4\x18$1z\x12\xa3'1z\x12\xa3\xa7's\xb0+\x12\xa3\x87Kb\xf4$F\xcf\xfde\xf4\xa4K\xdabo\xc0J\x97\xb4\xdd\xa2q\xdd}4]\xd26\x87\x15\xd3%m\xe9\x92\xb6\xdf\xec%m-\x15\xf5\xf4\xa7\x96\x8ch\xb9\xb9\xadgK\xc5\xe9R\x04UIGUW\xac\xe6\xa5\x18\x81\xac7\x8a{\\T\xb1g\xaf;\x97D>\xfdr\xbd\xaem\xfcU\xf9\xd3}\xa7\xaf\x9a\xd8\x1bQ$0' \xd5 A8iP\x0e\xfa\xa9\xa3\x00\x1b\x0d\x93:\x88\xa7)\xdf\x97V\x02i\xa6\x1ed\xd2y\xa9\xa4\x9eD\xd2p\x1a\xa9\xdb@3SH\xad\x04\xd2\xe8\xdcY\xb2\x92\x11D\xbb\x91\xb6\xc4\xb3\x93\x92xv\xf3\xcc,\x89g\x97xvzI<;.\x89gw,\x89g\x97xv&I<\xbb\xc4\xb3\xe3\x92xv\x89g\x97xv\x89g'$\xf1\xec\x12\xcf.\xf1\xec\x12\xcf\xce$\x89g\x97xv\x89g\x97xv=\x99\x83\xf3\x94xv\\\x12\xcf.\xf1\xec~ <\xbb\x16x6\xd5\xbf}`t\xff\xa0\xc0\x00%\xb2\x87 l\xeaj7h\x07\x99\xb1!s\xd0+\xf8\xadaf>E\xff\xce1E\xa4\xe0\x0b\x05\x0f\xa0\x0f\xef\x9d\xbb\xae(\xd6\x92$zJ\x1e\xa8V\xdeS\xa2D\xcf\x1c\x83?\xc7\xd3$,7\xdd9bG\xd6\x1b\xee\x1c\xef\x9ao\xb6s\xbc\xe8\xbe\xd1\xce\xaa\xc0\x1d.\x9a\xeb\x16\xbbh\x0c\xbcW\x81\x10\x1c\xfcB\x03\x90$\x14\\JB\xc1\x13\n\xdeIB\xc1\x13\n\xdeIB\xc1iB\xc1\xf5\x92Pp% \x05O(xB\xc1=\xbd\xa4\x84\x82\xb7\x92P\xf0\xbe$\x14<\xa1\xe0\x1aI(\xb8\xf6\x99\x84\x82'\x14\xdc \x05O(xB\xc1\x13\n\xde\x939\x10\xc9\x84\x82sI(xB\xc1\xef/\n>\x07\xaa|]Q\x85\xa6\xe8P\xe5\xbf\xb1\x9f[<\x99?,\xb0\xe4m~\x8d\xcb\xa3\xd6\x0e\xc0d\xfe\xee\x03\xd5\xde{\n#\xf7\xda\xdf\x17\xfa\x05\xd0+\xe71\xfd\xa0\xe8\x8d\xe5\xc6\x12\xd6\xe6\xf8{\xa2D\xf8\xdd\xf4\xbaO\xfc\x05\xc4!\xec\x1ag\x88\xb2!p^\xe3\x0ds\xd3\x04\xe8\xf0I\x14@>A^\x12\x8a\xd1ZB[\x1b\xa3g\x05m\x8a\x106?\xca\xcej\x9e\xab\xf8vh-\\\xc8|\x03\x9f\n\\>\x96e>\x81\x17/\xe0\xd9'\xe9\x9e\"*\x1b\xcb\x96\x10\xa3\xba\x1b\xccCz\xcf\x16pV\x02*,\xe1N\x11D\xcc\x10\xc1\xe4D\x86Z\xb9\x833Joc|\xffo\xef.\xde,\xdf\x9d_\x9c\xbd{\xbb\xfc\xf8\xf6\xc3\xf9\x9bWg\xdf\x9c\xbdym\xda\x1d8\xbf$\x00.\x1bK^\x83\xa7\xa6\x12=\xdf\xf8\x9f7\x1f<\x9f|\xf9\xe7\x0f\x17/\xcf\xdez>\xfd\xf6\x9d\xf7\x83\xcb\xbf\x9f]\xfce\xf9\xb77\x17\xa6W\x14 \xa8\xa9\xb2\xb7\xd8\x87\xd0\xfd\xb8+\xcd>Z\x85xt\x14!\xf6\xee\"$\xbc\xd3\xe8\xde\xb3u\x1d\xdd\xf3\xae\x0e\xa4{\xc7\xd2\x8d\xf4\x8f;;\x93\x90\xa8.\xd5\xbd\xec7\x7f\naK\xec;1Ea\x9e\xe8\x0cQ\xe9\x98\x88x;\x9b\xe9Uo\x15T\x1d\x87B\xb1\xacwt\x9e\xde\n\xefx\xd3\xfc\xe1\x8d\x86\xe8\xb1\x8a\xca\xeai\xb5\xefW\xd7\x12\xf2\xd0\x15\xf7?o><\x1f\xff\xa1\xa7\xfe \x9d\x978\xe5\xb2s=\xd7\xfdq\x90ED\xd0\xc0&\x94\xf4\xf6\xdd\xf3\xd1\xff\x0fl4Is\xd7{\xc7et\xbf\x0cK\xe3p\xc65\xa6\xde\xe5\x8a\xa5p\x86\xc9\xc6\x7f\x14\xfc\x9d\x17\x89\xd7\xbd\x91\xd0\xb5\xa1)s\xceZ\xe0\xd5g\xdd\x9f\xfd\xc3\xa2\x8c\xec\x8b\xdcq\xa1\xa23\x17W_\xe4\xd5p\x8f\xf4/=\xd2\xbc\xe5\xd3p\xd6\xd4^#\xc5\xb7)\x07,<\xd7\xb0})\x94dUIr\xa2n\x81m\xe9\xa1g\xafO\xc4\x1c\xc2\xfc\xc4\x13\x15\xab3\x1b\xcf\xd41\x06\x8d\x11{\x07u\x03\x1d\xd3'\x1c51I\x1dA\x99\xe9~E.\xe9~\xc5\xdf\xd4\xfd\x8a|\xcb\x1c\xc2u\x15\xfb\xf3\xf7\xe7\xafF\xda\x12\xd75q]\x9d\xeb\xac\xcfb\x03\x89\xeb\x9a\xb8\xae\xc6'\x13\xd7\x95K\xe2\xba\x1eK\xe2\xba&\xae\xabI\x12\xd75q]\xb9$\xaek\xe2\xba&\xaek\xe2\xba\nI\\\xd7\xc4uM\\\xd7\xc4u5I\xe2\xba&\xaek\xe2\xba&\xaekO\xe6\xe0\x1d&\xae+\x97\xc4uM\\\xd7\xfb\xcbu\xd5^\xd7\x95nV\x04\xb7\x19\xd3\xcd\x8a\xb7h\\w\x1fM7+\xcea\xc5t\xb3b\xbaY\xf1\xb7{\xb3\"gH\x9d\xfe\xc4\xf9X\x96+\x159\xa7\xab\x7fVc\xad\xb9;\xb1\xeaNm\x9c\xbd>\x11\x1c/\xe3\xa5\x89\x7f\xeb(_\xf7\xfa\x04\x87\x89\x92\x11\xc5\xe9r\x9e\xc3p\xe2\nNV\x93\xe5\x04\x86C\xb9\x8d\xcf\xed\x83\x07D\x9f\xbc\x80\xdc\x04H\xf9\x9d\xbb\x98\xf5\xd4\x85\xef\x99\x8bi'.\x82\xce[8;\x85\x8d<\x1fJ\x9a\xf7%\xcb\x87\x90\xe4=\xc9\xf1\x81\xa4\xf8\x082\xbc\xf5t\x05u\x9c\xad\xb8\x8b\xeb@\xddg*\x9c\x9dA\x88\xfb\xcfS\x89\x902s\x03a\xdf\xbb\xcc\xbc\xf4+s[\xa1b\xb9\xaa\xca5\x8e=>$Kd\x8a\xd8G\xde\xe3:c\xab\xad\xd0 \x88V;\xdd\xaebUT\xd9\x15Y\xeeq\xbd<`\x14w\xba\xc8\xe3\xe8R[\xbdv}\x14\x05\xb3j\x02+x\xf0\x8e\xc7\xe2/\xa6\x15\xaf\x95_\xae\xf5r.Ld\xd7\xb4\xce\xeb~\xbfo\xeb\xbcXl\xbcW\xfa\xde\xee_vtu\xa4\x13ul\x98v\xb5\x12\xd4t\xb1T\x9d\xc8\x03(9%@\x9a\x15\xd9#\xceP\xeb\xe2{W\xf8\x10\xee\x15\x8c\xaa\xff\x8b\xf6\x0b|\xdc\x82\x81W\xa0\xee(h\xed=\xab;\xa0>R\xd4\\\x1d{\xeb\x80e\x04\x18\xdf\x8c\x9a\xc6\xd3\x14\x0ei\n\xd7\xbf~\xdf\xa6p\x1bP\xa2\x06\xa9\xa9\x07\xb63m\x7f\xde\x10\x132s\xcd\xbbK5\xba9{3$\x0c\xc7$\x19\x18\xb5PU\xd6\x92\x11\xe7\n\x1f\x06Ud\xff\xaf\xf0\x9b\xb6f\x12\xffWm\x9a\xb5\x96\xaeu\x92\x14\x88\\\xe6\xe5\xd6{\xa5\x1c-\x8f\xc7\xbb8\xa5Q~\x0e\xf9\xbe\xff\xd2wT\xa3_\xf4\xe2g\x1c\xffqkW\xbe-\xf1z)w\x1d7y\xb9\xaen\x02W\x15%\xbd\xe9N\xbb\xe5\xd8\xe5\xe5R\x16\xc7v7\xb3\x94e\xe0\xf9\xae\xab\x9b\x92\xe6;\xbc\xfc'\xca\x8b\xe5Z\xc2\xb2Qe\xf1\xce\xb3\xdc\xf0c-U\xb9\\W\xcd\xaa\xc0\xbc\x1dQ\xea\x9cU?*O\xb4\xe46\ns\xe3em\xb8J\xb2\x06\x8eFg\xcbr_\x89\xc9Q\x0d5\xdd\xe7\xd7\xc4aL\x97\x02\xdd\xce\x8e\xb2\xfdc\xf2F\x8e\xec\x93\xbc\x91\xd9\xbd\x91\xe0\x85\x92M*y\xb9]\xe6\xe5\xa6\xb2\xac\x97\x1f\xc4cg\xec\xa9v\xd5\x94\xef\xf2LA|3Y\x14\xe2\xdc\x02\xa2U\xad\x16\xb6\xc1\x92\xd9W#\x7f\xbf\xb7\x0b\x1fk\xd5\xfd\xe8h\x92y\x12\xddS\x08E5]^Z\xf3\x058\x95\xb8\xd7Z\xb0L\xae\x9d\xfcE\xe4\xdfAT\xf2\xb6\xda\x0e\xc3\xafF\xe3\xf48qxt\xcd\xfe\x8c\xe1\xdd{\xf6\x83Q]S\xb2\xe5\xd6pR,/\xd7\xf8\xf3R$:\xbb\xe5\x86\xbb\xd75!g\xacJ\xb2\xe99\x81\xbc\xccj~d\x89\xcd\xf9(\xbb\x04\xb6\xee\xf2\xd5eh\x17\xf3\xe1D\x11\xda53\xcd\xf2\x12\x90\x88\xb3rr\xdf\x0e\x1d\xc4\xe9>\xe1\x15\xf1\xdc\x048\xabv\xbb\x9c\x8a\xe3\xa3T\x9c\x8c\xb6\xe9\xcb\xaa\xf2\x9f\xf2P\x8b8\xc2c=\xac\xfa\xe9\x03/\xe9\xcf\xdc\xdb\xfb;w\xc0>\xb5\xe1\x12\x8a\xeb]\xbb\xad\xe0\x9fK\x97\x8bm\xa0\xee\xfb\x9c\x10\xa5\xee\xcf9}\xc9\x86\xe2'=\xa1Ut\x8deS\xd2<~\x96\xee\xbe?\xeb\x8fO\xd9\x07\x9a\xd8\x07.\xf2\x1d&\x14\xed\xf6\xc0k&{\xc3\xf0\xa3\xe7D\xd6\x1e\xd6<\xa7\xa2QY\x91_\xe3\x12\x13\xd2\xfa\x9fzS\xd0j\xb7\"\xb4*M\xc8\x822\xc48\x1f\xdfP|[\xf8\xf7K\xcc\x0f\x00\x8a\x1e\xa5\x8e\xb3\xf1\x86]\"\x02+\x8c\xcb^\x8d\xe0\xf1U^\x98\xc60\x93\xaa\x11\xf9EZ%\x04\xd3'*c!\xc1\xd6\x13\xf9\xd9x8\x89\xce\xce\x8f\xb1\xb1-\xe8u\x95I~6\xdf\\[O\xb3\xca\x9c`U\xb9\xc9\xb7M\x8d\xd7\xb0\xcb\xc9\n_\xe6\xe8\xdat\x8cw\xc7;\xab\xda\xea\xf0\xac\x8c\x13\xee\xcf\x9fw*z \xb2>p\x85\xf7\xb4;\xcf\xdb\x94%f\xeb+\xaa\x0fb\xa1\x83\x1a\xa3\xf58\xc3d_\xdeV*\x1b\xe6\xa7\x0f\xcd\xee\xb1n\x84>\xf9\x04\xa8\xb8A\x07\xc2\x8c\x8e\n\xf3\xfc2\x18\xdf\xafD\x05\xb5\xc3\xdb\xa7\x99\x7fS_\xbd\xe7x\xf4\xb3\xbb\xa8\x9f\x1f\x8d\x9c\x19\xd3A\xfd]U\xe6\xb4\xaae\x1e\xdf\xdc@\xfco\x87$\xdbO]\xe7\xf4\xa0\x89\xfc\x8au\x92\x17&7\x19^\xde\x94\x12\xdb\x1d\xb7\x13v\xe6\xe9N\xdat'\xad\xef\x9d\xb4\xe05\x06\xfb)\xb2E\xab\x06\xdc\xff\xbc\xfc\xff\xd9{\xb7\xe6\xb8qd\xdf\xf7\xbd?E\xc69\x0f\xd3\x13\xc7\x92\xe6\xb6\xf6\xa5w\xc4\x89\xe8\x96={\x14k\xb6\xed\xf0ev\xac\xb5\xe2\x84\x82\xaa\x82\xaa8\xaa\"kH\x96d\xef^\xf3\xddO0\x01\x90 \x0b\x97\x04\x88\xb2\xd5\xed\xcc\x87\x19\xb7\x8a\x04\x81$\x08\x82\xf8\xff2\x01\x9bwo\xaf\xc7/l\xf5U\xd8\xc2\xd3V4\xb6N\xe4\x98k\xac\xeaF\x96\x81ID\x1a\xd9\xf8\x01\xd3\xef_:\xb8l`z\xc6\xea\x0e}\xc6\xfbz?\xd6\xdb\x1bn\xd6\x88\x83\xc00\xde\x9f\x8af\xb8I\x81\xd8\x95\xa9[\xb0g\xba\xa2W\xa6\x91s\xde\xc5\x0b\xf3\xeb\x8a\xb4\x84a+\xe4j\xf2\xa9\xe7$\xe2\x86?\xf2\xba\xc6\x89\x7fx]#\xfb\xba\x867\x1c\x85\xb3\xfa\x07\x05\x14p\xbd\x9d9\xab\x7f^\xe7\x86\xf3\xd1sV\xff\x1c^\xe4\xac\xfe\x9c\xd5\xff\xd7\x99\xd5\xdf\xbfD\x7f\xf5\xf3\xaa\xae\xda[\xb5$\xec\xc9\xe8o~\xf1\x9a2\xf7\xfc3Sr_+L0&\x0bU%\xb9\x16\xee\xbf\xd3\x8d~\xa6\xeb\xf6\x8f\xc5\xee\xd6tY\xd6\x0fd\xefR|`j\x13^\x86\x0f\xce\x8d\xc2\xcb?\xa1\xcf\xcb\xac\xcb\xef\x9e\xc5\xf7\xf0\xd2{\x86\xc6\x86??!\xff\x92\xbb\x7f\xc1=q\xb9\xdd\x9d\x1b.f\xb1=\xebR;}\xa1=\xbc\xccN\xbe\xd7\xfe%v\xda\xfd\xce\xb8\xbcNZ\\\x0f-\xad\x87\x17\xd6i\xedJ[T\x87\xfa\xe8\xcag\x9b\xb2\xa4\x9esA=v9=b1\x9d\xdc\xe1\x96\x0e.\xb9\x16\xd1\xf3-\xa1\x13\x17\xd0\xc3\xcd\xcb\xbbxNY:\xa7/\x9c[+<\x7f\xf3\xbbV\xd6\xd5\xea\xa0X\xf7g\xe0\xd4\xc7R\xd8t2$\x8d\xba\xfa\x96e\xf1\x8d\xd7\xdex\xed\xcd\xfa\xfbsZ{3?F\\\xbd\xd0\x8a\xb5\xabnT\xdf\x8dc\xcb\x1c\xc7\xee?\x82\xd5\xe7h\xfd \xaa\x16\xb6b\x87\xb92\x9d\xe8\x10@\xb1\xc2\xa9\xb2\xfa\xc8\xf00;O\x95\xcc\xbbYWF\xefR\xb9\xce1\xdb\x7f\xbd*Qq\x1d\xbe\x87]E=\xd62\xb3A\xfd$\x17`\xeb\xca\x03\xaa\x05n\xe9]\xb1+*W\xc0]\xc6\x01\xc2\x19\xe1/\x8d\xd4g\x8a}\xef\xe9\x85\xc5P{\xc9u]\x9a\xbbAa\x87P\xa9\xbdes\xf4\xfav\x7f\x03\x8bJU\xce\x97E\xfe\xf5\x9b\x0f\xaf~\xc0|\x9c\xf2\xd8a\x1b\xc9\xfe\xf4\x9bJ\xaf]\x0d\xf9\xde[o'P\xf9\x00\xd5\xdc\xd9\xfd\xb8\x96\x9b\xaa\xe8\x8e\xf2\xf9\x91\xf3\x8b\xbe\x13n\xeaM\x8d\xc9\xf6R\x19\xa4\xf1!2?\x0b\xf0K\xb9\xd8\xa1\xb6U\x9b\x0f\x9a\xf8\xb4\xc2\x0f\xc9\xadc\x1b\x9a\xb232\xb1\xdb[\xa3z\xea<\xf9\xa1\x1a\x1c\x86\x85\xb0}\xdd\x08h\x8fe\xa7\xb5\x08ka\xab\x1d\np\xc3\x0b;\xe5K\xd2\xf6\xe2\x1f{\xccn7\x1b\xc6\xda\xdf\x8c\x10\x94\xbb\xb4\xd3\xe7\xd4\x07EM*ih.\xd3<\x1e\x86\x143\xf9p\xb3|\x87\xa6\xaf!3d\xc5\x90\x15\x15\xb2\xf2!\x0cj\xcd\xc0\xf6%\x10\x8c\xa5\xb6\x15te\xfdr\xe1\x04\x7f\xcax\xdd!\xcft\x81w\x82\xe3\x9d\xe0\xec\xc6;\xc1\xa1\xf1Np\xa7\xc6;\xc1\xf1Np.\xe3\x9d\xe0x'84\xde \xce\xdd\xa7y'8i\xbc\x13\x1c\xef\x04\xc7;\xc1\xa1\xf1Nph\xbc\x13\x1c\x1a\xef\x04'\x8dw\x82\xe3\x9d\xe0x'8\xde nn\xd4]\xb9x'84\xde \xee[\xd8 n\x8a\x13\x19EM>&\xa7GM$\xd7\xe1\xa7S\"\xd0\x92\xe9t\x01\x06\xc8\xe1\xc2\xa9\xb1\x98\x1c.|F\xe7\x86\x03]9\\8\x87\x179\\\x98\xc3\x85\x7f\xa5\xe1\xc2v~\xbdnN\xf1\xf5\xabF\x18\x90\x95,\xd4\x06\xb3\xbf3\x0f\x1b\xd0\xf5\xc9\xc9c\xe4\xb0\x0fR\x9f\x14\xf4\x9dn\xfd3\xa5\xd3\xcd\xf6=7>\xdd\xac\xdb\xd9\x01\xd4o\x9bPo\x9b\xd5Wj\xb9\xb5\x0e\xba\xf5c\xb8\xa5\xd9\x17\xbc\xe5)\xc0F>\x91\xe3\x0c\x9b\xe2\x84u\xdb}u'\x18uX\xe0\x84\xb5h;\xfd\xc2\xa4{BT]\xe3}J\xfc\xc3\xc0h\xce\x01a4\xc2s+\x8d\xf2\xf4J[5B\x0ec\xfe\x9c\xbf\xa3\x11o\xa4\xb4p\xe8\xaci17_\xda\xac\xf60\xf9`T\x7f\x1bb\xba \xe5\x99}\x05\xba\xba~\x80\xc3n\xb6A\x85\xcdVu\xff\x91\x8f\x15q'\xc37-\xc9\x89\xa1\x9c\xb2\xa3%8r\xda\x82\xf9F\xec\x9fd\xe6\x03\x1f\x8a4\xda\xc4\x89c\xc1!'\"\xfeS\xecn\x03\xc1\x13\xa3E91\xde%\xb3\xfaL\\\xa2~\xd3\xf8<\xa14\x9c\x13O<\x839>\xdc\x817\xda$\x8a\xdf\x0fq_\xdd#cU\x86\xd8\xcc\xbd\xfa(!\x9cm\x0c\xaf\x17F.\x01\x19i\x80\x0f2\n'\x84\x92L7\xfa\xdd\x17\xd7Fs\x0e\xfa\xaa\xea\x9a\xcfF\xa8\xca\xe4\xd6\x11F`\x90\x9cB#v\xe2\xb1\xa8:\xd8\x8b\xaeX\x17]\xe1\xab\xef\xa4\xb6\xea\xbd\"\xbf>\xf0\x9b\xd1\xa8\x80\xfa\xd1U\x18\xb5\xd9\xef\xa6O\xaa\xb1\xe6\xbf+\xdbNF\x9c\x1e\x8a\xa6+W(X\xb8\x8a\x19&M\xbf1\xa7\xfe\xd5\x06C\xbf<\xd1[\xf7M\xbd\x9f\\A\xcfC\xc6\xee\x81\xeb\x04\xa4*\x8c\xef\xee@pV\xe0\x85\x1d~Y\x07^\xd4\xa4\x974\xed\x05=\xf9\xce\xe8\xeb\xed\x08\x04\xd1F\xba4\x90/\x0fk\xf5T\xc6^\xf9!2i\xb1\xd7\xc8\xferz\x8a\xc3m\xd18\xdc\xf6W\x1an{\xd2\x1c\x94^&\x9aFZ\x9c\xedT_q\xa6\xf9\x1a\x9f\x02\x8e\xb7=q\x10\xc7\xdbR^R\xc0\xf1\xb6\x1co\xeb<\x92\xe3m\xd18\xde\xf6\xd48\xde\x96\xe3m]\xc6\xf1\xb6\x1co\x8b\xc6\xf1\xb6\x1co\xcb\xf1\xb6\x1co+\x8d\xe3m9\xde\x96\xe3m9\xde\xd6e\x1co\xcb\xf1\xb6\x1cok\x7f@8\xde\xf6\xc4\xa8\xb1\x8f\x1co\x8b\xc6\xf1\xb6\x1co\xfb<\xe3m\xdbfu;M\xc0\xef\xaa\xf7\xe9\x91\x93\xba\x8f\xfc\x88Q\xf7\x01\xd1\x10H\x1e\xce[\x10\x1b{\xe5h\xc3\xba\xed\x88m8=2\xaa\x0d\xd34\xe3\x19[\xc0Q\xcf\x14oq\xd4\xb3\xb43;7\x1c\xaf\xcbQ\xcf9\xbc\xc8Q\xcf\x1c\xf5\xccQ\xcf\xc7\xea\xae\xc6\xd6\xdc\x1a\xd8\x8d,\x9c\xba\x95\xd7G]\x84kO\xaf\xe1\x1a'\xbb{\x0d\x85a\xb8\xf4\xe8\xc8\x93\x99\x98\xeeN\xf6m\xbel5P'<\xdb\x88\xea\xd1\xf1\xcf,\x9cz\xdaC\x07\xa2\x19\x1doQ\x8a\x1d\x88\xe2t 7\xab\x03\x91\xbc\x0e\xc42;\xfe\x9e=\xf0\n\xa2\x19)\x08\xbcm\x03\xdc\nD\xb0+T^\nR\x98)\x88\xe5\xa6\xc0\xdf\xf0\x14~\xcaY\x98A'Q\x1f\x19\x1aG\xe5} \xaa\x8d\x9f\xa5\x82\xbc<\x15\x84\x98*\xf0sU\xcesRy+\xc8\xd8w#\xb8+\x88b\xaf\xc0\xe0\xaf\xa6\xf6\xf7\xa2\xdc\x89\xb5_\x9d\x9a\xcb\xe9S\xa3~\xc3\xcb+\x81N`\xf0\xb4\x15j%\xc7L\xdd\xd1\xf7\xf0;!*u\xb4\xfb\x0e7\xf5\x1e3\x83\x885\xb4]\xd1\x1d[\xb9\xdc}\x92\xe4C\x9a<\xc4\xd5Jj\x0b\xd4\x85\xcay\xdaX\xf9w\xe7i\xdf\xcbz\x8e9\xef\xd4\xbfP\xde\xb0\x9fBX\x0b\x12\xd5q\xef\x9e\xa1_\xc0Oo^\xbf\xbc}\xff\xe1\xc7\x0f\x1f\xdf\xdf~|\xfd\xfe\xed\xab\xeb\x9b?\xdf\xbczI>\xa3\xff\xaf\xc8\xc3o^\xffO\xe2\xf1\xde\xc2u6\x88\xa8&\xc8L?_@\\V)\x85d7\x06\x839\xc4uv\xfc\xed\xfb\xb2Z\xed\xdc/\xfeV\xec\xee/\xc6\xa4;\x8eN0\xb2\x16r\xfb\xe0/\xd0\xb4\xf9%G\xdd\x1c\x91\x1f\xf5\xc7\xb2m\x8fRSp\xbf\x8a\x0cU},\xd5\xb18j\xd6nq\x03\x86\xe3fT\xe8\xf8\xf7N4\xfb\x16\xec[\xc1\x8e\x16Ht\x97M\xb7\xdf\xd7U\xf9 ,\xc9FF#\xdc`\x88\xf0\x11\x8cW5vU\xdf\x1e\xf7Eu\xd1\x88b\x8dd\x18\xce\xe8B>\x02\x8a\x9f@\x11\x00\x9d\x93\x80\x80\xf3\xb4Q_\xd6\xcc\xb4\xa5\xf5\xcd\xf1\xc7\xb6\xdcTEwl\x04|/>\xf9?\x92?\xbe\xad\x1b\xc4<\xffU|\xbe+Z\xe1\x1c\xbc\x01\x9e\xc4][v9V\xfb'-V\xc5Z[\xa4\x7f\xdb\x95\xd5\x83o\xe8Y\x1d\x9b\xb2\xfb|\x8b\xdf*+o\xda\xc3\x94\x1a\x06\xee\xc9\xfc\xf2\xd6\x96\x88}Q\xee\x82\"\xb9.\nTQ\xee6;\xf3\xe2\x8c\x96\xd2TU\xac~\x11HYjh\x84\xfa\xd5^\xab1\x07\xab?\xf9$\xa1Z\x94\x84\x93\xd4;4\xaf\x96\xbe;/\xa0\xbc\x1f\x7f|\x81#\xaa:\xc2\x03\xd3\xe8\xa4\x94e{2\xbd\xdb\x1c\x8d\xa4w!\x17\xf92OF8(\x94m2\xdeI\x98O\xd2\xe3\xa2}Y\x0d9'\x9d\xc5M'\x92]\xad\xd3\x0f\x8a\x90\x83V\xf5~_\xb6-\xf5\xa59\x1e>y1\x1a\x7f\x1e\xc32\xce\xfc\xca\x1b\xafy\xdb\x14\x9d?K+\xf5\xae\x80\xa5\xdcICU\xfaK\xe3 oY\xb2\x00\x89\x14\x0c2\xb8L\xc2\x8a\xdf\xbb\x84\xd7\x1e\xc9_@\xf4\x19\xa8:\x85\x96\xe4 \x0f\x84\xb6\x18\xd7\x82\xba\xbc\xfe\xf41\xba\x0d\xfey\xb5-\x9a\x0d\xce \x83\xc5\x8c\xb3\xc1\x17\x80\xd1`\xf7\x88o\xf9\xd3\x8a\x02\xec\x8bO\xb7_\xd9\x01\xba\n\x93~\xb5/>\x95\xfb\xe3~\xee\x91`art\x1c\x9f\xfcUQ\x81x\x14\x8dre\xb4o$o\xf2\x1c\\d\xd4\xc4\xea\xa9uQ\x06\x93\xd0bxC#\x8aV\x9c`\xba\x86\xa7\xa5\x93\x82E\x85\x9dx<\xf4o\x87`\x8ec\xa2\xe3\xa8o\x1c\x88t\xb0QK\xfd\x1c\xa2\xc4\x80\x7f\xb0=\x95O\x01\xccN\xde\xa9\xb5\xdd/\xfb\xb2\xba\xed?T\x8d\xfc\xfc\x0b\xde\xc2\xd4vZ\xaez\xb2\xdc\xf2\x9b\x16\xbf\xa0a-V\xbbb\x1eU2+\x0c{\x9c:Z\x17hk/\xa5~C\x08\x80\xf1\xd94T\xea\x05t\xf5F.h\xa1\x8c\xd0\xe9\xf0\x1bkQ\xc5\xde\x08\xd3\xb1/-\xfe\xcdhn?\x11\xd0_\xdf*\\\xbfl@|\x927P\xdel\x9c:\x94\x95\xe3\xe5\xfd~W\xb4\xdb\xfe\xd5\xa5\xc3U\\pp\xd1\xbbU>yJ\x9d\x9a\\\xe6\x85D\n\x91p\xab\x9b\xc6\xf5b[\x15\xbb\xd5q7\x882\xf7\xc7\xfe\x0b\xcb~\xc1cen\xce\xd0\xfb\xae>vPv\x18\xceQm\xa0~\xc4\xef\xd4a \x01\xfe\xf7VT\xb2\xa9\xf6\x064\xd3\x05\x19\xfbU\xa7\xd3\xd2\x17\xb3!\xa6l\xfbw\xfd\xba\xec4\xf6U\x18\xdd\xc7Z\xde\xd3\xb6n\xc5\x18ie\xbf\xa8y\x1b\xcbv\x02X\x1a=\x02\x9b66\xc1Z\xd2\xba\x1c\x14X\xb9\x8c\x8e\x94\xa0\xfd\xaa\x93\xfbw \x7f\xab\xd1\xad\x87\xfaI4::R\xdf.\xb1FU\xd5\xd9m\xf5z+6\xc1~\xb5\xfdq\xd7\x95\x87])+7\xbd\xf6\xc9 \x93\xa7\xce\x08\xfe\x99d\xf06\xefL\xfb\x1b\x19\x18\x84\x89\xa4\x9d\xbb-p^g4\xce\xeb\xfc+\xcd\xeb|rG1\x84\xcf\x12\xaa\xe6\xcd\xe6lY\xda\x93\xe9\x9bmQz\x9c\xb4Y\x19'm\xce3\xd1\x8b\x0d\x1c\x93\xdd\x96\x936\x13\x82\xc4\xba\x1c\x01b)\xc1a\x9c\xb49c XL\x10XT\x00\x18'm^\x1a\xec\x95\x10\xe8\x95%\xc8+>\xc0\x8b\x936/ \xe8\x8a \xe6J\x08\xe4\xe2\xa4\xcd\x9c\xb490K\x8a\x0e\xcc\xe2\xa4\xcd\xa4 \xac\x94\x00,N\xda\xec:,\x18h\x15\x11dEII\x1c\x13\\\xc5I\x9b9i3%P\x8a\x936\xa3- \x86\xe2\xa4\xcd\xb6\x92\x82\x01O\xa9\xc1N\xcew\x03'm>5N\xda\x9c\x10\xa4\x14\x0eP\x8a\x0dN\x8a\x08L\x8a\x0eJ\x8a\x0bH\xe2\xa4\xcdqAG\x9c\xb4y0N\xda\xac\x8c\x936s\xd2fN\xda<\xfe-\xd9\xb9\xe1t\xc3\x9c\xb49\x87\x179i3'm\xe6\xa4\xcd#Mu\xf5\xf3\xf0o\xf9\x9b\xbcDt\x16\xe7!\x89\xb3\xb9\x05\xbf=\x7f\xf3x\xc8P\xde\xa1(\x87w\xfc$\x8d\xf3\xe9\x85\xd4Q\xcf?\xf7\xb2\x8b\xe7H\x02\xc5h\x19\x94\x83\xca\x04ei?w\xee\xe4\xf8\xcc\xc9\xb4\xbc\xc9^oB\xd0\xa3@\x80]\x08\x1e\x05\xb2W!\x15y\xf1\x94\x17\x95)9+\xf6\x12\x04_r\xa3/t\xf8%\x13\xfe\x92\x06\xc0x\x8a\x8b\xcc\x8d\xbc\x10\x82\xc9\x8d\xc1D\x820\x99Q\x988\x18&\x12\x87\xf1\xf5\xe1\x01\x94\xa1\x021\x99\x91\x18\x12\x14\x93\x11\x8bY\n\xc6$\xa11\x99\xe0\x98\x14<\xc6S\x189\xfb\xf1\x19\x10\x99\xf3A2g\xc1d\xe2@\x99\xec\xa8\x0c\x15\x96\xc9\x8a\xcb\xd0\x81\x99hd&\x1e\x9a \x0e\x85\xb4<\xc7\x8b\xc1\x99`\x8ec\xd2\x84\x8a\x80\xcf\xc4\xcc\xba\xa2\x11\x1a\xdfK\x90\x9c\xd9\x98V\xbf\x8c M\x0cJ\x93\x19\xa6I\xc3i|=\x88\x94\xcd8\x11\xa9q\x94\xd6\x912\x19\xe7\xc1j\xc8l\x08\x01\xad\x89\x82kB\x89@S\x00\x9bP\x99N\xa1-\x13f\x13\xefL:j\x13j[\x02n\x93\x08\xdc\xf8\x04\xcbl\xd0\x0d\x19\xbb\xa1\x817T\xf4\x86\xe0\xe5x\xfc&\x06\xc0\xf1\xe7&\xce\x02\xe1Db8\xcb@\x9c\x90C#`\x9c3\xe08\xc1\xda9{z>(\x87\x80\xe5\xa4\x839\x8e\xe2\xba`\x0e\xe2\xacpN\x08\xcfI\x04t\x1ce\x85s\x0f\x13 \x1d\x7f\xdea_\xd6\xe1\xdc\xa8NvX\xc7\x8d\xeb\xe4\x04v(\xc8N<\xb4\x13\x85\xed$\x80;\xb1\xe8N \x93\xb0\xbfvT\x98\x82\n\xf0$ <\x91\x10\x8f\xa7\xb9) \x8f\xa3(B\xee\xe0\x14\x98\xc7\xd3\xe5\xc3y\x833\x02=\xc1\x9c\xc1\xe7\x80zr\xf5\xc5\x08\xb0'\x06\xed\xb1g\x04\xf6\xe5\x03\xee\xac:\xadi\xb4\xef\xde\x94L\xc0\x98\xf1\xd7Q\x1e5\x0f\xb0/\x0b0\xad\xe6I\x19\x80\xa3\xf3\xff\x06\xd7I|\xb9\x7fc3\xffF\xe5\xfd\x8d\xcb\xfaK\xce\xf9\x9b\x90\xf1\xd7\x97\xef7\xe8?\xda\xcd^\x9a\xe9\x97\x92\xe7\x97\x96\xe57S\x83r\xe5\xf7\xa5g\xf75\xeb\xb5\xa8\xe2\xc3Q\x8b\xf2\xfa\x06\xd2\xf6u\xcbU\xe5`>\xdf\xe0\xad\x04\xb2W c&\xdf`B\xc3p\x16\xdf\xcc-\xcb\x9c\xbf\x97\x9c\xbd7\x98\xbb7\xbe\x9dK\xf3\xf6\xd2\xb3\xf6\xc6\xd7\xcd{\x0f\xb2\xe5\xeb\xa5f\xeb\x0d\xe6\xea\x8do`r\x9e^Z\x96\xde`\x85\xc2\x19zi\xf7#gv\xde%\xb9y)\x99y\xc9N\xf1\xe7H\x8cuLLF^\xca[\x02\xc8\xf9xC\xd9x'-Y\x9e\x8b7\xc3\x8b\x8a\x9e\x85\x97v\x17 >\x03\xaf\xcc\xb2\xeb)oQ\xfe\xdd\xa0\x8f\x80\xe4' e\xde\x0dvxmtg\x029\xe7\xae\x99S7P 9\xab,-\xdf\xee\x99\x9a\x1d\x93iW\x8ee\x81\x02s\xe4\xd9\x8d\xca\xb2{F\xc7\x90\xf2\xeb\x0e\xf9s\x03\x05\x06\xb3\xeb\x06]C\xca\x9dKr\x07\xed\x9d\x00QN\xcb\x9c3\xd7\x931\x97\x9c/7\xe8\x0bZ\xeb2f\xca%\xe7\xc9\x0d\xd7,-G\xae\xca~j)\xcf\x9d!7g~\\bv\xdc\xe8\xdc\xb8f\x1e\\{\xe3\xdc\x99q\xf3\xe6\xc5\xa5d\xc5\xcd\x9b\x13\x97\x90\x117)\x1f\xae\xce}k+/\x98\x0d7-\x17\xaeZ_\xb4\x94\xe7\xce\x84K\xce\x83;y\xa6\xa8\x99=\x87\xc4\x9eK\xb2zrROm\x9c\xd4\x93\x93z\x8e\xc6I=9\xa9\xe7hY#\x19b\xe2\x18\xa2\xa2\x188\xa9\xe7\xd2\xd8\x85\x84\xc8\x85,q\x0b\xf1Q\x0b\x9c\xd4sI\xb4BL\xacB\xe6H\x85\x8e\x14\xa7\x901J\x81\x1a\xa3\xd0\xc5E(\xc4\xc6'pR\xcf\x89EG$pROR\x1cBJ\x14\x02'\xf5t\x1d\x16\x8c<\x88\x88;\xa0\xa4\xac\x8c\x899\xe0\xa4\x9e\x9c\xd4\x93\x12Y\xc0I=\xd1\x96\xc4\x12pRO[I\xc1\xe8\x81\xd4\xd8\x01\xe7\xbb\x81\x93z\x9e\x1a'\xf5L\x88\x11\x08G\x08\xc4\xc6\x07DD\x07D\xc7\x06\xc4E\x06pR\xcf\xb8X\x00N\xea9\xd89\xf8\xff\x1c}.\x82\xfd\xa7\x93\xff\xbf\xd6\xa4\x9e\xd3lf\xae:O\x8f\x9a\xd4y\x94;\xcf\\\xe7\xd8|n\xdb\xb2\xed\xea\xa6\\\x15\xbb\xdb\xb2\xba\xaf\xaf~\x96\x84\x9f'a\xdb_\x863n\xaa\xfbz\xc8\xd0\xd6\xb7r,l\x9e\xa6M\x96\xaa\xdb9I\xc66-\xef;\xdd\xe4g\x9a\x88\xado\xe2\xe9D~R\x95\xfe\x90\xc9\xcd\x9f\xbbEet\xb4yf4g\xdd (\xcdmE\xb1v\x91\xe2\xdeb!Xtoj\x85\xd4\x03\xe5\xc8\xcd1\xef\x8a\xb6\\\xc1\xdd\xae^=`\xbb\xdd\xc7\x87\xea\x04\xa4z\xf5\x86W\xcbDP\x11\xb6\x01\x95V\x1c\x0e_\xf6\x92\x94e7i\xd7:\xe9\x1d\xac\x8aCwl\x06\"T\xff\xb99\xee\x84\x0cn84u\xff\xfc\xf8\xabX\x0c\xf7S\xeaa\xfd\x7f\xac\xb6EY\xbd\xf0|S\xaa\xec\xa4\x08X\xf6o\xef\xe1$X\x17]\xd1\xfb\xe5\xb8\x92uS\x1f*\xb2V\x9e\x02\xf5\xf2\xe5(p\xfc\xc6\xb1m\xb0\xb4\xb6CR\xa7)\xaaV\xbe\xcd\xf7\xc5j[V\x8e\x1c+\x88c\x95\xd5m\xe9\x88V\x03\xda-\xf5\xc1\xdd@+\x82\x02y\x03|AD\x0e\xe7\xcbx\x03\xfd\xde\x91#\xc0\xa1\x11\x8f_x\x00\xd8\x16\xed6\xf3\xc3\xe8\xcd\x17\x84s\x9d\xee\xb6\x15\xdd\xado\xd8\xd5Fj)\x90[\xdb\x9bg\xa7\xe3\xc9a^Pen\x94n\xa7-\xecr\x88q;\xd0]?t\xb4\xb7E\xd3\xb5\xa2\xfb\x0b\xde\x01_\xd7E*\xb3\xbb\xf5W\x99TUR\x15U\xf5\xfa\xcb \\\xa1\x97\x0fC?\xec9\xce\xe9\x7f\xfaB\xd5\x1b\xd3\xf5~\xa1\x0b\xce\xfdq\xdf\xd4{=\x8eC}\xec\x0e\xc7n\xfc\xdb8v8J\xc3\\\xf8_\xbc\x0dc\x16\xd9/s\xbd\xe2p\xf8BW\xc2\xe7C\x91\x00_\xe8\x92\xe2\xb1\\\x8bj%\xbe\xd0\xe5\x86\xfe7N\x7f<\xaf\xa5~\x04\xae[\x11H\x8e\x0c\xd9\xea7\x99\xd4\xc9\x91l\xf2\x151L\x93pI\x11>\x88j-\x9a}YujP\x91\xaf\x1f\xdb\x8c\xe6\xb1\xd8\xb5\xc2\x1bef\x07\x07\xc1\x07\x0f\x02\xedmFy\x8f\xd1\xd2PK#\xf9:f\x86\x1c\x95\x98\xda[\x8eI\xc7\xc7\xa7\xa7\x96FKR-\x8d\xe0} \xde\x01P\xc5\xf9\xd3V\x8f\xc7\x11\xee\x00D\xde\x05H\xc0<\x83\x05vV\xbd\xdf\xf7\xa5 \x8d\x8c}\x06K\x1a\xb1\xd0\x10\xfe\xa9-\x16\x03\x0d\x16x(\xba-\x19\x07\xd5fSz\xa2\xb1Pmt<4X\x94\x89\x8fF`\xa2\xda\x16\xe2\xa2\xda\xe2\xb0\xd1`q\ni\x8b\xc2G\xb5\xc5b\xa4\xc1\x02\xef\xeb&\n'\xd5\x16\x85\x95\x06KKI\x91-\x8d\x84\x99\x06K\x99b\xa8\x14\xdcT[6\xect,p ~\xaa-\x01C\xd5\x96\x05G\xd5F\xc7R\x83EM\xb0\xd50\x9e\xaa\xed\x0c\x98\xaa\xb6s\xe1\xaa\xda\xce\x80\xadj\x8b\xc1W\xb5\x911\xd6`I&\xe6\x8a\xfd;\x8c\xb3j\x8b\xc2Z\x83\xa5\xe18A\xc5[\xb5uq\x98\xab\xb6X\xdc5X`LRni\x8b\xf1Wm\x81\x04\xdd\xd2\"\xa6\x8e\xc1\xcf\xa5\xd1bg\x99Q\x98l\xb0\xb4Nc\xb4\x04\\V[L\x8d#\xf1YoY\xd3\xd9,\x01\xa3\xd5\x16\x85\xd3zK\n\xa6\xfc\x96\x96\x82\xdc\x86\xfb')\xfd\xb7\xb4\x14\x047T`GJ\x05.-\x0f\x92\xab\x8dH\x97j\x0b\"\xba\xda\"P]m\x81\x1c\xbdh)\xe8\xae6J\xf9\xde4\x9f\xd9\x90^mi\xce\xa7#\xbe\xda(-O@~\xb5%\xa1\xbf\xda\x02\x1e\xcf\x87\x02k#\"\xc1\xda(h\xb0q,\x01\x11\xd6F\xbc+\xf1\xc8\xb06::\xac\xcd\x97\x94\\Z\x16\x94X[\x14R\xacm Z\xac\x8d\xe2\xfa\x08\xd4X[v\xe4X\x1b\xa9\xbe\x81')\x1eE\xf6\x16w\xf79\x8c$kKA\x93\xbd\x05j\x1a\xc0\x9f\xdc\\Z\n\xaa\xec-\xb0\xd3kn\x9eD\xe7\xd2b\xd1eoa#\xd6LX\xee \xa0\xcc\xda|\xf9\x97\xa5\xf9\xd2\xa0K\x8bG\x9c\xbd\xc5\x05\x12\xa5\xeb\x83\xe8\x18t\xa0\x83\x18\x88\xb4'i\xba\xb4X,\xda[\xd8\xc7w\x7f\xbd$\xe0\xd1\xdab1im\x11\xb8\xb4\xb6hlzv\"\x11\x9f\xd6\x16\x9a\x05\x04\x13[K\xa3\"\xaeT\xacz(7\x16\xaf\x1eN\x8c\xc1\xac\xb5\x05\x9c\x91\x82]{\x0b$$b\x97\x96\x82a\x07\x1f\xa6pRvi\xf1Xvp\x14\x0f$h\x97\xe6\xc1\xb4\xbd\xe7\xa5\"\xdc\xdar\xf6\xf7\x08\xa4{(\x9a\x8cvksO\x90| \xde\xa5\xc9\xf5\x1f_\x9awi1\xeb#))\xdf\xfd=\xa1\xa9\xf7\xe4\xc4\xef\xd2|\xe9\xdf\xa5\xc5\xb4()\x15\xbc\xb4\xe8\x84\xf0\xd2\x88\xebr\xbe\xe4\xf0\xd2bS\xc4\xdb\xcf\xf2&\x8aw\x9f\xe2N\x17o;'x\x91\x84\xd4\xf1\xd2| \xe4\xd5\x114\x7f\xc7t\x9a\xa5)\xe5\xa5Q\x12\xcbK\xa3\xa5\x97\x97v\x86\xe6\xe6J8/\x8d\x9ev^\x9aY\xd3l\x0d\x1a\x8e]\x94\x88^\x1a!\x8bmv~$\x98\xa0^\x1a\xb13@\xa4\xff c\xcazi$\x1fR\xd2\xd7K;c\xbb#\x13\xda\x07\xcb\xfb^|\xba\xa4\xa7\xb5\x97\x16Ln/-\xd5\x0bK\x13\xddK\xa3\xa7\xbb\x97\x96Z[\xc2=\xcb\x96\x00\x7fZ\\(\x0d\xbe\xb4`2|i\xa9\xcdON\x8c/\x8d\x96\x1e_\x1a\xb1\x8aT\x9c=\xe6.\xc6\xa7\xcd\xf7\x16Wt\x8b\x92\xe7K\xa3\xa4\xd0\x97\x16\xe9\xb8P\\\x08$;\x8f\x9aZ\xdf[\x9c\x1a\xd3S\x12\xecK\x0b\xa5\xd9\x976i\xe1\xf2d\xfb\xd22\xbf\x86\xe9\xe9\xf7\xa5\xc5\xdc5\x88O\xc5\x1f,O\x16\xb2(!\xbf4\xa2\x1f!\xc2\x97@J\xd1/\x8d\xf8@i\x8bu;\x90\x93\xf6\x93\x8a2\x12\xfb\xd3\xb2\xb1\x8fFK\xe0/\xed\x0b8%&\xa5?\xa9@9\n\x07\x12\xfb\x93J\x8a\xf3)y\x0b\x00i_\xc8\xb5\xa4M\x01H\xa5\xe9\x8d\x03\xc2[\x03\x90\x8a\xa39\x97\xb4\x89\x80\xb4\x08\x87\xc6\xbc\x15!\xc1\xf9\xb1\x9b\x0b\x04\x0b|*Z\xdf\x16\x03\xd2\xc8\x1b\x0dH#\xfa+\xa6\xed\x19\xb7\x1e\x18\n\xa4m@ \x8dZ\xd7\xb4\xcd\x08\x9c\xc5\x8d)\xe9\xbd\xa0u\xfc\xc6\x04\xce\xa2\xe4\x86\x05\xd4\xed \xa4EoR\xe0\xbe\xfa\xb8y\x81\x7f\xab\x02iI\x1b\x16\xf8\x9bN\xda\xb6@Z\xec\xe6\x05\xce\x82\x8c>M\xd8\xc2@Z\xd2F\x06\xee\x1a\x94\x03 \xd0\xf9\xb73\x90\x96\xb6\xa9\x81\xb71b\xed\xd9\xda@Z\xda\x06\x07'O+&>\x99\xe6\x16\x1967(\xdb\x88\xfd\x0df\xf9N\xde\xbd\xbd\x9e\xd7\x9d\xb7:\x98~b\xf3V\x07\x16\xa3\xbe[bc\xe0d\x07\xe6\xad\x0e\x08\xb1m6$(:\xa6\x8d\x1e\xcb\xc6[\x1dh\x8b\x8dQ\xf3.y\xc6\xc4\xa6E\xc5\xa4\xf1V\x07Kc\xcd\x12b\xcc\xb2\xc4\x96\xd1c\xcax\xab\x83\x1c1c1\xb1b\xe4\x181\xde\xea\x80\xb7: \xcf\x92\xa2b\xb8\xe4\xe7\x12ou\xc0[\x1d\xe4\x8a\xab\"\x86\xf4\x04\xe3\xa8\"\xe2\xa7(\x89\xfcc\xe2\xa5x\xab\x03\xde\xea\x80\x12\xc7\xc4[\x1d\xa0-\x89G\xe2\xad\x0el%\x05\xe3\x8aR\xe2\x89x\xab\x03\xd3\x08\xf1A\xbc\xd5\x01ou01\xde\xea .\xe6\x86\xb7:\x18\x8c\xb7:P\xa6\xb7\x0d8\xc1\xfe&\x1f\x91Slp\x04\x00\xd5\xdf\x87\x0d\x02\xba\xd3\x14\xf2\xe6\xb0\xb4p\xc3\x00p\xe0\x91\xb1\x1b \xa0\x1f\xd4\x19\xb6m\x03\xde\x0e~\x9al\x19\xa0\x8a\xb1\xb0r\x93M\x02./\xaf./\xaf\xba\xfd\xe1\xa2}*6\x1b\xd1\\lD\xe5\xaa\n\xba\xedR\x1dx\xf9\xf7\xb6\xae\xf0\xe2\xfa\x0b\xf5\xd9\xee-`\xba\xd0\xb4Ie\xe4A\xea)\xc6Ux\x9c\x91\x0d\xce\xc5\xb7g\xd9\xc2\xbe^\x1fw\x96\x95\x0cg\xbd \xa8\x83Q\xe8\xd2\xe02\xd0\xa413\x0cT\xb1\x1e\x12 U\x8f+\xae\x10\xf8\x00\xce}\xf1\xc9H\x03\xec\xab\x95/\xf9u\x98\x10\x9eT|zQ]q\x0dE\x0d\xca\xbe\x91c\xd9UuQu\x8dWw\xccZo\xe7\x92\x9aQ\x15\xa35\xa0\xff\x84S\xd4\x12\xd7*\x87\x9b\xe1(\xc9\xe0\x1cP\xd76\xfe\xfb\xfb\x83h\xe0P\x94\xcdU\xd7\x94\xb55\xa2\xc0\xd8\x8f\xe4\x99x\xe6\xb4F\xdaA\xe3m6\x86g}\x8c\x93\xbe9\x88\xa6-[+\xa1\xdf;\xf6v-\xaa\xda\x11f\x17\xf7p\x8d\xa5M\xc8\xbd\xfe\xcf\xb8\xca\xbe\xaa\xcb\n\xf0\xf7\xb2\xb2`Q\x04\xbcB\x0e\xabA\xacB\x81\x14\xf2h\x04(\xa6e1?\xc1\xfcDP<\xa0=\xac\xccO0?\xe1:\x92\xf9 4\xe6'N\x8d\xf9 \xe6'\\\xc6\xfc\x04\xf3\x13h\xccO0?\xc1\xfc\x04\xf3\x13\xd2\x98\x9f`~\x82\xf9 \xe6'\\\xc6\xfc\x04\xf3\x13\xccO0?aX\x0e-\x9b\xf9 4\xe6'~-\xfcD4gP\xd7;\x0feP\xd7\xbb _\xd0\x1f>A&&XA\x7f\xb8\xfa\xfb\xf3\xa5\x02\x86\x06\x9b6e\x02\xfaF\x9a\x1a\xdfI\xabGs\xd6\x00\x82:NUw\xb72\x88\xfb\xd6\x97\xe32\xb0\x92\xb1\xa4\x84I\xab\xa5\x04Y\xd7;\xb2\x00\xd9{\xe5\xdd\xdbk\x16\x1c\x81\x05\xc7\xe0j\x1be\xc1\nXpd\xc1\xd1y$\x0b\x8eh,8\x9e\x1a\x0b\x8e,8\xba\x8c\x05G\x16\x1c\xd1Xpd\xc1\x91\x05G\x16\x1c\xa5\xb1\xe0\xc8\x82#\x0b\x8e,8\xba\x8c\x05G\x16\x1cYpd\xc1\xd1\xb0\x1c\xe2\x0f\x0b\x8eh,8~\xab\x82\xe3<\xb6\xd4&;\xfem\x0c\x05\xd5\xe2c\xb1\xdb\x19\xd1\x9fze\xb1[\xc9\x84\xe0\x9b\xf2QTjG?\xab29\x96\xa8~}\xb6\xfa\xa4/\xf6\xb6\xfb\n\xd2\x8ftc\xdd\xdc\x16\xebu#Z\xc7Q\xa4\xf5\x0f\xca\x12\x02X.9\xd1b\xf5\xdf\xe6\xdb\x1e\xfc\xc6\xbd\x84\xa5\xcb\xfb\x1fp'V[\x10\xd5\xaa^\xe3*%>\xfa\xf6W\xdc\xaa\xbf\xbdU{lo\x0f\xc7\xbb\x07\xe1\xdc\x8f,\xe0] x\x18\x08\x02\x1b\xd0<\x0c\x11^\x86\x04\xb1\xcd[\x98}\xc5\xc5\xf3\x01\x92[t\x83\xb0\xf0\x06 \xe2\x9b\xbf\x01E\xb7%\x0bp\x90K\x84\x83D!\xce[`\xef\\\xb2\x18\x07\xcb\x059\x88\x16\xe5\xbcE)\xb1 J\x98\x83\xdc\xe2\x1cD\nt\x10+\xd2\xf9{\xf6 \xe0Q\x85:\xc8-\xd6\x01M\xb0\x83\x9c\xa2\x1d,\x16\xee M\xbc\x83\\\x02\x1e$\x89x\xfe\xc7\xc1\xd8\xdc\"\xd0\x843\x88ypFA\x0f\xce#\xeaA\xa4\xb0\x07i\xe2^h\x08\xa6 |\x90W\xe4\x83\x08\xa1\x0f\xe2\xc5>H\x10\xfc\x08C\xe6o \xa2\x1f\xe4\x10\xfe $\xfe\x01}zF\x10\x01!r\x16\x17-\x06zKC\xa1\x90 \x08BD-3\n\x83\x10%\x0eBn\x81\x10\x12EB\x7f\xbfj\xc3B!\xa4\x8b\x85\xce\xf2\xfa+\x86\x04C\xc8&\x1a\x02]\xfb\x02\x8ax\x08q\x02\"\x84V\xfc\x13\x85D \x94\xebYT\xcc$*B\x92s\xe9\xe2\"\x10Z\x99 2B\xaa\xd0\x08~\xaf\xe6\x13\x1c\x81.:\x02Qx\x04\xb2\xf8\x084\xaf\xc7\x8b\x90\x10%D\x82W\x8c\x84\\\x82$\xc4\x8a\x92\xb0P\x98\x04\x82{#\x04J8\x87H \x94:z\x9e\x84|\x82%PDKX \\:\x0b\xec\x0f\xf4\x89\x97\x90[\xc0\x84\xa0\x88 \xa9B\xa6\xb34\xf9\x8d\xea\xff\\'\x08\x9a\xe0\xd5]\xc0+lB\x92\xb8\xe9,\xca+zB\xaa\xf0\xe9,M\xce\x03}[nf\x13@\x81$\x82B\x82\x10\nqb(\xa4\x08\xa2\x10-\x8aB\xe0m\x1b\x10\xaa B\xac\xa2\n\xa4\x90\"\x92B\xacP\n\xfe\x86\xa7\x08\xa6\xce\xc2\x0c9\x92\xfa\xc8\xd0\x84S\xef\x03\x81\xbb\xc2{\xc4S\xc8+\xa0BHD\x05\xbf\x90\xea<'U`\x85\x8c}7Bh\x85(\xb1\x15\x0c\xc1uj\x7f/\xca\x9dX\xfb\xd5\xa9\xbb\xba\xde \xe7\xd21\xf5\x1b^^Iiqkx\xda\n\xb5\x92cn\xe0\xdb\xf7\xf0;!*u\xb4\xfb\x0e7\xf5~\xd8\xc1\x16e[\xb9\xdcm\xcd\xe3\n\xea\x10W+\xa9-P\x17\x9ao\x81\xad\xfe\xee<\xed{Y\xcf\xab!S\xaf\xfa\x17\xca\x1b\xf6S\x08kA\xa2::\xd2\xd2\x02\xea\xe8?\xbdy\xfd\xf2\xf6\xfd\x87\x1f?||\x7f\xfb\xf1\xf5\xfb\xb7\xaf\xaeo\xfe|\xf3\xea%\xf9\x8c\xfe\xbf\"\x0f\xbfy\xfd?\x89\xc7{\x0b\xd7\xe1\x9fQM\xf0\xc5\xaf\x92\xfcI\xed\x04\xf2B\xaa\x1b\xab\xf9\xc6\xb8q5\xfe\xf6}Y\xadv\xee\x17\x7f+v\xf7\x17c\x1afG'\x18v\xd0\xbe\x95;4\x7f\x81\xa6\xcd/9\xea\xe6uW\xec\xc6\x8d\xaf\xdb\xa3\xd4\x14\xdc\xaf\"s{xc+pGC\xc7\xda-n\xc0p\xdcD\xf37\xff\xde\x89f\xdf\x82}\x87\xe9\xd1\x86\x06\xf8\x9f\xd0\xc5\xba\xfd\xbe\xae\xca\x07a\x89.\x1e\x8dp\x83!\xc2G0^\xd5\xd8.\x7f{\xdc\x17\xd5E#\n\x99\x8b\x1agt!\x1f\x01\xc5O\xa0\x08\x80\xceI@\xc0y\xda\xa8/;6r\x0cP\x1c\x7fl\xcbMUt\xc7F\xc0\xf7\xe2\x93\xff#\xf9\xe3\xdb\xba\xe9\xfa\xb7\xcc\xbf\x8a\xcfwE+\x9c\x837\xc0\x93\xb8k\xcb.\xc7j\xff\xa4\xc5\xaaXk\x8b\xf4o\xbb\xb2z\xf0\x0d=\xabcSv\x9fo\xf1[e\xd5\xe5\xaea\xe0\x9e\xcc/om\x89\xd8\x17\xe5.(\x92\xeb\xa2@\x15\xe5n\xb33\x10~\xb4\x94\xa6\xaab\xf5\x8b@\xcaRC#\xd4\xaf\xf6Z\x8d\xdb,\xc8\xbdE\x16\x0c\xed\xe1\xac\xfa\xf4;4\xaf\x96\xbe;/\xa04\xf6|x\x81#\xaa:\xc2\x03\xd3\xc8\xb9>J\x9b\xf3\xe9\xdd\xe6X\xf9\xf7\x90\xa0\xedm\x11\xe5\xa0u\xd1\x89\x8b\xbe\xaclN\x92\xdbb\xb8]\xb4/+\xb9u\x86\xaf+O'\x92]\x8d\xd2\xf6Nt\"\xe4\xa0U\xbd\xdf\x97mK}i\x8e\x87O^\x8c\xc6\x9fOw|\x99[\xa6W\xdex\xcd\xdb\xa6\xe8|G\xd2\xef\nX\xca\x9d4\x14\xd1\x93bg\x1c\xe4-K\x16 \x91\x82A\x06_5\xa2\xe8\xe4\xf7.\xe1\xb5G\xf2\x17\x10}\x06\xaaN\xa1%y\xc2\x03\xa1-\xc6\xb5\xa0.\xaf?}\x8cn\x83\x7f^m\x8bf\x83s\xc2`1\xe3l\xf0\x05 \xfe}\x8f\xf8\xd6|\xb7\x8b\xb9\xed\x8bO\xb7_\xd9\x01\xba\n\x93~\xa5\xb7\x98\x99y$X\x98\x1c\x1d\xc7'\x7fUT \x1eE\xa3\\\x19\xed\x1b\xc9\x9b<\x07\x17\x195\xb1zj]\x94\x9e\xfc\x10\xda\xca\xaa\x7f\xdaZq\x82\xe9\x1a\x9e\x96N\n\x16\x15v\xe2\xf1\xd0\xbf\x1d\xbco\x1a\xa0;\x8e\xfa\xc6\x81H\x07\x1b\xb5\xd4\xcf!J\x0c\xf8\x07\xdbS\xf9\x14\xc0\xec\xe4\x9dZ\xdb\xfd\xb2/\xab\xdb\xfeC\xf5v\xfcP]\xf0\x16\xa6\xb6\xd3r\xd5\x93\xe5\x96\xdf\xb4\xf8\x05\x0dk\xb1\xda\x15\x8dg\x8dh_V\xd8\xe3\xd4\xd1\xba@[{)\xf5\x1bB\x00\x8c\xcf\xa6\xa1R/\xa0\xab7rA\x0be\x04\x94\x00\xfa\xaffkQ\xc5\xbe>\x0e\x90\xb0}i\xf1oFs\xfb\x89\x80\xfe\xfaV\xf1ye\x03\xe2\x93\xbc\x81\xf2f\xe3\xd4\xa1\xac\x1c/\xef\xf7\xbb\xa2\xdd\xf6\xaf.\x9d\xbe\xc3\x05\x07\x17\xbd[\xe5\x93\xa7\xd4\xa9\xc9e^H\xa4\x10 \xb7\xbai\\/\xb6U\xb1[\x1dw\x83(s\x7f\xec\xbf\xb0\xec\x17\xd6\xf2\x9e\xb6ukl@e\xbf\xa8y\x1b\xcbv\x02X\x1a=\x02\x9b66\xc1Z\xd2\xba\x1c\x14X\xb9\x8c\x8e\x94\xa0\xfd\xaa\x93\xfbw \x7f\xab\xd1\xad\x87\xfaI\xc8\xb7\xce\x9d\x18n\x97X\xa3\xaa\xea\xec\xb6z\xbd\x15\x9b`\xbf\xda\xfe\xb8\xeb\xca\xc3\xae\x94\x95\x9b^\xfb\xe4\x84\xc9Sg\x04\xe7\x8c\x9c\x97\xdaOO\x06\xf1\xac\xc1\xbd}\xdb\xa1\xd8\xa8]\xb3NG\xa9\xc9e\xc6\x03\xa7\x19\xfa\xc6?\xab~o\x0b\xd1\x91\xe6\x9d\xd7\x05R\xf6\x89O\xdd\xad3\x1a$8\x90\x06\xd9\xbf\xae\xecv\xe2\x07\xf8O\xd7\x08\xab\xaf\xaf\x07\xd5\xfe\x9f\n\x9c-\xdaV\xae\xea\xbd-6\xe2\x9d\xf8\xc7Q\xb4\xdd\xa5\xfc\xddQ\xd8\xb8\x1df_l\xefB\x01\xfb\xba\xed@ ~\x8a\xdc\xaa\xe5T\xec_\x0b\x1dpt\x7f\xef*\x178_2r-\xb3\xd4\x8b\x9a\xe3\xa6qzh4\xd2\xe8\xb8\xc87\xd3E\xab\xfe\xc1\xbd\x95\x0f\x8d\xe3\xf0\xa7\xa2\x7feu/\xa0\xecZ\xcd{\xb78\xf2I)\x04\xd7\x0e\x9e\xcavzO]\x0d\xc1\x00\xb91\x1e\x8d\x9am\xf1$\x82M\xdb\x98\x81q\xf8\x81\x130\xce~\xe5\x04\x8c\xb49\x12$\xc4\x84\xc9\xce\xca \x18 \xf1_]\x8e\xd8\xaf\x94\xb8/N\xc0\x981\xc6+&\xbe+*\xb6\x8b\x130.\x8d\xe3J\x88\xe1\xca\x12\xbf\x15\x1f\xbb\xc5 \x18\x97\xc4j\xc5\xc4i%\xc4hq\x02FN\xc0\xc8 \x18\xa91VY\xe3\xabRb\xab8\x01\xa3\xeb\xb0`\x0cUD\xfc\x14%\xbd`L\xdc\x14'`\xe4\x04\x8c\x94\x18(N\xc0\x88\xb6$\xce\x89\x130\xdaJ\n\xc62\xa5\xc619\xdf\x0d\x9c\x80\xf1\xd48\x01cB\xfcQ8\xf6(6\xee(\"\xe6(:\xde(.\xd6\x88\x130\xc6\xc5\x13q\x02\xc6\xc1\xbe\xc9\x04\x8c#\xf87Nz.p\xe4\xfd\xe14\xb2e\xf2\x11\xa9\xe2aDU\xdc\xed\xe4\xc2\x8b\x94\x04{\xb7\x19r.\xa6Y\x94\xdc\x9c-\xcf\"\xe0\x1b\xe5\x07y\xae\xf1\xb7F\xfc\xe3X6b\xfd\x03\xdc\x17\xbb\x896f\xfdR\xd7U\x1e\x95\xdc\xcb\x07\xf1\xd9U\xf5\x99B\xaa$\xd1B\x8d\xfa\x8d\xe8\x8eM%S\xfcI\xadOi[\x83~\x8a\xabW\x9b\xd92\x0f\xb6\xa0o\xa8_\x13\xbd\x847\xfd;\xba\xae\xf0\xf3\xb6\xbe\xbfo\x05r\xe5\xd3\xea\x82\xb1\xfa\xde\x8a.\xb3\xb7\x1ck\x19\x16'\xca\xfa\xb9\xfc8[GP\x8dAWV\xc7\xbdh\xca\x95\xfe\x1b\x0e\x10\n8\x90\x0b9[Qi\xc7\x1f\xaba\xedl6c\xbe\xc1\xd2v\xa2mG\x17\xca\xd5\xa6c\xdb\xbb\xfaAD\xfasZ\xfc\x99\x9d;\xd3\xa9-\xee\xdd\x95\xfb\x92\xea]\xdd`6\xdd\xf8v.\xcd\xa4K\xcf\xa3\x1b_7\xef=\xc8\x96A\x97\x9a?7\x98=7\xbe\x81\xc9\x99siys\x83\x15\n\xe7\xcc\xa5\xdd\x8f\x9c\xf9r\x97d\xcb\xa5\xe4\xca%;\xc5\x9f\xb50\xd6119r)o g\xc8\x0d\xe5\xc7\x9d\xb4dyv\xdc\x0c/*z^\\\xda]\x80\xf8\x9c\xb82\xef\xad\xa7\xbcE\x19q\x83>\x02\x92\x9f\x80\x94\x0b7\xd8\xe1\xb5\xd1\x9d \xe4,\xb8f\x96\xdb@\x81\xe4<\xaf\xb4\x0c\xb8gjvL\xee[9\x96\x05\n\xcc\x91\xf96*\xef\xed\x19\x1dC\xcax;d\xb4\x0d\x14\x18\xccw\x1bt\x0d)\x9b-\xc9\x1d\xb4w\x02D9-s\x16[O\x0e[r\x06\xdb\xa0/h\xad\xcb\x98\xbb\x96\x9c\xb96\\\xb3\xb4\xac\xb5*\x1f\xa9\xa5>D&}\xd3_\xe1\xb1\xd8a^\xe8\xda|\xd0\xc4\xa7\x958\xc8\xc4\xd3\xd6\xe2\xca\xceXs\xb7\xb7F\xf5\xd4\xf94W\x0d\x0e\xcaw-\xec\xebF@{,;\x9d\xc7\xd7Z\xd8j\x87\xc9\xab\x87\x17\xf6\xdc\x0d\xbc\x875\x1a\xefa\xfd\xab\xdb\xc3\xfa\xe4^NY:c\xe2\x1d\xc4\xeal\x05]Y\xbf\n\x98\xb0\x93\xc6\x84]\x9e\x973\x13vL\xd8\xd9\x8d ;4&\xecN\x8d ;&\xec\\\xc6\x84\x1d\x13vhL\xd81a\xc7\x84\x1d\x13v\xd2\x98\xb0c\xc2\x8e ;&\xec\\\xc6\x84\x1d\x13vL\xd81agX\x0e\xda\x89 ;4&\xec\x98\xb0{N\x84\x1dol\x9d\xbak0ol}F\xe7\x86\xb7d\xe6\x8d\xadsx\x917\xb6\xe6\x8d\xad\xbf\xf9\x8d\xadM4\xfc\xea\xe7)x\xeb\xd9\xf5\xda@\xc1\xc8\x84\xf8HI\xc2\xa1(\xed\xc0\xf8\xcby\x96\xad_\x12&\xee\xc26\x92P\xb0\x10\xec\xed-\x1a\x82\xc5C\x1c\xe6M\x10:hj\x81>2\x16\xf0\x0eH\x93A\xbc;\x02\xee\xce\xdc\xd6x\xac;\xd0\xd6 \xd4\x1dB\xba\xe3\x1b\xb8\x1c\xe7\xa6\xf9+'\xcaM\x03\xb9\xe31n\x85k;\xca\xa3@\xdc\xde\x1b\xe8\x05\xb8\xb3<\xf4^t\x9b\xd07B\xd8v\xb0\x08Z_\xc8\x0dl\xe7\xc4\xb5I\xb0v<\xaa\x1dvL:\xa6\x0d\xa5\xad\xc7\xf8!\xed\x8c\x88\xb6\x1f\xd0\xf67\x1c\xa77\xf6\x96\xfb\xd2C\x9e\xcc%\xb4\x8d\xf4\xeaX\x0b\xc6Wg\xbf2\xbe\x1a\xea\x96\xa31\xbe\xca\xf8\xaa\xdd\x18_Ec|\xf5\xd4\x18_e|\xd5e\x8c\xaf2\xbe\x8a\xc6\xf8*\xe3\xab\x8c\xaf2\xbe*\x8d\xf1U\xc6W\x19_e|\xd5e\x8c\xaf2\xbe\xca\xf8*\xe3\xab\x86\xe5@ \x19_Ec|\x95\xf1\xd5\xe7\x89\xafNq\nW\x9d\xa7G\xcd\xb6\x96\xd7d\xce\x99\xeb\xfc\xa5\xc8\xa5\xabq\x9f\xe49Hc\xc3\x99\x0c\xb2\xf7\xa3>\xd1\x828\x0d\x85\x12\x18\xa7\xa1@'\xebd\xb9\x92:\xec\xd9BO\xd2\x01\xe7\xe0\x9cB`Np\xa9\x8a\xb2\xd6\x93\x19<\xf2BGD\xe0(S\xbb\xb2BF^>ET]\xe3\xd5\\]:/\xf8\xb4^\x08u\"i!\xcd\xb77\xb9qv]y7\xb2\x97\x16t\xbe\xb4\xf0\xa6\xf6\xd2h\xb7J\xda\xac\x96\xfav\xa9\xff\xd2[\xd6\x1b\x1b\xb1{K\xeb\xea\xfa\x01\x0e\xbbbe]\x06\x95\xa6\xf6v\xef\xaf\xe9\xdf\xbf8\xda/\xe1=\x8c#}3\xad\xa9\xf6\xcd\xb1*?\x8d;\xda\xd3\x1c3\x16\xe5Y\x11\x91{\xb5\xdf\x06Rg\x02\xdd11\x8d\x9d]}\xf2ZV\xa8\x9b:\xc4#q\x82\x1a\xe2\xd7\xc7\x9d\xd4\xcf\x14\x8c\x07EGr\xc1\x99\x9a\xeeiSl\x1d\xa9.\xb5\xbcT_U]\xf3y$\xc9*\xe35\x1e\xd80\x1f\x97\xf0\x1b\xb1\x13\x8fE\xd5\xc1^t\xc5\xba\xe8\n\x02\xe0\xa8\x06II\x94\x9bO\xb1\xc9M\xaa\x83R00\xdb$\xa5\xedj\xdc\x12z\xb7\xc3\x8fzh\xcbj\xb33\xa6v\xbf\xb1\xad\xf6\x8f\x15\xeb\xff\xdfJI\xf6\x0f\xdbP\xda8\xd1\xe9?>*|\x1c/\x10\x83\x17k\xd8\x95mwN\xae\xcbv\xfa\x95m\x165;\x90y/e\xcc{1\xef5\x1a\xf3^\xcc{\x8d\xc6\xbcW\xc7\xbc\x97\xdd\x98\xf7\xd2\xc6\xbc\x17\xf3^\xcc{\x11gI\xcc{\x0d\xc6\xbc\x97i\xcc{1\xefe1\xe6\xbd\xac\xc70\xef\xc5\xbc\x97\xc3\x98\xf7b\xde\x8by/\xe6\xbd\x0c\xcb\xc1\xde0\xef\x85\xc6\xbc\x17\xf3^\xcc{-\xabsN\xde\xcb\x86t\xb5n\xa6\xcb\xf8\xfe\x1f\xf60\xb3\x88\x85\xad\x85\xee2\xca\xc7\x17\xe6P\xd0 \x19c\xdf\xed\xd8v\x19u\xc23G\xbbz\xef>\xcf]\x8fC \x15iu\x8b\xb2@\x04\xb91\xb1\x00(FF\xc5\xb2\xb60+0\x16\xccI\xe5\x85\xc6\xc2\xd8X\x00\x1c\x0bv1i\xa1\x8e&-\x02\x1f#\xdd\x10iT\x84\x8c~\x03\xa5\xe5\xc5\xc8h Y\x14J\x96\xe0#\nN\x16\xed\xa7|H\x19\x0d*\x8b\xc2\xca\"\x9c\x14\xd7\xeclp\xd92\xbc\x8c\x04\x98\x9d\xcd T\n-\xc3]\xa7W,+\xa7\x16G\xaaee\xd5hm\xce\xc6\xab\x91\x88\xb5e\xcc\x1ao\x16\xad\x8c7\x8b\xfe\xf5l\x16M\x001\xbd_/^6sV\x9a\x85\xf6\x99m%m\xfd\x0ccJS\x19S\x9ay>q\x98\xd2dJ\xd3nLi\xa21\xa5yjLi2\xa5\xe92\xa64\x99\xd2DcJ\x93)M\xa64\x99\xd2\x94\xc6\x94&S\x9aLi2\xa5\xe92\xa64\x99\xd2dJ\x93)M\xc3r\x10sLi\xa21\xa5\xc9\x94\xe6\xf3\xa44yS\xe9\xb8\x1d{yS\xe93:7\xbc\x1d2o*\x9d\xc3\x8b\xbc\xa94o*\xfd\xeb\xdcT\xfax\xd84\xc5Z\x0c\xa8~q8\xecJ\xb1\xbe=\xec\x8a\xea\xea\xe7\xde\x8f\x9e\xfd\xa2\x7f\x94\x07\xbf\xdd\x15c6\xd5\x02\x0e\x8dx,\xebc\xbb\xfb\x0c\xaa4PW\x81\xbe\xd4\xfe\x91.\xbb\x16\xef\x91\x15\xb87J\xfdN7\xf9\x99\xe2\xf5.\x9a\xd8\xbb\xd8\xef\xa7\x86'\xed\x98\xf2\xbfw\xbbz\xf5\xa0\xffV\x98 0\xfa\xf5\xa9\x9fnK\xdf]\x9et\xc3\x00&d\xf8\xdc\x84\x82:\x83r\x93\xb3|_\xd26\xb3;\xbc{{=\x9f\xb42\x06\xc4\x18PP\x03\xa3\xc8H\xc0\x18\x10c@\xce#\x19\x03Bc\x0c\xe8\xd4\x18\x03b\x0c\xc8e\x8c\x011\x06\x84\xc6\x18\x10c@\x8c\x011\x06$\x8d1 \xc6\x80\x18\x03b\x0c\xc8e\x8c\x011\x06\xc4\x18\x10c@\x86\xe5@2\x18\x03Bc\x0c\xe8[\xc0\x80\xfa\xff5\n\x98|B\xe2\x93\xa8\x94(s\x11Z+\x8b\xa8|\x9d \xfa\x89\xd5N\xd5\x1a\x0dj\xa7n\xd1\xf4Z\x1e5\x11Me7\xc3\xbfO\xb4R\xab>j\x14\xf0\x9dn\xd43\xd5GGO\x986\xcd\xb6\xd1\xfb\xa1\x0c\xbb`4g= (Qa\x7f\xb3\xf6\xd5\xe0\xba\x0cea\x03\xe0\xbd\xe8\x8c\xbe\xaa\xc4R\xdd\x1e\xa5\x11\xe1Oz\xd4\xc2\xd5&\xc7\xd4\x0f\xcc\x93\x9d\x92\x94Z\x9e\x1c\x161\xea\xfb\xeeI\xe1 \xfdC\"\xbf\x0eq\xe1\xa6\xd8\xc1\xffUW\x17\xaa@\xd73\xbb\xaa\xf7\xfb\xa2Z\xb7\xb0>\xa23\x9c\xad\xedjX\x8bN\xac:x\xda\n\\\x14,\xc6&kW\xac\x8a\n\xb6E\xb5\xde (\xe4^\xae\x8e\xd2\x86\x1b\x83\xba\x80\xeb\x9a\xba\x11\xb2\xc8F.3u\xc3\xad\xec\xdfowBT\xa8zX(\x90\xd1tE_\x0c\xec\x93{!R\x89\x10# 4\xb4\xb2l\xa1>v\x17\xf5\xfd\xc5\xba\xe8\x84$k\x0c_;\xca\xfbP\xf6\x83g\x03\x7f\xd1H\x81\xeb\xc2\x8d(V\xdb\xfe5*?\x11\xc6\xebb\x85\xc5\xa7\xf2$\xb3No\xee\x8ca\xc1'\x8b\x96!\x8c\xf6\xfc\xbd\xec\xe7\x06\xab\xa2\xeb\x07xl1\n\x18\xda5\xad\x14\"\xf0f\xad\x87#/\xf1HG\x81\x93\xf3aWo\xca\x95\xcbqC?h\xc4\xbe~\x14k\xb8o\xea=\xba\xf0\xfd\xcb\x7fu\xaeU\xe0d\xaal\xd5\\[-\xbc\xe3Z\xf6\x8bA\xd2\x19F\x8bn\xdb\xd4O\xd6LU\xbe\xbcv\xe4;\xe0N\x99\xe3\x83[G\xfb0&\xa9\x9b\xe0)\xda}{\xb5\x1c}\x10M\x7fI\xf7`\xf0F}^\xae\xfb\xaf\xf9\x0f*\xb5[\xef\x98\x19-\xa6\xad\xac\xee\xeb\xc4\xb6\x87\x92\x01\xe1\xfa\xda(\x9b\x8d*\xc00\xb4U\xf7\xb5\xd2\x99\x14\xa5\xe7\x92\x99\xea\xeab\xb5-\xdc\xaay{\\m\x01'\xcb\x9b\x12S\xb0\xedK\xc5\xb5\x8e Ta\x85byq\xec\xea}\xd1\x95+\x8f\x0c\xab+h\xcd\xce\xa4\xdf*\xb7\xab]\xd9\xcfY\xda\xae\xe8\xbc\x0f\xb0'YY\x08\x0b \x83!\x84\xfb\x04\xe41\x00R\xf1\x10Oy'\n\x81g\xc1,/\"\x12\x84Drc\"tP$\x13*\x92\x06\x8bx\x8a\xeb\x1dJ\xc6E\x16\x03#\xb9\x91\x91Hh$36\x12\x07\x8eD\xa2#\xbe><@%Tx$3>B\x02H2\"$K!\x92$\x8c$\x13H\x92\x82\x92x\n\x93s\xac Lr\x16\x9c\xe4|@\xc9Y\x90\x928\xa8$;VB\x05K\xb2\xa2%t\xb8$\x1a/\x89\x07L\x82C\xe1o \x88I\x06\xc8$\x80\x99\x10'T\x04\xd4$f\xd6\x15\x8d\x9b\xf8^\x82w\xf5\xa3 \x00'\xd4\xfae\x84Nb\xb0\x93\xcc\xe0I\x1az\xe2\xebAm\x18>I\xc6O\x1c\xa5\xf5W\x0b\x01(\xb9\x10\x142GA\xc0P\xa2@\x94\x80n\x9c\x04\xa3\x84\xcat\x8aR\x99\x90\x94xg\xd2\xb1\x94P\xdb\x12\xd0\x94D8\xc5'\xeee\x03T\xc8\x88\n\x0dR\xa1b*\x04/\xc7\xa3*1\xb0\x8a\x0fW\xc9\x04\xacD\"+\xcb\xa0\x95\x90C#\xc0\x953\xa0+\xc1\xda9{z>\x80\x85\x80\xb0\xa4C,\x8e\xe2p\xd1\xd1\x83\xb1d\x06YB(K\"\xcc\xe2(K~\x19\xfa>\x8e @\x8bOu\xf7A-\xf9\xb1\x96\xec`\x8b\x1bm\xc9 \xb7P\xf0\x96x\xc0%\nqI\x80\\b1\x17/\xe8\xe2\xc7\x0e\xe8\xe0\x01\x15vI\xc0]\"\x81\x17OsS\xa0\x17GQ\x06PB{$h\xe0\x8b\xa7\xcbW\x1b?\xfa\x92\x15~ \xe0/\xe7\x01`r\xf5\xc5\x08\x08&\x06\x83\x19A\x18i\x84\x90l\x03\xf3H\x0f\xc96a\x13\x0e\xc9\xe6\x90l\xeb\xef\x1c\x92m\x18\x87dsH\xf6hY\xb5\xb5\x18e-JW\xe3\x90\xec\xa5jZ\x82\x96\x96EI\x8b\xd7\xd18${\x89~\x16\xa3\x9ee\xd6\xceh\xcaYF\xdd\x8c\xaa\x9aY&\xc4\x1c\x92=5\x82NF\x9d%Ekd\x1c\x92MR\xc6Rt1\x0e\xc9v\x1d\x16\xd4\xc2\"\x940J\xc0q\x8c\n\xc6!\xd9\x1c\x92M\xd1\xba8$\x1bm\x89\xba\xc5!\xd9\xb6\x92\x82zV\xaa\x9a\xe5|7pH\xf6\xa9qHv\x82j\x15\xd6\xacb\x15\xab\x08\xbd*Z\xad\x8a\xd3\xaa8$;N\x9d\xe2\x90\xec\xc1\xce\xa1H\xe5\xe8s\x11j\x14]\x8b\xd2/\xea\xd8\xf0\xe6}\xbd>\xee\xc4\xadZ{i\xdd\x11\xce\xff\x0b\x0f\xfc\x9b:n\x12\xe4\xbc+[\\4\x95e\xe9u\x9cV\x86\xcaa\x0c\x92\x1e\xb7&_\xad\xbf\xb1g\xca\xfe\x8d:v\x12\x1e=\xbd\xba:\xe2\xd9FH[\x9djZ\xf7\x15D#w\x984i\xb5D\x85\xd4\xcd\xc2\xf5US\xad\xe7\xa8\xe6/\xb8&a\xdb\xff\xa1b\xab\xfe^V\xed\xb1\x9d\xc7N{kI \x81\x9c\xf4\xbdai\xa6\x1fkU\x87\x97\x8by\xedi\x15\x1c\xdf\x0b\xc1\x0c\xf1\xd2\xc2K<\xb3~\x86k\xea\xf3\xa7Q.\xa3\xaa\xe8fQ6c--\x05\xea\x92\xa6\xf3\x0c\x82\xae=}>\xd3\xa5\xed\xd9s>;\xe6\xdd\xdb\xebA\xdd\x9e\xff\x16p*\x8b\xe0\xb3_Y\x04\x0fu\xec\xd1X\x04g\x11\xdcn,\x82\xa3\xb1\x08~j,\x82\xb3\x08\xee2\x16\xc1Y\x04Gc\x11\x9cEp\x16\xc1Y\x04\x97\xc6\"8\x8b\xe0,\x82\xb3\x08\xee2\x16\xc1Y\x04g\x11\x9cEp\xc3r\x08\x92,\x82\xa3\xb1\x08\xfek\x11\xc1}y\xc9\x95fVy\xd2\x93\xcft@\xe3\x0c\xa9\xb0\xc9\x91j\xc8O^\x8c\x1f\xeb\x16\x9d\xf1T\x974dq\xf8\xab(\x1e\xe5\xe6\xffe\xab\x16\x15N\x92\x04\xdc\x8bN\xa5\\\xed\xdf}\x11j;$n6\xbd(_\xfa\x98\x83T7\\\xa6!\xbd\xfa\x19\x07;\x99I\xd6\xb3\xfd\xb4\xf1\x19\xffQ\x15u\xadKz\xdf\x174\xcd\xaf>x\x17/\"\x9fY|Hq\x0dn\xec\xc38,t\xcd\xb1\xed\xbfY\x1fDS\x89\xdd\x90\xc9\xbb\x12\x9f\xba\xa9j\\\xb6\x80I]q\xf3s,\x0e\xe7 \xe6JN\xdb\xd5M\xff\xfc\xcb<\xce8\xbbPYr\xa7%|\x17j\xce\xbb\xb7\xd72\x0b\xae\xfc\x98\xd7\xebA;\xb1)V\x9fUc\x8d\x974*?\xcda\xd5w\xc51\xdd1T\xf5\x93l\xfc\xcdO\xd78\x08\x96]\x0b\xfd\xa0\xd8\x88\xc3\xaeX\xe1\xca\xd2X\xc8\xf7\xb8\x9c\xf5\xc3\xd5\xd5\xa6\xec\xb6\xc7;|6\xd5\xfd,\xefV\x17\x9b\xfa\xeanW\xdf]\xfda\xf5\xdf\xfe\xdb\xef\x8a?\xfcA\xfc\xf7\xfb\xff\xbeZ\xfd\xd7\x7f\xb9\xff/\x7f\xb8\xfb\x97?\xfc\xd7U\xf1\xdf\xffT\x14\xff\xf5_V\xe2\xf7\xbf\xff\xdd\x7f\xf9\xdd\xef~\x7f\x85\x0ft\x7f\xea\xd5\xaan\xc4\x95L?{\xf5\xf8\xfb+\xecz\xf2y\xff\xbf\xff\xfa/\x7f\xd2\x13\xf2 \xdba\xdc\xf1\xcb\xcb\xab\xcb\xcb\xabn\x7f\xb8h\x9f\x8a\xcdF4\x17\x1bQ\xb9z\x9a,[\x1dx\xf9\xf7\xb6\xae\xec\x1eV\xa5?[Z\xc4\xf5\xc4DI\xb3\x81\x95<\x05I\x04\x90\x1bi\x04\xb9\xdf\xee\xe8t\xd9\xdfq\xe3f\xc7\x9a\xf2\xbf\xfe\x1b\xeb\xfa\xb3_Y\xd7\x0f\xf5\xe0\xd1X\xd7g]\xdfn\xac\xeb\xa3\xb1\xae\x7fj\xac\xeb\xb3\xae\xef2\xd6\xf5Y\xd7Gc]\x9fu}\xd6\xf5Y\xd7\x97\xc6\xba>\xeb\xfa\xac\xeb\xb3\xae\xef2\xd6\xf5Y\xd7g]\x9fu}\xc3rh\xac\xac\xeb\xa3\xb1\xae\xff-\xe8\xfa\x86\xbal\x94\xe3\xd3\xf5O4\xdbq\xafj\x94n\x87\x9dM\xfbn\xd2\xdf\xb4F\xfc\xe3(\xda\xe9B<\xbe\x13\xcbVK^\xaa\xb8c\xb5\x16\x8d\xea\x03\xa8.\xcfuj\\\xe5\xaf\x9b\xc9b\xd2\xc2\x8d\xcd\x01\xec{\xbe:\x05\xfc\xf2nuU\x1c\x0e\xedUYu\xa2\xc1&\xdf\x16\xabU}\xac\xba\xf6\xaa\x1f\xa1\x9bz\xb7\x13\xcd\xd5\xe3\xef\xaf\xd0\xf1\x9e\xe4\x00o\xf1\xf7A\x99/v;\xe3^i\xe7\xde\\\xff\x08c\xb1\xd0\x1e\xef$\xc2\xa0\xc7\xfd8QX\xd5~X\x89$\xb4\xe2T0\x96\xf5VWz\xb6\x02\xb1\xe9}\xd3&\x95\x91\x07\xc9un5\x118\xbd\x05S\x87\x8f\xe6\xac\x14\x04\x05\xbb\xd1\xc5\xb7\xa2*\xeevb\xed\x96\xf5~\x80\xbb\xba\xde \xc7\x9e\x91\x94U\x1f\xdb\xf5@\xfe?.e\xac\xcbV\xfe[K\x1e\xf2PGY']P\x1aA\x00\x97\x1d\x87$x+\x89[=\"\xef\xde^\xcf\xcacE\x9b\x15\xed\xc0r\xee\x19\x16\x83\xd3\xde\n\xdb\xba\xed\xb2\xbe\x0f\xfa\x02\xbf\xc8\x9b@\xd7\x9c\xdf\x01gx\x07\xf4\xce\xcd:\xfa\x9b\x05:\x87w{\xdf1\x0d\x85\xc9[5~x\x1eN\xd7\x80\x00\xbeA\x01(\xcf\x1e\xed\x9d6\xad\xe7p\xff\xc6\\.\xed\xfaa\xf2\x81\xe4Q\xd1\x0c1\xb6\xff\x9e\xf9$V\xc7Nn\xc4[H\x8f),\xd1<\x87_x\x86\xf1\x0b\xef\x1b}\xe1uMQ\xb5\xf7\xf2Sa-\xaaz\x7f\xbb-\xda\xadh\xaf~\xee\x9ab%<\xcc\xf2\xcb\xfe\xe8\xbf\x14\xedv|\xe3\x01\x96PVry\xa1/\x08\xcaJV\x0b\x13C\xc9\x12&/\xba\xa1\x14\xf5\xe3\xb3}\x17\xf5\xad\x89\xea\x9c\xf3\xd1\xbd\xf7\xc6\xf7e\x05[\xf1I\xdd\xaa\xdf\x8e+\x91\x86\xdb\xd0\xef6\xbfY\n\xb5\x0f[\x83OI#\x97\xad\x84\xab\xf1\xe6\xf2^K<\x96Y\x7f\xff\xd2c\x99o\x1d\x0c\x9f\x19W\xf7\xfb`\x7f\xc2\xbe\xff\x8fC\xddt\xb7\xe5\xfa\xff\xbb\xfa\x8f\xd5\xb6\xa8*\xb1\xeb\xff\xe3\xb7\xff\xcf\xd5\x7f\xe0\xd1&T\xb6p\x95*e\x18\xc6Jz\xbe6\xf0 \xfd\x80\x07M>9N[\xda\xba\x07^y\xfew\xbaE\xcft\xe8=u\x88i_\xe3\xf9\xe8\xfb\xc2\x82\xdeM\x9b \xcb\xcbL>l\xe4\x12m}\x0f}\xd7\xbdR\xbdv\xe4\xb5\x9b\x16\x19,gy8\xe27\xc5J\x06_\xf9\xf0R\xc9\x86\xab\xd7\xd3\xfd\xb1\xda\x94w;\x01]\xfd *\xbbbuW\xb4\xe2\x16oT.\xbf\xf4%N{\xb3\xaaN#v\xc5g\xb1&T\x8b\xe2\xe7\xf19\x98\nt\xa7\x97\xef\xbdws\xfd\xfe\x0f\xbf\x1b\xael-\x10k\xd3\x0e:\xb1\xf5\x18\xe5_}/\x8c\x97=\xde\xf3\xd3\xb6LZb>\x0f\xd0\x88\xee\xd8T\xa7\xcf~\x1b\x9aH\xf4\xddk\xa3\x0e>\xbdg\xb3Ol}\xe0\xec3{\xf8\xb3\x92\x9cm\x83\x804\xef\x03\xe7\x7f\xdc*\xf1\xa9\xbb}\x10\x9f\xdd\xaf*o\xb7\nB\x81*L\xc8\x91\x08u\xbc\xbe\x9eE\xf5\xffTtl\xd1\xb6\xf2\xab\xf3m\xb1\x11\xef\xa4Rr)\x7fw\x14&\xa3';\x1d\x80w\xe8?n\xf7\xfd\x17\xaa@\xe6\x14AU\xdbxUw\x85\xe3mLv\x80'\xa1\xacr\x81s(\xc2\xcbc\xfb\xf1\x1f\xd5q\x7f'\xc1GM;\x1bh\xad+P\xc4t\x11\xaeO\xddba\xaeA\xe8\xa9h\xa1\x15\xdd\x0b\x8c\xe9S\x10w\x8b\x1aS\xdf\x01\xd7\x92k}*\xdb\xe9=%\xcc\x8e\xaf\xeb\xaa\x12\x92\x03\\8?Vo_\x9e!\xf3\x0c\xd9\xfa\xfbs\x9a!\x8fcu?>\xb9\xfa\xe1l\x0cT\x83^\xa1\x9e?\xf9\xaa\xc1\xf0\x03\xf54\xab\x1e:\x8c\x908,nft=\x0eyj\xca\xe1\x19\xf5.\xe1M\xb5\xfb\x8c\xb12\xf5=\xd4\xf7\xf7\xad\xe8\xa0n`Z]0\x82\x9eZ\xd1\x99\x0f\xc7\xe2\xa8op\xbd-,N\x94\xf5s\xf9q6\xf2\xa8\xc6\xa0+\xab\xe3^4\xe5J\xff\x0d\xb9\x8cUQ\xf5\xed\x91\xfc\xfcVT\xda\xf1\xc7j\x18Wg\xa0\xe2\x0d\x96\xb6\x13m;\xbaPB\xfe\xc7\xb6w\xf5\x83\x88\xf4\xe7\xb4\xf83;w\xf6&\xb2\xb8wW\xeeK\xaaw\xf1X=\x84\xbb^P\xf2\x85m\xf6`5\xe0\x1fw\xb3QS\xc2\xeb\xe6\x9fn\xeea'\xee;\x15'Q\xaa\xe0x\x8d\x17b$\x8e|@\xe4Ez?\xdf}\x06Q\xac\xb6P\x1c\x0e_\xd1\x8b\xe6kv<\xdf\xe7K\xe3\x0c\xc45\x04\xb6\xaf\xff\xc2\xed'\x01PV\xebr5\xa4\x1c\x18=\x88\x07\xaa\x8ed\x16WV\xab\xddq=\x9b\x04\x17\xf2*CP\xe4\xec\x8e\xe1\x88mL(\xfa\xd7\xf0d\xa69)\xec\xe3M;\xbb[\xb3& o\xd9\xbfK\xe5\xbb\x15\x1f\xaf\xf1y\xec\x1f\xb9K\xf54\x95\x9bj\x06\xa7\xc0\xf04N/!=\xb3\xf4\xc6\xce\x85!\xcb\x0dl\xc4\xa3hZ\xe7\xca\xc6\xec\xe6\xa9\xa3\xe77\xae4\xa6i\x8d\xb0? \x93r\xfak\x88\nc@\xebf-\x9ay\xa8C0\x95\xffro\xa4\xaf\x98\\\xfd\xbc-\xdamh\xddZ~\xf09\x16\xae\x9d\x1fN\x8e\x05\x94\xeft\x0b\x9f\xff\xfa\x89k\xf2\x94\xf4a\xe6^\x05 \xce_(_\xe6\xb9\xd7?\x88\xab\x1f\xb1k\x1f\xa1\x95\x8f8_,^\xf5\x08{6\xf3\x8aGx\xbd#j\xb5\x83\xf0\x0576 \xc7\x07\x1c\x7f\xbf\xf1\xf7\x9b\xfd\xf7\xe7\xf4\xfd\xb6\x1d%R8\x8f\xb4\xf8E5\x8e,,Uy\xb7\xba\xd0\x85BV\x98\xca\xac*\xc3Sg\x80\xa7ZQ\xad\xb3\xc2S\xce9\x84y%+U\xd5\xf7\xadUS\xb7\xed\x85\x9c]\xe0\xfb\xcc\xf5\\\xab~\xa1\x12\xcfu\xdb\xf2d\xbb&m\x16\xe2HZ#V\xa2|\x14_\xa6\xf5\xb3\x8bet\x00\xc6pD5\x9f\xf0fg\xe0\x8a_\xe1\x83\xfd\x12_\xe1\xde\xb7\xa0L\x13(?Z\xfa7\x8b\xfa\xa7\xe75x\xad\x8e\x98\xbc\x08\xfb\xce\x7f\xf3\xd35\xe8\xd31,r\xfa\xc0M^\x7f\xba\x10\xf5\xdb\xb3}aM\xdda\xda\xd7\xe8]\x8el\x84\xd2\xf4\xf6\x8b*rJ\x867\xe9p*\xf5U**\xd7\x87(\xa1k\x89\xea\xe8\x14\xd2\xfb~\xf5\xfe\xc3\x8f\x1f^\xdd~|}\xf3\xfa\xe6\xc3\xcd\x8f\x7f\xbd\xf9\xf7W/o?\xbe~\xff\xf6\xd5\xf5\xcd\x9fo^\xbd\x0c\x9e\xd9\x9f\x17<\xe8\xc3\xbb\x7f{\xf3\xf6\xd5\xeb\xe0q\xa4\x83\xae\xff\xfa\xe6\xbd\xb3bzpNl\x17\xed]\x08 s\x8f\xea\xc9N\xa9\x1e\x1b\xb9\x86\xd0BY\xe9\xc5r\xfc\xf0\xc7\xa4X\xee;\xa4zH\xeb -\x94M~\x01}c^\x80\xf2\xe6\x0b\xe8\xff\xb7\x7f\x01OZ\xe9\xc9\xc8\x10\xbe\xdd?\xc0K\xb5\x18m\xe6\xfe\xf4\x94\xd4\x97\xd3?\xd8\xba\xf5\xdb\xa2\x85\xbf\x1f[\xec\xc9\x98\x8d\xb5\xf7@}\x10\x98\x96h[T\xebv[\x15\xabn\xf7Y\x0bv\xb2\x16\xb6KY\xafd\x0e(\xa1w\xf9l\xec!\xbd\xc3\x9d\xb3\x0b \xcc0\xf0\x18\x89\xa0\xba\x0f =W\x10\xd1\x0dA]\xd5=\xe6*\xf7\xd6Oj]\x18I\x1boy8NMf?\xee\x1b?\xa2\xb6\x19\x1a\xad\xef\xddx\xbb\xdc\xcdrt\x10\x0d\x03\xddn\xeb\x83\xf3F\xf9&\xa0\xd2\xbc\x11S\xa4\xf6\x84\x18,\x18\x02\xa3\xc6J\x9b\xd2\xc7\x0b\x9c\xc0\xc8\xc7X%u\xeb\xef\xa3\xbb\xeb\xa9\xe7\x0d\x03\xfdkOBZ\x9d\xd7\x1d]\x8c\xd2w\xd7\x14\x8f\x8e\x01j\xf9\xfe\xe7a?\xd4\x87\xe2\x1f\xc7\xf15\xa5.\xa9\x07\xaf\xb2\x85b\xd3\x08\xb1\x86\xe3\xa1\xae`}l\xb4\xe0\xe3*o\x98\x1fX\x8f\x08<\xa2\xf4\x16\xe1S7\xde0{\x7f\x0c>\x1d\xf4\xeb\x9d\xcac\x96\xe3)\xc3\xc6\x8d.`\xad>%\x8d`\xbd\xb1_t[3\x01\x0e6\xb6p\x0c\x9f\xfa\x0dg\xfdq\xac\xae\xcc\xf7a\x99\xd7L*=\x84\x0b\xca\xbd \xcc\xaf\xe2A2\x8c!_\xf5\xdd\x1a\x91\x03\xfd\xcd{zh\xfa\x02(C\xad\x0c\xb5R\xa1V =\xa7&\x91'[5\xc9\xedSV\xb0y\xf7\xf6z\\L\x1d\"o\x9f\xb6\xc2\xfa\x1d\xe4PsWu#\xcb@@D\xa5\x87\x19\x02u\xfb\x0f\x1c\xfc~1=cu\x87>\xe3}\xbd\x1f\xeb\xedM'\xd7\x88\x83\xc04\x9d?\x15\xcdp\x93\x02\xb9\xa9\xa6n\xc1\x9e\xe9\xcaN5\xcf\x8c'\xd3\xda8\x07\x08\xd9\xe9\xefv\xf5\xea\x01NR\xf0\xa8#\xd3\xc7\x87F<\x96\xfd[\xedVv\xcb\xb3?%r\x9d]^s\xa4\xbb\xe4\x9e&}o\x1a\xb3(\xd7\xb6\x99\xd4P]\x97\xd3 \x7fuU\xda\xa1\xfe\xcd\xa3\xbe\x0e6\xe5\xa3\xa8\x86\xba$\x83'?-&\x9df\xf3\x04S. \xa5\x0c.\xfd\xfb\x02\x8e\x82Qu\x81\xf3<\x08\x98T\xa12\xb3TI\x12+3\xca\x95K\x05\xcb$\xc92\x93h\x99\"[z\nCA3,\\\x9eE\xba<\x9fxy\x16\xf92N\xc0\xcc.aRE\xcc\xac2&]\xc8\x8c\x962\xe3\xc5\xcc\xe0P\xf8[\x82\x9c\x99A\xd0\x0cH\x9a\xc4 \x15A\xd6\x8c\x99uEK\x9b\xbe\x97\xe0]\xfd(\x08\xe2&\xb5~\x19\x05\xce\x18\x893\xb3\xc8\x99&s\xfazP\x1b\x16:\x93\xa5NGi\xfd\xd5Bbg.\xb9\x93\xac\xd9\x11$\xcf(\xd13\xa0Q$ \x9f\xa12\x9d\x0b\xa0\x99\xe4\xcfxg\xd2%\xd0P\xdb\x12d\xd0D!\xd4\xb7\x90\x9cM\x0c%\xcb\xa14A\x94*\x89\x12\xbc\x1c/\x8b\xc6\x08\xa3>i4\x938\x1a)\x8f.\x13HC\x0e\x8d\x10I\xcf \x93\x06k\xe7\xec\xe9\xf9\xc4R\x82\\\x9a.\x98:\x8a\xeb\x0f\xf3I\xa6\x99E\xd3\x90l\x9a(\x9c:\xca\x92_\x86\xbe\x8fc\x82x\xeaSx|\x02j~ 5\xbb\x88\xea\x96Qs\n\xa9\x14)5^L\x8d\x92S\x13\x04\xd5XI\xd5+\xaa\xfa%.\xba\xc8E\x15V\x13\xa4\xd5Hq\xd5\xd3\xdc\x14\x81\xd5Q\x94!^\xd2\x1e \x9a\xc8\xea\xe9\xf2\xd5\xc6/\xb3f\x15Z\x03R\xeby\xc4\xd6\\}1Bp\x8d\x91\\O\xb7R\x94f\xd1\x98N\x8e\x0b\x7f\xdf\x1a\xbb\xd1\x1a\xea\xa0\xb1#\xad)a\xc9\xafU\xdb\x1a\x8f18\xca3l\xee\x9e\xefE\xcb\x81\xe1\xda80\xfc\xc4\xe2\xaa\xcb\x81\xe13\xe3\xc0\xf0\xaf\x1a\x18\xee\xda0\xda\x0c 7\x06\xdcyt\xf8;[t\xb8\xad\xa8+G\x81F\xb4\xf8p\x1a\x07h\xcf~\xe5\x00m\xca8(-\x89\x8a\xe0\x00m\n\x0ba[>\x88&!R8\x08\x0e\xd0\xceH?\xc4\xb0\x0fQ\xe4\x03\x07h/\xe5\x1d\x12h\x87,\xacC<\xe9\xc0\x01\xdaK\x08\x87\x18\xbe!3\xdd\xd0\x91\xd8\x86\x8cd\x03\x95k\xb0,Yp\x80\xf6\xd4\x08$\x03u\x96\x14M1p\x806\x89]H!\x178@\xdbuX\x90V\x88`\x15(\xe1\xc71\x9c\x02\x07hs\x806\x85F\xe0\x00m\xb4%\xfc\x01\x07h\xdbJ\n\x12\x07\xa9\xbc\x81\xf3\xdd\xc0\x01\xda\xa7\xc6\x01\xda \\A\x98*\x88e\n\"\x88\x82h\x9e \x8e&\xe0\x00\xed8~\x80\x03\xb4\x07;\x073\x90\xa3\xcfE\xf0\x02tZ\x80\x03\xb4!\xb2\"\xe7\x08\xd0\xd6:\xad\x8c\x8d\xbd\xd2*\xf4\xd5\xcf3)\xff\x9fWR\xaf4~\x90\x7f\xf0l\xb9\xf6\x9f\xa7q\xdd\xfar\x8e\xd0\xeeA5\xa6Fwg\x08\xea\x9eTI\x1d\xf8l\xe3\xbag\xf7\xcb%\xee%\xc1\x1b\x9dW\xa3\x0b.OQ\xd6w\xb2\xabs4m.E\x99\xf3+pI\xfa\x1b^\xc2Q`P}\xcb\xa0\xbd%*on\xc4\x8f\xa4\xbb-R\xdd\x9247(\x9cXqGS\xdcR\xf46\xdf*8Im\xcb\xac\xb5\x91\x94\xb6\x8c:[Pe\xcb\xa4\xb1-Q\xd8\xa2\xf5\xb5\x0c\xeaZfm-\xa0\xace\xd7\xd5\xce\xa3\xaae\xd7\xd4\xe8\x8aZ\x9a\x9e\xe6qzHM\xcb\xa6\xa5\xd1\x944\xcbT\xde=\xbefV\xd1B\x1a\xdaB\x05\xcd\xa3\x9f\x05\xa7'A\xed\x8c6\x7f\xc9\xab\x9b\x85T\xb3p\x9d\xd2\x143=\xb2[\n\x0c\xe9e\x19\xd5\xb2\x05Z\x99]\xe1\xf6)eyu2\xbfJ\x96C##\x89<\x01}\x8c\xac\x8e\xb9\x17\xb2\xe3\x951wY\xd6E\xa3,\x9aX\x8c\xb3\xa8zX\xd8'd-,A \xb3/\xb0eR\xc1H\x1aXX\x01\xa3\xe8_^/\xc6j_T\xe5\xcb\xa5{eP\xbd\"4\xaft\xc5\xcb\xa3+Q\xd5\xae\xccZ\x97\xa7F\xd6\x9e\x9a\xa4riE\xcbR\x9eC\xe3\xca\xacp\xb9\xf5\xadTu\x0bW\x04l\x15\xb7k[y\x95-\xd7\x87_P\xd5r-\xbb\xbb\x14\xad\xbczV\xba\x9a\xe5P\xae\x92t\xab\xa0F\x15\xa7P\x91\xf5\xa9Hu*F\x9br*S\xee\xdaP\x15\x02\x9a*\x15\xa9IE(R\xd6\xa6\xe5U\xa3\\\x0f\xc5\x02%\xca\xbaN\xe1\xd4\xa1\xd2T(\x9f\xe2\x94_oZ\xde\x93\xc8Z\x13Ui:}E\x0e[\xa1O\xd5\x06z\xdaSO\xe6R\xefw\xe84\x10\xf6\xe6\xa5\xfd\x92\xd3j\xcd\n\xe1\xc8S\x8e<\x1d,\xae\xba\x1cy:3\x8e<\xe5\xc8S\x8e<\xe5\xc8\xd3P\xd8Ex\x1c\x94\x96Y\xdb\xa6\xaa\xdbi\xfa\xb6\xb30\x8e<\xe5\xc8\xd3\xd1R\x94pga\x1cyzj\x99T\xf1e\xbax\x822\x9eE\x1b\xcf\xae\x8e\x07\xf5\xf13(\xe4\xe7\xd2\xc8\xcf\xa0\x92\xc7\xe8\xe4\xa9J\xb9w\x0c\x0fi\xe5\x19\xd5r\xaa^\x1e\xa9\x98g\xd7\xcc\xc3\xaa\xf9b\xdd\x9c#O\x835K\xd3\xd1\xadEq\xe4i\x8a\xa2\x1e\xd2\xd4\xf3\xa8\xeaD\xa98\xa8\xacGh\xeb\xc1\x08\xc0H}\x9d#O9\xf2\x94\xa2\xbc\x07\xbd\x1a\xab\xbe\xd3\xf5w\x8e<\x9dYf5\x9e#OMK\xd5\xe6\xad\x85q\xe4i\x84R\xbfD\xab\xb7\x16\xc7\x91\xa7\xd6\x13H\xea>G\x9e\xe6\xd3\xfa9\xf2t1 \x90\xa7\xcf\x91i\x00:\x0f\xc0\x91\xa7\xd2\xd2*2\xd3\xd9]\x15\x1a\xa4qy\x98~1\xb8\xd9\x86\xc5\x15t\xaa\xe1'5?Q\xa0\xed5W*\xe9W\xab\xf9\x19\xa2}+\xf1\xa9\xbbm\xc5?\x8e\xa2Z\xd1\xf6c~->u\xef\xd5 \xef\xc4J\x94\x8f\xfd\x84\xa0;6\xeae\xdb\x97\x08\x8d\xfaA\x97\x8c\xb3\xa2B\xd2\x05CI\xaa^\xd6P\\\xcbU\xd4a\xcf6\x10w\xe2\xca[\xe5\x81(\x954\x88o(}\x1c]<\xb8V\xfb\xfa\xe4\xf1\x03\x86\x83\x18\x0e2-\xae\xba\x0c\x07\xcd\x8c\xe1\xa0\xe7\x0b\x07\x8d\xef\x8a)\x12\xd4\xbfwE\xdb\xc9I\x7f\x90\x08\xb2\xbcu\x86\x02\x19\x0d\x92\xc6h\x10\xa3A\xa31\x1a\xc4h\xd0h\x8c\x06u\x8c\x06\xd9\x8d\xd1 m\x8c\x061\x1a\xc4h\x10q\x96\xc4h\xd0`\x8c\x06\x99\xc6h\x10\xa3A\x16c4\xc8z\x0c\xa3A\x8c\x069\x8c\xd1 F\x83\x18\x0db4\xc8\xb0\x1c\x98\x06\xa3Ah\x8c\x061\x1a\xf4\xad\xa1Ag\xc0T\xfaaVt\xb7\xc5\xaa\x7f(wb\xbd\xc1U\x8d\x96\x04\xac\xbc\xc5s\x7f\x9c\x9d:0+\xb8\xc0\xad&;\xa2\x83\xf9%\x86b\xc6\xc4,c'\x96\x9f\xeb^\x90\xc5~uu\xe4\xb3eY\xec\x8e6\xad\xfb\n\xea\x9c\xea\x0e\x0bV\xa6\xac\xcf$>\x0f\xe3\x83`\x9f\n\x8c\xbd3\xf7\xe5O\x9eD{\x05\xa6\x90\xd6\xa9\x11.O\xe0?\xe6C\x85|(\xf4\xb5\xed5[\x17]\x91\xa1V\xd4\xd5\xc2\xe15\xd9_w\xf6Bm\x87\x1awE\x97\xbc\xbc'\x9fY\x99\x11\x04\xb5\x1b5\xb9\xc5\x05\xaar\xa5>\x0fD\xff\x1c\xaau\x7f\xcd(Y\x8b\xeb\xa7\x10mW7\x8e\xc9\xbb\xaa\xf1\xaa\xde\xef\xcb\x0e\x9f\xb6\x17'\xcf\x9f\\\xd7F\xd2\xeb\xd0\xb5\x8e\xaf\xe5\xebb\xb7C\xd4C\x8f\x0c\xe5\xddNB\x0f}a\xfd\xd4\xd0\xd4\xe2\xcc\xfa[\x8b+\xabN4\x87\x06\xa9\x96\xb2\xb5_R\xa7\xc9\xea\x07\xc1\xa1\xfe'\xd5G\x05\xa5\xd0\xd5\x9f\xdf\x95C\xb1)+\x1c/\x9d\x80\xd8x\xc80\xe89\x06\xa4$\x18\x0c\xc9\xbd\x07\xf1y!V\xe5\xec\xc0.rE\x9b\xbe\xbe\x86V\xfa\x7f*\xdd\xa7h[)n\xbd-6\xe2\x9d\x84Y.\xe5\xef\x8e\xc2\xfe\xd1\xbfm\xb1\x18\xc4\x04\x0f\xfd\xa4l_\xb7\x1d\x08TSP\x82\xb1\x9c\xda\xd5]\x91\xba\xcf\x07a\\Q.p\xae\xf4\xe3\xe5\xb1\xfd\xf8\x8f\x91\x11\xd6:\x9e!\x1a\xb9\x10\x08\xd3E\xab\xfaXu\xb7X\x98k\xce\xf9T\xb4\xd0\x8a\xee\x05\x94]\xab\xe5\xc9\x16\x8e\x95|\xe2\xd7R\xb1y*-]-<\x86\xc8\xaa\x18(R=\x99\xe0\x97\x15l\xde\xbd\xbd\x1e:\xb3\x9e=\xb7\xf0\xb4\x15\x8d\xad\x139\xd4\xefU\xdd\xc82\x90\x14\xd0\xb0\x93\x9e\x8b\xf7\xdf-(\x06\x99\x9e\xb1\xbaC\x9f\xf1\xbe\xde\x8f\xf5\xf6\xae)5\xe2 p\xad\xfe\xa7\xa2\x19nR\xe0\x03u\xea\x16\xec\x99\xaeO\xd4\xf9\xf2X\x80 \x95\x9d\xfenW\xaf\x1e\\\xc4\xe0\x82\xf1\x81a\xd1`u\x19\x16\x9d\x19\xc3\xa2\xcf\x17\x16\xb5|\x93u\xed2r\xd4\xf1\x91\xc9\xd0\xa84\x86F#>\x0c\x19\x1aehT\x19C\xa3\x0c\x8d24\xca\xd0(C\xa3\x0c\x8d24J\x9d%14:\x18C\xa3\xa614\xca\xd0\xa8\xc5\x18\x1a\xb5\x1e\xc3\xd0(C\xa3\x0ech\x94\xa1Q\x86F\x19\x1a5,\x07\xc0\xc7\xd0(\x1aC\xa3\x0c\x8d~k\xd0\xa8Q\x91\x01\xf6\xb9|\x10\x9f]\xf5\x99){\x8a\x9e)\xd4\xabE\xc2\x9d\x92\xb40\xa1\x83\xcb\x01\xb5\xc1%\xb2\xcdl- 1\x02\x0dJ\xb9\xf1\x99KxS\xa1\xf8\x8e\xdf\xd0\xf5\xfd}+\xba\xfe\xb3tZ]0\x96\xf8[1\xc1\x9ez_\xfdCQ\xb1\xdaFg\xdd\x17\xbb6\xe8-\xc7\x82\x89\xc5\x89\xb2~.?\xce\x16+Tc\xd0\x95\xd5q\x8f\xb8\x9b\xfa\x1b\x8eB\xab\xa2\xea\xdb#W\x8b\xb6\xa2\xd2\x8e?V\xc3\x02\xddlZ~\x83\xa5\xedD\xdb\x8e.\x94KZG\x14\x80\x1fD\xa4?\xa7\xc5\x9f\xd9\xb9\x8e\xcc\x81\x86{w\xe5\xbe\xa4z\x17\x8f\xd5\x02\xb3\x8bt\x92\x8b\xb7f\x0f\x96s\xa4v\xbe\x0f\xf2A.\xd5\x98\x7f\xba\xb9\x87\x9d\xb8\xef\xd4\xaa`\xd9\xc9\xd7\x84\x9eL\xe3\xba\xb3|@\xe4Ez?\xdf}\x96\xecDq8|E/\x9a\xbc\xd6x\xbe\xcf\x97\xc6\x19\xbdG\xb1\x87\xd68\xd0@\xff\x8f\xb2Z\x97\xab\xa2\x13#?#=\x88\x07\xaa\x8ed\x16WV\xab\xddq=\x9b*\x17\xf2*\x83\x048\xbbc((\x1b+\xd3\xfd+\xcd@\x15g\x83\xcb\xc7\x9b9\xb89k\x02~]4\xa2U\xd2?>^\xe3\xf3\xd8?r\x97\xeai*7U\xdd\xcc\xd6\xf5\xf5\xd38\xbd\x84\xf4\xcc\xd2\x1b{W\xd7;QT\xbe\x1b\xd8\x88G\xd1LN\xf5\xdd\xda\xab\x9f\xb5o\xfe)/b\x0b\xfa\xb0B8\xe8\xbbR\xf4/4\x84\xb0\xd7\x8eH\x8f~\xc2\xbe\xa5\x87p\xa8\x03\x7f)\x11\x1cQt\x0d-\x05\xa8v\xa3e\xc3b\xcdN\xe1\x9c\x7f\xbe\xf6\xcf)I\x992\x1d,\xae\xbaL\x99\xce\x8c)\xd3\xe7@\x99\x9et,7\x12:P\xa6f\\\x91z\xe6\xe6/y0\xde/8\xb7<\xd1x\xd5\x10,\x87\xa8b\xd7\xd6z\x1a\xdb\xbf\xed\xe4p\xa5\x96\xbc\xb5\xc7\xee\x9bz?\x0ei'\xe5yF8\xe6Vg\xbf2\xb7J\x19_\xa51\xb7\xca\xdc\xaa\xdd\x98[Ecn\xf5\xd4\x98[en\xd5e\xcc\xad2\xb7\x8a\xc6\xdc*s\xab\xcc\xad2\xb7*\x8d\xb9U\xe6V\x99[en\xd5e\xcc\xad2\xb7\xca\xdc*s\xab\x86\xe5`\x08\x99[Ecn\x95\xb9\xd5o\x97[\xd5\x80\x8a\xb3&S\xc6'g\x15\x1c:\xfa\xf9\x90\x1c#Y\xa1\x1b\xc7\xf9\xcfy\x0e\xd6\xeb\xf1,W\xfaU\xa3`\x04rDk&^\xd5\xc5\x91\xf3\xae\x1aWT\x07=[`\xe7\xc4\xa5\xa6u_A\x1e\xe4l\xab\x9cm\x95\xb3\xadr\xb6U\xce\xb6\xca\xd9V-\xc6\xd9V9\xdb*g[e\x0e\xd6R\x16s\xb0\xdf&\x07\xeb\xcb\xb6j|\x89\xe5\xc8\xb4j~Jr\x92Ui\x0c\xabF|\x0f2\xac\xca\xb0\xaa2\x86U\x19VeX\x95aU\x86U\x19VeX\x95:KbXu0\x86UMcX\x95aU\x8b1\xacj=\x86aU\x86U\x1d\xc6\xb0*\xc3\xaa\x0c\xab2\xacjX\x0ep\x90aU4\x86U\x19V\xfdvaUN\xb2\x1a\x97\xc1\x92\x93\xac\x9e\xd1\xb9\xe1\xf4\xa0\x9cd5\x87\x179\xc9*'Y\xfde&Y\xfd\"\x91\x0cW?\x1f\x86\x84\xa3c\xea\xd6\x7f^\x1d+di\x1f\xc5\x1aS\x91\xcaz\xd8\x02\x1e\x0c\xff\x7f\x1c\xce\xf9q\xf5p\x1a\xed0\x16 7?]\x9f\x00\xc8C1F\xec\xc3\xf0\xb7i\xf0\x83\xe4\x9d\xe7yc'\xa1\x10\xd3\xba\xa8#\x9em\x1c\xc4\xd0\x96\xac\xdc\x89S\x15 \x80w\x8al\xd2yz\x8d\xfb6O\x1fk\xcb\xf5\x0b\xccRv\xccR2K\xc9,\xa5\xe5\x88\x14\x96r:\x94\x9f\x82\x94\xea\xbf\xbb\x10I9{=1A)\x8d J&(Gc\x82\x92 \xca\xd1\x98\xa0\xec\x98\xa0\xb4\x1b\x13\x94\xda\x98\xa0d\x82\x92 J\xe2,\x89 \xca\xc1\x98\xa04\x8d J&(-\xc6\x04\xa5\xf5\x18&(\x99\xa0t\x18\x13\x94LP2A\xc9\x04\xa5a9h6&(\xd1\x98\xa0d\x82\xf2[&(OY\x11W\xad4>@a\x06\xe2+\xf8\x856\xfb]\xb5\x8f\xc6\xef\xfb\xb2\xba\xc1\xeb\xc0\xef\xd5_\xbf,\xa3c\xdbey\x82\xea\xc8\xe3bi\x1d\x99]&\x08\xec\xa8\xc2\xe7\x9b\xdf\x0e\x05\x1a\xcb\x1c)\x9c\x8e\xaa\x85:\x88Q\x1di\xc9\xa8\xcea\xb6\xbb\xf6\xecT&t\x98\xd0aB\xe7\xb4$&t\x16\x11:j\x10\xcf\x01\xe9p\xce3&v\x1c\xbf3\xb1c\x18\x13;L\xec\x8c\xc6\xc4N\xc7\xc4\x8e\xdd\x98\xd8\xd1\xc6\xc4\x0e\x13;L\xec\x10gIL\xec\x0c\xc6\xc4\x8eiL\xec0\xb1c1&v\xac\xc70\xb1\xc3\xc4\x8e\xc3\x98\xd8ab\x87\x89\x1d&v\x0c\xcbAO0\xb1\x83\xc6\xc4\x0e\x13;\xdf<\xb1c#G\\\x95\xd30\x81\x87 \x88\xaf\xde\xb7\xc5\xebh\x9f\xfd\xd3M\xe2\xcc\xe5MD.J\xd1\x0fs\xb8\x93\xe7\xfat\xd7N\xdc\x1c\xd8J\xd1\xcc\x0bS\xc7<[\x88flS\x94P\x19X\xd7\x1a\xb6\xf2D\xbf\xcd0%57\x92\xbbn\xe1\xf09_F94u}\x7f\x86\xfa\xecE\xf3\xb0\x13\xb2\xf8\xfe\xb9\x12\x9f\xca\xb6\x9b\xed\x86\x0d\xfa\xfaN\xc6D\x15\xa6p\x80\xa2S\xaf\x98\xbeU\xb2\xe4\xa7\xa2\x1d6\x89=\x9d\xbd:o\x12\x045Y\xa6u\x82\xd5eZgfL\xeb<\x07Z\xe7\xa4cY7\x13\x1c`\x1ds#j\xf5\xb8I\x0e\xd0\xb1#\xf2=\xee\xb9,\x87\xdby\xe5\xe4\xe8T\xec\xdaZ'@\xec\xdflr\xa4R\x0b\x07\xdaY\xf7M\xbd\x9f\x8ff\xf3\xd2\x8a\x93\xdd\xa1O\x87:f\x81f\xbf2\x0bD\x19h\xa51\x0b\xc4,\x90\xdd\x98\x05Bc\x16\xe8\xd4\x98\x05b\x16\xc8e\xcc\x021\x0b\x84\xc6,\x10\xb3@\xcc\x021\x0b$\x8dY f\x81\x98\x05b\x16\xc8e\xcc\x021\x0b\xc4,\x10\xb3@\x86\xe5\xe02\x98\x05Bc\x16\x88Y\xa0o\x97\x05\xd2T\x8a\xb3&S\xe0'g\x15\x1c\x82\xfa\xf9p\x1c\xcc\"p \xb28\xc6\xba\x82\x14G\xdf\xc9\xb3\x07&\xa7\x9fq+I\x7f\xe6$\x1c\x8d\xee\x04j\xfd*\xf3\x8a!\xf7OV\xc9ea\xeb\xbe\xf3\x0d+m\x16\x8aG][\x1d\xf0l\x11\x1e\xdd\\\x97R8\xdf\xd9m\xf8UJ\xd3\xaa\x92p\xbf+68\x13\xc3\x1d\xda\xa4\xd7\x11\x90a:G\x1b\xd39'\x16W]\xa6sf\xc6t\xces\xa7s\xd4K\x80\x8e\xe6H\x18g>fY\xd1\x1c=\xccz\x10\x9d\x17~F\xc7642\xa3\xc3\x8c\x8e\xebwft\x0ccF\x87\x19\x9d\xd1\x98\xd1\xe9\x98\xd1\xb1\x1b3:\xda\x98\xd1aF\x87\x19\x1d\xe2,\x89\x19\x9d\xc1\x98\xd11\x8d\x19\x1dft,\xc6\x8c\x8e\xf5\x18ft\x98\xd1q\x183:\xcc\xe80\xa3\xc3\x8c\x8ea9x ft\xd0\x98\xd1aF\x87\x19\x1dgM\x9e9\xa3SW\x95\xcc\xc8\xd3^\xfd<\xfe\xc7?\x07x\xc7\x0d\xe1\x18[\x8b\\\x0f'^\xab\xd3\xc6\xec8jo*]\xdeI\x9a\x97\x02\xc6\xcb\x0e\x05\x8ajm\xcd\x9bsz!u\xd4\xb3\xc5n\xa6~4\xad\xfb\n\xe2\x1f*\xfc\xcee/)s\xabULy\xac\x9e\xc1\xe8\x87[T\xae\xf5Y\xc2\xa2\x99\xa8\x8e{\xf7\xe7\xd4\x05\xbc\xff\xf0\xe3\x87W\xb7\x1f_\xdf\xbc\xbe\xf9p\xf3\xe3_o\xfe\xfd\xd5\xcb\xdb\x8f\xaf\xdf\xbf}u}\xf3\xe7\x9bW/\x83g\xf6\xe7\x05\x0f\xfa\xf0\xee\xdf\xde\xbc}\xf5:x\x1c\xe9\xa0\xeb\xbf\xbey\xef\xac\x98\xd6\xce\x13\xdbEY\xa5\xeb\xed=\xde'\x0d\x1c \xf9\xa6\xef\x16\x92-\xa8 \xa9\xdb(\xf5\x17\xf7\x1dR=\xa4\xf5\xbc\xc5d\x93_@\xdf\x98\x17\xa0\xbc\xf9\x02\xfa\xff\x85\xba\x81I+=\x1f\xff\xe1\xdb\xfd\x03\xbcT\x9fU\xd8\xc2pI}9\xfd\x83\xad[\xdf\xcfi\xfe~l\xb1'7\xfdx\x83\x0b\xee\x07\x81+\xe0\xdb\xa2Z\xb7\xdb\xe2\xc1\xba@:+X5r^\xb6\xb1Q\xa2b/t\x99\xd0v\xe2\xa0%\xa7U}\xac:\xd1\x1c\x8a\xa6\xfb,YB\xc2%m\xd7[\xd5\xfd\\\xa4\x9b_\xec\x12\xde\x1cDe\x0c\xb0\x8d\xdbW\x8d(\xd6\xa8\xe2\xb4\xa2Z\xe3\xc4Oa\x81z\xb3@B\xd5d\x07\x98W\x0e\x91\xca\xd5\xaen\x85,wUTP\xd5\xb0\xab\xab\x8dh\xfa\xa9\x1f.\xd9\xeb+#%\x82\x17v^\xcf[\xa1\xbaY\x8b~\xa0 \x0ceO[\xa14 a>\x13x\xb6\xc0Z\x1c+\xf5\x1f\xe7\x1b\xd5\xde\xbc{\xf9\xea\xdd\xed\xeb7\xaf_\x11\x1e\xfa\xf1\x84\x8f\xaf\xf1\xff G\xfa\x8f\x1bF\xa1\xa8zP\x07\x1fW\xf3~\x80\xff#\x9a\xfaB~:\xf7\x93g\xe5~gA\xfa\x8e\xfa\xfa\xdf\xcc1?\x0c;\\\xf6\x9d\xed\xae\x1f\x03w\xe5#\xde\xd9\xfe\x13\xa0\xfa,\x0b}\xa1>\x16\xf6\xc5gX\x97\xa8\xa3 \x1d\x85\xa3A\x7f\x80O\xa3\x1b\x10\xaa\xcf\xf0$\x1a\xd1\xf7\xde\xce\xfb\x8cLn\xc9X\xc3\xa21\xab'>\x15\xab\x0e\xd15\xa3\x16\xb6KY\xafd\x0e(\xa1w\xf9l\xec!\xbd\xc3\x9d\xb3\x0b \xcc0\xf0\x1899\xf7\xad\x9c\x12\x9e+\x88\xe8\x86\xa0\xae\xea\x1es\x95{\xeb'\xb5*\x82b\xa5\xb7<\x1c\xa7&\xb3\x1f\xf7\x8d\x1f\xbf\x8e24Z\xdf\xbb\xf1v\xb9\x9b\xe5\xe8 z\x96|\xbb\xad\x0f\xce\x1b\xe5\x9b\x80JsNC\xa5\x11\xda\xe3B'G\xd3\xd9K\xc7J\x1b_l\xed\x0b\x9c\xc0\xc8\xc7X\xe9\x87\xfd}tw=\xf5\xbc\xb5\x88]y\xd8'T\xf1\xb5\x8bqy\xa2k\x8aG\xc7\x00\xa5\xe8\x82\x05zq\xd8\x0f\xf5\xa1\xe8\xbfVu\x95\xd4%\xf5\xe0U\xb6Pl\x1a!\xd6p<\xd4\x15\xac\x8f\xb8\x0e\xe6\x03;\x86\xf9\x81\xf5\x88\xc0#Jo\x11>u\xd6O\xec\xd1\xc2O\x07\xfdz\xc3k\xdcwI\xca\xb0q\xa3\x0bX\xabO\xc9a\n]\x18\xfd\xa2\xff@\x1d\xd7Z\xb1\xb1\x85c\xf8\xd4o8\xeb\x8fcuU.\xd3\xd3\xb1\xc4\x9a\xd3\x97\xf4\xd9\xc4\x95,pQ\x90C%>u\xb7\x0f\xc2\xf1z\n\xde\xed ]\xe1\xda\xddT\x9b\xbe\xbe\xde\xcf\xb4\xff\xa7\xc2\x8c\x8aVMD\xdf\x16\x1b\xf1N\xe6\x97\xbd\x94\xbf;\n\x93\xe0v_L_l\xef:\x01\xfb\xba\xed@ \xbc\x83\xc4\x8f\xe5\xd4\xae\xee\n\x07eKv@8^\xc29\xa2\xe0\xe5\xb1\xfd\xf8\x0f\x19m\xd2w)\x8d\x8d\x19\x8c\x92\x8b\xb85]\x84\xef\x9e[,\xcc5\xaa>\x15\xfd\xc0\xdb\xbd\x80\xb2k5\x0d\xd7\xc2\xb1\x92\x0f\xd6Z\xbes\x9fJKW\x0b?\xb0\xb2*\xc6.\xb5\xf5d=\xb9\xac`\xf3\xee\xed\xf5\x88\xd7\xab\xc5\xda\xb6\xff\x06\xb0~\x109`\xcbU\xdd\xc82\x10L\xd5\xf9\x87\xf5\xd2o\xff\xa5\x83\x1f2\xa6g\xac\xee\xd0g\xbc\xaf\xf7c\xbd\xbd\x12f#\x0e\x02\x9f\xef\x9f\x8af\xb8I\x01=d\xea\x16\xec\x99.Ed\xae\xc6\xf2\x86\xe2\x1c\x04\xc5AP\xa7%q\x10T\xc2\x86\xe2\xa7\xeb\xf2\xf3\x1d\xc5\xdf\x91w\x14w\x14\xc8\xbb\x89+\xe3\xe8$\x8eN\x1a\x8d\xa3\x938:i4\x8eN\xea8:\xc9n\x1c\x9d\xa4\x8d\xa3\x938:\x89\xa3\x93\x88\xb3$\x8eN\x1a\x8c\xa3\x93L\xe3\xe8$\x8eN\xb2\x18G'Y\x8f\xe1\xe8$\x8eNr\x18G'qt\x12G'qt\x92a9\"E8: \x8d\xa3\x93\xbe\x89\xe8\xa4\xd3\x10\x92yt\xd2\x88\x97}\x91\xb8\xa0\x11\xb0\xb9|\x10\x9f]\xb5\x9a\xa9i\x8aX)\xd4\xa0\xde\x88\xee\xd8T\x92n0\x85\xfe\xcb\x01o\xc1\xc5\xa9\xcdl\x15\x07\xa5{\x85\x87y\x90\x95KxS\xa1\xe0\x8d_\xaf\xf5\xfd}+\xba\xfe\x83pZ]0\x16\xd7[1a_{_\xfdC\x05\x17i\x1b\x9du_\xec\xda\xa0\xb7\x1cK\x15\x16'\xca\xfa\xb9\xfc8[&P\x8dAWV\xc7\xbdh\xca\x95\xfe\x1b>\xff\x8a\x17\x96\xeb4[Qi\xc7\x1f\xabail6!\xbe\xc1\xd2v\xa2mG\x17\xca\xc5\xa4#\x8a\xae\x0f\"\xd2\x9f\xd3\xe2\xcf\xec\xdc\x19q`q\xef\xae\xdc\x97T\xef\xe2\xb1Z\xd7u\xd1Er\xd9\xd4\xec\xc1rv\xd2\xff:)\xed \x17I\xcc?\xdd\xdc\xc3N\xdcwj=\xae\xec\xe4\x00\xad\xa7\xb1\xb8\xe2+\x1f\x10y\x91\xde\xcfw\x9f%\xafP\x1c\x0e_\xd1\x8b\x9e\xef\xf3\xa5qF\xefQ\xec\xa15\x0e4\xd0\xff\xa3\xac\xd6\xe5\xaa\xe8\xc4\xc8\xacH\x0f\xe2\x81\xaa#\x99\xc5\xa9\xbc\xa0Sw\x16\xf2*\x83\xf86\xbbc(\xe5\x1ak\xc2\xfd\xcb\xc4\xc0\x03g\x83\xcb\xc7\x9bvv\xb7fM\xc0y}#Z%\xba\xe3\xe35>\x8f\xfd#w\xa9\x9e\xa6rS\xd5\xf3\xc8\x0b\xfd4N/!=\xb3\xf4\xc6\xce3\\[n`#\x1eE\xd3:\x839g7O\x1d=\xbfq\xa5\xc1\xd85\xc2\xfe$L\xca\xe9\xaf!$p\x86\xa8\xf3|I\xed}Y\xad\xf0%\xd7\xee\xeb\xf6\xa2]?\xc0\xef.\xff\xf4\xc7\xac\xde\xf0\x07\x8d\"'u\xf5\xf8\xfb+|\x07{bB\xaf\xf1\xc8\xb7x\xd4$\x04t|y\xebnX\xde\xad\x14\x80e\x8f\xf44J\xfaN\xb7\xe8\x99\xc6x\x9a^1m\x16\x08\x8cN1\x13\x03\x9f:e_\xaf\x8f;\xcb\xaa\xb8\xb3R\x10d*\x94>w+}\xed\xc1.|\xa1\x00\xde@\x80\xa0 AY\xd1?\xa9\xe8\xc4S\x1a\x87\xd6b\xa3\"\xf7ZO`\xa0\\\xb99y\xce\xdc\xf5\x90\xdc\x91\xd1\xed\xe6\x08SCF\x98&\x8f\xc1\xbb\xb7\xd7\xf3Y\xb7\\\x03\x19+\xc7\x1c\xd3\x89\x83\x98c\xa2=5\xcc11\xc7\xe4:\x929&4\xe6\x98N\x8d9&\xe6\x98\\\xc6\x1c\x13sLh\xcc11\xc7\xc4\x1c\x13sL\xd2\x98cb\x8e\x899&\xe6\x98\\\xc6\x1c\x13sL\xcc11\xc7dX\x0e\xa6\x849&4\xe6\x98~-\x1c\x13!?\xef\xa0\xb7\xca\x7f\xdd\xea\xa4\x9c\xe0\x95]1M\xe6i\xe6\xdd\x9b\x9f\xaea'S\x08(e\xadV9B\xc7L\x94\x16\xe9U\x96\xa6~\x7f\xb6\xd2\xab\xc5A\xa6u_A\xfaQU\xca\x92\xecJ%( \xa4\xd72|\xe0\xbf\xe6\xe2\xcc~]@\xd6\x02Z\xf3\x80\xb8<\xa2-V\xe2\xf2\x16f_\xe7\xf0L\xfbsK]\x10\x96\xbb A\xf2\xf27\xa0\xe8\xb6d\xd9\x0brI_\x90(\x7fy\x0b\xec\x9dK\x96\xc0`\xb9\x0c\x06\xd1R\x98\xb7(\xb5D\x1f%\x87AnI\x0c\"e1\x88\x95\xc6\xfc={\x90\xcd\xa8\xf2\x18\xe4\x96\xc8\x80&\x93AN\xa9\x0c\x16\xcbe\x90&\x99A.\xd9\x0c\x92\xa43\xff\xe3P\xb4b\x1d\x96\xcf\xe0<\x12\x1a\x9cQF\x83\xf3Hi\x10)\xa7A\x9a\xa4\x16\x1a\x82i\xb2\x1a\xe4\x95\xd6 B^\x83x\x89\x0d\x12d6\xc2\x90\xf9[\x82\xd4\x069\xe46\x08In@\x9f\x9e\x11\xa47\x88\x9c\xc5EKp\xde\xd2P\x9e#\xc8p\x10Q\xcb\x8cr\x1cDIr\x90[\x96\x83Di\xce\xdf\xaf\xda\xb0<\x07\xe9\x12\x9d\xb3\xbc\xfe\x8a!\x99\x0e\xb2Iu@W\x9c\x80\"\xd9A\x9cl\x07\xa1u\xf6D\xf9\x0e\x08\xe5z\x96\xf22Iy\x90\xe4\\\xba\xa4\x07\x84V&H{\x90*\xef\x81\xdf\xab\xf9d>\xa0K}@\x94\xfb\x80,\xf9\x01\xcd\xeb\xf1\xd2\x1fD\xc9\x7f\xe0\x95\x00!\x97\x0c\x08\xb1R ,\x94\x03\x81\xe0\xde\x08Y\x10\xce!\x0d\x02\xa5\x8e\x9e'!\x9fL\x08\x14\xa9\x10\x16\xc8\x85\xce\x02\xfb\x03}\x92!\xe4\x96\x0d!(\x1dB\xaa|\xe8,M~\xa3\xfa?\xd7 2\"x\xd5\x0e\xf0\xca\x89\x90$):\x8b\xf2J\x8d\x90*7:K\x93\xf3@\xcf\xaaY>\xd9\x11H\xd2#$\xc8\x8f\x10'AB\x8a\x0c \xd1R$\x04\xde\xb6\x01y\x08\"$\"\xaa, )\xd2$\xc4\xca\x93\xe0ox\x8aL\xe9,\xcc\x10\x01\xa9\x8f\x0cM\xae\xf4>\x10\xd5\xc6/YB^\xd9\x12B\xd2%\xf8\xe5K\xe79\xa9\xb2&d\xec\xbb\x11\xf2&DI\x9c`\xd9g@\xdbT\xd2rE\xeeQ\xbe\xd4\x8d\x9d[F\xa5\xd2\xdc\xbd\xc5\xb8\xc40\xda\xda\n2\x06Zy\x8e\xdd\xfd\xf3\xbd[N\xc7Z\xeb\xd6-mW7b=\xd5f\xc7\xfd\xa4Nw\x01\xe4][x\xd7\x16\xde\xb5\x05GO\xde\xb5E\xdbt4%\x070\xcb\xe1fi\x00\xb3\x1a\xb48\x80\x99\x03\x98\xad\xbfs\x00\xb3a\x1c\xc0\xcc\x01\xcc\xa3e\xa55bH\x8d(J\x83\x03\x98\x97\x12\x19 4F\x16\x12#\x9e\xc2\xe0\x00\xe6%\xd4E\x0cq\x91@[p\x003\x070s\x003\x95\x96\xc8JJ\xa4P\x12\x1c\xc0\xec:,HCD\x90\x10\x94\xf0\xdc\x18\x02\x82\x03\x989\x80\x99B3p\x003\xda\x12b\x81\x03\x98m%\x05\xa9\x84T\"\xc1\xf9n\xe0\x00\xe6S\xe3\x00\xe6\x04\x92 L\x11\xc4\x12\x04\x11\xf4@49\x10G\x0dp\x00s\x1c\x19\xc0\x01\xcc\x83}\x93\x01\xcc\xbe\x8d\x18x\xdb\x83\xb8\x9c\xf2\xbc\xed\xc1\x19\x9d\x1bN\xd8\xcf\xdb\x1e\xe4\xf0\"o{\xc0\xdb\x1e\xfc\x1a\xb7=\xf0\xe4\xe2\xb8\xfayH\xf3\xf0OY@ /\xc7\x98\x96\xa3:\xc9\xc8\x11\xca\xc2\xf1\x9dn\xda/ \x87\x8b^H\x02\xd2:/\x84\x10\\\x7f\xa7,`g\xc7\x0fh\xf0A\nz\xe0G\x0c\x92\x00\x03\xbc\x84\xa3\xc0 ^\x90\x01.HD\x0b\x9c\x82,\x0d,X\x84\x15$A\x05P8#*:\x1aR\x90\x02\x14\xf8d>\x12N\x90\x19& \xa1\x04\x19A\x82 F\x90 \"X\x82\x10D\x03\x04\x19\xf0\x81\xcc\xf0@\x00\x1d\xc8\x0e\x0e\x9c\x07\x1b\xc8\x0e\x0d\xd0\x91\x814`\xc0\xe3\xf4\x10.\x90\x0d\x16\xa0\xa1\x02\x96\xb5\n\xf7\xf8\x9a\x19\x13\x08A\x02\x0b\x11\x01\x0f \x10\x9c\x9e\x04\xe1\x00\xda\xfc%/\x18\x10\xc2\x02\xc2uJC\x02<\x813! #\x0e\xb0\x00\x06\xb0#<>\x14 /\x08\xe0\xc7\x00r@\x00$\x15;\x00\x00\x90\xe5\x7f\xb7R\x17/\xfd\xbb\xcb\xb2\xae\x8ag\x11\xfdc\x9cE\x15\xfc\xc3>!\x8b\xfd R\xbf]A\xc8$\xf3\x93D\xfe\xb0\xc4O\x11\xf8\xbd^\x8c\x15\xf7\xa9\xd2\xbeK\xd8\xcf \xebG\x88\xfa\xe9\x92\xbeG8\xa7\xca\xf9\x99\xc5|O\x8d\xac=5I\xc6\xd7\xab\xaf\x96\xf2\x1c\"~f \xdf-\xe0\xa7\xca\xf7\xb8\"`\xab\xb8]\xbc\xcf+\xdd\xbb>\xfc\x82\xb2\xbdKWtI\xf6y\x05\xfbt\xb9\xde!\xcd' \xf3A\x11>N\x82'\x0b\xf0\x91\xf2{\x8c\xf8\xee\x94\xde\xdd\xb5\xa1J\xa04\xd9=Rt\x8f\x90\xdc\xadM\xcb+\xb7\xbb\x1e\x8a\x05R\xbbu\x9d\xc2)\xb4\xa7\xc9\xec>I=\xbf\xa0\xbe\xbc'\x91\xc5t\xaa\x94~\xfa\x8a\xb4\x04\xc7C\xd1\xb6\xf5\xaa\xc4\xc9?\x8e$r\x8c\x92\x91\xad\xce\x8c\xd0\x87\xa6\xae\xef\xa3\xa2\x0e\x03\xdf\xa1\xaaf{\xd1<\xec\x84,\xbe\x1f\xff\xc4\xa7\xb2\xedD\xb5\x9a\x9f\x80\x07\xdcnE\xff\xd5\xed\x0cc\x97?C\xd1\xa9\x8e\xd3\xb7L\x96\xfcT\xb4\xd0\x88\xae)\x85m\xa9\xa6KW\x12\x1a\xf1X\xb6e]\xddJ\x01p\xe1\x17{8\xc0[\xde,y\xcdQ\xc5\xd4\xf9\xbc[cI\xa7\xb6}6\x0e\xd5uy\x12\xf2WW\xdd\x95\xbe\xaf\xa9\x97\xfe\xa6|\x14\xd5P\x97\x93\xf3\xc3K\x01\xaf\xfb\n\xf43\x92\xbe\xb4w\xaa\x9c\xbf\xc8\xeb\x94\xfd\x17\xf3\xaa\xc1\x15\x97~\xf8\xe9\xa4\x92-ka)\xebi[\xee\x04<\x08q\xe8\x9bk9@\x97\xffZJ\xbc\xf8\xd9_\xec\xc5\xb0$\x0em\xbd\xc7\xf5\xf2VT\xed\xb1\x85b\xb7\xa9\x9b\xb2\xdb\xee[\xd8[\xb7\xbd^m\xeb\xba\x9fWY\xa7\xde\xfdX\xda\x99~++X\x89\x06\xa5\x9aU]\xad\xd5\xda\xb4\xb8\xdc\\\xc2\xb6hp9\xed\xa1\xb5\x8d\x1d\xf8\xb4_\xec\x8b\xd5\xb6\xac\xac\x93\xa3\xf9B\"\xdc\xe0\xedi\x05\xac\x8aV\xb4/&\xdeU\xad/m+v\xa6\xbf\xdb\x1a\xbb\xa5\xedz\xaaA\xfd$\xa4\xac\x8eB/\xa1\xee\xeb\xaa\xec\xa4\xba\xb2\xfb,\xcb*\x10\x02\x11}/)\\9\x96\xa6\xb7\xddv\xbd\x8d\xe8Z\xe9\xcf\xc9\x8fq\xc1\xeeYb\xdd=\xa1\xee\xf0\x93hq!\xc8x\x8e\xf1\xce\xbd\xc0uS \xf4ok9\x90\xd9g\xf4\xca\xb3\xf7M}\xb2 \xe4\x1d 9\xd0\x9e\x03\xed9\xd0^\x19\x07\xdas\xa0\xfdh)\xba\xb8\xb30\x0e\xb4?\xb5L\x1a\xf92\x95E_\x0f)\xecy4v\xa2p\x1c\xd4\xd9#\x94\xf6`\xc0s\xa4\xda\xce\x81\xf6\x1chO\xd1\xe1\x83^\x8d\xd5\xe2\xe9j<\x07\xda\xcf,\xb36\xcf\x81\xf6\xa6\xa5*\xf5\xd6\xc28\xd0>B\xb7_\xa2\xdc[\x8b\xe3@{\xeb $\xad\x9f\x03\xed\xf3)\xff\x1ch\xbf\x98\x0b\xc8\xd3\xe7\xc8l\x00\x9d\x0e\xa0\x05\xda\x0f\xe1\x87F)\x93\xef\xc8 K \x17\xf8\xed\xd8@Y\xfd0_\x03\x1f\x83(\xbb\xe6\x18\x08\x15N\x0c\xa1<\x12C(\xdf\xe3\xb1C\xf4$~r\xca?\xc9W\xc2\xcdO\xd7\xb4(\xca\xe3\xb3\xdf\xcb\\\xb6+B\xc9\x8aRH\x8fY\xd2\x81\x1f}\xe9\xc0\xe1\xa6S\x01\xbfz\x10\xc0\xf57\xe3\x86uj?\xfa\xe9\x1dcY\x93eM\x8bQ\x96\xc5\x80eM\x965\x9dG\xb2\xac\x89\xc6\xb2\xe6\xa9\xb1\xac\xc9\xb2\xa6\xcbX\xd6dY\x13\x8deM\x965Y\xd6dYS\x1a\xcb\x9a,k\xb2\xac\xc9\xb2\xa6\xcbX\xd6dY\x93eM\x965\x0d\xcb!1\xb1\xac\x89\xc6\xb2&\xcb\x9a\xa3\xac\xf9\\\x04M\x1dM\x1a\x95\x16\xd6H\x7f~\xad\x0bP{\xed\x0eYbw;\xbd\xde\xab\xc2U\xedA\xe1\x85\x0c\xd2\x1d\xca\xf3I\xa1\xd3K\xa9C\x9e\xad\x1a:w\xed\xf3\x90\xb5|\xf1\xd8c\x18\xff\xec\xa69c\x9a!\\! T\n\xa8\x01\xee\xd2\x08\xebN@\x8b\x1e\x97\x96'\xe4]\x1a)\xf0]\xda\x19\x9b\x11\x1d\n/\x8d\xb2\xe0\x05Ia\xf1\xce\xa2tMC\xc1\xf1\xd2\"C\xe4\x9d\xe5LC\xe7\xfd\x81\xf2\xd2\xf2\x85\xcbK\x0b\x06\xcdK\xcb\x16:/\x8d\x18@/-1\x8c\xdeY\xdeigq_\xdb\x11R\xafm6\xb6\xfa\x17\xa8\x17\x0fM]\x00\x05\x00\xfa\xc3L}\xc2 \x01\x0b\xf0\x16f_\x1b\xf6,\x95\xe4\xc6\x03 \x8c\x08@\x02&\xe0o\x80\xce\x10NA\x05 \x17.\x00\x89\xc8\x80\xb7\xc0\xde\xb9dl\x00\x96\xa3\x03\x10\x8d\x0fx\x8b\x1a\xb3\x88\xd3\x11\x02\xc8\x8d\x11@$J\x00\xb18\x81\xbfg\x0f\xa8\x01\x15)\x80\xdcX\x01\xd0\xd0\x02\xc8\x89\x17\xc0b\xc4\x00\xd20\x03\xc8\x85\x1a@\x12n\xe0\x7f\x1c\x8aV\xac\xc3\xc8\x01\x9c\x07;\x803\xa2\x07p\x1e\xfc\x00\"\x11\x04H\xc3\x10BC0\x0dE\x80\xbc8\x02D \x10\x8f%@\x02\x9a@\x182\x7fK\xc0\x13 \x07\xa2\x00!L\x01\xe8\xd33\x02\xae\x00\x91\xb3\xb8hl\xc1[\x1a\"\x0d\x04t\x01\"j\x99\x11a\x80(\x8c\x01r\xa3\x0c\x90\x883\xf8\xfbU\x1bF\x1a \x1dkp\x96\xd7_1\x846@6\xbc\x01\xe8*=P0\x07\x88C\x1d \xa4M&\"\x0f@(\xd7#\x7fd\xc2\x1f \xc9\xb9t\x0c\x02\x08\xadL\xc0! \x15\x89\x00\xbfW\xf3\xa1\x11@\xc7#\x80\x88H\x00\x19\x93\x00\x9a\xd7\xe3q \x88B&\xc0\x8bM@.t\x02b\xf1 X\x88P\x00\xc1\xbd\x11(\x05\x9c\x03\xa7\x00J\x1d=OB>\xb4\x02(x\x05,@,\x9c\x05\xf6\x07\xfa0\x0b\xc8\x8dZ@\x10\xb7\x80T\xe4\xc2Y\x9a\xfcF\xf5\x7f\xae\x13\xd0\x0b\xf0*\xc4\xe0E0 \xc3p\x16\xe5\xc53 \x15\xd1p\x96\xe6\xc9%/-\x1f\xaa\x01$\\\x03\x12\x90\x0d\x88\xc36 \x05\xdd\x80h|\x03\x02o\xdb\x80\xa4\x0e\x11\xb2:\x15\xe5\x80\x14\x9c\x03b\x91\x0e\xf07<\x05\xedp\x16f\x80\x13\xd4G\x86\x86xx\x1f\x88j\xe3\xc7< /\xea\x01!\xdc\x03\xfc\xc8\x87\xf3\x9cT\x14\x042\xf6\xdd\x08$\x04\xa2\xb0\x10\xb0f\xc4\x97f\x17\xd4-\x07S>\xd6\xa7\x00\xc4\xff.\xbb\xad\xd2\\q\xf9\x17\x937\xcf\x95{=\xec\xda\x8a3F\xdc\xadG\x8e\x93\xf7\xfb\xe4'{\xcbZk\xd6\x7fw\xb6\xffa\x0bg\x0b\x1d!/`li\xada\x8d\xd3C\xd3\xf3\xea\xeb-\xf9\xddA\xc0\xa4\x0c\xf5\xce\x05#\xd5\x8a\xfft-\xbf\xe8\xeb\xeb\x98\xf6\xfe\x9fj\xb5\xb5h[\xb9\xbc\xfc\xb6\xd8\x88wr\xe3\x84K\xf9\xbb\xa30\xdcK\x1a\x8b\xe9\x8b\xc5-\xdaa_\xb7\xdd\xb8\xf7\xbd5\xce\x11\xf7\x00_\xe8\x80p\x8a~\xe7\n\xd4\xb0\x05\xb9kOz#J\xcc\xb5\\b\xba\xc8\xdc\xcd\xddq\xf8S\x81[\x7f\xbf\x80\xb2k\xb5H\xd0\xc2\xb1\x92\x0f\xd2Z\xae\x83>\x95\x96\xae\x16~NeU\x8cL\x05\xf5\x84\xe8++\xd8\xbc{{=&/Pcg\x0bO[\xd1\xd8:\x91C\xa3Z\xd5\x8d,\x03_\x13zc\x0d\xfd\x92\xeb\xdff\xb8\xb4jz\xc6\xea\x0e}\xc6\xfbz?\xd6\xdb;\xe86\xe2 \xf0\x01\xff\xa9h\x86\x9b\x14\x9a\xd6L\xdc\x82=\xd35\xa9\x99\x8e\xa5\xae\x07Hf\x87\x98\"a\x0b\x12D\xcc0\xb6\xfe\x0e\xc9\x8f\x96\xe1pN\xf10\xfb\x95SDp\x0f\x94\x04\x061\xbc\x03\xa7x\xe0\x14\x0f\x14v\x81S<\xa0-\xe1\x138\xc5\x83\xad\xa4 \x83\x90\xca\x1f8\xdf\x0d\x9c\xe2\xe1\xd48\xc5C\x027\x10f\x06by\x81\x08V \x9a\x13\x88c\x048\xc5C\x1c\x07\xc0)\x1e\x06\xe3\x14\x0f\xcabS<\x9c#\xb7\xc3X\x8bQ\x17\xbf|\x10\x9f]U\x99\xc9fJh.\xd4@.s\x9dKQ\xd2\xd4\xe7.\x07U\x1a\x17\xa46\xb3\x95\x1b\x94\x99\xfb\xc1\xc7\xaf4_\xc2\x9b\n\x83\xe5\xf1\x8b\xb5\xbe\xbfoE\xd7\x7f\x04N\xab\x0b\xc6\x82z+\xba\xcb\x99\xaf\xfe\xa1\x92Wh\x1b\x9du_\xec\xda\xa0\xb7\x1c\xcb\x13\x16'\xca\xfa\xb9\xfc8[\x1aP\x8dAWV\xc7\xbdh\xca\x95\xfe\x1b>\xf3\xab\xa2\xea\xdb#\xd7f\xb6\xa2\xd2\x8e?V\xc3r\xd8l\x12|\x83\xa5\xedD\xdb\x8e.\x94\x0bHG\x0c\xae~\x10\x91\xfe\x9c\x16\x7ff\xe7\xce\xd4\x7f\x8b{w\xe5\xbe\xa4z\x17\x8f\xd5\x1a\xae\x0b\n\x90K\xa5f\x0fV\x8a\xefq7\x93P\xe5\xc2\x88\xf9\xa7\x9b{\xd8\x89\xfbN\xad\xc1\x95\x9d\x1c\x94\xf5\xd4\x15Wy\xe5\x03\"/\xd2\xfb\xf9\xee\xb3\xdc\xde\xbf8\x1c\xbe\xa2\x17M\xb4a<\xdf\xe7K\xe3\x8c\xde\xa3\xd8Ck\x1ch\xa0\xffGY\xad\xcbU\xd1\x891\xdf\x85\xf4 \x1e\xa8:\x92Y\x9c\xda'~\xea\xceB^e\x10\xdcfw\x0c\xe5[c\x1d\xb8\x7f\x81\x18T\xcflp\xf9x\xd3\xce\xee\xd6\xac 8\x97oD\xab\x84v|\xbc\xc6\xe7\xb1\x7f\xe4.\xd5\xd3Tn\xaa\xba\x99\xad\xa2\xeb\xa7qz \xe9\x99\xa57\xf6\xae\xaew\xc2\x80\xad,7\xb0\x11\x8f\xa2\x99\x9c\xea\xbby\xea\xe8\xf9\x8d+\x0d4\xa6\x11\xf6'aRN\x7f\x0d!9\x91\xbaY\x8bf\xbe\x8c\xf6\xbe\xacV\xc8r\xb5\xfb\xba\xbdh\xd7\x0f\xf0\xbb\xcb?\xfd1\xab7r%%\xba\xd2)L\xae~\x9ee\x8c\xf9\xe7\x95\xa4\xd8\x8c\x1f\xe4\x1f<\x89\x8c\xfe_W\"\xa31\x8f\x11!\x83\x91\xb9S\xcdP\x9e\x99YC%9R\x98\x1d!\xb9\x91:\xe2\x97\x92\xdb\xc8\x85s$\x11y\x9d\x97\xca\x08\n\x12\x94\x15\xfd\xec<\x06\x8d\xc6Ha1\xfc\xccE\x12q\x81\x97p\x14\x18\xe4-2\xd0\x16\x89\xac\x85S\xa1\xa6\x91\x16\x8b8\x8b$\xca\x02\ng@IGc,R\x08\x0b\x9f\xeeI\xe2+2\xd3\x15$\xb6\"#Y\x11\xe4*2Q\x15K\x98\x8ah\xa2\"\x03O\x91\x99\xa6\x08\xb0\x14\xd9I\x8a\xf3p\x14\xd9)\n:C\x91FPx\x9c\x1e\xe2'\xb2\xd1\x134v\xc2\xb2x\xe3\x1e_3s\x13!jb!3\xe1!&\x82\xd3\x93 -A\x9b\xbf\xe4%%B\x9cD\xb8Ni\x8c\x84'n(DHd\xe4#\x16\xd0\x11v\xa6\xc9\xc7F\xe4%#\xfc\\D\x0e*\x82$\xeb\x07\x88\x082\x0f\xe1\x96.\xe3Y\x08wYV\x99 \x0b\x05\x11\xe3,*\x01\x11\xf6 \x99~H`\x1f\xec\x92J&\xee\x81D=\x84\x99\x07\n\xf1\xe0\xf5b,\xed@e\x1d\\\xa4C\x06\xce!\x82rHg\x1c<$\x01\x95o\xc8L7xjd\xed\xa9I\\\x83^\x08\xb6\x94\xe7\xa0\x1a23\x0dn\xa2!\x95g\xc0\x15\x01[\xc5\xed4C^\x96\xc1\xf5\xe1\x17\xe4\x18\\B\xab\x8ba\xc8K0\xa4\xf3\x0b\x0eV!\x89T\x08R qL\x02\x99H\x88\xe4\x11bh\x04'\x8b\xe0\xae\x0dU\x13\xa6q\x08\x91\x14B\x04\x83`mZ^\xfe\xc0\xf5P,`\x0f\xac\xeb\x14N\xf2 \x8d;\xf01\x06\xf9 \x83\xe5=\x89L\x17P\xd9\x82\xd3W\xa4/.:$:tFf\xfa\x013\x00\xb9\x9ch)\xce\x94\x1ff?\x1f\x9a\xba\xbe\x8f\x8a\xe1\x0c|\xc4\xaaf\xedE\xf3\xb0\x13\xb2\xf8~\xf0\x14\x9f\xca\xb6\x13\xd5j~\x02\x1e\xe0\xcc\x96\xaf\nS\xa9\xc8\x8bN\xf5\xba\xbe\xf9\xb2\xe4\xa7\xa2\x85FtM)l\xeb<]\xba\x0cA\xda\x8f\x80\xfc\xb9\x1f\x0e\x8f\xef\x96\xed>@\xdaw su\xa3w\x19\x08\xaf#\xc4\xef,\xe0\xde\x9c\"\xb8\xa7@\xe4n\x02\xb3]\x03lO\xado\x1f\x81|;\x08\x04\xf7\x0e\xc8\xb6k\x00q\xbf\x80\xc4\x9d\x02\x1c\x83Ux\x8f\x00\xc7\xee\x00\xae\x01\xd5\x92* W\xa6\x80y\xed8o\x804\xce\x1b\xc0y\x03F\xe3\xbc\x01\x9c7`\xb4\x14U\xdbY\x18\xe7\x0d8\xb5L\n\xf72\x8d;A\xe5\xce\xa2sgW\xba\x83Z\xf7\x19\xd4\xees\xe9\xddgP\xbcc4\xefT\xd5\xdb;\x86\x87t\xef\x8c\xca7U\xfb\x8eT\xbf\xb3\xeb\xdfa\x05|\xb1\x06\xcey\x03\x825K\xd3\xc4\xadEq\xde\x80\x14u<\xa4\x8f\xe7Q\xc8\x89\xb2oP%\x8f\xd0\xc9\x83\xf1\xdb\x91Z9\xe7\x0d\xe0\xbc\x01\x14\x15=\xe8\xd5X%\x9d\xae\xa5s\xde\x80\x99eV\xd69o\x80i\xa9:\xbb\xb50\xce\x1b\x10\xa1\xba/\xd1\xdd\xad\xc5q\xde\x00\xeb $\xa5\x9e\xf3\x06\xe4\xd3\xed9o\xc0bU?O\x9f#+\xfbtm\xff\x97\x947`\xa6k;\xeb2\x03\x10\x06i\xfa\xe4\xb4\xc55\x0b\x06@\xcf\xb4\xed\xe8*\x9f\x9cv\xfe*\xef\x8aN\xb4]\xa0\xc2\xf3\xb0w\xf3\x1c\xa8\x1fE\xd34\xf8\xb1mh\xc6\xf2U\xd5\x0f7:@\xb5C\xa5\xa4?sRX\xdba\xe8\xf3\xe4oS\xe92o\xb4sL|\xef\xf1\xb0i\x8a\xb5X\xdf\xaa'BF\xf9\xba\xa3t?\xaa\xe3\xaf\xf1\xf0Y|n5\xfc\x0c7?]\xc3N*\xd1x\xa45\xd0\xd6R\xd8w\xba\xc1\xcf4\xda\xd6\xea/\x8e\xb9%)\x99):&\xc7\xdcr\xccm\x94:\xc91\xb7\x1csk\xb3\xccJ$\xc7\xdcZ\x8d\xae?\xa6\xa9\x8f\x1e\xa7\x87\xb4\xc7l\xca#Mw\xb4|\xf8p\xcc-Ai\xa4\xcd_\xf2\xaa\x8c!\x8d1\\\xa74}\x91cn\x17\xaa\x8a\x1cs\xeb\x1c\x899\xe6\xf6\xc4\x12tC\x8e\xb9\xb5\x18U'\xe4\x98\xdb\xdc\xca \xc7\xdc\xa6i\x81\x1cs\x1b\xaf\xfe\xa5k\x7f\x1cs\xcb1\xb7\x86\xe5\xd5\xee8\xe6\x96\xa0\xce-\xefIde\x8e\xaa\xcb9cn\xcd\x8c\x9d\xd6\xd8Z\xbd\x9d\xaec\xe7j_\x8em\x15(f\xd1\x19\xd2\x83\xcel\n\xc8\x18j6\xbe\x9f9\xd6l\xf6+\xc7\x9aQV\x12\xa4e\xd6g\xa8\nM\x9aF\xe3,\x8cc\xcd8\xd6l\xb4\x145\xc7Y\x18\xc7\x9a\x9dZ&eg\x99\xb6\x93\xa0\xeed\xd1w\xb2+\xd9u\x9f\xb0\xf2\xb3X\xfb\xe1X\xb3`\xcd\xd2\xb4 kQ\x1ck\x96\xa2\n\x85t\xa1<\xca\x10Q\xee\x08\xaaC\x11\xfaP0\xe6'R#\xe2X3\x8e5\xa3\xa8GA\xaf\xc6*Ht\x0d\x89c\xcdf\x96YQ\xe2X3\xd3R\xf5%ka\x1ck\x16\xa16-\xd1\x9b\xac\xc5q\xac\x99\xf5\x04\x92B\xc5\xb1f\xf9\xf4*\x8e5[\xacf\xe5\xe9sdE\x8b\xaei\x8d\xaaVZ\xc8\xcdlo=B\xd4\x8dcc\xbcY\xe0\xcd,\xfa\xca\x1a{c|\xbc^^^]^^u\xfb\xc3E\xfbTl6\xa2\xb9\xd8\x88\xcaVs\x0cK\xbaT\x07]\xfe\xbd\xad+{\xc5T\xc9\xbf\x80 \x1e\xde;ob4\x95(E#\xe28\x1e\x8e\xe3\x89R~8\x8e\x87\xe3xl\x96Y\xe5\xe18\x1e\xab\xd1\xb5\x9d4e\xc7\xe3\xf4\x90\xae\x93M\xd5\xa1i:\x96I%\xc7\xf1\x10T\x1c\xda\xfc%\xaf\x82\x13\xd2o\xc2uJ\xd3n8\x8eg\xa1b\xc3q<\xce\x91\x98\xe3xN,A\x93\xe18\x1e\x8bQ5\x18\x8e\xe3\xc9\xad\xbap\x1cO\x9a\xce\xc2q<\xf1\xcaJ\xba\xae\xc2q<\x1c\xc7cX^]\x84\xe3x\x08\xca\xc7\xf2\x9eDV=\xa8\x9a\x873\x8e\xe7\x9a\xb0M^\xc6P\x9eL[H9\x94\x15\x0e\xe8Q\xc6\x01=\x1c\xd03\x1a\x07\xf4p@\xcfh)\xb2\x8e\xb30\x0e\xe89\xb5L\x12\xcf2\x91'A\xe6\xc9\"\xf4d\x97z\x82b\xcf\x19\xe4\x9es >g\x90|bD\x9fT\xd9\xc7;\x86\x87\x84\x9f\x8c\xd2\x0fU\xfc\x89\x94\x7f\xb2\x0b@a h\xb1\x08\xc4\x01=\xc1\x9a\xa5\x89B\xd6\xa28\xa0'E\x1e\n Dy$\"\xa2\xee\x11\x94\x89\"\x84\xa2``E\xa4X\xc4\x01=\x1c\xd0C\x91\x91\x82^\x8d\x95\x92\xe8b\x12\x07\xf4\xcc,\xb3\xb4\xc4\x01=\xa6\xa5\nM\xd6\xc28\xa0'BvZ\"h_\xa4\xba\xea\xae\xf4\xddKM67\xe5\xa3\xa8\x86\xba\xf8\xbb\xb0uq\xebu_\x81~6\xdc\x97\xf6N\x95\xf3\x17y\x9d\xb2\x85\xb2Z5\xb8\xa2\xd8\xbf\xa6:\x10E\xff\xa2\x99\xef\xa3\xa6\xedi[\xee\x04<\x08q\xe8\x9bk9@\x97\xff\x1a\xef\xb0\\\xc2*\xf6b\x10\x88\xa0\xad\xf7\xc2\x08^,v\x9b\xba)\xbb\xed\xbe\x85\xbd\xe5\xb1\x06Xm\xeb\xba\x9f\xd3[?\x07\xfbwng\xfa\xad\xac`%\x1a\x948Wu\xb5V\n\x8d\xb8\xdc\\\xc2\xb6hp\xe1\xf8\xa1\xb5\xbdEp \xbd\xd8\x17\xabmYY\xa7\xe4\xf3\x85s\xb8\xc1\xdb\xd3\nX\x15\xadh_L\xbc\xabZ_\xdaV\xd6L\x7f\xb75vK\xdb\xf5T\x83\xfa\xa9mY\x1d\x85\x96\x0d\xf6uUvRs\xdc}\x96e\x15m_-\xd1\xf7\x12\xf9I\xe5\xb9-\xf2\xb6\xdb\xae\xb7\x11]+\xfd9\xf9QuM;\xa8q\xf2\x8eIg4N_\x8c#\x9e1\x9c\xc0t\xc6\xecW\xa63(\x03\xa04\xa63\x98\xce\xb0\x1b\xd3\x19hLg\x9c\x1a\xd3\x19Lg\xb8\x8c\xe9\x0c\xa63\xd0\x98\xce`:\x83\xe9\x0c\xa63\xa41\x9d\xc1t\x06\xd3\x19Lg\xb8\x8c\xe9\x0c\xa63\x98\xce`:\xc3\xb0\x1cJ9\xd3\x19hLg\xfcZ\xe8\x8cC\xd1\x14{\xd1\x89f\xc2h\xf4\xcf\x99\xdeO\xf0\xb64\xc7\xed\xc9w\xa4\xd6x\x87\x18d\x9bv?\x88MF)e\xf5\xc3|M\xbc\x11\xff8\x96\x8dX\xff\x00]s4\xef\x9e\xe5\xcb<\x1a)\x19\x05/7?b\xc3E4\xa3\xa0R\xc1\x0e\xbf\xf7\xaf\nXm\x8b\xb2\xb2S!\xbfD\x1e\xe4\x99hU\xe5z\xc1\x12\xcd\xb4w\x8e`\xc9\xd8C\xedo\xc4\xa1\xa7g\xbb\xb6|2N#\xf7\xcb\xd6\xa8\x97c\x9dJ\xaek:\xfc\xe3\xbf+\xd2\x9c\xf7FZ\xe0\x0eI\x0b\xdd'i\xa3c}G\x91\xfc\xa7\x0e\x94J\xb8T\x0b\xb5+\\Y\x0e\xa6v/\x8a\xee\xd8\xf8\xebK\xf1\x9e\xb4\x80\x0f\xa5\xc56\xcb\xb3$(mW\xb6\xa8'\xe9\xb6\x0c\x8b\xe7;1\xe6~\x18V\xfb\x02\x85\x11\xbcFY\x16\x94\xf67u+P\xf5Q\xd3bu{\xfa\xe9\x99\x92np\x91\xb6\xab=\xe5TbSw\xfd#1\x0c\xac\x8f\xa2)\xfbY\xa3O\xb6\x04-\xb8\xe9'z[T\xebv[V\x9dh\x0eE\xd3}\xa6\xdd\x13\xe3\x049\x8fH{U\x90\xc6r\xcaH\x1e|\x01\x02\xad;@\xd4\x98\x02s\x18D\xbd6k\xad\xaf\xcf\xbd\xe4-\xebt\xee\x89P\x9foP\x01\x82\x87'\xcc\xecWw\xd0\xe4\xb9\xb59\xca\xdfZkWs(3\xda$\x1aIq\xd4\xa1\x11\xf7\xe5'\x9f\x87fO\xc1~_vH\xcb\x0c\xccm_\xc08H\xcd\xef\xbfg\xc1\x8f\xf2$\x00\xf1i\xe8\xedA|\xbe\x0d\xb7\x07\xe8w\x1dh\x12\"\x90\xde]\xbd\xfd/\xf4\xd9[\xe9\xb2\xb2\x1d|Xt[\xe5H\xf9\n\xeb]\xf9 >{V\xe5A\xad\x8a\xad\xea\xaa\xed\x9a#r}\x0f\xe23\xdc7\xf5\x1eO\x7f[`\x0e\xbb\xb5.\x0b?\xee\xbd\xc5\xdd (\x0e\x07Q\xad\xbf\xef\xcf\xbd\xfcW\xf1\xb9\xff\xff\x17\xfe:\xcc\xcf\xc0F\xbc\xc0\xca_^\xfe\xd6\xbeD\xbd\x16\xbb\xe2\xf3\xedA4e\xbdd\xf6N\xe0\x87g\xbd\x17/\x0c\xf2\xc2)\xa37e\x14\xb8\xd1O\xffz\xfc\xa4\x1cf`\xe6\xb7\xb5z\x90\x87%Bki\xc6\x94\xc2\xfa\xbb\xf1\x1d/\xd7BN\x8e\x9a\xd4Y\xcfU\xdb\xaen\xc4z\xfe}\x8c\x0f\xb0\xed\x99=\x14\x9b\xb2\xc2Oe\xcb\x07\xa7\xec\xf8\xe3!\xc3\xa7\xef\xe9\xa1\xe9\x80|%>u\xb7\x0f\xc2\xf1\xaa\x0ev\x96\xe0C\xec\xa2y\xb5\xe9\xebk~\xb7\xff\xa7\x02b\x8aV\xcd;\xdf\x16\x1b\xf1N\xe6x\xbb\x94\xbf;\n\xc3\x9dd\xb0\x98\xbe\xd8\xdeu\x02\xf6u\xdb\x81@\xcc\x04\xd9\x14\xcb\xa9]\xdd\x15\xa9\x1b\xaa\x10\x9e\x95\xd0\x08\x86\x97\xc7\xf6\xe3?d\xa4B\xdfm4\xe0d\xd04.6\xd4t\x11\xbe*n\xb10\xd7\x10\xf3T\xb4\xd0\x8a\xee\x05\x94]\xab\xb9\xad\x16\x8e\x95|\x9c\xd6\x12ey*-]-\xfc\xa4\xca\xaa\x18Tv=Y\xf9,+\xd8\xbc{{=\x82\xdajY\xb1\x85\xa7\xadhl\x9d\xc8\x81\x05\xae\xeaF\x96\x81\x08\xa5\xce\x01\xa8\x17)\xb7E+?\xc0L\xcfX\xdd\xa1\xcfx_\xef\xc7z{\xc5\xb6F\x1c\x04\x0eo?\x15\xcdp\x93\x02+\xf7S\xb7`\xcft\xad\xdd\xcfu\xc3@T\x8d\xec\xf4w\xbbz\xf5\xe0\x8a\xa2X0>p\x00M\xb0\xba\x1c@33\x0e\xa0\xf9\xaa\x014\xfe\xee%\xc3h\xb2\x04\xd0LCg\xe65\xe4D\xa7\x1cJ\x13\xfc\xd4\x08\x0f\x85\xd28\x94\x86Ci\xec\xc6\xa14h\x1cJsj\x1cJ\xc3\xa14.\xe3P\x1a\x0e\xa5A\xe3P\x1a\x0e\xa5\xe1P\x1a\x0e\xa5\x91\xc6\xa14\x1cJ\xc3\xa14\x1cJ\xe32\x0e\xa5\xe1P\x1a\x0e\xa5\xe1P\x1a\xc3r\x845p(\x0d\x1a\x87\xd2|\x0b\xa14#\xd1r\xf9 \xcc\xb7\xe0\xe4crF\x8c(D\xa4PCh#\xbacSI\x9c\xc0T\xd6/\x07\x9e\x04\x97\x826\xb35\x13\xd4\xca%V\xeccD.\xe1M\x85\n3~+\xd6\xf7\xf7\xad\xe8\xfa\xcf\xafiu\xc1X\xcan\xc5$%gY)]\xde\xf8\xdb\x18\xd4s_\xec\xda@T\x0f\xb8\x16\x06,N\x94\xf5s\xf9q\xf6Q\xae\x1a\x83\xae\xac\x8e{\xd1\x94+\xfd7|\xda4\xf6\x8d\xab\"[Qi\xc7\x1f\xaba!j6\xfd\xbc\xc1\xd2v\xa2mG\x17\xca\xa5\x9b#\xaa\x9c\x0f\"\xd2\x9f\xd3\xe2\xcf\xec\xdc\x99\xc4oq\xef\xae\xdc\x97T\xef\xe2\xb1ZIu\xe1l\xa5DU\x8d 4\x9b\x12f\x8c\xa5b\xc8G\x0b5g9*k\xa9\xe1-\xb7\xc3\\\x8e5\x16-\xd8K\x1b\xfe\xb2\xfb\x06$\x17\x01\xc7\xd4\xf9N\xbf\xbf\xad=\xa4[c\xfcj/\xe9\xd6),\xbe[\x15a<5\xe3\xc8S\x88\x9a[\xf7\x8c\xae;n\xed\x8e[\x97bW\\w\xdc\xba%\xee\xb8\xf5W=n-{\xe9\xbau\xd0\xbafs\xc78s]7\xe1\xefO_\xe6;\x952\x91;\xee\xdc\xfa\xd5\x1dw61\x84\\z\x85E\xb8\xe3\xce&\xc1\x10\"\xfc\xc0:\x14\xa2O \x84;\xeev\x84\x8f1\xddcI\xf6\xd8P=R\xa2G^\x1aS\xc0\xdd\x8c\xe4\xb1\xa4x,\x08\x1ea\xd5\xc6%wd\x93b\x00\xb1#\xc4)\xa4\xb4N?RGE\xe0\x8cO\xdf\x0c\x1fI\xc6\xd4\x8d)q\xd3]\"\x8b\xf3\x9dz:Ar\x8d\xa8\xe2&P\xe5>\xb4y\xb0\xf4\xe4\x958\xcbf\xb1ZJ\xdcINw\x92\xb3\x14\xbb\xe2\xba\x93\x9c-q'9\xbf\x89\x93\x9c\x0d\x82v\x94\xc3\x9cM\x8a\xd9\x9d\xe7\xe4\xe2\xces\xba\xf3\x9c\x95\xb8\xf3\x9c\xee\"inJ\x9b[\x12\xe7\xa3S\xe7z\xf2|0}\xee\xcesjK\xd6\x8fN\x17\xaar\xe79\xfb\x10\xeb:j}\x1cr\xdd\x901\xd6\x12\xec\x16\x14\xbb\xf6\\\x9d%\xcd\xee\xces\xba\xf3\x9c&\x04\xbc\xb6UmIxs\x1a\xde\x9d\xe7l\xc9\xc8\xa4\xbc;\xcfY\x97\xbe\x14\xbdP\x99;\xcfiA\xd8\x0f\xa1\xec\x85\xea\xdcyNa\x02#\x92\xdf\x9d\xe7\x1c\x8f\xf2w\xe79\x07\x07\x04\x8c3\xe6\x8c\x83\x02\xcc\xc3\x02\xbe\x9d\xf3\x9cUiZ$\xf7\x98YH\xc9\xe4N\xde\x1d\x02w[yK\xcf\xb1z\xf1j\x9d\x11\xbc{\xb1?\xc3\x04\xed\xefVd\x97\xe8\x94)K\xc6\xd0n\xba>$\xc8#\x8c\x1d\xa3\x8e\xc2}o\x89J\xa4\xaau>\xd4/\xf7\xc37\xf80\xa8\x8f\xa7A4\x8fo\x08\xc7\xc6\xcb#y\x1e\xd7\n_R\x044x FD\xc4\x86r\xb1\xc8D~\x12\x04\x114]\xa2t\xb9\xcdL8;\xd8;\x87Y\x16\x84\xbe,\xceE\x92\xde\xb1\xda\xad_\x1d\xabm\x86\x8a\x82c\xb5\x1d\xab-\xfd\xd2\xb1\xdaL\x1c\xab\xdd\x15\xc7j;V[&\x8e\xd5v\xac6\x13\xc7j;V\xdb\xb1\xda\x8e\xd5\xe6\xe2Xm\xc7j;V\xdb\xb1\xda2q\xac\xb6c\xb5\x1d\xab\xedX\xed\x9a\x8c\xc10:V\x9b\x89c\xb5\xff*\xac\xb6\x15{\xba\xfbG\xce\xdd)n\xeb\xcdy\xd4jW\xde\xa0S\xf3\xaf;$j\xfe\xf7\x9b\xcf\xa1\xca\x08\x9d^\xa7\xd1\x95L\xa8\x16\x91\xd0\xb2\xa0J\x0e\xd4X\xbd\x04\xee\xd0\xb0\x9fC\xd5\xabxO\x8dn%\xe7\xa9HKkd\xc5\xf1I*\xe1\xf8\xd3\xd6\xaf\x8e?5\xc3\xdf\xc0\xf1\xa7\x8e?\x95~\xe9\xf8S&\x8e?\xed\x8a\xe3O\x1d\x7f*\x13\xc7\x9f:\xfe\x94\x89\xe3O\x1d\x7f\xea\xf8S\xc7\x9frq\xfc\xa9\xe3O\x1d\x7f\xea\xf8S\x998\xfe\xd4\xf1\xa7\x8e?u\xfciM\xc6\xe0\xb2\x1c\x7f\xca\xc4\xf1\xa7\x7f\x15\xfeT}*\x98\xd1{5\x1d7\xe2\x0cl\xc5\xe2\xee\x16\xdcl\xaa\xe3s\x8b\x0f\xf3_\xdb\x8f\xa4r%/6\xdf\x06\x95\xcb\x8b{\x93\x8e\xc4\"\xdfOp*\xf9q\x1cp\xa5\xe8\xa5\x13!\x89\xcdES\x0b0\xa8 \xe8hm.\x065\x02\x13\x8a\x9b\x8b\xe6\xb0/\xd8g\xa8\xc0\xa8\xa8\x7f7\xc3R.\x10\xcc3\xcbo\xb6V\xe0\\ThQR@\xfe*\x88\xe09<\x80\x7f\xdeY\xc4\x8b\x98\xd9\xb5\x89\x87RB3\xbb\x0b\xcf\x95:n/\x02\xb2\xccf\xcc0zq\xba\x8a\xd3\xfc\x7f\xee\xa7\xfe\xf9.\xdfN\x1cy\xde\x11\x1f\x86\xb7\xff%\xf7\x0fXScu\xdf\x1aU+\xe2w\xb1/\xe3K\x8e\x0e\x07\x11{\xc4yS@\xf4\xf7\xe0\xf7,e\xdb\x03%\x1d\x04,V !\x81\xf82\xf8J\xeep$\xfar\x89#\xc8\xd8}\xe5\xbfSW\x8b\xa0\x05\xdc\xbe\x7f\x1b\xd0*\x88bH\xf0\x9c\xc1\xa4$VgXx\xa6\x10\x10\xe5>\xdchJ\x81\xe1\xb4\xa22\x0bc\xef\\\xf9\x1a@%\x86\xa3\x10\x9a\xec\xbdb\x9aq1\xeb^*/ha\xabk\xfe\x19\xadH\xffT\x92\x7f,,\xe8R\xc1}\x15\x92\x8f:\x15\xe5L\x85\\M\x83\xc8\xc7W[h\x19\x8d\x05\xe2b\xde4gW'\xb4\xa0\x8c\x95\x83U\x1c\xc5\xecF}\xf0\xe2,\xa2;\xcb\xda\xe3\x0b\xac\xc5\xb4\xfa\xee \x8fd(\x04\x92\xa0(E\xf9%#4\x07FS-P\xca\x1e<\xc8V\xd8\x97\x0d\xd6\xbc\xec\xf5e\x02R\x12'\xd4\xf6\xc0oG\x1f\xdeV=\x16D)A\xdd7?@\xdb\x02u\xe5\xbf\x05d\x99\xdb\x1b\xba\xfc\xf1\xe1\x91\xaf\x83p\xe7\x1co\xee\xaa\x1c\xd1F1\x9b\x8es\xf9\xbd\x8b\xc3i\xfd\xea\xe2p\xccx\x1cpq8.\x0eG\xfa\xa5\x8b\xc3a\xe2\xe2p\xba\xe2\xe2p\\\x1c\x8eL\\\x1c\x8e\x8b\xc3a\xe2\xe2p\\\x1c\x8e\x8b\xc3qq8\\\\\x1c\x8e\x8b\xc3qq8.\x0eG&.\x0e\xc7\xc5\xe1\xb88\x1c\x17\x87S\x931b\"\\\x1c\x0e\x13\x17\x87\xe3\xe2pr\xb9\xee8\x1c\xce_\xed\xfe\x91S^\xda\x1b\x15L\"pN\xa2yA\\\xdf\xd8\xf0\x1bi\xa8\x8b\x12\xb9Pb\x169\xe9X\x90\x87A\x93K\xcc\xd7\xb1V\xfb\x15\xa2\x0e\x8b\x91\xd6\x0f\xb4l\xd5\xb7|\xb7\x83\"\xc0E\xabZ\xc7\x81\x0f\x0bg\x19#\x90E\x19\xc2\xa2+\xbe]\xd8\x8a.4\xc52(\xa5B\x90$\xfa\x14\xe1(\xca\xa1\x0c\xda\xe1\x0c\xc6\xc1'\xda\x11\x02\xc6\x01'yg\x18\xc7\x91\xe8\xe3D\xf4\x11\"V\xc5\xd7D\x85\xe8\x06\x13\x8c\x1a 2$\x06dh\xf4\x87\xac\xa6l\xed\xaak}\x9f\xaf,EG\x16+\x0dw\xee\xe6\xb1h7\xc7\x94\xec6\xca\xf6\xfe\xf4e\xbeW,\xbfu\xe1\x1e\xad_]\xb8\x87\x19]\x00.\xdc\xc3\x85{H\xbft\xe1\x1eL\\\xb8GW\\\xb8\x87\x0b\xf7\x90\x89\x0b\xf7p\xe1\x1eL\\\xb8\x87\x0b\xf7p\xe1\x1e.\xdc\x83\x8b\x0b\xf7p\xe1\x1e.\xdc\xc3\x85{\xc8\xc4\x85{\xb8p\x0f\x17\xee\xe1\xc2=j2\x06\xf5\xee\xc2=\x98\xb8p\x8f\xef!\xdc#'\xfek:\x1a\xbbH\xb30\x01\xda\x1d\x9f\xf3\xe8\x8dBF\x8c\x1a\xa9m\xc6\x07\xc4\x8c\xec\xa6+\x94\x90!\x91#\x1f\xa8\x82\x82Y\xfb@\x10\xb9\xf1\xd7\xb7\xb8W\x1arqt\xa1 \xb9\xa3\x0b\x1d]\xe8\xe8\xc2B\x1c]\xe8\xe8\xc2\x8e8\xba\xd0\xd1\x85mqt\xa1P\x1c](\x14S/\xc9\xd1\x85\xa58\xba\xb0.\x8e.tt\xa1@\x1c](\xfc\xc6\xd1\x85\x8e.\x94\x88\xa3\x0b\x1d]\xe8\xe8BG\x17\xd6d\x0c\xea\xc6\xd1\x85L\x1c]\xe8\xe8BC\xba\xb0\x96z;,aU^\xc6JN}DP+\xd36]Y\xe5:Ga\xda/[)9\xb9B\x19Y\x96\xd4d\xde*\xf7I|?\xf0\x90\x9c\x90\xacm\xc9\x99\xa6\x93\x88\xe0\xc4[\xa2 :\xf2\xd8\x89G\xba\xc7*n\x85N0\xc9\x92\xdc\xd4\x07\xe5\x87\x80\xf8\x97\x0d\xf8y\x11\\\xe0\x08\xe2\xcb\x08'U\x0fE\x80\xf2\x1f\xbc8\x8a0?\x10\xb9FA\x91\xacA\x84\xaaJ\x92\x7f\x7fc)\xd1\xaaq\xa6y\xe3L\xedO\xd9+Op\xaaZ\xa7<\xd1ID\xc79[\xda\xe87\xfc8gGe\xd1\xed\xefO_\x96\x89\x1cI\xdb\xfa\xd5\x91\xb4[\xc07U\xab\x03\xb3)5U#\x18\xda\xeaZ\x92\xc2*u/'\x19\x94\x85\xd4h'x\x11\xa4\x84\x1b\xbd\xd2v\xe3\xc8K6k\x82\xfd\xfb)\xc6\xfe\xee\x1f\xebl6=\xc7\x1b\xc5\x85$\xefk\x86\xb9L\x0d45\xdb%!\xe0\xf9\xe0\x04\xfb\x10\xc5>f\xbb\xcel\x16\x06\x1e\x9c\xe3\xa2V\x0d\xeb{\\h\xf9\x80K\x9a\xe4\xc6\x9a\xdb\xb2\xcaSZe\xab\xa9\xe8bQ*qf\xee\x06\x99\xb9|\xd2\xd7\x94m\xc7\x8d\xb53M\xf5?\xde?\xc7\x1b3\x93t\x8e7\x15wXW\x91'jX\x9e\xf7\xb5\xdf\x7f*\x1b\xe0\xc6\xda\x9e\xb2\x11\xea\xe2\x0cN#\x8138\x92\xdf\xaf\xdb\xe0\xd8Mvr\xd5s\x8a\xd7\xee\xbb)\xb6j\x8d)~v\xe5&\xb6\x9b\xd8\xedDnb\x83Ij\xbb\x89\x1d\xb1K\xef\xca\xab\xf4j\xd3\xb81\nO\"\xae4\x88#@\xb38#\x05\x96\x16\xf1q\x19U\xcf\x88\x96\xd3\x9fqZe[\xd5\xf0\xb7n\x9av\xf1>`/\xc1\x04\xde\x1f\x7f8\xcb\xff\x9aG\xad5\xbeBUt\xda\xee\xefi\xe9-X[\x8c_\xe8\x8e'%\x88d\xe9\xf8\x13\xaaV\xc8i\x1e\x19\xd6\xedZ\xf5\x90\x9aeA\xe8O\x9bmT\x17\xcd\x90\xf0\xc2\x00G\x9c\xa3\xe8\x97>^\xad\x02\xc9\xf5q\x9a\xa4\x0b\xc9\xc3\xa5\x9ad\xbd\x8b\xca\x03D\xfbWU\xdaA\x9a\xb4\xadYT\x17u\xd7\xf6\xbcnr\x15G\xc19\xee{\x97dN\x8a>\xe3A^\x88\xc4\xc9}\xdab\x82o\x8b\x90*\xf9\xc8\x05m\x15\xd9\x17\x07k\xd9O\x06\xe5\x85z\x99\x1fK>aw\xed\x8d\x95\xc9\xfe\x9e\xe4\x1b\xb4\x1e\xad\"\xa2,\"L.\xe3DR\x0d\xad\xfaR\xf5\x02\x05\xe8~{]\xa5\xe2-Q\x14a\xd1B \xfa\x0c\xc2 %8b@u\xaf\xf4\xf5\xf6}z0\xd9\x7f\xf4d\xf2\xf0\xd1d\xff\xd9\xc1\xa3G\x0f\x1f\xd9N\xc6\x86\x01?\xc3\x91\x8f\x93U\x10\x91\"\xd1\xc0\xf2\xedM\xf6\x1fND\x1d\xc4\xe2J\x0dJ\xb4\x8a\x13\x0cAm\xd1\x8c\xa3\xa2h\xe2\x88>\x8d\xcfa2\xc9F\xba)\xb3l\x84\x9d8\xda\x91|\x95\xac=9aQ\x88]n\xc4[?\xdb\xdd\xdd\x9b\xb0\xff\xc7\xc6D5\xd3w\x1e\xaa\x96\xef\xd7\x88E\x87\x17\xc7\xff8\x80Y.\xe7\xbb\xe9&\xf2\x82h\xc1\x93\x8b\xb6)\x1f\xf8\x07, \x8b\xedT8&\xb5\x91V\xb1\x1e\x8d\xd2\xbc\xc1\x04\x02\xee\xea\xb0\x82\x04i-\x16;\xdd\x94!\xcfy\x882\xfd\xa6\x18\x11\xdb\xf7qj5\xdd\x86\xaf\xd3h\xea\xbap]\xb38\x0e1\x8a\x0c\xbb\xf5\x03?\xec\xc1\xa8\xb2\x08\x85|gB;\x94Y\xfat7D\x04\xa7\x8a\xa3\x94\xb4#\x08;\xfdD\xbfk\xdc\xc5j\xd4\xab\xdb\xec\x8d3q\xb9`\xbc\xae\xe07\xff\xae\xb0\xfc\xe8e\xaf;\xb2\x97\x18\xf9j\xbfc\x90 \xe3\x94\xa8\xea!z;\xa3\xc2o\x9a^f3\xe1j\x08\xacB&w#G\xd9j&\x89(\x87\xc6\xba&\xf9\x84\x042\x87\x14\xac\xeb\xb4s\xb0\xb7\xff\xf8\xfe\xfe\xc1\xfd\x07{g{\x0f\x9f=|\xf0l\xef\xe9\xe4\xe0\xc9\xe3\x1f\xf6\xf6\x9f\xed\xed\xc9,v\x94\xad\xa6\xe4Jk\xadM+*\xf3\x8fX4\x14\x1f{\xfa^\xd4\xbc\xb1\xae\x1f.T\x96(]\xaa~7l^\xa8\xd7\xee\xf8\xf8\xe1\xeb\x07\x87{\x87{\x0f\x0e_><8|\xb8\xb7\xff\xe8\xe0\xe9\x8b\x87\x8f\x8e\xf7^\xbdz\xf9\xe0\xc9\xeb\xa3W\x8f\x1e\xee\xbf\xdeS=.\xbeF Q\x96\xdb\xb0\x11\xc0\xb8!\xa8\x90\x98 )\xeeP\xfb\xcc\xa4\xaf\x0b\xd1\xf6y!\xfa\x9e\x00\x9b\xde\x80\x11{\x84\xb5\xcb\x98\xe3\xff\xc1C\xd5\x04\xe0;\xe6\xa9\xbaA\x8c\x1ab\xac\x06\xf0\x11A7\xa9<\xe5\xce3\xbdI\xa5\x8a\xf0\x15\x99\xde\xcc\xa2y\xd4\xbf\x88\xd2\xecF\x15\n\xad\xd77\xa98l\xee\xe5'QoR\xb9\xf0E\xe0\xe3\xc8\xc37\xa9LtM\x89S\x9c\x8c\xb4\x8dkx\xb73\xec-\x1f\x1c\x00\x8e\xbc8\x8f\xafm\x85k6\xa5\xe5\xad\xed\xfbx}\xfe\xf0\xd0\xcb\xd0\xef\x8b\xf3/\x18=\xfa\xb2^\x9c\x7f~\xf0\x88D\xbf_\xfa_.\x0e\xd1\xdc{\xe0\x1f\xc8` %h\x00\xa6\xab\xae\xd9\x8a\xab\x81\x9c\xc0\xb4\xf1\xc0\x08z\x02\x1d\xfc\x04\xbd\xf2\x13e\xa7v\xe0\xb4-\xa8o\xbd\x9b4\x11\xd4\x8e\x9a\xb6\xb2`Ta0s\xce\x8c\x9c\x10\xd0u_!z\x87\xcc\xa8\xa5a\x84\xd6\x96L\x15\xb7\x13\xad\xc4\xedDs\xb1\xab\xa8\xdb\x89\xba\x9dh[\xf4=\x016\xbd\x01#\xf6\x88\xdb\x89\xba\x9d\xa8A\xa9\xdcN\xd4\xaePn'jT.\xb7\x13u;Q\xddjw\xa3v\xa2\xd2\x85\x92\xab\x17\x07\xf6\x81*\xb8\x0f\xf4e+f\xc9\xf5\xe7\\[\xb3\xb7\xb6\xb3q>\xb1\xf3\x89\xa5b\xdc\x1b0b\x8f\xf0;\xfeV\x81\x1e\x87\x91\xcf:\xd0\xcd<0\xefS\xd3\x1e-\xfd3\xfd\xd2\xc5\xc5\xb8u+\xcd\x9a\x88\x1e.\xc6z\xeb\x9bw\xe9\x06\x9d\x8b\x0e\x8e\xe0\xb2\x8d\x9c\x938\x8b\x14\xd6\x89\xcb62&\xc1\n\xa7\x04\xad4+[\xcf\xcc{\x81%\\X~Fe2\xb2\x1ae\x99dP\x14\x17\xfdB\xc1\xc5pV\x81\xc5\xcc\x02c\x83e\xd5\x190\xa2\xd1\xaa\xc4`1\xe1b\xd1P`\xd9X`\xbe\xbcp\xb1\x18.\x85\x18/5\\L\xfb\x0f\xec\xfb\x10F\xef\xc74XD\x88d\x89\xe143*iYB\xe5k\xe2\\\x1egg/\x1f\x1f\xfe=<\x8f>\xff\xd7o\xc7\x97\x8b\xc7\xbfF\x8f\xde>y\xb7z\xfc:\xfb\xc7\xde\xf1\xbb\xc3\xd9\xef\x17\xd9\xef\x8f\x92\xcb\x1f\xf7Wg\x1f\xff\x96\xbc\xcf\xde\xbe\xfd\xc7\xc5\xd1\xd1\xe7\xb3\xa7\xbf\xfe\xfe\xcb\xe2t\xef\xfd\xd1\xee\xd9\xab\xf5\xa3l\xf7\xe9\xc1\xd1\xe7\xe4\x1f\xf3\xff\xfc\xdb\x87\xf5\x8b\xbf?\xaf\x1e\xe5\x1f\x16k\xf7\x07_\x0d\x14'\xcc\xdf`\x02(\x7f\xe4\x1d\xd1\x7fz8a\xb7\x99\xf3\x94\xf9\xe7c\x07\xde\x89\x0f\xc8\n\x0e\xc2\xf23\xb3\x8d\xb2@\xbb\x11\xd8\xa3\xf5\xddo4gh;S\xe8\xea~\x07\x84\xef\x15\x1fXk\xcb\xf2&\xd9N\xe1\\\xb4\xa0\xc1N\xc6\x14\xc8p\x1cM!\x8e\xa3\xd1\x1b\xf81\x17 \x03\x17\xc2\xa8\x11\xc0\xb8!\xc0\xdca0\xea\xebB\xb4}^\x88\xbe'\xc0\xa67`\xc4\x1eq\x1c\x8d\xe3h\x0cJ\xe58\x1a\xbbB9\x8e\xc6\xa8\\\x8e\xa3q\x1c\x8dn\xb5\xbbQ\x1c\x8d\x8b\x16,E[Y0\xaa0\x989gFN\x08\xe8\xba\xaf\x10\xbdCf\xd4\xd20Bk\xbbhA\xb7\x13\xcd\xc5\xedD\xb7?\xdd\xea\xe2v\xa2\x121\xee\x0d\x18\xb1G\xdcN\xd4\xedD\x0dJ\xe5v\xa2v\x85r;Q\xa3r\xb9\x9d\xa8\xdb\x89\xeaV\xbb\x1b\xb5\x13u\xd1\x82\xa2\xf4\x83v6\xce'v>\xb1T\x8c{\x03F\xec\x11\x17-\xd8\x16\x17-\xf852v\xd1\x82\x0d\xd1/\x14\\\x0cg\x15X\xcc,06XV\x9d\x01#\x1a\xadJ\x0c\x16\x13.\x16\x0d\x05\x96\x8d\x05\xe6\xcb\x0b\x17\x8b\xe1R\x88\xf1R\xc3\xc5\xb4\xff\xc0\xbe\x0fa\xf4~\xfc\xebG\x0b\x1e\xaa\xa2\xd3N\"\xfe:x+\x1am\xe7p\xefP\x9e\xe8=\xfe\x9c\x95\xf7\xdd\xe5I\xc1\x8fq\x1a\xed\xd4T\xf4\x8bR\xac\xa0\x0fL\xac/\x06,\x13C\x8a\xb7\x15\xa7\xd8+\x00\xb0Q0@\xdd\xdb\x0c\xb7\x1c\x0e([\xd3\x15\x83\xba\xea\x08Y\xb2\xeb\xbd\x8a]\xe3i\x19L\xcf\xfe\x00A\x0b\x1e\xb8@!-\xeb\xfe\xa3\xab\x0d^\xad\xf1j\xbd~zp\xf5t\xb9\xf9\xf2\xe5\xe9e\xb2\x98?=L\x1e\xfd\xfet\xf9p~py\x18\x1d\x84B\x9d\xf9\x93/\x03jcbd\xca\xe2zq\x94\xae\xb3\xd9\xfe\x17\xefw?\xc3\xeb\xcf{\x17\xd9\xc1\x97\xc5\xf9\xe2\xfc\xf0)\x9e\xa3\xbd\xe8\xf3\xe5\x97\xc8G\xd1\xe7\x87\xabC\xef\xf1\x1a=\xc8\x0e\xd1\xfa\xcb\xe1\xe2 y\xbaH\xd7\x9f\x17\x8f\x16O\xbd\xf4\xc1\xf9S/\x9b\x0b\xf3\xba\x88I\x10-\xa6\xeb\xf8RF\xcc\xd9Uig\x7fO\xe6\x19\x95\xa0\xd1: \xe2$ \xa34a+\xbfQL\x97i\x9cu\xcb4\xb8`\xeb\xa1\xc1\xd6\x1d[[\x0b\xbav\xb6\x96\x89\xb3\xb551\xa8\x8d\xb3\xb5\xdb\xb3\xb5\xe3\xbb\xa7/\x8a\xd3\x16\xb9g\x1a\xc5\x04\xd0\x05\nB4\x0b+;\xd4\xd3\xc8\x93+j\xdaQ\xba\xec\x1av\x1f\xaf\x13\xec!\xd22y-{\x7fv\x05\xb3\x0d\xdb#\xe5\xbfwl{\xf7E\xa5\x96\xf7M\x92\x00_`@\xf5\xc7\x97 K\x83h\x01\x01I\x99\xee\xe29\xa1-\xae U\x0d:E<\xbbj\xffl\xfbz]m1x\xf1\xf2\xc5\xf1\xc1\xde\xf1\x93W\x87\x8f\x1e?|\xf2\xe2\xe9\xa3\xa3\xe3\x87O\x9e:z\xb9\xf7\xe8\xf8\xe1\xfe\xe1\x83\x87\x87O\xf7^\xbfx\xf5\xf2\xe8\xf8\xe0\xe1\xd1\xe3\x83\x17\x0f^\xbe|\xfc\xe8\xc5\xad\xa2\x04\xb6k\xc9\x15\xbf\xdc\x9d\xf0\xb7o.\x02j\xbbZ\xd5\x1ai\xe1\x10\xef\x98\x95\xb3Jm\x92^\xed=y\xb8\xff\xe0\xc9\xab\xa7\xfb\x0f\x9e>}\xf0t\xff\xe9\xc1\xd3\x87\xaf_\x1f\xbe\xd8;z\xba\xbf\xf7\xf8\xf5\xfe\xeb\x83\x97\xaf\x8e\xf7^=x|\xf4\xe4\xf1\xcb\xe3\xbdG\x87\x87\xc7\x07\xfb\x8f_\xbex\xfd\xe0\xc5\xe1\xd3\xee\x13\x0e\xea%M\x82%\x94%|\xf0\xe8I\xebG\"\x006\x95K\x96z\xc1Z\xa5\x82{\xeaA\xb3v\x82\x0e7\xd6\x18\xb59V\xd2D\x83\x98\x9a\x05\xd2\x02\xe2Jc\x8bVq\x16i#\xcan\x16\xa6\xee\xe3(^\xa9?1\xaa{!\xe5\xf0K :\x17?\xd5_\x88\xae\xb9\xb8\xf4\xc9{\xe7\xa1pi]\xe1U\xbf\xd7\x944h\x95\xb6K\xf4\x9da\x80\x87\x195\x84\x89\xcb\x04\xf0\xf6\xf8\xe3\xcb\x93\xbf\xbf\xda;\x98\xa7\xafN\x13\xf4\xe4-\x99\xbdO7/\xf6/\x1f\xcf>\x9f\xbd}\xf8\xf0\xb7l\xff\xc1\x93/\x7f\x9f\xbd\xf6~\xbb:\xfc\xe1\xe5\xeb\xcd\xd1\xc9\x02?\xfc\xed\x97\xd3\xf9O'\xd9\xc5\x97\x17\xffx\xf4\xf4\xed\xe6\xf3\x8f\xe9\xe7WO>\xec\x9f\\\x06\xc7\xeb\x1f\x82\x8f\xb3G\xbf~\xf0I\xb8^\xfc\xd7sI\xd6\x1a\x8f\xd0\xa0!\xc1\xa81\xa1P\xa5\x1c/F\xed \xf56%\xe5\xf6o\xf74\x9b\xfd\x847\x1f\xb0\xb7>x\xf8\xe8\\\x16\xfc \xba\xa7\xe8\xb8\xd8\x97\xe4\xe8\xe2\xcb\xde\xe1\xafK\xf2\xd3\xdf\x96O\x8e^\xbe\xfc\xf5Kx\xf2\x04\x9d\xc5\xe9\x9b\xcd^p\xfe\xfa?\x7f:\xf9\xf5\xc7\xbf?\xf8\xfd\xa7\xb7I\x9c\xfe(3V\xf9\xab\xf9|\x19\xd1\xf5\x89\xe9\xb0\x93S>)\xfe\x9c\xc9I~\x18!'\x1e\xff3\xea\x12\x17\xc6\xca%NZ\xd6\x05J\xa7\x97(\"\xa2\xa7\xb2\x0d\x927i\xac=\xc9N\x81f\x92\xa5cd\xf1\xe8\xc1\xc3CQ\x0e\xba\x07\xf3\x06-\xf1\xcain2\xc9\x95\xa6\xc4\xa0\x01\xc0dv\n\xb5\xa871'\xc5\xee%\xdf\xcd\x1c\xd761<\x91~\xf7b\xb0;\xa9^_\xc2(\xf1\x96\xa2'a[{\xab\xcegtK\x84/pD\xd2Q7.\xed\x87\xfc\xf9\xce%\x7f\x95t\xc2\xf3\xae\xfd,\xe9\xa8F\xe1[\xcbY}\x07\xc6+\x00i\xe6-\x01\xa5\xb0\xd3\xcc\xe7y\x8a#\x7f\x07.\x97\x81\xb7\xcc-D\nA\xf3u3\xba\xd5\x98\xc7a\x18_\xd2\xbd\x1c\x8e\xfcu\x1cD\xe4\x19\xec\xbc9>c\xbd\xf6\x7f\x89tN\xe8\x0e\x17\x03Y\xa2\xe6 \xc6\xc8[\xc2*\xf6\xb3\x10\x83\x1f{\xd9\x8a\x15\x8f\xee\x10\xe3\xcb\xa2\xb4\x13\x08\xe3\xf8\x9c\xbd\xe4{u5\xcd\xff\xb6\xf2!\x88ha\x1a\xea\xbc8\xe1{(\x9f\x16\x8e\xc3\x1d\xf7S\xff|\xd7\x8f\xbdt7]c\x0f\xfc \xc1\x1e\x89\x1bm^\xdb\xc9\xd1\xd2Z\xf5P\xca\xd6\xb9\xf1z\x88\x0ef\xbe\xa9\xe3\x9ay\xcb6>\x97\xb5\xf2\xbf5\xcb\xf4<\x0f\x14\xd4\xc1R{\x8f\xd6WW\x17;\xe2\xf6\xb0\xd2a\xd4pk\xb4\xc0\xb2v9E\x0b\xdc\xdd\xab\xf1\x16\xed>\xee+@c\xd5Y\x87\xc1*\x90B\xc4o\xd1U\xb0\xcaVy\xf6\x10\xcf\xb9]\x865N\xdae\x1e\xad@\xe4j\xb2\n\xa2\x0e\xd6+\xd3\xdf(o\xc36\xc5\x11Gv\xf3\xa1\x93\xa3J\x8b\x04#B\xeb\x92\x00\xfe\x9c\xa1\x10\xc82H\xb9\x19\x17\x97\xfa\xe0\xa1q\xb1\xd1\xd5\xd6\x8a\x1d\xe24\xa5\xa6\"2/\xf8\x13\xb6\xf0\xe7\xbfY\xc3(Ga\x08\xe4*\x85\x15\"\xde\x92Z\x8e\x06\x9e\xc2-N-\xedH\x88\n?m\xe1\x89\xf7u\\\x9f\x0e\xb6h\xfb\xd2\xa3*\xa3\x83^\xea\xf1\x0eP) \x05\xe9\xa7\x91M\xe9\xbe\xca\x1e\xb4\x83E\x84\x11\xbd*\xf7m[\xec\x86*>\xc5\xc0W3\xd9\xd9\x8e\x8c\xbfqQ\x07\xe6){\x85\x8b\x02\x91\xe3\"\xc2\xe5\xf2_\xc6\xf1\x94\xa5H\x1d\x17\x9d3\xcfE\x8bL\x19u\xa3\x02\xc1\xe3bPe0\xac6\xe80=.F\xa5\x06K\xc0J\xd7\x9a`\xd6\xa2`\xde\"\\L\xdb\x85\x8b\x11\xfa\xc7\xc5\xb8\x95\n\xb1@\x02\xb9\x985/\x97\xfe\xa5\x91`\x83\\\xe4\x08!\x17\xa3l\x0d\xb0<\xe3N5\xedN\xa3<\xc1\xb4\x06\\L,n!_ Q\xe4\xa2\xc5\x15\xb9\x1869X4;\x14j\xb5_Y\xb5<\x0cF\x1d\xb9h\xd1\x8dB\xfa\x96m\x04\x1c\x92\x8b)\x1a\xc9\xc5\xa2\xb8\x06\xc8$\x17=>\xc9e\xcc\xbce\x88%\x17\x83\xf1j2N\xa5\x18&\x17\xa3\xfa\xe8\xf0L.F\xaa\xcc\xb0M.j\x84\x93\x8b}\xa62\xb4\x93\x8b\x1c\xf3\xcc\x7f7Z\xde\x0d\x96v\x83\xee\xe5b\xd2\xc9\\\x0c\x8c\xa0q\x83\x81\xb9\xfd\x10j4\x8b0I9(\xd9\xda\x8f\xf6\xc3W\x01\xd6qZ\xce&\x1b\x04\xf5E\x12#\xdfC)\x0bZ\x0b\x16\x11\xf6\x81\\\xdd\x12d-\xfc\x10H\x0c\x08\xe6Y\x18\xd6\xdf\xbd\xf7\xe2(\xcdVfH\xea\x18\xa0\xeb,\xf6E\xa8FYbYk\xb6\x16\xf7\xb3%\xa6UZe)\x81\x19\xae\xaa\xf9\x81\xf8gW\x13\xf6s\x9a\xad\xd7qB\xb0\x0f\xb3\xb29V\xb1\x8fS\x08\"/\xcc\xfc\xa6\xaf\xf7\xe96\x83Cn\x7f\xba\x93`\x92%\x11\xa09\xc1 \xcd\x83\x9fA\xbb{\x0f>\xddN7\x91W\xff\x02'\xf0r\x89\xbd\xf3\xb3\xab\xbb\x80j\xe8%W\x88\x9a\x9f'\x0caA\x97hswR\xfbR\x1a\xfb2\x16\xd6\xe1\xa2)\\4EK\x8c\xf6S\x06u/\xc4b\x0f\xa5k..}\xf2v\xd1\x14.\x9aB\xbb\xc71jO\x18\xbc\xaf1\xf0H\xecK2\xc2.\xc6t\xffbT8\xed\xbe\xc1d\xb72<'\xe9\x02J\x85.\xf8\xdd\xcc\x95I4e*\xcb\xc2\xfc\x85\xd6\xcfE}\x05\xa3\xb4\xcas\x8e\xc2T\x96i/\xac[\xdazU\xbb\xed\xb7\xdbm\x8e\xf1t\x91\xd0\xbd\x92\x94b\x90\xa8\xed\x13\xbc\xdf&5{\xde\xa0\"nCk\xd2\xe9\xec\xaar \x83h\x91\xefok_\x8f\xe4zy\xd47\x9c\x8e\xec\x80y\xc2\x11\x0d\xa5\xd2. X\x88\x8fD\xb7\xfe\x83\xae\xbfu\xfb[]\xb6\xbaM\xb9.}\x10\xcd\xfb-\xe0}\xa3\xa2\\8\x91\x99\x05\x94\x0dN\xe1Ap6\xf8\xd8\xff\x95\xf4\x14\xfd?\xaa\xb1\x07\x0f+\x9a\xb9\xfdA>\xbc`\x7fO\xfc\x0d\x1bB\xec\xffZu\xf7}\xd8\x11/l\x82\x1f|\x1c\x06\x178q\xb3\xdd\xcdv&\xdf\xcfl\x17]4\xf9W\x9f\xedC\x8e\xe4\xf4\xbc\x98B}\xca\xa6=\xa1\xfaA\x93\xec\xfc\x1a\xf7\xe5x\xda:R9B\x08\xe81S\xdd:\x9aFb\x16\xf4s\xb4\n\xa2\x18.\x83\x04\xc3\xce!\xb1\xc8\x87\x04\x17^GM\xcb\xd6\xd7a\x9d#\xca\xde\x9e\x14\xf8D\xf7\xdb\xbe\x10;\x00BX=\xabFQ\xf2\xe6\xb5FY\xa1\x90\xfbs\xb5\xca\x0f\xb8]\x817+O;\xb2w\xfa\n\x0b\xd4k\xb3f\x97m9\xe6\xe5\xf84\xd8'\xd5ni\x88|\xf0\xe2 J\xf9\xe6$\x8e\xaa\xc9Db@QL\x96%\xcf\xa0\x98N\xd7\xbd1\xf9k\xcd<\xe5v+\xef\x0eY\xadX\xec3[7\x19\xf6@\xae\x18\x15F\xeb\xd3\xbc\xcfb\xdb\x1b0\xba\xad\x9d&\xf8\xf3\xa8\x1e\x19\x1d\x93C\xd7\xba\xbcC\x16O\xd12yt\xb5\\\x92\x87\xc9\xea\xf3\x05\x8e\x1e\x1d<\x89\xce\xc3\xab0\xfb\xb2\xb9x\xf2\xe5\xe9\xef\x9f\x7f\xf7V\x9ePUkv\xf2\xb6\xce\x07Q\x9c\xc0OxC+\xcf\xba\x8bN\x9a\x05\x8ep\x82H\x0b\x0c\x10h\xee\x8d)\xd7j\xf7\x01G\x04.\x02\x04/Y5\xe1\xd7x\x83\x168\x81\xff\xef\xff\xfd\x7f\xfeoAJ\xf5\x83\xa6\xe6\xd9\xf2\xdc\xee\xff\x98\xcd\x04\xdf}S\x9eP'T\x0e\x06l\x1e\xeb\x8a\xd5W$!\xff\xf7,%+\xac\xdej\x1ae\xb4?9\x10\xe52\xc72\xa7\xddmc\x05b\x9b\x9f\x84'J\x83U\x16\"\xa2\x1c\x97\xb38\x0e1\x12Y\x84\x9a~q\xd8(( \xc8\xa6\x1c\xa7$\xa0\xbe:\x1dm\x0c\xd1mA\x93\x1e\x8a\xa2\x98\x9d\xa6\xc9R\xec\xb7/\x1f\xaa\xc4\x8b\xa3\xdf\xb3\x88'bw\x87\x14\xe6m\x1aG\xe1\xe6n+\x95\xac\x9dUCn[W;(\x87\x98Aw\x1b\x0c-\xf5\xb0\xb2\xc9\xa36\x9c\xc4~\xf8\x81\xfar\xda\x12\x0c\xe4X`\xd1I\x0e\x0d\xe4\xd2\xd7\xa0;4\xb0!\xd7bF\x1d\x1a\xe8\xd0@\x87\x06\xc25\xfa\xc0\xc6h`q@:\xe1\x8f>U\xa9\x06\x00\x1a\xb5[\xaa,\x90\xbf3\x9a\x8a\x1d\xfa\x0d7\x10\xcfs\x0c\x83\xdfT\xc8w9y\x8aq0@kl\xec\xddO\xb5_FZy\x95\xf7y\xf5Z{\xbf;\xdfJ7T\xa5\xa1\xb2\xd5P\xdd\xfd\x83U>\x88\xd8 \xc91\xeb.R%\xc0\xa98\x9eSO}KX\x88\x97q\x10\x89?\x93\x808\xc2\xc6\xa8aR\x19\"\xf1\x8a\xfd0`\x86!H\x83h\x11b6\xd5D\xc5\xbb\xd93\xad\xd5:fvNV\xd5\xde\xc3\x08ed)\x80p\xad\xcd_\x9b\xf8\xa8a~\xe5]\x8f*+x\x94\x95\xe3\xd2\xa2o\xb6\x8a\xc7\xd6>\xbbf\xf8\xd5z\xc8\x1d\x89[\x9dvH\xa7\xe5aD\xfb/t\xae\x14\x96P\xe2\x10\x0dp\x8aGpk\x94\xefIi\xd2\xb2U^\x95\xd2\xed\xc6\x1ab\x9b\x9f\x04\xd4Zg\xb30\xf0n\xf6\xc6a\x98\xf3\xdf\xc3\x95\xb6\xf0yq\xcd\xe7\xa5]\x1aD\x8b]\x1f\x87x\xc1\x9ey\xa3\x0eE\xfe\xef#\xdfO\xfe,~\n\xe2b\xac[y\x175U\xb7\x84E{\xc1I\xaf#\xcf;*H\x8c9\xbc*\xd2\x95iz\xfa\x1a\xf6\x06\xd8r\xd9Ca\x08\xb5\x16\xe2\xbc%\xaa*\x9e\xa7i\xafx\x1fx\xbb\xe7\x7f\xb1X\xf4\xacW\x07C\x87d\xdbDx\xde\x1c\xaaW\xe9\x95\x93\xc2\xe8]{\xa5\x86t\x89\x12\xf1\x8cW&\xcb\xc3 \xe4\xe9\xbe\xc7]\x8b\x91\xbbZvz\xc7\xa7\xea\xe7\xae6c \xaa\xa0\x81l\xb6\nHm\x12\x16\x93\xca.\x8e\xb8\x93\xbeS\xae\xdc(a@Q\xde\xb0\xd4T\x85\xc1\xe7,(\xa2\x16\xd8-g\xe5P5\x9axV>\x97\xa3\xb5\x1d\xad\x9d\xcb\x08\xbe\xef\xf5Az\x8e\xd6\xee\x88\xdb\x01\xc8?\xd3\xed\x00\xbesZ\xdb\xc0\x9bR6t\xa3n\xd7y\x89\x92\x81\x13\xb7\xed\x82\x0fz\xb4Y\x1dO\xd0k\xf1ULQ\xedd\xd1NK=_l\xa2\xbd6 \xd5\xdb\x98\xed\x84]nk\xc7c\xe5x\xb90\x83FR\xb7\xac5\xc46?\x17f\xe0\xc2\x0c\x9a\xe2\xc2\x0cJ\xb9\xae=\xc9p<\x83\xeeK+\xd8\xa0\x08Ch\xc2\x0b;\x87{\xfbr\xd5?\xe1\x0d\xacQ\x9a^\xc6\x89\x0fA\n\x97Il\x8c\xe9JY=;Lw\xf7\x8f\xd2+c\xbf\xf1\xfc\xfe\xda\x18\xaf\xa26\x8d\xc6P\xd6\xe6\xdd\x9az\xe8\xfc\xc3\xbcJ]\xe4gP\x95z\xf8\xaa\x16\xe8\xf5\xdf3\x9clx\x80J\x96$8\xaaCh0\xc3\xe4\x12\xe3\xa8\x8ed\xb3\x03\x1d]t\xeb\xc6#\xdbV~\xde\xb0\xad\xd5\xb0\xfd\x8d\x0c\xa0V$\x91\x82\xd3\x03\\\x80okG2\xc8x\x97\xfd5\x12Bmbz\xb3h\xc6\xdf\xa9\x9d:bMG\xac\x95m\xe5(6&7\x9db\x0b\xa2\x80\x04(\x9cj93I\xfa\xbe\xe9\xbc\x04\xb3^\x9c\xca\xdf\xa1\xe4\xe9eW\xbf\xae\x82hJ\x82\x95\"\xe7\xce\x1d\x97\xfd\xacN\x95\xbe\x97\x81QS`(\x12\xce\x98b\x06\x8c\xcd\x87}dy5\xd90\xfa\x17\xec\xe7KY1S\x1d!\xe6\x081G\x889BL\xbc\x08\x16\xe2\x90C\xf9g\x8e\x10s\x84\xd8\x96\n\xde\x03d\xa8\xc4\x11b\x8e\x10\xab\x89\xca\xc4;BL nYs\x84\x98#\xc4D\xe2\x08\xb1R\xaekO2\x0e\xa6*B \xbe%jL\x88\xcf:\x92\xacQ\x9b\xef\x8d$\x93c\xd1\x8e'\xeb\xb3q\x19\xb6\xed\xc1\x11I\x84\x8b\xcf\x00\xf7\xb3\xf7!\x0e\x03\xc8\x1bL\xcc\xf0\xd0\xf4\x06\x108\x98\xe8Q!\xe1 S0`\xb9\xd8\x1a\x05\x97`c~\xed3\x9d\xe4eF-\x83}K\x98\xbd\xb5\xb1n\x02+\x82V\x94\x17\xa5\x9a-\xf3$?8/+\xcf\xaf(\xac\x95\xe7C\xe2\xfd\xaa0\xb6\xa3\x14\x89\xc4\x16\x05z\x95\x92\x01\x05\xb20\xdb\x05\x81\xd8\x18\x04pg\x1e\x84\x04'0\xdb\xf0J\xf1\x01\x91\x16h\xd2\x8d\xb7\xd0\x86\x04\xe2\xff\x99\xe0\xf93\xd8\xf9?v}\x8bq66Mgz%\xebH\x9e\x81c\xe4\x1c#\x97\xcb7\xb5\xfbu\x8c\\G\x1ct)\xff\xcc1r\x7fuF.M\xbc\xa2\xf0_\xa5\xfc=\x80\x8dJ\xaaj\xf8)\xf9z}0\xa8\x0e=\xe2a\x1b\xe6p\xef\xdbb\xe9\xdc\xbd\xb9\xda%\xa3\xefr\xec\xf8\xbb\x86\\\xcb\"\xe8\xf8;\xc7\xdf9\xfe\x0e\xaeq\x073\x0e\x7fW\x87$$\xbc\xdd\xd6@\xa3\xd2k\xf9.\x10#\x0b<\xb3\xa2\xa1\xaa&\x02\xb2D\xa4A<\x05i\x11\x7f]\xa2\xb2\x7f\x15LSa\xd4T\xe6,\xce\xe9\xc7\xde'\x1a\xfay\xc1\xe3\xfa\xc1\xdcC\xc5Q\x9a\xa5\xd3u6\x93\x18~M5t\xebXYN\x9a\xd7:\x9b\xed\x7f\xf1~\xf73\xbc\xfe\xbcw\x91\x1d|Y\x9c/\xce\x0f\x9f\xe29\xda\x8b>_~\x89|\x14}~\xb8:\xf4\x1e\xaf\xd1\x83\xec\x10\xad\xbf\x1c.\x0e\x92\xa7\x8bt\xfdy\xf1h\xf1\xd4K\x1f\x9c?\xf5\xb2y'\x9f\xdfQ\x10b!\xe4\xa4\xde\x0f\xa7\x04\x91L\xd1w\xb2S\x1d$>\xc7\xe2\x0b:5\xfb\x9eb\xef\xda\xf3\xca\xb8\xfa\x90\x91\xa6\xed\xcd8\xae\xe2(8\x97\xbfs\xae]0\x02\x1fG$ \xd2\xc7\xeb\xb5\n.\xf1,\x0dd\xc8\x86A\xfa\x14{Y\x12\x90\xcd\xd4\x8b#\x82\xbc\xfe\\\xa5\x8f \nB\x8ds.IO\x0d\xa5\xf6\xb8\x90~6\x89\x96t\xa6:\x88H\x82\xa6\xe4j\xca\x1c\x08qw\xa9Go-\x97\xbd\xce\x8fU\x94\xcav\xeaP\xe9W\x1f\x8b2\xd0\xbe\xff\xf4\xf1\xde\xfd\xbd\xfd\xfb{\xfbg{{\xcf\xd8\xff\xffG7C/^\xad\x824\xdd\xce\x94I\xa4@\x9c\xb6\x1e\xa0k)*+t5\xbd\x8e<\xbc%\x8a\x16x\xebYek\x1f\x11l\x1f\x06\xd0\x14\xd3\x11\xd0\xd3W\xad\xd2_\x83;\xea\xe2\xbf\x1a\xb51\x8f\xffj\xf1\xff\xe3\xd6\xa6\x87We\xefs\xd7\"T\xfe\x12\x0e\xb7\x15J\xa8\xf7\x9f\x8d\x1d!S\xdfyx\x1fW\xa2\xf7\x9b\x95\xc5W\xfb\xcc\xdb\xf7\x98e\xfe\xb2\xca[\x96\xf9\xca*_C\xe6'+\x1aG\xef#+\x13+\xfcc\xe5R\xaf^\xe8\x95\x9e\xb1f\xc5R{\xc5\x9a\xc4J\x8fX\x93\xd6\xcc\x1b\xd6(Qz\xc2\x8a\xb4J/\xd8lnt\x9d\x08C\xffW\xed\xfdJ}_\xbd\xe7\xdb\xb7\xdc:\x9f\xd7P\xaf\x89\xbf\xab\xf2v\x07L\x00\xb9c\xa8\xf5\xd74N\xa1\xda\xc3\x1dC\xbb\xd6\xb7\x1d\x9a\x89\xd6\xab\xb5\xc8`+\x1e\xedV\xc3a\xdb\xd0\xaa\x85#T[\xfd\x8a\xb8\xca\xaa\x98\x1e\x8a|\xfaO\x9cN\xe0\xc5\x06|\x18Y6\xc7b\xff\x1agq\xe9N\xa2\xfe\xd2e~\xc7\\\xfe\x1a\xec_\xfb\xd4\xad\xde34^\xe2M\xbd\xc2\xe1=\\\x89\xde#T\x16\xdf\xc1\xb1\xd2\xc6\xd1{\x7f\xca\xc4\x0e\x8e-\xc5\xcc\xcf\xd3(qplM\xfa\x96[\xe7\xcd\x19\xea5\xf1\xe4\x1c\x1c\xdb\x10#\xafmh&Z\x7f\xcd\"\x831\xe0\xd8k@^\xdb\xbe\xde\xa0\xa7u\xbf\x1f\xbfO\xf1\xcc\xee7\xe7\xeem\x17948u\xa7\x99W\xd5\xb9\xb1\xbe\x1az\xc2O\xda\xab\xbf{\xef\xa3\xff\xea\xcf\xec~\x0d\xc35\xce#\x06\xdf\x9f S>h\xe0\x8cYCn\x8213\xb8\xddi\x98U\x93\xa43\xb8\xcdI\xed\xafo\xebA\x83\xad\x19\x9bu\x1c\x87\xcf\xfaL\xab\xfa\x03Ft\xb7\x8d\xa9q\xa0\x7f\xcc5\x03\xd5\xfc\xad\xcc(+4(\x8c\xe3\x14O{\xa0\x05\x9c\x82\xee\x932\x88\xe6!\x1f\x98!J\x89\xfd\xc6\xacLo\x95\x8am\x14X\x86\xd5Fm\x9a\xe0\x14\xdb\xed6\xd7 \xbe\x98\xe6u\xb7\x82I\x86\x0e\xed\xd6\x8a8l\x80\xf31]\xa8\xe4\xa7%\xd3\xbf\xe4\xf8\xae\x06\x1b\xbbf\x82\xefH\x0d\xbb\xac\xada\x85\xae\xfa\xa6\x0c\xec\x06\xeb\"\xa6\xeb\x05\x1beV\xe9\x06\xc0\x1dt\xbf\xde\x8e\xef\xe9&\x15/\x15\x0c\x1d\x92\xb8\xc8\xa3N\x86\x10\xa5K:\x1b\xd2`\x11\xd1Z\x06\xd1<\xee7!\xa8\x06F\x01PK\xbf\x08.p\xd4:\x19yKP\xb0NBa\x12\x8b)\xd2\x99ky\x05\x0bM\x96\xb1L\xaaX\x9f\xd3*\xce\xa7\xf6\x89\xacW%n\xf0\xd8\xf1?o5\xb1?#\x95\xf4\xe1\xad\xe2\xdb\xedX\xa4\xed\xfa\xb0)A \xd1:qR\xe7\xd3\xc7W\xd3x>\x17.t\x9a\xc4\x9c\xac\x98f\x11 B\xeb\xc4t\x8d\xc5\xfet\x16\xc6\xdey\xaa\x0f\x06h[\x08KOr\x9d\xcd\xc2\xc0\x83s\xbca\xf7\x13\xc5Q\xe9\xc2u\xe6\xe7p\xf3\xa3\xdc\xd4\xd2F\xe3\xbamn\xf3\xfb\xc8\xd2\x01\xca\xdb\xbc\xb3\x8fk\x94\xf0\x03\x8e\xfc\xc6\x05L$\x86L\xa3`;\x17\xd4\xf42`\x92a#\xda\xb3\xcb\xb7\n\xea\xfd\xbf\xc2.tp\x84q6\xf2\xc0\xaa\xd6\xa8\xc3\xceN\xa7\xb4\xbc\x9b_4/a\x14\xdc\xcb(-\xfdHn\xd1V.X\x14^\x07\x04\n+Y\x88\xc1\xf58R\xe4Kx=\x10\xe8*\x02\xda\xca\x80\xea\xaa \xd0\x97\x0b\xb4\x90\x9e\xbe]@\xd76`RO.\xfa\xdar\xd1^#\x04fu/\xc4\x00\xf9,D\xd7\\\\\xfa\xe4-\xb9_\xaf\xf7\x9d\x99F\x17\x02\x0d\x1az\x9a\x1c@_F.\xba\xe8W._\xe1\xfa!*\xca+\x88\xc0\xa4!\xc1\xa81\xa1P\xa5\x1c/F\xed \xf56\xb5\xbe\x96\x08\xf4W\x13A\xaf\x92\x0c\xbc\xa2\x08\x0c\xaf)\x02\xd3\xc2i#\xedtW\x16\xc1\x80\x9c\xac\xdd|wk\x9ev\x1a\xb9[\xf3\xd4s\xd1p\x99\xd3/q\xb6\xf9\xb9[\xf3\xaeu\xd9r\xb7\xe6\x99\xe6>pI2Y\x8e\xb4\x05\xd2,C_\xef\xd6\xbc\xce\xbe\x16\xe2\xa4\xdc\x94U\xba\x06\xe2\x14c\x92\x06\xb9\xce\xda\x96>O\xa2\x83\x00\xcc\xc1\x04\xebu\xdb\x10\x9e\xb3[\x9d\xd1\xd5\x14_\x04>\x1d\x17Sd\xc9\x15P\x93Wa^\x97A\xe4\xc7\x97V\nVA4\xcd\x95\xacq\xd2G\x83\x1fg\xb3\x103%SN\x07L\xfd,\xe9\xc1\x97\xc5\x97\x11 Vx\x90\x126j\xa6\xf3\x84\xc3T\xd3Z\xd9\x86\xa9\xe1E3\xd4\xd1s\x16-\xe2\x8b]:L\xe2\x14\x15Q\xb86\x80^\xf9\xbe\xfd\xa9\x96,\xa7?\xe2\x94L\xcb\xccf\x7fM\x90\xcd\xbdb\xa2\xab\x9d{\xc5D\x94\xd8B\xbb{\xc5\xa4#n+*\xffL\x87\xb2~\xe7\xaf\x98\x90\x80\x84\xa6\xae\n\x97zml\xd25\xd6Y\xab\x94\x8dM\xe3\x95\x88\x9c\x8eS\xf9y\x1f\x89\xcaF\xa7\xf4;)\xd8\xef\xf9\x95\"\xe0\xd2\xc7\xeb8\x0d\xa4\xf1]\xbd\xc0\xb6\xef.\x82\xdczS\xe6\xc0T\xedh\xe8\xbb\x96:0\xb5!\xd7\xb2\x8290\xd5\x81\xa9\x0eL\x85k\xdc~X\x83\xa9\x85\xdf3\xc6\x0b#V )\xbfL\xa2\x04\x89n \xf2i}\xd2\xb8u\x82\xf9\x8e\x1d\xdan\x7f\x82y\x80C\xbf\xba\x87f\x83S~\xa3L\x14w/\xa1\xa9\x07\xcb\xdd\xfe\xc4\x9c\xd8O\xb7\xf3p@\xd9\x8d\xcb\xb4K\x1dQ\xd6\x11G\x949\xa2\xccD\xbb#\xca:\xe2\xa0T\xf9g\x8e(S\x12e\x12\xaf\xee\xa6\xed\xc2\xb8\xc8\x1cBei\xab\x01\xb0\xc1\xe9\xb6]p\xab\x15\xd8QE\x8d\xa4\xce\xbe5\xc46?G\x159\xaa\xa8)\x8e**\xe5\xba\x9c\xd3\xa1T\x11\xdb\xee\xdf`\x9e\x88\xa1\x86\xbb\x7f0\xaf\xa1/AD\x13\xdf\x12\x94\xa7\xfaU\x86\x1cB\xce\x13\x89n\xd6\xfd\x9eq\x0e\x93\x92\x15\x0f\xc4K.%\x16\xdfg\xdc\xb3t\xdf,7d\xef\x0d\xf7e@\xac\\\xd9\xde\xa6\xa47\xffP\x9b\xa3\xdb0#\xec\xbc\xaf\xb5\xf9x\x83\xeb\xcf\xbc\xed\xa4\xc0\xd4\x00?6\x0c\xa8\xf9\x00# VB+S\xf3!\xde`\x92\xda)\x9c\xc0\xc9\xbcv\x06\x90\xb6u\xd5\xb4k\x1c\xf9A\xb4\xa8\xceT\xdd &8\xbf\xe4\x1av\xf2C\x0d\xa7\xec\xba\xea\x9d\xbb\x10\x10H0\xc9\x92(\x05\x14\x01^\xad\xc9\x86g_\xea\xe3\xc5\x98\xe4\xff\xfd\xbd\xda\xb7\x1ba\x17$\xc7\xc8\x0d\xf7\x9d\xaaC\xd0\xd2\xa3\xe3#\xe8\x16\x1f\x17\x1fA\xb1\xfa\x88\xf8\xa0\x0c\xacM]\x95r\x80\x95*\xe7\xc3n\xe3X\xb9\x85m\xe2\xce\xcb\xa2\x9cie\x94K\xe7\xfa`\x9952\xd00a7_\xad\xd0\xd5\xb4y9>d\x11\xb57(\xc1uX(BQ\x9cb/\x8e\xfct\x1bF\xe4FL\xccU\x10\xb9\x9b\x00\x1ab\x93\x87\x082\xe8\x0c\xae\xde\x13\xfc\xc9\xa3\xc3=\xfb)\xfe?b\xb2\xc4\xc9\x94.\x0d\xff\x93\xeeh\xa2\x98.\xfa\xf5\x0b\xb9\xe9\x92\x82S\xd2\\=\x0c\xfd\x1a\xe9\xac\x1c\xcb~\xb0%<\x88\x16\xc3\x0d\x08\xf7E\xd4\xe6\xc34\xd1\xcd\x9e\xf7\xf29E\x96 N\x97q\xd8\x7f\x10\xeeM\x1eJ\x97\xb1\x81\xcb\xd7\x83\x07\x87\x12\xc5U\x87L\xd78B!\x11\xc0D\xc6\xd9\xec\xed\xdf\xac)$\x19bcM ~\x15\xc9\xf0\xe9\xc3\xf5\x0cX~;\n\xf8\xea\xdbxv\xe6/\xb2\xf0*7\xc4Um{\x0f\xe2\x9b\xb8\x12\xc8\xc6G\xefq\xec\x07\xb4\x1df\x19\xebO\x1f\x87x\xc1\xae`\xdd\xfd\xa3\xfc\xf7\x91\xef'\x7f\xee&\xf8\x12%~\xde\xd2\xdd\x9d\xd8\xfd\xee\xce\xa8\x88\xdd\xad\xa9\xb9%,[\x8e\xf1\x1cy\xdeQ\x11\xed0\x87WE\xba2\x8ddO&\xecL\x01\xaa\xf3\xf8\xf2\xe9#\xe2_\xac\xd0\x17t\xee_\x9e_\x1ed\x0f\x1f\x1f\x1c<\xc6~\x96\x85\xe8\xc0\xdb<||\x10\xcem\xe7/\xdd\xdb\xd3\x8d5\xbb\xdc \xf26\x82\x19\n\xd9\\\x9c'\xf1\x8a\xbd\xce\x907B\x10G\xba\xf9\\(L\xb3\x15m\x05\x9a\x98\xfeg\xa1\x19\xa3$\xc2>\xcc6u\x95\xf4?\x11\xa4A\xb4\x08q\xad\x85\x9b\xed7`*\xbf\xaa\x0d\x91\xadM\xe6\x1e^tcH\xd6\xe5kx\xd0\xe5\x95\xe0\xd3\x1c\xbb\x12\x7ff\xe4\xe96Z\xce\x90\xa9\xe6\xd2\x1a\xf5\x17(\xa4\xa5\xd6B\x9a\x07\x97\x87\xd1A(\xd4\xc9\x1bY]\x199\x05\xaa!A\xb5\xad\xceE\xd7\xf6\\\xb4T\xa8Q\xdbs1\xd8\xcfp\xd1\x13\xa2}r\x15\xecp\x98\x85\xb9\x19C\xfd\xdb\xdd,\x9a\xc14\xa5\xe9\xec\xc2\xd0\xbd\xd6X\xbb\x88\xdb\xdf\x02\xb2\xf4\x13tY\xda\xfe\xb28;i\xcd\xea\x17\xd6\xef\x96\xa0 \xfdT\x18\x98\xfd\xed\x04\xf0\xca\x9f\xafl\xc5\x96r\x8f\xa2\xac]\xe1G\xb5\xbe\xb2s\x15]<\xa9\x8b'\xcd\xe5\x9b\xa2\xec]\xe68u7\x0dG\xb1\xdb\xb0\xb5\x01(a\x814l\xcb\xdd\xdb\xee\x11v\xa9K\xa21H\x1a\x17Dw9\xb7^\xef7\x8c\xad\x99\x8d\xd9\xee\xf7b\x08-gz\x8a\xb1\xdd\x9e\xc4\x06\x83\xd8!k\x858dM\x94\xa3y\xed\x1c\xb2&Jl\xa1\xdd!k\x1dq\x1bo\xf9g\x0eYs\xc8\xda\xa8K\\_S\xe3\x90\xb5\x86\\\xcb\x04w\xc8\x9aC\xd6\x1c\xb2\x06\xd7\xe8\x9d\x0d\xdfq\xf2\x9b\x0e\xcb\x1d\xdc\xd7>\xb6l\n\xb6]\xe6\x9b\xb3f|\xd9\xb7\x88\xb2m5\x12\xb3\x88\x94,\x9a\x0b\x85-\xa4A\x17yY\x0b\xac\xdcQh\x9b\xc0\xd92H\xe9(\xa0\x89\x8a\xa1Us\x9a.\x97\x81\xb7d?f)N\xe02\x08CH\xb0\x87\x83\x0b\\+(\xcc\xb3\xc8&\x02\xc7b\xf3\xbf-\x0fL0Mm\x03\x16\xdbC\xc2\xf2Z\x9d\x9e\x13\x7f\xe0L\xb5\x83\x9a\xde\xe3u\x88<\xdccL\xd6S\x1a\x0e\xc6\xdc\x9d\x8f\xf0%\xc4\x11\x9e\x98\x0f'\x07;\x15\xe2`'Q\x8e\xe6\xb5s\xb0\x93(\xb1\x85v\x07;u\xc4\xedJ\xe5\x9f9\xd8IyA\xa0\xd8[\xae\x8b\xb2\x9dm\x1d\x1a\x18\xea\xd4l\xcbYsp\x99\x83\xcbn\x8earp\x99\x83\xcb\x1c\\\x06\xd7\xe8U\x0e\x80\xcb\xe2\xa4\\Eo\\PZ\x19a1<\xf8\xec\xfb \xd7\xfa\xb5(,\xd4\xdb\xb2~k\xe1-A\xe5y\xdc\x16\x03#$\xa9\xd8A\xe5\x01\xb1/\x16\xc8\xc2\x8dp\x93\xe2|\x1c|=\xdf\xb2\xc78\xa9$\xc5\xe1|:\x8b#\x7fz\xa3\x0eP\x7f\xbb\xa7J\xb9\\\xa0p\xea\xc5\xabU\x90\xa6\x81\xfc\x8aD\xd7\xa6m\x11\xb7\xa9\xd9bU\x1a\x9b\x91 ^\xd3Ef7\xceHJ\x10\xbb8q\xda\xf7f\x8c\xefg\xe1y\x8d[\x8bG\xad\xf9JT\xfb\xdb_D\\\x14\xf0\xd6\xe7\x9d\x9bk\xba\xb9\xf6\xb2\\\x82\xd8\x9d\xd3t\xb1\xbf\xdf=\xf2\xaf\x9cm\x12\xf7\xcf3\xd6\\*\xb4`\xa2\xdc\xfc\xd5\xcd\xb3\xeb\x99\xbf_e\xdd\xb5\xa3VK\xbe\x90\x8e\xca\xb2(;\xa9\xd1\x95\x18\xed4\xedaL\x87v5\xd2\xdb:\x0d\x06\xb2\xa3T\x0bq\x94\xaa(G\xf3\xda9JU\x94\xd8B\xbb\xa3T;\xe2\x98\x0b\xf9g\x8eRu\x91\xfc\xa3.q}M\x8d\xa3&\x1br-\x13\xdcQ\x93\x8e\x9at\xd4$\\\xa3w6\xe6\xae\xf3+\xd3\x91t\xc3\x98E\x01\xd9L\xd7q\x9c\xdf\xd2i\x89\xd9\xb0\xe4@\x93w/w6\xd8uZl%\xb7\xb5\x9e;\xf8d\x9c\xc1\xd4\xde\xea[\x0c\xa4\x0e\xd0\xfe\xcd\x0d%\x0d\x08\xb1f/\xe8\xe0d*\xbb\x96X\xd1k\xb38\xca\xd2A\x1a\xaaiN\xd0\x95a\xca\x9e#\x82.@A\xb4\x182\x18\xder\x15\xb0\x8a\xfd,\xc4\xfa\xa1@\xbf\xbf\xd9C\x806\xcaTb\x08\x14\xdd\x16D\xf3\x90\x95{\xca\xf66\xde\x12E\x0b\xa9\xd7\xa6\xd1\xb02\xee\xf8NJ\xcb\xe7\xb2\x161\n\x19M\x8f\xed\x06\xe9,\x8c\xbd\xf3t\xba\xc6\xc9t\x83\x91\xe9\xb3\x80\x03\x87iYM\xebQ\xfa2\x7f\xa7.\xd7T5\x18w\xacn\xf8X\xddF[\xa2(\xcaPx\x7f\x9d\xc4\x17\x01\xc3\xa0\x07\xb7)\xd7\x08\x95\xc6\xef\xaem/Q\xba\xda\xf5b?\x9f\xf6u\xb6\xa1v\x820\xc7v\xe9\xc7\x90\x928\xc1@\x93\xc0\n\xa7)Z\xc8\x9a\xeb7\x94\xae\xec\x9b\xcb\x12\xcf\xaf\x95\xc6\x02\xd1\x97\xbaZ\x0e\xeawP\xbf\x83\xfa\x8d\x14;\xa8\xff{C\x02\xe1\xfb\x85\xfa\x0b\xa1+\xe0t\xb6!\xa2\xaeW\xb6\xf0\x10 k[\x1e\x84\xd5\xfa\xe7x\x86FRg]\x1ab\x9b\x9f\xe3\x19\x1c\xcf\xd0\x14\xc73\x94r]\xae\xa11\xcf\xf0\x02\xf9\xc5\xee\xaaJ\xd1k\xbf\xd9\xd8\xad\x97\x1b\xcc\x9f\x83\x94\xf0=\\\x10\xcd\xe3\xfc\xd7q\xb6\x937b\xed\\\xe2`\xb1\x14\xd8OE_%8\xcdBi\x92^\x96MV\n\xd0\x8f\x1aYi\xe0\x86\xac\x87\xb2\x0d\x1f\x17\x9e \x9f\x92\xd2\xcf\xbc\x04#\x12K\xa6,\x17\xed\xd4\xa2\xe2#\x82\xa6K\x94.\x07kJ\xe3,\x91\xcdr.FjfY\x10\xfa2[\xc4\xa5\xa5\xa7\x02\x85v\xff\xa0\xff\xf7\xe4UqxP\x84\x0e\x9dD)A\x11 J\x80\xc8\x8b#\x92 \x8f\\3<\xd4\x08n/\xe0!^\xfc\xda\x9f\x1bs\x9d\x99\x9c\x93W\xb0\x893\xb8D\x11\x01\x12CPU\xa7\x96L\x12\xd7.\x19[\n\xbc\xaa\xa6\xbej(\x87\\9\xe4\xca!W\\\x1cr\xf5\x95\xd7\xd2\xbf\xe2\xde\x12\x1cr\x15D\x01\x99zq\x10I\x91\xab^0\xcewx\x02\x97\x0bkO\x05(&Q\xdc\x18\"\xd4\xaf\x01~[\x00\xc1\xbe\x16:\xdc\xf9\xe3\xcf\xa2\x147b[\xe3 \xc1FRg\xb6\x1bb\x9b\x9f\x83\x04\x1d$\xd8\x14\x07 \x96r]>\xf7\x8d\x81\x04\xdf\xe0\x1a\"\x08\xf1w\xd4\x91\x1b\xc9\xdf\xf1H\xfe\x0b\xe3\xf0t\xd4\xdc\xbfA`|\x88f8\x1c\xacEz\x9bY%\x12\x13\xc2\xa7?5#\xfc_\xf9\xdd)*8\xfd\xf8\n{\xd9\xcd\x84\xd2\x1bu\xa8\xfd\xde2\x1cy\x91\x0b\x1c\xb6nA0\xaf\\-\xad\xc6\x86\xb4zF\x01\xac\xe7\xaa\x1d\xa8\xee@\xf5J\x1c\xa8\xce\xc5\x81\xea_ya\xfc+\xa23\xe0@u\x87\xa7Wb\x93\x87`4\xd1\xf5\xbb\x07\x9e\xee\xc0qI&\xbd\x1c\x90\xbe\x0b\x81\x03\xc7\x1br-\xe6\xd7\x81\xe3\x0e\x1cw\xe08\\\xa3\xef\xfc\x15\xc0q\x1d\x90\xc0`\xca\xfb\x15,*\x03&\xd91I\xbf\xdc\x1c\xb3\x14\x82\xfb\xedU\xc0\xc2\xf5\xa3\x05a\x1c\x9fg\xebZ\xd2>`A\x1b\xb4\xe4\xc5c\x7f\xa5\xee\x86\xac`-j\x9e}\x0f\xcd\xef\xedJ\xd3\xb8\xef\xb6\xe6\xacX\x0067\xc2\xaf\x19\x1dC5\x06\xcdvY'\xec\xfe\xc1\xfe\xe7O\xa3\xf1^\x7f\x8b\x81y\xf3\xfc\xb8\xf09\xde\xfcu\x07\xbc\xb0t\xedY\xd0(\xd3\x12_\x95\xef,\xf8\x88 \xb6\x7f\"Kl\x0b\xf8[\xcc?\x96]s\xa44\x8aT\xfc^0\x7f|\xfe\xb1\xc2\xdd\xa1\x1b1V\xe64[\xaf\xe3\x84`\xff\xae\xb0\x8c\xed-\xa5\xa0\x90\xdf\xfd\xe4\xeb\xe5\xf2i<#\xe9Z\xaap<$\xa6\xa0N\xc1\xe9\x17\xb9\x82\xb3b\xc3\x84~\x9e\x7f4\xe6$\xbfN\xce\xcc\x8d\xce>\xa3s\xab\xf4Z+\xe9\xce\xe1\xde\xa1\xbc\x8d\x7f\x89 \xbc\x8e\xb3\xc8\xa7#:\xc1\x0b\xba\xb6\xa58J\xb3\xf4~\x10\xdf\xc7W\xde\xf2\xfe:\x9b\x95\xb3\xa96\xac\xdb#\xf6=^\x08\x07\xfc\x12\x05\x11\xdd\xac\x84\x81W[\xd4\x1a\x85P|\x17\xb3\x1b\xfd\x838:\xf1\xd9\xc2$,\xdbM\x1a`\x8aQ\xa1\x1a\x13\xf2\x11\xa1\x1c\x0f\xf2\xd1\xa0\xd9\x01\xea\xf6\x7fA||\xe5-Ok]\xdf\x95A\xc3\xcd\xc7\xf3 \nHqE\x0e\xa7\x84&(#\xcb\xc9\xc5\xfe\x0c\x13\xb4?9\xa5\x86//_\xa7:\xdd\n\xac\xd0\xd5t\x85W\xf1\xd4[\"\xea\xbe4\x0c\xa6\xb0\xac\xdc\xf1z\x06Y\x10\x91G\x87\xc5\xb8\xbe\x9a\xa6\xc1b\x1a\x06\xab\x80\xf4N\xff\x05O\xbd8%\xec\"\xa7\xd9\xa6\x8e=\x9b+\xa2\xa5\xb8\xc0I0\xdfp]\xd8?x\xf8p\xff\xe9\x18\xaa\xd2b\xfbm\xaf\xac\xd1\x9d\xbc\x87\x80\xf5%\xe6\x8f\xe9W\xabU\xe9\xa2\xd1N\xcd/2\x9bH\xba\x9a=Tq\xc47\xda\xef\xf3il\xdc\xf1\xf9\x06\xbd]\x97\xd6\xd8\x17\x8fx\xfa\xe94KB\xd1\xbc\x17\xcc95\xd0\x7f\x04\x1f\xdf\xff\xbc\x9b`~*.g\x1f\x97\x88@\x16\x05\x9f3\x1cn \xf0qD\x82y\x907\x16\xcd'w\x1f[\xaaR\x9c\x04(\x0c\xbe`\xffV\xeb\x97u\x12\x93\xd8\x8bC\x98e\xf39N\n\xda}\x02g\xcb \xcd\xcb\x0c\xab\x8c\x9dV\x8d\x085\xaa\x88@\x88QJ\xda\x9a\xe2\x08\xc3\xed\xdd\xdbP\xce\x17\xaa\x03C\x88R\x02)^\xacpD\n\xdf\xf6\xe3\xfb\x9fwR\xe6o0\xd5-E ^'8\xc5Q'\x07\x9at\x9e\x85\xe1\x06>g(\xa4\xf5\xf6y\xab\xe4jY\xfd\xef\xa0\x14\x82\xa8\x9d\xf4\x13\xcdlw\x11\xc7\x8b\x10OX\x9dg\xd9|\xf2*\xe3\xab\xc1\xa7\xbb\xbc\xacLY\xba\x8c\xb3\xd0\x87\x19\x06Z\xd9\x96\x1e\x0fEq\x14x(d\x83\xb9\x9d\xcb\x1d\x1c\x1b d\x897\xedl\xf0\xd5\x1a{\x04\x02\xe6\xa3e)\xab\x1d\x8f0\x8c\x08\xbeb]s\x14m&\xf0c|\x89/pr\x8f\xcd\xb7\x8f\xef\x7fN\xe1r\x19x\xcb\x966\xaa\x80\x0e\xb3\xf68\xa3\xab\x1e\x86OKB\xd6\x9f\xee\xf1\xffM?\xdd\x838\x81(\xce\x7f\xbd\xc7F\x8a\x87\"\x88\xd9\xc8g5M1\x81l\xddinZ\xc3N\x1e\x1c/b\x15]\xa1u\xca\xbb\x9d\x95\x94\xc4\xc5\xf8\x85\xda\x82\x00\x8c\x1f\x0b\xc3\xf82}\xd6i\xfd\x7f\x87\x93yU6\xda]\xecj4\x1f\xfbe\xf1\xe9\x1fQ\x9af+\xecO\xba\xc9\x8f\"\xf8\xf1\xec\xec\x14\xde\x1c\x9fA\x1c\x15\xc3\x9bO\x99M\x80C\x1f\x10\xfc\xb3=\xf0\xce6k\xfc\xaf\x7f\xfe\xab\xa5,\xdf/\xd0\x9e\xc9{\x99[L\xd6~\xb9k\x0c(\x02\x9c$\xd5{:\xb5\x92T\x8er\n(\xc1t\x8c\xc4\x97\xd8\xa7\xcd\xe2!\x8f\xceE\xb6\xdb\xce\x97\xf9\x94Et\xf8y\xa1;E\xf9\xf8\xfeg\x96\xef\x12]\xb0\xae^\xd5F\xa3\xcf\x87#*\x8aI\xff}\x11\x07>\xa0\xa8\xcbx\xf0L\xd9\x04K\xf0<\xea\xea>\xb1aZ\x8c\x94e\x1c\xfa|\x98\xd4rg;\xfe|\x84A\xbe\xdf\xce\x07X]\x13S]\x8e*\xb8C\xe7eQ\xd1\xceV\xaf\xc0\x18\xfe\xf5\xcf\x7f\xdd\xed\x0c\xc0\xfe\xbd\xdbT.\xea`V]\xaah\x7fr\xb0\x7f\x90\xde\xeet\x1bH}X\x11~F{\x8f\xcf\xee\xfc\xbfY\x97\x16\xa0\x1cK\xb1\x9b'\x81\xf7\xa7/sM\xdc \x9a\xe0ti_\xa0\xae\x03\xcb6\x03\xef:\xc1v\x1d\xcd\\d\x106\x11BzJ ]\x17\xbf;\"\xb0\xa7\x82\xf6\xc6\x04\xf7F\x84\xf7\x14\x00\xdf \x88o<\x90O\x07\xf3\xf5\x04\xfa\xc6\x86\xfa\x14`\xdf\xd8p\x9f\x14\xf0\x1b\x0c\xf9u\xf4!!\xe876\xec7\x18\xf8\x1b\x1d\xfa\x1b\x04\xfe\x8d\x0f\xff\x8d\x08\x00\x8e\x0d\x01\x8e\x08\x02\x9a\xc0\x80#\x02\x81r(p\x18\x18\xd8Q&\x02\x07\x0d\xe1\xc1\xa1\x00aG]\x170\xec\x0d\x19J\x02j\x14K\xb1\x148\xd4\xaf\xd2=\xc1\xc3\xae\xe1*\xc0\xc4\x16|\xa8.\xc1\xc8\x10\xa2\x08D\x1c\x05F\x1c\x19H\xecB\x89\x83\xc1\xc4\x86.\xd2\x01\x16\x87A\x8b\x1a\xbcM\n/\x1a\x00\x8cB$\xc4\x02d\x14\xa7\xffS\\\xf7^P\xa3i\xe5up\xa3\xba\xa6Z\xc8\xd1\nt\xecn\xb1\x07\x02\x8f\x1a\xe8Q\x05>\xaa\xe1Gi\xab\x98B\x90z\x10\xb2\x0bC\x0e\x02\"\x8d\xa0\xc8>`\xa4\xb8)\xb4\x80\xe4h\x90\xa4$\xff\xd6H\x1a\x15\x98\x1c\x1d\x9a\x1c\x19\x9c\x1c\x17\x9eT\x00\x94]\x88\xb2\x0bR\x8e\x05S\x8e\x08T\x8e\x0dU\x9a\x82\x95\x06p\xa51`i\x06Y\n@K\x11\xb0e\x0em\xa9\x81Kc\xe8\xd2\x08\xbc\xec\x14~L\x00st\x08sL\x10sL\x18sX\x7fk\xa1L=\x98Y\xc0\x99TH@B\xfc\xacD\x07\xd9V\x98u\xe9U\x90\xf2'\x10\xf3_\xf2\x14k\xb4\x08\"\x96u\xb5\x846<\xf3\xea\x83Vhb\xf9\xe7\xdc\x14\x16\xd0h\xb5T\x08\xb1F1\xd2\x18\xe1+\xd2=\x81)\xdd\xdaH76y\xf5\xffw{CS\xe8/p\\\xfa\xcf|\xa7\x8d\xd2\x94\xc3\x04\xa7h\x81\xdf\xf3S|\x13\xfe{K ?\x94B\x93Su\xb4 0\xac\xe2\x94\x00f\xfbZ\xb6 \xae%!1A\xa6\xb1\x90\xc2H\xd3<\x0d\xafRg\x8f\xc6\xd4\xb3\xfa\xb0\x7f\xf0\x93\x04\xd4f\x17\x08Gm;>o\xa5\xadW\x95\x1f\xc8dJ\xda#\xfb\x12\xa5\x90br\x0f\x02\x92\x16\x00M\nY\xc4\x07\x82\xcf\xf7\xc8\x97A~\xeaF\x8f\xa6\xa7=\xe0\xf4T\x80\xa7\x17\xe5\xfc\x10D^y\x05\xce\xfd\xd4?\x87\xbd\xc9\xe1\x03\x15\xdc\xce\x83l\xad\xc1\xf6u-z\xbaS\xd5\xb52p7_D\xab\x90].\x16sC\x19\x8b\x0d\xbdF\x958.{\x80.y\x8cv?\xa5\xdax\xedq\xd4\nb\xb7m\x157\x86\x82`\x8c\x99\x0c\xf5<\xf4\xfb\xfd\xe9\xcb.e4C)\x9e0\xcbS\x8b\xe5/g\xaf\xf1\x08n\xd8Va\xfd\x846\xb5Q\xbb\x86U\xcd\x8d)\xca\xedB\x82I\x96D\x0c\x1a\xcd\xadK\xbe\x1a\x94\x96\x97\x99\xdbE\xe3\"\x16V-\xba(\xa9m\xea\x04\xdeQ\xa7=\x8e\x18.\x13\xcf\xe7)&\x10'\xb5\x93-T*R#\xc5\xa4\x98h\xfcc\xc3\x9a\xb7\x86\x8b\xbc\xeey\x11X\xf5\xa3l\x85\x93\xc0+\xfe\xc6|\x1c\x0fE\xe5\xcd3\x97K\x1c\x15\x8d\x95E\xa5M\xaeo\xa8N\x98\xaa\x10\xa7iUk\x8eN\x9a\x10\xa7\xd4I\x90\xcd\xf0b\x17\xf0!^\x15f\xb6\xeb\xe1\xbf\x8ecH\xe3\x15\x9e\x96K\xbdp\x17Y3\xd5\xf5\x8e\xabo$\xb9\xef\xdev\\\xeb \x83b*\x95\x9b\xa4 \x82\x05]-\x8a;\x0f\xf3\"\xf3cB\xa5\x0d\xc9UU\xf9\xd2\xed\xce3\x83\xa5\xc5\xd2;\xea:\xef\xe6\x0b\x8c\xc8a\x1f\xec\xac[8\xeaB\xfb`f\x1dEE\xb7r\xca\xa5nx\xa5o\x80\x07\xde\x1aJ5oD6\x96\xf2O\xca\xc1t\xb9\xc4|\xf7\x98+\xf2\xe2\x84\x7f\xc4v\xe8\xad\xb1\xc7\xc0\x00\xb6\xe2\xd5kUN\xc4\xe6\xa4\xcas\xea\xcc\xaa\x04\xaf1#2^\xa0\xa4l2\xf9\xbc\xca\xd5\xb0\xfemO\xa9\xf6\x0e\xfb(\xda\x18\x0fh\xd2\x89z\x11\x8e\x0b\xb9]\x1b)\xc6E\x1c\xdd2N\\K\xff\x88\x16q\x04\x8b\x08N5\x88]\xe9\x1d\xb5RE\xa9\xd4\xb4\xb5\xe93\xebH\x95\x811*\xac\x93\x9b\x8d\xd2X>\x07\xc6\xa50\x98\xbc\xa1\xbd\xae|`,\x8a \xf6d\xbc\xa8\x93\x01\xf1&#F\x9a\xf4\x8c1\x193\xbad\x94\xb8\x92\xf1\"JF\x89%QG\x91\xf4\x8f\x1f\x11\xc6\x8b\x0c\x89\x14\xe9D\x86\x10]L\xc8\xb0h\x90V\xf4G\x8f\xb8\x8fV\xc4\x87\xb9_%_\x9bzFv\x08\x8f\x85\x912\xa6C\x9c\xdf\x18q\x1c\xbc\xd3\xb8\xbe2\x82c`\xec\xc6\xf0\xa8\x8d\xc6R30F#o\xc6B[\xdf\x88\x0ci8\x82 \nC\x19\x7f\xd1\xa4{\xcdb.\x9ai\xfel\xd7\xc5:\xc2BW\x19UT\x85\xb8\xfc\xcaH\n\xc3\x18\x8a\x8a.\x1b\x107!\x8d\x98\x10\xc7J\xc8\xa2$:\xb54\x89\x8cP\xc5D\xd4\xa3!z\xc6Ah\" \xecb\x1fZQ\x07\xaax\x87\x11\"\x1dZ\xb9\x95==Z\\\xc3\x88\x11\x0d\xa3\xc52\x8c\x15\xc5 \x8c_\xa8\x13\xc2\xf5\x98\x85\xe1\xd1\n\xa3\xc4)\x8c\x17\xa1\xa0\x8fMPF%\x18\xc4#\xe8\"\x11\x1a4~S\xbb)\x0f-\x8f;0\x888\xd0\xc4\x1a\x94\xc5\x1b+\xbe`\xc4\xc8\x82qb\n\xc6\x89&\xe8\xd7s\xca\x08\x02U\xec\x00\x83I\x92\xb57Y \x82/\xd1f\x92d\x11 Vx\xc2n\xa35FKp\xf55\x88}T/\xf6;Nl\x10\x11\xbc\xa8= Tx\xb1AD\x1e\x1c\xe4\x7f\xcd[P\xa9\xdb\xc7\x04\x05\xa1;\x06\xe5\x8eAq\xe9\x0d(u4\xb9cPm}\xee\x18TW\xc1h\xe0\x14\x97\x9e\x10UY\x9a\xd1\x80*.\xa3\xc0U\\\xc6\x03\xad\xb8\x8c\x02]qq\xc7\xa0:\x9f\x0d\x03\xbe:\xea\xdc1(w\x0c\xca\x1d\x83\xea\xfc\xe0\x8eA\xd5\xc4\x1d\x83r\xc7\xa0\xdc1\xa8\xa6\xba\x11AC.\xa3A\x87\\\xc6\x02\x10\xb9\xb8cP\xee\x18\x94\x16\x8e\xcc\xf5\xe8A\xc9\xfcCw\x0c\xea\xbb:\x06U;\xfa\xf1\xa5\x0ck|\x93\xa0\xc8:\xa2r,\xb0\\\\O\xcak2i\xe7R\xa73\x0dR\xde\x80\xec{~y\"\xfbo\x192\xc9n\xf8}\xc3sb\xffc\x7f\xfb4+\xd5\x96O8wP\xd0\xba\x16\xc1\x9e\xaa\x83\x88j\xbe\x97\xa0\xa3\xf5T\x9d\xb2\x82\xa2\xbc \xc5K\xab\xdf$\xc7\xc1@\xbb\xf3\xe32\"\x82\xcaEuJ\x1bFES\xb9\x8c\x86\xa9rQ\x9c\xd8\x86a\xf8*\x97\xb1PV.\xba\xd3\xdb\xd0\x17q\xe5\xd2\x1bw\x15\xb7]yy\xa0\x10}\xe5\xd2\x1b\x83\x15j+/\x14\x14!\xb1\\\x86\xe0\xb1B\x85\xc2K\x06+\xe9\x83\xcd\n\x15)N|\xc3p\xd4\xb6Pb\x80\xdd\nS\x1a\xe3\xb9\\\x06\xa0\xba\\\x06`\xbb\xb2\x89.)\xeah\xa8/\x97q\xb1_.\xa3!\xc0\\\xf480\x97\xd1\xd0`.\xf2\x13\xe40\x10\x19\x16\xdb\n\xe1Ir0\xc5\x8c\xb9\xf4E\x8e\x85\xcadh2\x97\x9e\x982\x17\xe1\xe9r\xd0\xbb\x14\x8aS\xe6`\xe8q\xf4D\x9c\xc5\xc6Tz\xe2\x1c\x0cJ3\x0c\x83\xee\xa8\xab.rl\x9f>\x87q\xf0h.\xc3P\xe9\x8e:\xd2\xba\xe6\xb1\x92\x81\x08u7'\xc1\x89t\x18\x88[s\xd1\x1c\xce\x06\xd5\xe9t0A\xb2\xb9\x08\x8f\xc6Z\xa1\xda\\dz\x04\xa7\x0b\x07\xe1\xdc\\\xcc\x1bG\x87ys\xd1\xb5\x82\x16\xff\xe6b\x81\x82s\x11\xb4\xcePD\x9c\x8b\xe6T;hN\xb6\x83\xf6t;\xa8[\xcd\x14/\xe7\xa2C\xcd\xb9tO\xbb\xc30\x04\x9d\x8b\x01\x8e\xce\xc5\x1eM\xe7\"k&-\xb2\xcee$|\x9d\x8b\xb4,\x82\x918\x08q\xefh\xeb\x9c\x90\x87\x818|7\x07\xc1\xa9y\x18\x8a\xcew\x8b\xdc>I\x0f#c\xf6\\\x14'\xeaAx\xaa\x1e\x84'\xeba4,\x9f\xcbh\x88>\x97qq}.f\xe8>\x17-\xc6\xcf\xc5\x10\xe9o|\xac9u\x0f\x12\xeb/9\x8d\x0d\x16\x18\xb1\xee\x04>\x98\xf3\x00\xf9\xc7z6\x80\x8b\xa0Bc2\x03\\\x06\xf1\x03\x1dm\x82S\xfa0*kP\xcbf\x14\xee\x80\xcb\xd01\xa2\xe5\x11ru\xda\x93\xfb\xd0x\xc4\x14$\xcc\x02\x17\xc5>L\xcc2p\xb1\xe1\x1a\xf2\x8c\x84/o\x0e\xe6\x1d\x1a\xdar\x1c]\xc8>p\xb1\xe3 \xb84\xea\xca\xe9\x03\x86hA\x18\xa4\x0c(\xcc\xff\xc6s\xf4\x8bq\x97\x17\xa6X\xdb\xfb\xbc\x0d\x8b\xa2\xfa_\x8bg\x0e\xdd\xdb\xb0\xeemX\xd9\xdb\xb0Bn\x0cT\xaff\xd6S\xef6\x92\x8b\x9f\xd0\x94\x12r\x89#\xe4\x1c!\xe7\x089G\xc8u\x848B\xce\x11r\xc2\x8f\x1d!\xe7\x08\xb9\xae8B\xce\x11r\xe0\x08\xb9\xb6\"G\xc8u\xc4\x9csr\x84\x9c\xe8\x13G\xc89B\xce\x11rmq\x84\x9c#\xe4\x1c!W\x8a#\xe4\x1c!\xe7\x089G\xc8}\xb3\x84\xdc\x8csIe\x01\xb8\x16G\xc89B\xee\xba\x08\xb9d\x18!\x97\xf4!\xe4n&\x13\xe7\x982\xc7\x949\xa6\xcc1e\x8e)sL\x99c\xca\x1cS\xe6\x982\x818\xa6\xcc1e\x0dqLY.\x8e)sL\x99c\xca\x8crvL\x99c\xcaJqL\x99c\xcaZb\xca\x828\xa6\xcc1e\xba1\xf2\xcd2e\xff[\xc0~\x99<\xb1\xc1\x85\x98?\xb4!\xc8\xbb\x01\x85\xab\x19,\xda\xbf\x05\x976\xdb8&\x0b\x1c\x93\xf5u\x98,3\n+'\xaf\x8e\x9a\x03\xfc\xfd\xe9\xcb\\_\x87\xc3\x9a\xa1\xe8\xbc\xa4\xb0^\xe1(^}\x8c\x02\xf37\xa6}\x9a\xa2\xcd[\xb5z\xa8Q3\x96\xa0\xb2\xf2\xbc*\xf9J[\xe7*\xa8%\x88\xf2\xaf\xb3( \x8c)\x80\x0c\x91xu\xb7\x98#\xf8j\x1dG\xb8x\x11\xbb\xca?\x88\x08^\xe0\xa4\xfck1<\x9a\xa3C\x0e\xc0\x14z\xeb\xc5\\\xc7\x97||\xec\xefU\xbf\xb3\x15+\x8e0glj\x1a\x12\x14\xe4\xee\xe9\x0c\xa5x\xca\xabAb\xba\xd2\xc4\x89O\xbd\xd2\x180\xf5Yku-\x1b\x7f'\xe5\xf5\xae+\xdc\xcf\x9b\xe29\xec\xff\xaf2\xfbJw\xfdSF\xa9\xe4\x9eZ=\xfbx\xce\x9b\xaf\xe2\x0b\xbc\x04#\x82\x01UY\xd3\x8fv\xe8G\xf5p\x856\xf6X\xe6\xff\x1c\x1e\xd1U;K\x9f\xc1>\xd0T\xb4x{\xff\xebQ\xab\x9bP\x18\xa0\x14\xf7c7[C)\x9f\xcd\xb9\xc6\xa6\xe1\xce\x07Q\xf1[1!j\x03\xa9;\xcfJKW\xb5@\xad\xcf\x11\xd5\x99y\xa4\x0d\x8d!\xae\xb4>\x05\ns\x9e\xe5\x8d\x98w}\xe0\x01\x89\xcfq$\x9bpo1A>\"\xc8b\xbeU\xa5W\xcd:V\xa8)-M\xbfv7f\x95[\x06\xa0\xaeC\xe8\x1f\xe8`\xcfA\xf6\xa1\xa3\xad9\x10\xb9t\xad\x06\x17\xb1\xed\xe0\"\xb6 \\t5\x1anM\xb8\x0c\xb4)\xe2\x96\xeefcai\xb8\x0c\xb47\x1d}\xdc\xfeH\x18\x0f[\xdb\xc3\xa5c\x81\xb8\x88\xe6\x03\x97\xce\xac\xa8'\x10\x8e\xeb\x11,\x13\x17\x95\x93<\xc0J\x15\xca\xcdlU\xa3N5[\xd2\x9e\x98E\x0d\xebk\x17\xad^\x9e7xq \xea\xd3\x91a\xe3(4f\x12M\xdc\xce\x9b\xfd\x8d\x0f\xb5;U4\x02\xfd\xa5j\xa6bO\xc0\xc6LM\xdfs\xd8+\x87\x88\x1f\xa4\xeb\x10ml\xca\xd6\xe8\x96<=\x04\x91\x1fx\x88\xe4\xc0K\x9a-\x168\xa5;\x88|\xa2\xd2\xce)\x8b\xd9M\xce\xa3\xf0\xbc\x90\xfa\xc1%%F\x0d\x9eM\xb9\xc4\xd1\x87\x0fv\xda=\xba\xc3,i\xb1!!ELG\x11&BG\x01\xdc\xc1\x8bg\xf0\x92)\x82#:\xa5\n-\xe9f5\x8bC\x9bb5\xba\x92'/\x9cX\x9eW\xfe\xb7\"|#]\xc6\x97\x11\xb0\xf8\xc7\x82)f\xa59:{\xf7\xf6.\x8f\xc5\xa9)\xf4\x9axT>\x06R\x86\x00\xf2L\xf2&n\xd2;\xe2\xa6\xba\xd5)|\xd9\xd7\xc5Zm0\xf7\xf2\x14\xc8\xc4\x058E *l\x8d\x81\x03\x90\xe2\xc8\x9f\xe2\x88nL\xfc\x9b\xb4\xb2w\x8aT\xff~\x16\xc7!FuS\xa4Z4?\xe0\xc8?\xe6\xeax\x10\n\xb5\"P\xaew\xa8\xd1\x06\x90\x12D\xb2\x14\xee\\.1\xa3\xb5Q\xb7\x12\x10\xa4\xcd\x95\x84*\xa0\xa9+\x1b\xc0\xb1\xee\xa9\xaau\xeb\x95h\x14\x9f\xf7`c:\xad\xe9\x9f0\xc1Ie\xedi\xa7\xc3*\xf6\xb3\x10\xcb\x86\x02\xdb\xbb\x1d\x85\xe1\x0b\x14\xa2\xc8\xc3\xf6a\x84\xb3<\xe1M\x1a\x18hEw\xc8\x86\x9f\xab\x16\xbf\x97|\x14\xe4 Jn9r\xb7\xa3\xb1\xae\xa1\xc8gt9\xcb\xb8\xc54\xfd\xf2\xee\xec\xf8\x19\x03\xd2\xf9\xcf9Z\x1d0X\xe6$\"9NX\x06-4\xc0B\xbeyn\x8e\xa4`\x11!\x92%\x98.\x8d\x9f\xb3 \xe1\xa4\xca\"^\xc4\x0c\x9c\x93\x00PEG\x15f\xb0\xfc\xefx\xce\x1f\xb5dAeA\x94\x0e\x01\x9a\xf8@,\xff\x9cS\x1b\x0ehr@\x93\x0ch\x12\xd8\x1e#\xb4\xa9J\x96k{\x7f\xfa\xb2(\xa4\x1aqb\n\xf2\xc4}\xcd]\xdb\xda\x19\x8dd\x81\x11\x93\xf4\xba\xc8\x80\xe9}\x9e\xc6\xd0\x1e\xc1t\x8dk\xb8\xcc\xcc\x96b\xa4\xb4\xba\xccd\x94\xe4I\x8c\xc1H\x96\x8a\xb9\xf2\x85\xe7e=@V\x0dxE\x98H\x9c\xb0]{}\xe7K \x17\x90\xac\xc1 \xdbdJ\xd6b\xd0\x04\xe2\x0b\xd7dP\x99\xb2\"\x9d>&\xae/$#T&\x80q+\x91A3\x00jx\x064\x10\x0d\x18\xd6t,\xa8\x06\xfa\xc15B=JX\xb8\x12k\xd8\x06\x06B7B\x85%|\xac\x08X\xed\x07\xe1\x80\x1c\xc6\x01\xc5\x1c\xe3\"\x81s@??F\x83u@\xe3\xdd\xc2\x18\xf0\x0eXC<\x00#\xc3<\xd0\x81z@\xd5\xca\xeaY9\x04\xf6i\xa9\xaa\x8d\xba\xbd\xc6\xd0\xea\xc0?`\\\xdeN\x17\x0e\x84\x82@\x03\x07A\x07\x12\x02\xe3\xb2j\xa1!\x80q\xe0!\x10@D`\\\xcc\xce\x10\x18\x0c\x17\xb5\xf4\xb1\x83\\^7\x84\xc9\x146\x025t\x04\xca1b\x0f!\x81\x08FRzfB\x8f\xc9\xfc\xd8c#\xb9\xa5\x1f\xcf\xd2\xa6\x83\xbd\xb5\xad\xc3\x17\x12\xbfN9F%\xbe\x9dj\xe5Q\x92\x08B\x0fO\xed\xe3)\xbc<\xed:\xa6\x9bf\xd5W#\xfaz\x1aoO\xed\xef\xe9=>\xbd\xcfgZ\xeb1\xfd\xbe\xf1>\xe1\x16\xbcB\x91_\xa8ls\xdd\xdc\x1d\xd1;T\xf8\x87\x12\x0f\xd1\xbc\xe4\x82\x8e\x1d\xc1O\xd4{\x8a\"_\xd1\xbc\xd4F\xfe\xe2x\x1e\xa3\xd8g4/\xae`x\xf4\xf7\x1c;\xaaj\xc4\xa3\xc8w\xb4\xf3\x1e\xb5\xfe\xa3z\xfc\xf4\xf3!\x85^d'\xabF+\x16\xeeXu\x84\x8fV\x8b\x0f4\x08\"\xbe\xf6\x16!\xac\x05i\x91\xe0E\x90\x12\x9c4N\xff\xb2,\x1d\x95\xe1\xa8\x8ck\xa42\xc4{\x11\xcb}P\xdas#\xc4\x19a\xeb\x0d\xd0\xba\x16\n L\"N\x06\xd2\xb0\x00PxD_\x1f}\x96\x84\x0cT\xe9\xbaa\x03``\xf7\xc7\x0c\x1f\x80rK\xd4\x0e!\x00Q\x18\x01\xff\\\x15J\x00\xd2\xca5\xaa\xd5+\xa4@9\x1f\x9aC\xb2\xa1\xb9;\x19\x98\xd9\xa1\xde\xec\xd5.\xcd\xa3>NVAD\xca\x16}\x83\xc9\x8b0\xf6\xce_l~\xc4\xc1bI\xac\x97\xd6\x19M=\x0d:\x83\xc7\xc80.Q\xba\xb4\xb4!-\xa3\xb8F \x99\xa6\x98L\x97\x18\xf9\xed\xc74%+\xb8\n\xb1\x11\x985(5\xc9\x08W\x15\xd9\xda\xad\"\xa8\xaa \x06\xf6\xff\x14%$\xc5\xe4GV\xe3[\xad\x1fYo\x9e\xbc\xaa\xf7N\xbf\xae\x19\xa7=\xf3\x8b+\x05-\xc0\x8b\xcb\x91wVL\x86\x9cKZ\xaaWL@\xab\xf2uQ\xb6?\xa8\x97,.h\xbd\xde\x8ej\x1d\x88G\xedO\x94\xe2(\xcdR\xf0\xd0\x9aO\x7f\xee'\x15\x7fN\xb20\xe7Y\xd7I\xec\xe14e\xf4+o\x0f\x81\xbe\xdc b?{K\x14D\xf7D\xe4t\x10ya\xc6o\x98 \xc3\xda\xc7\xc0P\xe0rk\x98\x16wW\xe5\xa5\x90^9\x8d\xaa{_w\x04\x08\"\xb0\xe5\x02\x03IP\x94\xf2\x0bhV\xc8[\x06Q\xe7\xbaHV\x8a\x86\x05*D\xd1\x15Kf\xed\xac\x92\xa8\xe79 \xba\x8c\xa2\xa1:\xd1\x850T\xd8\xf5J]\xfbZ\xc8\x80\x99!6J\xa0+0\xe8o\x12U\xda\xe3B\x94%\x07m\xe9An\xa7\xcb\x9f\x95\xf6\xba\x10}\x90\x8c\xaa\xa9\xc0\xa4\xb9@\xdfd\x1a\xbb\xde\xfa\xa8i\xdf\x0baC\xc5\x8bW\xab\x80L\xc7\\q\xa0\xca\x98\xaa\xe5\xf3\x99[k:\xed[\xdf\xd2?\x8d\x9c=\xbbk\x16\x918IGV\xdc\xae\xd7\x8e<<\xb2\xda\xb2\xff\xabeS\xe0\x7fPC\x14\xa78\x99\xe6/\xca\x8c\x95\x7fc\x91\xe7\x13\xbe\x01QTHk<\x07\x04g\xa5\xe3\x9eO>n]\x1b\xe4Z\xe30\x0f\xf4\xf3\xd6\xc8\x95\xb4\x86\xe2\xc01i\xd0\x98\xc60*;F\xef\x01\x9d]\xa5<\xa0\xa3\xb8\x04\x8f9\x13|\xf7\xc3\xdd\x86\xff\xe0\x0d5\xe1\xbb\x9a\x1f\xf6\x85w\xc8\xf2\x9d\x18{R!\x0ci\xe5a\x89\x13\xcc.\xa1gsz\x02\xf0\x1b\xdeI0\xfc\x9e\xa5\x04\xd0\"\xc1\x98\xfa?\xb1\xec\xees\x1e\xc3\xc8\xae\x1d\x14\xe6\xc7\xa2dV\x18Ey\xe9y\x11\x8f\xd6\xeb\x1fQ\xba\x04?\xc6\xfc\nt\xeei\xb1\xb8\x99\x14\xd3b \x0f%\xbc\xa2nW\xe3\xf6\xc8\x14\xf3\xe85\xea1\xa1\xfc\xde\xe7\\\x97\xdfp\xf2j\xea\x8a\xd95x\xe8\x88\x15\xc1\xb0\xf1#u\x11t\x0e\x82\x9fq\xe7\x12O/b\x82\xa7\xf2\xc2q\xd1:$\xfa\x1c\xa9\xb0\xbc\x90\xfcw\xa3\x8c\xc003(\xd4)\xbf\xd0\xce\xc4\xba\xe0(\x93\xc4P\xd7\xe5>|8y\xf3\xcb\xf1\xab\xe9\xdb\x0fo\xa6g\xffuz<\xfd\xf8\xcbO\xbf\xbc\xfb\xed\x97\x1e)O\xdf\x1f\xff\xfa\xee\xec\xb8_\xca\x97\xef\xde\xbe=9\xeb\x95\xf6\xdd\xe9\xbb\x0fG?k\x92\xe6\xf1\n\xcfz\xd6Wo\xc6\x9a\xf2!XD\xd8\x7f\x9b.\xce\xf2{C\xf9s$,\x82\x96\xfdT\xbf\xeaY\xfe\xceE%\xe5\xca&\xb9@\xbb!\xd2\xbey\x06\xbf\xc6\x04\x8b\xdf2\xd1j\xe0\xed\xfc\x0cN\xd9:\x8aB\xb5\x1a\xd9\xa6\xac)\x16\x03\xda\xc4\xc1\xe7\x92\xc4Y$\x8c\xb7\xa9\x8b\xd9\xae\x82K-\xeb\x07\x07\xcao\xe5;\xbc\xa6\x18\xda\x0e\xb0\xb0\x1f\xa0\xdd\xe0Tb\xd1\xec\xa0[\xe1\xdbb\xb4kl\x8aEk\x80e\x8bP\xd1\xec/\x9bb3.\n1\x1f\x9a\x85\x98v\x14\xd8w\x16\xd8v\x98\xe1\x9eU\x98D\xbc\x83m\x7f\xba\xc2)A+ \xc6V\xfb\xd0\xbc\xa2:\xb8\xa5)\xe5\xa6N\xee\xfa7\xa5GI\xb4M]\x15\"\x88||eV\x04\xb3qhn\x9fJ\x96\xc1,\xfb1[\xc0f \xa5\xabT3\xf2\x9b\xee\xdac\x82\xef\xe5\x0f=\xad\x02\xfe0\x15\xff's\xd6\x94\n\xd9\xee\xbf\xda\xdb\xd32\xab\xd7\xd1\xdaz+\xfb\x84y\x883\xe7!\x9a\xa7t\x1eb%\xceCt\x1e\xa2J\x0cm\x07X\xd8\x0f\xb0p<,\x9a\x1d\xcc\xd7\x00.\xceC4\x10\xd3\x8e\x02\xfb\xce\x02\xdb\x0es\x1ebGz\x94D\xdb\xd4\xceC4_B\xbf \x0f\x91\x99\x95\xe9EL\x82h1e'\xed\xf5\xde\xa2\xb6A\xcdLI5\x96\xae7_\xa3\xa9l\x99\xa3n\n\x9b\x8e\x9bW\x05\x90L\x07\xcfq\x0e#W\xb0{\x01,s\x9a\xa6l@\xa9\xba\xdcM#\x971\xd51\x0f\x03\x8f\xf63\x1bi\x921\x11R\x87g\xca\xcf\x96N\x11!\xc8;\xbf.8\xbbV\xc2\xa9\"\x96\x86\x8bA\x9e`\x98/\x94\x0de\xb8\xda\x1b\xe6\x0d\x16\xf9\x83$\x04J,\x16\x05\x00\xcbB\x80*\x88J,\xa6\xa1Ub\xb1\xac\x0b\xf4\xa8\x0f\xa8\x83\xb3\xc4bh\x00\xdaR\x18\x04i \x97X\xa4\xe1]b\xb9\xce\xc2\x99\x9a\xae\xb6\x98\x85\x8d\x19\xab\x13\x87\x97\x99\xee<\x0b\xd1\x04\x9d\x89\xc54\x14\xcdX\xa1(dM\x1f\xa0&\x16\xd3\xb05\xb1\xc8\x83\xd9\xc4b=\xf0\xccv\xd0\x85X\xab7]\xf3\xeb\"\x0e\x9d\x13\xcb\x80\x02\xe9\\\x82\xa6h\x82\xef\xc4rM\xb6\xd3f\x9f\x07\xfd\x1a\x0d\xcc]\xf0\xa6\xf4\xd8\xa8\x17\xd2\xa3\xf5\xa0g\x0b\x82\xed\x06\xbe\x10\x9b\x0dT[\xecgF!\xb6\x1d\x0e\xfd;\x1d\xfav|\xaf\x0d\x7f!\x16\x1b\xffB\xf4!\x8fb\xe9\xd1.=\xda\xc3\x1c\xff\xa2\x0f6jJ[\x89a\xc4RS\xdaJ~9\xd1\x05.5\xa5\x0cc\x1a\xde,\xf6\xbb0.|\x92\xf9\xafC\xb4\xa8\xdd\xfd\xcboBx\x11z\xf1\xf9\xc9++\\\x99K9\x1d!\xe0\xec\xac.A%\xd6\xec~Sz\x8f\xe7\xdef\xce\x80C\xed\xca\xe0b\xda\x81\xaa\\\x8c\xc3\x05\x9a2\xb8\xacVM\xda\xc7\x8f\xe7\xf2\x92\xb9\xd3\x1f\x82\x05\x8f\xd0\xa3\xbeGA)\xb0\x08\x84\xe2H\x96\x85\xca \x02\x94\xeb\xd5\xbb\xf3\xfd\xca\xce\xb57\x0f\x94\x95\xec6;\xad&\xbf@\xa0+\x97(\xcd\xb7\x15\x84\x9f\xcaC\xc5\xe9\xb4\n\xf4P\xd7\xa4\x9a\x7f)\xd6n ,\xd68\x9b\x95\xad*\xab\xfe[\xdb\x95\xdcb\x15\xb7\xa8\x1d\x17\x9b:r\xb1\xb6q\xbd&c\x8f\x89\xb8\xcef\xdd\x9b\xb3Tb\xddX\xd0\xab\xc1\xa8`\xff\xe0\xe1\xc3\xfd\xa76Iz6\x1c\xf4k<`w*y\xeb\x83\x87\x8f\xce\xf7or1\xfbx\x0d\xa7\xd9,\x0c\xbc\x9f\xf0\xa6\x81\x9b\x9c\xe3M\xfdn0\xbb5?K1\xbf\xc7\xa9v\xde\xfa\xd7\xd2\x06\x18*2\x0d\xddjJ\xaf\xf6\xee\xb3w+\x91\xb3u\x12\xc4I@\xac\xa7\xd6V\xcbX\x94\xce\xa4P\x963\xddv\x8e[\x9a\xc4\x1e\x8dc=U,\x8d\xa1e\x03A\x8fF\x82~f\xb0GcA\x9f\x06\x83\xbe\x06\xf0\xfa\nho\xfaF7|#\x98\xbd>F\xafG\x1b\xdb\x19\x13\x18b\xee\xb6^:\xbb@\xdf2\x95]\xb1\xcc\x8aD=\xf58\x9a\xea\xe1w\xc3\xdc\xcdr\x9dm\xbe\xa0\x88\x04\x11\x9e\x9a\xf9\xd9f\xfe\xb5\x81_ml\x17\xcd\xad\xa1\xf1ba\xd8\x82\\,\xcc\x89\xf1\xd2`\\y\xb0j\x00\xb0]\x08\xac\x1a\x02\xec\x1a\x03\xec\xcd\xfev\x8bcc\xe4M\xcd;5\xdb\x06\xeaz\x1bv;\xcbd\xd5~f\xf6\x81K\x0f\x03\xbe\x85\xb2\xd8\x19k\xc3\x02\x18fm\x82\xecY\xe6\xa8C\xedL\x01\xa4\x9f\xe9\x82\xf1\x92\x9dM8bG\x13t'$8\x08$\xd5W;K\x83\x08\xc1\xab5;\x1dAbX\x05i\x88\x91\xcf\x1e\x15\\,I\xfe\xd6V\x1dA\xaa\x85\x835\x1bJj\xf0\xe4\xc6m\xf4\xcb!%,2\xd7gp\xabl\x87\x19v\xb7B\n\xc5\xdd\n\xd9\x10\x15\x1b\xa9\xf2\xa6\xb6u+\x97\x11?h\xd0xj\xce\xcf\x96\xdd\xb3\xe4\xf1,\x19;sn\xae\x17\x0b\xd7\xe8\x7f-}fF\x88\x19S_\x06]e0\xca5\xcb\x9bE&\xeaeMK;Y\xe4$\xa9Nc\xdd4\xe5\x81\xe4\xec\x8ez\x196fl$lLK\x9d\x80\x9b\x11\xe7/\xbb2\xde\xfc\x05\xc1\xb6\x06x\x7f\xfaR\xf4\x04\x8c\xf4\xca\xfa\x9f\xe9\xf0\xe6:\xdc\x85\xf5\xee\xc2z&#\xb5\xa7\xbb\xb0\xbe#\x1a\xd5\xfa\xcd\x82\xd9\xc9Cp\x17\xd6+\xbab\xf4=\x89\xbb\xb0\x9e\x89\xdb\x9at\xc5\xc0i\x1b\xba5\xd1\x9f\xde2\x1a\x89\xc2\x12\x9a\x9f\xbdr\x17\xd6\x8f[F\xdd\xb1\xa1\xbez\xdd\x85\xf5\x00f\xc7e\xf4\x07c\xfa\xe5\xef.\xacWt\x8c\xde\x03r\x17\xd6\xbb\x0b\xeb\x95\x0e\x82\xbb\xb0\xbe\xf9\x8d\xceE\xe1b\x16\xfc\xef\xae#5\xab\xaf\xde\x8c5\xc5]G\xaa\x8f\x98\x00\xbb\x01m\xe2\xe0s1:\x98h\xb6\xab\xe0\xa2\xa2\x9b\x9abz\x00\xd1\xd0v\x80\x85\xfd\x00\xed\x06\xa7\x12\x8bf\x07\xdd\n\xdf\x16\xa3]cS,Z\x03,[\x84\x8a\xd5\xc1A\x9bqQ\x88\xf9\xd0,\xc4\xb4\xa3\xc0\xbe\xb3\xc0\xb6\xc3\x0c\xf7\xac\xc2$&\x07\x00\xb54F\xf9\xa1yEupKS\x8cY\x9bBz\x94D\xdb\xd4\xee:R\xf3%\xf4\x9b\xb8\x8e\xd4]Xo\x9b\xd2y\x88\x958\x0f\xd1y\x88*1\xb4\x1d`a?\xc0\xc2\xf1\xb0hv0_\x03\xb88\x0f\xd1@L;\n\xec;\x0bl;\xccy\x88\x1d\xe9Q\x12mS;\x0f\xd1| \xfd&<\xc4\xaf\x18\x1a\xed.\xac\xef\x8a\xbb\xb0\xde]X\xaf\xfb\xce\xaa\x00`Y\x08p\x17\xd6s14\x00m)\x0c\x82\xd5\x9d\xf0\xee\xc2z\xbd\xb8\x0b\xeb\xc5b\x1a\xb6&\x16wa\xbdZ\x06\x14H\xe7\x124\xc5]Xo\xea\x827\xa5\xc7F\xbd\x90\x1e\xad\x07=[\x10l7\xf0\x85\xd8l\xa0\xdab?3\n\xb1\xedp\xe8\xdf\xe9\xd0\xb7\xe3{m\xf8\x0b\xb1\xd8\xf8\x17\xa2\x0fy\x14K\x8fv\xe9\xd1\x1e\xe6A\x93bq\x17\xd6\xdb\x15\xcd\xeeP8\x17\xd3\xc8Oc\x85\xe6\x17\xba\x99\xc5\x8d\x8a\xe5:\x9aS\x17y*\x96\xeb(\x99\xbb\xb0\xde\xb2p\xee\xc2\xfa\x9al\xbf^}vg6\x01\xc0F\n\xdd\x85\xf5b\xb1\xf7\xc0\x8cX\xbfB\xfa8\x87\xe6({!nSb1\x1d\xb9\xb8M\x89T\xec\xa7D!\xb6\x1d\x0e\xfd;\x1d\xfav\xfcuoJ\xdc\x85\xf5\xda\x0b)\xc4\xd2{`\x98E$5\xc5\xf6J\x0b\xb1X^t!\x16\xcb\xeb/\xc4b~)\x86Xz]\x95!\x16\xfb]\x18\x17\xc3\x1b7,\xb5\x1a\xdd\xcf!\x16kv\xbf)\xbd\xc7so3g\xc0\xa1vep1\xed@U.\xc6\xe1\x02M\x19\\V\xab&\xed\xe3\xc7s1\xbd\xa8\xc4B\xa5\xbb\xb0^\xf5\xa9\xd5\x1ag\xb3\xb2\x99]\xa4Y\x88\xddJn\xb1\x8a[\xd4\x8e\x8bM\x1d\xb9X\xdb\xb8^\x93\xb1\xc7D4\xbe\x88\xb3\x10\xeb\xc6\x82^\x0d\x06\xb6\x17t\x16\xd2\xab\xe1\xa0_\xe3\x81\xfd\xc5\x9d\x85\\o1\xfbx\x0d\xa6\x17{Z\xa8\x1c\xe1\xe6f\xdb\x8b>\x0b\xe9\xd5\xde}\xf6nk\xfb\x0b@\x0b\xb9\x862\xae\xdd\x85\xf5\n\xb14\x86\x96\x0d\x04=\x1a \xfa\x99\xc1\x1e\x8d\x05}\x1a\x0c\xfa\x1a\xc0\xeb+\xa0\xbd\xe9\x1b\xdd\xf0\x8d`\xf6\xfa\x18\xbd\x1emlgL`\x88\xb9\xdbz\xe9\xec\x02}\xcbTv\xc52+\x92\xbb\xb0^,\xe6\xd6\xd0x\xb10lA.\x16\xe6\xc4xi0\xae\x1e\xc1\xc7\xf7?\xef&8\x8d\xb3\xc4\xc3\x10\xa1U>h\xb3(\xf8\x9c\xe1p\x03t$\x93`\x1e\xe4; \x92\xdft\"\x8b\x02Hq\x12\xa00\xf8\x82}\xf1Y\xadu\x12\x93\xd8\x8bC\x98e\xf39N\x8a\xabR&\xfcVN^\x17Xei9\xa3\x00\x11\x081J\x89X_\x1ca\xb8\xbd{\x1b\xbc%J\x90GpB5a\xe6\x87B\x8a\x17+\x1c\x95\xd3\xfd\xe3\xfb\x9fwRX#\xb2d\x19\x08\xd5\x95\xe7\xd2\xc5\xb9Q5\xf3,\x0c7\xf09C!m\x15\x9f\xb7Y\x9e\x05k\x9d;(\x85 \x12+\xf8D\xb3\xdf]\xc4\xf1\"\xc4\x13\xd6\x16\xb3l>y\x95%\xec\x80\xdb\xa7\xbb\xbc\xf4Le\xba\x8c\xb3\xd0\x87\x19\xbbFF|\\\xc1CQ\x1c\x05\x1e\n\xd9\x04\x11\xe7x\x07O\x16\x93{\xb4 \xd9Q\xbd\xdb\x93\xdb\xd4F\xb0\xdbV=\x0f\xaf \xf6\xefNn\x89\x93\x9eD\xb0\xa6\x8d\x1ax\xf8\x1e\x10\x8cV)di\x86h\xf5\xf9I\xfdu\x10\xd2\xd2\x91\x98_j\x1aD(\xd9\x00\nCq\xdbm\xd68\xbfq\x95,\xf1F\x9c%\xbeZc\x8f@@\xe8v#K\x8b+t\xd8`\xc0W\xac+\x8f\xa2\xcd\x04~\x8c/\xf1\x05N\xee1\xd3\xf6\xf1\xfd\xcf\xe2m4_y\xa9\x1a:\\\xc5\xe3\xd5[\xe2\x15\x86OKB\xd6\x9f\xee\xf1\xffM?\xb1\xfb\x07\xa28\xff\xf5\x1e\x1be\x1e\x8a f\xb3\x89\xb5@\xd7ts\xc9\xd6\xf9}@\x92\xfcpr\x81\x13\xde\x0c+\xb4N\xf9\x90\xa15`\x1b\xac\xfc\xe2 \x869\x04\xfc\xeeX$\xae\xdb<\x0e\xc3\xf82}&\xe9\xbb\x7f\x87\x93yU\x03\xda\xe5\xeb$\xa6\xcb\x92_V\x92-\x88i\x9a\xad\xb0/\xb9x\xe8\xdf\xe1(\x82\x1f\xcf\xceN\xe1\xcd\xf1Y~\xe1.-+\x9f\xa0\x9b\x00\x87\xbedd\xfe\xb3=\xc4\xcf6k\xfc\xaf\x7f\xfeK\xf81\xb3\xe5\x19\xeb\xeb|\x0cq{\xcfza\x9d\xc4~\xe6a@\x11\xe0$\x89%\x81\xd4\xff\x0eG\xd59\xd1\x94\xdd\x1d\x8ch\xfb`\x9f6\xab\x87\xeeP\x84\x16\xb2\x1a\xcf\x12\x8c\xce\xa9\xed\xc8\x95N\xee\x8aG\xcb/1\xc1\xcf\x80P;>\xcf\"\x8f\xcf\x14Z\xf6\xdc\xdexY\x92\xe0\x88\x84\x9b\x1a\x82\xa68\xa7\x1c\xcf\xe7\x81\x17\xa0P\xb1\x8e\xcc\xb29$\x98\xae\x0e\xf8\x1e;=\x1c\x90\"\xb3\x8cv.\xf3{\xca\xf95\xc3\x8b \x8ad^\xe5e@\x96\x12\xa3\xbfY\xe3 \x1f\xcfh\x1d\xa4\x13/^\xc9,\xe6\x076\xdbR\x88\xc9\x92O\xf2\xa8mY\xe0N\xee\x8b\xe1\xd5\x9al\xf2\xe9yW\xa8l\xc50\x96\x99\xc4\x90\xb0\n2X1X\xadCL\x17:6\xf8!]c/\x98\x07\x1e\xa4x\x85\"\x12x\x82\x10\x1f6\xdfz\xb8\x146\x8e\xb7\xc4\xe3xKM\xc7\x0c\x17\xf7t\xd4\x1c\x86\x8eoP\x9c\x00\x9f\xc5\x17\x12g\x83W5\x1f\xce\xedj\xeaJ\xf3\xe9(\xda|\xaa\x1cw\x14\x01Jf\x01I\xe8\xe4S\x94*\xb7\xd1\x1du(\x8c\xa3\x05\xef\x11\xd4\xed2j5\x99\xd1\xe7\xa5\x9au\xdd\xa9z\x9e\x85W$\x18f\xa7\xc5\xc0\x0f\x83\x19+jn\xd7SH\xb3\xf5:N\xd8\xca\xb9F\xde\xf9n\x16\xd1\xff\xa1\xeb%\xefo\xe6\x95\xb4\xd51\x8fF\xe8<\xc4s\xc8\x087>\xc5tN\xa9\xe1C\xbe\x1f\xf0\xb9\x0d\x0b\x1c\xe1\x04\x11V`\xbau(\x0f\xed\x1f \xec\x1d\xef\xa2n>\xc7W\x88\x0e`\xd8\x7f\x06\xa7\xb4\xbct\x1e\xe7EG\xf5\x9b\xf4^\xfe\xf0\x83d\x99z\x1d\xc70\x8fcx\x0e\x93\xc9\xe4\xbf\x0b?\xa1\x8d\x80\xa2\x8d\xf8G\x14m&4\xeb\xd7I\xbc\xba3\x8f\xe3\xbb\xe2\xcf&\x13\xf1\xda\x13\xcc\xe1\x0eU\xf1\x91\x15\xfa,\xbe\xf3oT\xc7]\xf8CbOez\xfe\x94\xb7\xcd\x81\xa6m\xfe\x86.\xd0\xe0\xc6\x81\xe7\xcc\xb7\xa2\xda\x07\xb4B\x90\xdey\x1d\xc7\x13/Di\xaah\x04^$\x9a\x80\xd7\xa7\x96H\x9c\xaf\xa0u\xca\xe6y\xa0i\x9e\xd3\x0dY\xc6\x91\xa4\x81xI^\xc7\xf1\x9d\xc9d\"\xb6\xc4e\xe3\xdc\x91\xfe\xce\x06\x10k6\xdbV\xa3\x89Ox\xa3\xbd:\xfe\xf0\xf2\xfd\xc9\xe9\xd9\xbb\xf7we\xe8H5\xd0\xe4\x99\xf1\xec\xe4\xcdu\xa8i\xae7\xb1\xe4\x9e\x0d\xdaT\xcf\x9e\xc3\xbf\xadg\x93\xd7q\xfc\xc7d2\xf9S\xfc!\x8a6\xf7\xa8\xbbF\xbf^s\x07\xe4-J\xd2%\ni#\xca\x0b.k\xa6v\xce\x92l\x83y+\xd3\x8f\xd1\xaa\xca\x96\x15\x8a\x0dl\xf6\xd5\x7f{\x0eQ\x10J\x07\xa8\xbc,\x82\x91H7m\xac\x1d\x0b;X8\xdb0\xdbT\xaeJa\xb1\xf9s\x19\x9b\x02j\xech\xcbR\xc1\x9a\xbf#pCv\xe9^t\xc2~\xa0\xae\xdc\x0e\xa0\xda\xaaBW\x9c\xfcF\x95n\x0e\xac\xd7\xbb\x99\x94f<\n7\xc5\xbe\xa9\xb3\xe1-]G@s\x82\xb97C\xf7\xdb\xdd\"\xef\xeet\xb3\xc87tE\x11\xf9\x0e\x0e\xe7#\xf3\xf6<\x8e'3\x94\xb0\xca]\xedn&_n\xf3\xd6\xe2{\x0d\xf1\xb6\x8a\x15\xe56\xfd\x96./\x9d\x9f\xff\xf6\xe1\xdd/\xdd\xbf>\x7f\xfe\xfc\xb9\xb8\x1f\xe9\xf7\x15\x0e\xc0}\xaa\x98N\xd3\xdca\xe0{\x95,\xc5\x05\xd2\xb6\xc8B$\xb8q\xae\xab\x82~\xee\xe3j\x99\xbf\x07x5\xc3\xbe_-\xf8\xf7r\xffA\x80\x1e\xd4\x96\xdd9k\x8cO\xffA\x9b\xe3S\xbe\xc9m\xe0\x8fE\xe3N\x8a)\xffL\xe2D#\xef\x9c\xce\xf9j\xb36\x0fB,\xb6\xbf\x85}8\xc5I\x1aG\xd2i\x93#8\xec\xf5\x95)\xeb\x99\xe7\xb0/\xd6X~\xccH\xc3\xfc\xdb\x03s\xeb\x0f -\xc5m\xd66\xb7\x9f\xc1m\xd1\xaciVw\xc2kt\xfb\x9eL\x17\xab\xcb/hE\xf5\xfd\x0f^\xe4\xff)\xfd\x98\xd6\xa5\xf5\xadi\x85N\xe6\xf9\xc6\xa09&xo\x06)\\\xe20\xbc\x7f\x1e\xc5\x97\x11\x9b\xd7K\x94\x02\x02/KI\xbc\x92\x0c\xf2\xe6\x10\xbc\xc7\x1d\xd0\xd6\xb8,\xde\xee)\xb3\xa5\x03-Z\x08\xf6\xf5l\xd8u3\xf9\xc4&D1\x0e\x97q\xe8\xe77ZU%c\x08V>~!G\x8b\xf2\xe1\xdb\xd5\xc7\xb2)G.\xdc\xa1\xf6\xa1h\x8a\x0e\xacP g\xff\xfa\xe7\xbf\xeeJ\x06\xf9\xd01\xd2\xccH>LX3Pu\xfb\x93\x83\xfd\x83\xf4\xb6\xa4\xdb\xeb\xff\xa5\x8adP\xec\xc4\xe4\xd4\xa86L\xa3\x87\xd6\xc66\xaa\x04\xfc\x0b\xa2\x81\xd4\xf9\x85\x12\x92\xbf\x9f\xe2\x92DY\xa3E\x10\xb1\xb6\xab\n\xd3\xd0Y}P\xc6\xda\xa0\xa8\xfe\xd7B}AjT\xeb2\x11\x81\xeab8\x9d\xdd\xf5\xd1\xc1\xe5\xa5\xed!\xdd\xe9\xe6T\xdf\xffn\xef'\x0b\xfdE\xc3\xd0\x7f\xe6p\x0dJS\x8eC\x9d\xa2\x05~\x8f?g8%\x13\xfe{K\xc9\xe7\x0c'\x1b\x96\x9c\xaa\xa3m\x80a\x15\xa7\x040\x03C\x18zRK\" \xda\xb5\x15\x12\\r'\x8b\x8bb\xeaY}\xd8?\xa2l5\xe3\xbb\xf2\x02B\xab\xe18\xedh\x92zU\xbd8\x8b\xc8\x94)iO\xd1K\x94B\x8a\xc9=\x08HZ\xa0\x80)d\x11\x1f\x08>\x07R.\x83<\xc6J\xc3\x84\x89\xd8(\xab\xf7\x9b\xeb\nz?\xe3\xfcK\xec\xe3\x93h\x1e[\xf3a\xb9;8\x8db\x1fO\x83h\x1e\xb7y-\xa3q^\xc0\x15S\xe1u\x95BEre\xec\x97\x03\x01)\xac\xc4\x89\x14CMz\xe3d\x7f\x85\xc2;\"\xfb\xa9k\xf6\x80o4\xb3\xc2 %8b\x1c\xbd\xd1\xf7\x11&\x97qrn\xf4\xad\xa2\x0b;\xdfzK\x14E8L\x8d>\x96\xda\xb7U\x1c\x05\xe7\xe2\x07\xa7;J\xd8\xdc\x1c<\xbc\xc8\x95\xec\xcelE\x1f&k\xcf\xea-\xc8\xda%\x92\xddya1\xb9\xa8\x93j\xd46h\xbd\x9e\x1a\x7fl\xd3\xcd\x8b@\x15_\xd7\xf9|\x96\x05\xa1?%ha6.\x16\xb1\xcalH\xb4\xfbx-\xd4\xde\x8dj\x12F4I\xc7\x8c\x9a\x18_#\"\x8c\xfdR\xce\xfcr\xad[\xc5~\x16b\xa6\xa4\xf3\x91\xe2\x9e_+\xe5\xb9\x9e\xcew\xa98l\xcaL\xb7\xb7\xc4\xdey\x9a\xad\xda\x8d\xc8\x7f}\xcbsn\xfbf\xbf\xf2\x92\x9c4\xefu\xe2K\xd94\xf5\xcf\xad:\xbd\xccl\xe7C\x10y\xec\xe2(\xaa\xe7~\xea\x9f\xc3\xde\xe4\xf0\xc1N\xf9m\xd3s\xac\xca \xf4\x1d\x05+g\x05\x83w\xb4\xd5\x17\xffN\xb2r\xc9g\xeeG3\x9br\xad/R\xd1\xf5=\xd7e\xb3\xca\x7f\xd8D^\x10-\xac\x17\xf9\x94\xa7k[\x9fY\x1c\x87\x18E\xea\x8a\xb6\xf24\x8c\xf5\xc9S\xf5\xac\xa7\xc8%\xb2\xae\xb4\x8b\xf4)R\xb8H\x1f\x17\xe9\xe3\"}\xc0E\xfa\xb8H\x1f\x17\xe9\xe3\"}\xb8\xb8H\x1f\x17\xe9\xc3Z\xcaE\xfa\xd4\xc5E\xfat\xc4<\x98\xc5E\xfa\x88>q\x91>.\xd2\xc7E\xfa\xb4\xc5E\xfa\xb8H\x1f\x17\xe9S\x8a\x8b\xf4q\x91>.\xd2\xc7E\xfa\xb8H\x1f\x17\xe9s\xe3\"}T|\xd45\xc7\xfap\xb2\xd5\x98\x04k\x12\xd6\xc2\xde\x93\x92\xd3\x92\x98\x05e\xf2&\xfd\xdc \x9dU\xa9\x1b\x04\xb3\x0d\xad\xaci\xad\xb2\xbd\x8d\x1b\xacC\xc7 \x8a\xdd\xa1\xe0,\xec\x04\x11\x12n\xd2i\xa5\x06\x99F\xa4\xd7\xe4\xc4\xdax\x94\xdahd\x9a\x94F\x1b@\xa0\x8dE\x9d\xa9I\xb3^tYo\xa2\x8c\xd5\xb7\xcd\xefH)\xb2\xde\xe4\x18\xf7\xcdZ\xda$\xb4\xd8\x10B\x8c\x91_\xed\xda\x08\xf6l}H09\xe15\x90\xea2\"\xb9\xcc \xad\x01T\xd6\x00\x12K\xb8\xcb\x1f\x8d\xaa\x1a\x97\xa4\x1a\x8d\x9e\xd2\x13S\xa3QR22j\x08\x0d%\xa4\x9c\x04{\x91\xae\xbd\xe9K3I)\xa5\x9ed\x92\x80F\xd2\xfa\x9f\x1d\x87Z\xbd\x82\xf6\xa4\x8b*jH\xd4\xbe\xb7\xf4y\x0f#\x878\x19TS\xd7\xa5\x85F \x84\x86QA\xadQ\xde^\x0c\x07\xd2?yC\xd75\x0e!z\x94,\x86\x84\xdc\xd1\xd2:]\x84\xd7\x9c\xca\xe9\xa6\xfdST\xd7^\xc4\x8dIeud\x8d\xbcnZ\x82\xc6\x82\x9ai\xa2X\x03\xe9\x18%\x11#\xa7`T\xe4\x8b\xb0\x15L \x17\x1d\xd5\xd2&Y\x06\xd0+\x06\xc4\x8a=\xa5\" 0t4\xcaH\x04\x8a \xe7\xc6H\x19D\x97\xb4\xe9\x91!\xc4\x88\x80\x08\x19D\x81\xb4)\x8f1\xc9\x0e)\xcd\xd1\xc6~\xdb\xd4\xc68\xa4\xc6ht\xc6\xb8D\x86\x19\x85\xa1%/\x0ci\x0b\x13\xc2\xa2\x83\xecws3\x85\x9e\xd5\xf4\x84!1a@I4\x8a<&\x0d1\x88\x80\xe8\x12\x0e\xe3Q\x0d\xe3\x91\x0c\xfd{WK,\xe8(\x85\xc2|\x8bi\x04\xa1'.\x02\xf9\x15\xa4\x81\xa1\x8e!\x14\x81\x0e \xac\xd0Dc\x88\xb0y\xc4JP\x87\xee9,\xc1G&\xe8\xaa\xe8\xdc\x95\xe03\xd1y+\x916\xc19+\xa9\xb6\xe6\xf9*\xb2\x85\x83\x0f\xa2\xb3T\xd2\xed\x9d\xf6\x0c\x95\xe4\xfc\x94\xb1B\xd1\xb9)\xc1\x99)\xbd>\xc1Y)\x1b@\x1b4g\xa4\x84\x0509\x1b5\xe6\xb9\xa8\xdaD\xf2\x92\xcd\x9a\xc4\x93\xf2\xe5\n\xe3Y\xd4y1Di\x0cj\xdbz\xc1\xeb\x1efI\x8bK\xd5-\x1e\xd9P?\xa1Qk\x86\xf5\xc1z\xf2\x8a;\x90E\xc3\x19\xb7\x84\xfc\xf0\xb4pFIN`\xb7\x0fLKG\xaa\x94\xa9\x13\x1c\x92\xb6W\xd29\x18m\xa7Bz\x18Z\xa0Fx\x08Z\xf0]\xe7\xf0sOk\xdc=\xecl6\xee\x04\x07\x9c\x05 [\x07\x9b-\xba^|\x98Y\xd2\xee\xd2C\xcc\xad\xef\xd5c\xfb]UX\x83\x01\xde-\xa0\xa0p\xc2\x82\xa9\x0bu\x9aO\x9c_\xeb\x9dgP\x9e\xc6\\Q\xf6acl\xb6\xe6\x87y\xc2\xc6\x9c0KV\xab)a;\xe5\x17U\xe6\x065l\xbf\xb5a1\x9a\xc4\xa7r\xb9\xe9\x9c\xa14\xf0\xf2\x8b\xe5\x83\xe6\xb9^\xe9\xf2\xaf:\x7fx\x93\xafe\xd0!\xc7/\xe9\xa2\x18\xa5Y\n\x1eZ\xb3\x876\n\xb2,\xffs\x92\x85\x98=\xb4@\x1b\xc0\xc3i\xcaw\x1dE\xeb\xb5\xd41\xe2\x8e\xfe\xe4-Q\x10\xddko\x03\xf8\x83\x01L\x03\xdd\xce\x94\x1f\x82\x8f\x08\xa2u\xcb<^\x86\x02y\xe0\xb9\x0b\xa9\xde\xda\xbd\x04;i;\xa3\x94 \x82\x81$(J\xf9&g\x85\xbce\x105N?\xb0\x9cM\xaf\xaa\x10=\xa8\xa3]\x13\xda\x9dA\x02\xc3[\x0d*\x15\xa2\x07!\xd8\xc6Z\xfc~N\x8f\xd1+~\x08\xc6h\xb4 \x0e\xb8h\xdf\xc9\x91\x96\x10\x94\xa5dI\xe5o\xe3p\xad\xaawq\xe4\xe1`\\\xb6\xf5t\x90\xf6\x0d\x1c\xe9\xfb7\xb5\xf7\xa0\xa6\xdd\xd2iG\x8e,&\x8b\xaa\xe2s\x8a\xcfa:\xf5j\xdf\xd1\xff\x1c!\xbb\xea\xdc\xf9\x08\xca\xdae\x9f'\xf1\x8a\xb3X\xeb5\xc4\x19Yg\xa4\xfa\xdb:\xc1\x17\x9dw\xdeY\xdc\xd9\xa8e*-\xe4\x08\xba\xe8N{\xb8\x166^r\xca{\x04u\xc5C,#\xa8\xaav\x95\xe5\xb2\xd2ZwKt\xc5\xc4\xa9\xabD\x98_c\xc1\xe3\x13\xae\xb1G*\x97\x19\x86\xed\xd6\xb7E|Bp\xcbU\xac\x14t>\xf4\xf2@\xc8\x95\xb0\x16V7\xbb\x08\x8dNO\x8e\xf8\xec*?W^@\x89l\x01\xe5l\x02_.\xff\x837\xc0\x84\x07\xf4\xfd\xb0\xdf\xe1\x9e~ywv\xfc\x8c\x87\xf9\x84!\xad ,q\x82Y\x08\x06\x9b[\x13\x80\xdf\xf0N\x82\xe1\xf7,%\x80\x16 \xc6t\xad\x17\x06^\xc4 \xed\x17\x06\xcev\xf2a!Y+\x8c\xa2\xbc\xc4\xbcXG\xeb\xf5\x8f(]\x82\x1fc\x1e6\x90??D\x95\xa7\x98\x16\xa7\x16\xf2\xca\xc7\xdb+\xeaV4\xb0r\xfe|\x1f\xf7\x0cP\xce\xd7\xd6\x9f1*\x1d\x98\\U1\x0bz\x0d\x81nb\xe87\x0e\xac/\xc4\xf03\xee\x1c\xe1\xe9EL\xf0T\\\x10.\xca\x05Y\xb7$3X\x15O\x91\xf87\xadr0\xc8\x00\n5\xd2_\x0d\x96h.\xeaW\xd7\x80\xbdu\xf6\xe1\xe4\xcd/\xc7\xaf\xa6o?\xbc\x99\x9e\xfd\xd7\xe9\xb1\xf6\xed5q\xaa\xd3\xf7\xc7\xbf\xbe;;\xb6O\xa5y\x8bM\x96\xee\xdd\xe9\xbb\x0fG\xb2g\xd9\x00jO\xb3\xd9\xd7OwB\xb8.\x1f\x82E\x84\xfd\xb7\xe9\xe2,\xe7A\xf8-\x0ft\xca\xa5\xec\xa7:\xc5+\xbf>\x80K\xb9ZH\xce$\x96\"m\xffg\xec\x9d2\xcd;\xb1\xf2\xf6|\x06\xa7l]B\xa1\\\xc55?9-y\x87\xb3\x12\xbd'\xcc\xa5\x96]\xe7m\xceJ\xe4\xaftVb0\xc7\xc1p\x9e\x83\xf6aJ.\x86M\n:\xe7\xbc.\xda\x9dKS\x0ck\x0d\x165\xa7\xa2y\xff\xb3\xf6\xa1a?\x17b6\xbc\n1\xe9\x04\xb0\xeb\x08\xb0\xe9\x0c\x83}\x93\xf0s\xf1+\xa2\xf5\xcf\xae\xff)b\x8b\xe7(\xc1>weSV\x19K\xee\x89\xac\xc4t<\x99\xd9\x0d\xedK\x950jMM\x97(\xf6je\xc9\xac\xb37-\x13L=\x98{y\xd0\xef*\xe0A\xc8\xfc\x9f\xcc\xb9\x91*c;\xce\xda{\xcf\xf3Xp\xbe\xb5\x90\xdaZ&\xfa\x99yQ3\xe7E9/\n\x9c\x17%\x14\xc3\xc1i\xb6\xcc9/\n\xcc\x9b\x14\xccl0\x17\xe7E\xd5\xc4\xa4\x13\xc0\xae#\xc0\xa63\x9c\x17e\x9a\xbb\xf3\xa2,\x96\xa8\x1b\xebE\xb1i?U\xdd\x17P~\xa9o4\xfdT\xaf\xc6\xc5\xf6\xf3\xd2N9\x8b\\TS\xcdd\x0c\xbc*\xc0E:\x10\x8e\x8b\xf7\xdaK\x98\xb5|\xc1\x9d\xc1\xebe# U\xe5\xee\x0c\xb9\x8ci\xfay\x18x\xb4\xef\xd8\x88\x11\xf4qH\x9d\x84\xa9\x17\x068\"SD\x08\xf2\xce\xb7 m\xd6J4\x95p\xfc\\\x0cV1]^P6\x86\xc1\xcai\x90\x1f\x18\xe6 \x820\x0b\xb1\x18f\n\x16\x19\x83\xfa\xc6\xf8\xb6\x98\x84oHR\x9a\x97\x1d,\xcb\x0f\xf2\x00\x10\xb1\x18L\xd4\xb6\x14\x13W\x18,\"\x16a\x08\x89X\xae\xa3@&f\xa5-\xe6\xa1)F\xea\x84\xe1+\xba\x80\x15\xb1\xd8\x84\xb1\x18)l\x87\xba\xa8\x83[\xc4b\x12\xf2\"\x16q \x8cX\xac\x06\x8b~WW\x88\x95Z\x93\xf5\xb2.\xdd\xb0\x1b\xc9w\xfd\n\xa1\xf7\\\x0bQ\x04\xee\x88e\xcbv\xcbt\x7f\x02\xf6\x8d\x03f.gS,7\x8f\x85X\xb6\x12\xf4h)\xb0\xd9T\x16b\xba\x19h\x8b\xdd\xe8.\xc4\xa63\xa1_\x87B\x9fN\xb5\xde\x84\xb6\x92\xe96\xa3\x85\xa8\xc3\xa5\xc4b\xd9\x06\x96u7\x0b\xb8\x12\x8b$\x0cK,\xdb\xac\x862h\xea\xffg\xef\xed\xbe\xe4\xb6\x91<\xd1w\xff\x15\xb1z\x18\xc93\xa5\xd4\xb8{\xee\x8bv\xbdgeI\xb6k\xc6-\xd5\x95\xca=gn\x9f>%V&\xaa\x8a#&\x99&\x99%U\xef\xf4\xff~\x0f\xbeH\x80\x08\x00\x01\x12\xa9\xb6{\x88\x87n\xab\x92\x0c|0\x10\x11\x88\x8f\x1f\xf0v\xca\xe1\xf8q\xb8\xf0F\xcd\x18#\x11\x9bf\x95\xe1-\x9ek\x86\xb7S.[([\x0do\xa7\x1c\x0d\x9e\xef\x86\xb7S\x8e#\x921\x87\xb7S\x0e(\x90s\x87\xb7S\x0e&\x9e\xb5\x87\xb7p.\x1f\xdeN7\x8f\xd4\x93GJ\xc2`\x94\x18\x96P\x887\xec^:\xb7%X:)\x16\xce\xaf\xc4N\x8fFetK5\xach\xdeV\xddV\x03\xdd\xdbV\x03]\xb44\xb6\xd6-\xe5c\xc2\xbc\x0f\ns>\xea\x972\xd0\x87h\x06\xe9\x93\xca\xd9\xbbY\xb2xCsg\xf1\x96\xcc\x8c\xe9\xac\xa8%\xc8\xd5MU\xdcR_\x9a\xf9\xc1\xe3\xd9\x18v{\n\xdf\xfd\xf4\xf6\xe5\xbf]\x9d\xbf\xba\xfa\xfe\xa7\x17?\x102\x17\xa6mJ\xe1\xc5w\xef_\xbf '[\xd8mJ\x80\x90\xada\xb7)\x817\xe7\xa1\xa4\x0d\xbb\x0d)\x1c\xcb\x96!\xed\x14\"\x9b\xdc(\xbb\xef\xab\xe2\x16\xcaz'B(\nu\x12\xbe\xab\xb6\xcd\xc7\xf3W\xd1l\x0e\xbb\x0d[\nJ\xba#41\x92j\xb7Y<:K$\x11B\xccv[44\xba\x13O6Rh\xd6n\x8b\xc6G^\xbaT{W\xb6\x97\xc2\xfc|_\xde\xcal#\xae\xe7\xb5+ZD{u\x89\x04\x91\\YC\xa1h\xc6\xdc\xcf\xa9\xe3\x95T\xed\xa2\x8e!\xe2(\xaaE\xb4w\xff\x93\xe7N@\xb3I\xb3\xbb\x97U0\x85\xae\x0e\x19\x0f\xef\xfe\xd1\x8f{\xa8c\x84\xc4\xa5\xa8\xbe\xa1j\x19\xecBW\xbc\xd15(Q{\x12g\"\x1bu>\xb2%\xc9\xa1\xe4\x8d\x94\xb8\x89\xe5Eo\xd4HP\xe0\xd8\x9d\x193\xa4\xabk\x07@L\xa4\xf8\xa2\xd2T\x9b\x00\x7f\xd6\x8f\xd3L\xb7\x0d|O{0\x99\x93l\x04\x88\xda \x90\xd9V\x80\x19\xf6\x82\xef\x9d\x18\x8a\xb2/\xed\x93\xa4f1\x95\xe5\xa9\xc3\x0f\xebA\x9f\xfc\x85`E\xfd\x02\x8d}*\xa5J\xb03 6r\x88\x8e\x1e\xc26\x07D\xd7[\xb7\x98\xed\x01\xd1\xca\xf3\xe8rA|\xc9\x08\xb6\x08\x84\xec\x11\xf0\xdb$\x10\x1bb8b\x12\xb5O\x80J\x1f\x99z\x14\x19x\xfe\x9e d\x8f\xcc\x1bm8?q\xb6\x1d\xe3[\x11\x14\xc9\x17\xc5\xef\xc5\xee>X\xb5\xe1\xaa\x0dWmh\xb5U\x1b\xae\xdaP\xfdDa\xe5U\x1b\xc2oR\x1b\xc6\xaa#\xbc\xd3\xf5\xb1~\x10\xa5>\x99Z>\xc7\x91\xff\x0b\xe4\xf2\x04\x80\xcf\x1b\x00d,yT\xae\xe1\xb2,\x82\x16?\xc3\xa2\x89\xe0\xc1/\xd1\x16\xa7\x15\xe5QL\xf7T$\xf7\xe8\x98\x804.\xa0a\xb5\x93T\x00\x18\xcc\x1d\x85A\x8f\xa2\xb1\xe7\xee\x92R\x8c$\x1b\x1de\x1dF\x04\xf5\xd0Tga\xab\xa7 \xaa\x8fh\xe9\x01\x82\xa98\xea\xa9\xe8\xe9q\xcct\xc2'\x8d\xe1.\x12H\xd0L\x9e0\x02zR71\xa0$\"\xc6y\xc6\x1d\x1d\xc7\xd5#M\x10(v\x9dl$\x93X7\xd2L\x81<[\x88\x9b\xca\xc3c$\x93Y7\n\x1f\xe9\x16_rHYv\xa0/=\xd1\xb4\x9e<\x1c\x86(\xa4#\x87\x93fD\x9aI:68\x01\x11<\xd7\xf0\xc8\xe0\xd5\xb9:\x9c\xaeG\x14\xae;\x08\xc5\x9d\x06\xc0\x9dk\x0eT\x88\xed\\\xfd\xc5A\xb4s\xf5\x94\x00\x93\x9d\xabK\"\x10v\xae\xee \xea\xfa@\x06\xb8\xce3>\xcb\x98K\xc1\xa7\x8e\xe2O\x87P\xa7\xa3z+\xae\xaf\xbe\x98}\x13A\x8e\xa6)\xc2\x90\xffA\xb7\xd5\xb0\x19\x1bi\xa6@\x9e-\xac\x86Mn\xc3\x86\x82\xb8,\xe7\x12F\x89\x8c\xe2C\x12Y\x81\xca\x08\xd1\xda{\xb3%|\x0c\x1aVr\xbc\xc8\x87\xf6\x1e\x11\x179Z\x10D{-\x8e\x81L,\x1e\xc2\x1b\x15Q'\x1f\xcaq\x14\x1e\xc0l\x04\xaf\xb6\xdd\x12\xb8&a\x03\x131\x8bgt\x1e;v\xcbFF%\x9e1\x82\xc8\xf4\xe9\x1e':\xda\xb0(\xc8\"P\xc2\x9d4\xb4\x11\xcd\xafT\xf4\x10$\xa0\x08G\xb0\x83\x83\xd24,Cc\xa8l1i\x1f\x94\xf4\x04)O\x91\xf0\x84\x1dJdO\x12k\x12P\xd8\x08\x13\x03\xe2\xe4\x80\x8e\xbfF\x9c$P'\n)\xc8k\xf9;\xa7i\x88\xbc\x88kixk\x14\xc81\xa0\xaf\x0d\xcd\xae<\xa4\xe0\xace\xea\xf9\x10D\xc6\x8dr{\x9c\xcf\xa3[\x984\x11\x02cE7ot2@\x9a\x10P\xb7-ib@\x9b\x1c\xd07l\xden)[5\xe7FM\xd9\xa6\xb4MJZ\x8f\xd86\x81\xb4\xed\x99\xa5\xcfXx\x7fx.\xd6\x99\xaf\xa3\x00\x16\xac\x97\xa6\x8fV\x1c\xed\xd5gO\xe4Db;\x11\xf8W@\xb4D\x84JL\x9cD\x04I\xf4\xd3\x12vqTl,\xef$,$\x92\xc5C\xec\xda\xbc\x80`\x88\xed\x16\"\x17\xe0[\x92$\x00f\xf6\x10\xdb\xec\xc9\x1b\xf2Kd\xdf\xcc\xc4(\xc5\xeb\x99\xa8\xc8\xa4\xde\xfa\x9c\x9f\xca\x8e\x8e\xcd\xe5\xcb\xdf!\xe1n8\xdb\xdd\xb7\xcd\xa3\x95@A\xaa!\xca\xe0\xa9\x0d\x92m\xa1T\x12\xaf\xa3\xbfD\xf9\x1b\xa2\xbe\xb3\x94\x8ci\xdf\x1b\xfe\xbc\xe9\xc0\x1b\x11oYB\x0e\xb5l\xc9\x99\xd4\xfa5\x8a\xaf!=\xab\xdaK(\x92m-\xdb\x9c\x9ck\xff\x9b\xb1\xcck\xd9\xbe\x00\x08}0\xda#{\x08\xc7\x06\xe2\x91\x9eX\x9c\x87p\xec\x88\xedG \x84\x1b\x08\xcb\x05qM.[Bl\x870; \xce\x10\x80\x18\xd5\xa1|7\xdd\xe2,\xa2[l\x81\x81\xbe\xc8@]\xe8\xa4H\x0e!\x8e\x13u+\x13&@s#\x93\xbd\xe8 =z\x97*\x9a-.\x1b\x85/\xe2\xfb9\xea\x18_>#\x8a\n\xc8\x95W.[8\xbb\\64\xc7\\\xbd\x8e\xd4]\xc9\xb6Z\x1a\xab\xa51\xb4\xd5\xd28\xa9dZ-\x8d\xd5\xd2@\x1ai\xa1WK\x03(K\xb5Z\x1a\x7fcK#\xe6\x07SO\x85\x17&\xbc\x15\x83Un\xb2-\xa2\x7f\xca\xab\"b\xdfsQ=\x9c;\x93O\x8d\xbf*N6Zm\x9c\"7\xcf\xcd\x15\xa9\x96\x93m\xa1\x1d\x1a\xa9\x9f\x93\x8d\xa0\x81b\xfd@\xa4\xa2N6BG@\xec\x0c(5v\xb2\xa5V\xda\xa9\xb7hc\x85\x84\xf1\x02\xad\xf6N6\x82\x8c4\x9b\xde`\xd1:<\xd9\xa2\xd5x\xb2\x9dr\x10\xb1-?m\xf4*\xbd(\xa9\xb1\x8aof\xad\x9el\xa9\x15{Q\x82r\x06\xa9u{\xb2\xa5V\xef\xc9\x16\xaf\xe1\x93\x8d\xcc\x08\xb1|w\xd9\xc8\xe4b:\xc9l\xe1\n?\xf5Lz\xc7\xb4\xb4Cb\xcd\x9fl'\x92-\x14\xfb\x1b\xd2\x16\x01\xe2\xa6\x98\xdd\x12\x0e>\xba%\xac\x06$\xae\x08P\x0fD\xbaQ\x0c\xe0i\xa3s\xa8n\xd4\x0f\x05\xe9\x1f\x0bR?X\xd2\x01j\xf2J8\xf5^6ze\xa1l \xf3M\x98gz\xad\xa1l\x84\x8aC\xd9N1lr\xfd\x9el\xa7\x18B\xde\xaaD\xd9\xd2j\x13e;\xc5\xdc\xa8\xd5\x8a\xb2\x9db\x04\xf1\xfaE\xd9N\xd1wBE\xa3l\xa7\x18\x04\xb1\xc6Q\xb6S\x0c \xad\xeaQ6z\xed\xa3l\xf9\xc7\x9db:\xa7\x17K\x06\xc9\xf9\x0b)e\x0b\x95S\xcaFT\xf7T5\xff748#%\x97\xb2\xa5X\x14q\xd7\x9an\xab\xa5\xb9Z\x9a\xb1\xa7!\xe1CA\xfa\xc7\x82\xd4\x0fvjK\x93R\xea)\x9b\x9ci\xb8\xe0S\xb6h\xd9\xa7lI\x8c\x95\xc6VI\x85\xa0\xb2%\x7fHZQ\xa8lsKCe\x9bY *\xdb\xcc2Q\xd9\xd2\x8bEe[T2*\x1b\xa5\xd6\xc0l\xb9\xcaGeK*\"\x95\x8d\x1c\x9a\xb2[2\xdf%\x8b\x0fbq\xa9l\xb3\x87C\xf3\xf8\xc8\x16\x8du\xd9m\xf6\x98HK\x94b\x17\xca\x96\xaf\x0c\xd5\xa4\x17\xf29\xa6\x8c1\xa905H \xbd^3P\x9e*[\xa4HU6\x82\xec\xa7H\xfcX\xd9\xaal4\xcdE\xd0Z\x84Q\xcbF\x19\xbbldY\x91\xb4 \x126@\xb4RN7\xf2\xe4!i\x01 ^\xf8b\xb7\xa4\x85\x80\xb4\xc5\x00J\x89\x8c\xddN;\x9c\x14-\x98RZC 7)\xbe\x89W\xe0\xe9\x16\x8b\xd7\xdb-i\xfdRlyR\x81\x8e\xddN0\x96pI\xadl\xc4\x9dE\xddSD\x91\x920Y2\xcb\x12\x85 q\xc2\x900iH\x13# \x93\x87\x94\x05\x80T\x01r\xba\x81\xd0EGV\xc11Sl\xa4\x08\x8d\x845\xa3mR\x98#.\xb2\x8f\x82\x96\xed4\xdcu\xa0\xe8W\xb6H/a\xea\xf12`\xd9\xc2\xf6Y\xc0.\x8b\xca\x91\xb8\xf4\x88\nK\xd2:\x13\xb6eT4F'\x03\xa4 \x01U\x10\x92&\x06\xb4\xc9\x01]\xec\xe5\xed\x96\"\xe4R\xc4\xdb\x8aH0\xb4p\x9f4a\xb5H|\xfc-S'g\x163;t\x8c\x04\xd8\xd9%\xcd?\x1a\xaezGH\xb8\x02\xc1I\xf0\x8b\xa5\xf2\xa1\x82\x07\x174\xde\xfb \x90\x0f\xa1?\x81\x93\xd7\xe6\xa4\xd1\xa5\x92\xf0\x7fkQ7,Ww\x86\xbd\x96]/\xae\xd7\x0d\xaf\nq\xda\xbe\x80B\x0c\xe5\x8f\xca1\xe2q\x1doT'\xf2\x89b\x1f\x88\x94\xf9IX\xbc\x18\x98PZbcb\x06gb\xce&=KsV^\xa6\xf5\xfd\xa3 \x96\xb4\xd4Ir\xb2$\xe1S\x11\xb8\xfcK\xc1\x93D\x13\x1b\x13z\xf2L\xc7\xd2hI\x99\x88h\x9ea\xf8\x14\x9c\x94K\x88\xe4\x0bN\xc8\xa1\xd9\x83\x9e|AT\x0e\xe0\xbb\x7f\x05\x996\xdf\x8c\x08\xc8\x15dz\x05\x99\x16\x0d\xcfL\x9ba\xcaf6\xd9\x03\xcc\xbf\xc0\xf0\x0c\xb2}\x94\x1f#\xdc\x18a\xf8e\xe4C\xac\x9e\x99\xd1\xbdl\x1efr\xd2w\xc6\x18\x9c\xc0\xde\xb3h\xc7\x92\x13\xbcD\xa7\x04\xf1\x10\x01\x96\x17 ;p\x18\xd4e\xca\x00\x80Q\x82\xca\x0b@\x14\xcd\xd8\xc1\xbe#\xd3\x82\xfd\x16\x84\x19\xa2\xc6$ 6\x06\x88\x8e\x03\xe2\xf0A\xd1\xed \x06g\x04Qz\x82\x00A\xb9\xba\x89\xc7-`~\xec\"\xb4\x82\xc4\xf8\x05,\x89ax\xe8\x91\xa1}\xa8\xb1\x0c\x88\xc2\xf8D>W\xa8\x82:\xfa\xa5c\xc7\x7f?(\x0f\x99t\xe8\x9cB\x80\xdd\xc9\xb0\xeb\xbe\x84\xff\x82\xe8\xf6\x01\xca\x8c\x804+\x80\xa8\x0b\x08\x86\xdebn \xf0\x82n\xf1\xa2d\xd2\x92\x02mY\x89\xae!\xe3A\x7f\xb1qJ\\\xa9\x18\xc4Q,\x94U\xe9#->+X\x95>\xfe\xa0_\xe9\xc7pE\xe4\xb8\xff\xb6\x17\n\x93bE@_\xe48\"Hj\xdc\x08{\x87\x80\xfe\x91\x18?\xc2^ #}\xcc\x8a#\x01\xc4\xfc\xb6\xba\xcd 5\xc5\x98\xdf\xfb;9\x14\x05tN n6\x022Gb\x87q\x14\x8eh\x88\n\xd2{\x0dL3s\xb8\xca!\xe9I\xdc\x9c\x1f\xb6\xc2dY\x08\xf8\"\x00w\xe1\x15S\x814\xde@\xa1dHd\x9e*\x9c\xfe\x05\xa2\xb3\x91\xc2\xc8L\xb2\x9eP\x12I\x98\x0cP&\x04\xf1\x88\x80l\xf9:\x8c\x8b\xd5\xe4H\x81\x97\x12\xbd\x042\x16\x1a\x03\xda\x1a\xc4\x8d%B\x1cA\xb6\x85\xbd\xe1!3\x88qi\x98?Ox\xa2\x8al\xae\xe8\xd6\x8ao\xac\xe8\xb6\x8aN\x00\xe2\x93\x00\xda\x86\xca\xd3Ul+\xe5\xdaH\xd4m\x14\xdfD\xd1y\xc76\x10q\xfb,\xea'\x16\x92\x83X\x07\x18q\x0f|\x01J\x07{?\x0cP\x80\xe9\xdb\xa5w\x00{6{`\xe6^\x86\xf5l\xed\xc0\xa6\x0em\xe7\xc0F\x8e|\xf7\xe0\x8e\nn\xdb\xf9\x84\xfd\x9b4y{\x86\"\xe2\x9e\x8d\x19\xe2b\xc2\x97t\xb7Gt\x03&R\x0dm6\xf2\xe6@\x8e'\xc1w\xed\xa3\x07n\xa4\xcf,\xabw\xef\x08\x9f]L\x7fQ\xb4\xfd{\xed\xda\x903sv\x8c\xbbO&\xce\x1f\xf9\xc6\xd4\xd1\x83-\xe2\x9c\nJ\x8f\x13\xc6\x99\x8a\xbc\xa91q&\x0b*\x15\xd1\x90>%\x94\xef\x15I~\x81\xe4 \xd9\x934\x04\x1a;GC\xf3s\xc9\xc5\x92&g\x85\xde\x87\xd5\x9b\x90\x8b\x84\xdcg\x87\xda\x91r\xc1`\x88\x9d\x12Z\xc7C\xea\x9ee\xc6\xdc\xe8\xde/\xe2\x13\x9en\xa8\xd4\x04S\x04\xf5\x98Fm\x91\xc9\x96\xf2\xf8G\xd3\xc8`\xde\xd0L~P\xc7\x03\xba\xd0\xa9\x18\xf0t\x92h\xf8\x99\xe5\xbd\x8e\xbe\x13\xf8e\xf5\xf6\xaf\xde\xfe\xbf\x1fo\xbf\x1b\x95N\x90b\x19\x0e\x87\x1e\xe6\xf4\xb2\xa6\x9f1\xbdl\x19\xe4\x9d\x00\xe7\x04\x18r\x1eI\x1f+fdD\x94\x0d3\xd42\xea\x16a\xbf$z\x8b\x03M\xae\xb8\xc6\xc5\xbe9\xd6!\x11\x8c3\xa5\x1a\xc8`\xd4\x14\xd07\x1fY--\x98B\xf6[\xd6b\xb6bQ\xf8\x9f\xb6\xe5\xbe\xa8T\x87\x83~y#\xb4\xc8\xe5\x1dS?\xc0M\xc9\xaa\x9d\xd0U5\xefE9\xe8\xca\xfd\xa1b{\xc1\xff\xe2\xbb\x1e\xbb\xbe\xd9\xc3\x9e\xf5w\xcdn\xba\xed:h\xd9/\xc7\xb2\x95~\x9f\xdb\xe6\xb69\xb4M\xdf\x18k\xba+\xf9\x04\xaf\x8f|x\xc6\xdaV\xecV\x8cX\xfdW\xd3\xbec\x9f\x8avG^\xed4\xf1\xd3\x1a\xc4\xc7G\xf2\x9e3'\xdf\xdf\xa4\x81H\xf3)/\x04\x1f\xf7[\x1d\x19\xb9C\xb6|<\"\x1b\x85S\xfc\x8c\xef\xe1\x12SD\xcb\xd0\xa8\xfe$\xeaM\x11\x00\xdb\xe9\x97\x1ew\xfa\xbf\xf9\"H^\x88q\xe8E\xd1\x16{\xba\\\xe6\xfa\xe0X\x97\xfd\xc3U_8\x8a\xcc\xfa\x9e\\\xc6\\\x0d\xe6?\xce\x98\xf6\x0bM}\xec\x92\xde\xe0\x9f~\xd7\x16\x9f\xc4\xd6\xb8b5?\xf78o\\7M\xc5\n\x9d\xe7\xd2\xb1m\xcb\xfa\xab\x1bn\xeb\x89e\x8a\xce\xc3}#\xbe\x11\xad\xcf,W\xd8\x8e`\xcaD\xb3\x83\xfc\x85+\x10\xfeW\xf3\xfb\xc0\xbe\xd9\x1d+\x16\xfbz\xff\xef\x91\xb5\x0f/\xf57\xb9h\x9a\xea\x1d\xeb\x0e\\A\x91\xbf\xe8\xa1i\x9cd\xb3U`\xfcZ\x04\x863I\xfe\xb9\x86)\x0d\xbbQ\xfc\xf91\xffCYw\x88\xa8\x19l\x1a?\xc3\xf0\x99\x083C\xff\x9b/\xb9\xe6M\xf3\xedg\xd6\xebz\x91\xde]\xbcT\xb3$\xf1\xec(\xf2\xa4\xa4\xeb\x92\xf9V\xca\x87\x13\xfbTW\xd6\xcd\xc8\xba\xea\x8bY\x92P\xff\xad\xd8n\xdb\xa3\x0e\xaa\x8dJ,\xa45\xc3|Dgg\x87\xc4|^\xbe\xe4G\xe7_5CG\xe3\xcc^\xe6\x9e\xeac\xf3q\xacL\xd0S$\xe8\x19\xafl\xe1\x8c\x10t3\xca\xe6\x1d\xb5l\xf8\xc6$\xbc\x1a\xaf\xfe\x9c\xbdU\xbd\xc3\xdc|\x85\xe1M-\xd9\xc3\x089\xb5\xab\x91_\xe8\x9b;&\xc3\xe6\x1a\xb5\xb2\xd1L[d\x1cS1\xc3\x8f\xd71Q\xd3\x0c\xe9bh\xf2}\xde=\xb8*\x95\x8cJE|/\xdb\xb8>\xee\x05\xf3\xd8\x9f=A\x93`R|\x8e:1\xe9\xcc\xd4)M;\x06h\x92\x15\xca\xc2\xc0\xf3\x84\xb9\xac\xa53\xbc\x80\xe6\xd2\x9b\x17P\x8e[\x8b\xaf\x9d\xde\xbc\xf5-_4\xea\xc7\xc0\xa6\x9f\xfc%L\"\xb3?\xc3\xbf\xab\xa3\xe6\x0b\xa95\x93\xbf\x85uT\x8dyq&K3}\xd7Z\xf2q\x95\xf5\xaf}\x03\xbf\xf0\xb1\xa7-\xb4g\x823V{B)u\xc9\xbf\x1f\x0e\xda\x97\xc5\xe7\xe4u\x8e\x9d\xe6s/-\xc0|\xc7\xc0\xaf\xfdKH\xc7E\xf2'8\x18\x1e%g\xce\x07\xd7\x19\"\xfe\xc4z\xd6j\xe7\xb6\xe1\xfb0\x97\x91\x14N\xf3\xf8\xa7\xc0\xaf2\xc3~\xaa\xd0\x8ba\x7fU\xe0\xcd\x88\xdfj|\xd3\xf6]A\xdc\x7f\x15\xe8\x94\xe0\xc7B\xdf\xb6>\x1f\xc2\x17A\xbeT\x1c\xa9\\`\x89\xfc7\x88m\x91\xa1\xd9u\xe2\x84\x96\xc8\x8c\xdb\xe1U\x0fC\x8e\x0fXL)\xff\xcc\xffj\xe95h\xd9\x96\x95\xf7l7\x9b9\xa7\x83\x81\xc0!*g\x8e\xb7\xf7\xf0\x14<\xff\xf8\x0fN\x81\xd7b\x87\xa6\xd9\x86\xa8gx\xd8\x81i\x89u\xea\x10\xf3\x1d\x96h&\xab\x8aJ\xdb\xd2>\xc0\xdbtA\x8f\x101\xf6X\xd2\x16{{\xec\xbb\xbe\xa8we}\x9b\xd9\x7fA\xda\x19\xce\xbb\xb0n\x8b\xbf\xf3m\x01\xc1% 0\xa6\xe9?h\xc6_\xe1\xc9\xb1~\xaa5k\xfd\xb5\xcb\\\xe6@\xf9n*\x0c\xb1^\xd6\xec\xf3\x81\xd5]y\xcf\xb8\x91\xd7\xb7\xc5\xf6\xe3\x19?B6\x9f:\xe8\xc4r@W\x08O\xfb\xf6\x8em?\xc6\x8f\x93\x84\x9d5c\xa3#\xab1W\xa9\xbe\xafD-f\xf26\xef\xe4{\xd3mN:R\x92]$\xa3\x9b\xf2\xc0\xda\xb2\xf1\xb8\x1d\xd1m\x86f\x85\xa8\x9f\xdab\xdb;\xda\xd7K-\xe4L\xb1\x97\xf1\xf5=\xab{;\x9ff\xe4-\xb1`\xc0\xee\x15H\xc4\xd8~\x14\x99j\x9c\x0b8\x83\x95\xdb\xb2\x17{]\xa5\xcdu}\xd3\x8a\xa4N\xfb\xa5\xcb;\xfe|\x075c;\xb6\xe3\xcc\xba-\xaa\xed\xb1*zQM\xdb6\x87\xb6\x14\xff-\xf7ws\x03]_|\x94\xd0\x15\x1fYm\xfb\xd88\xaf\x8dn5]\xb8T\xb4l0Qk(nz\xc67\x8b\x9c\xc6]\xd1A\xb3\xdd\x1e\xdb\x96\xf9\xfco\x8aAl\x9f\x8c\xfa[\xd8\x98:\x14\xb7J\xc0y\x8c\xb5\xf1\x81\xc9 b\xf8\xb3Z<\xbd\xa5f\x99i\xa2\xd6\xd8\x93a\x8c\xb0\\,W\xed\xbf\xa6\xa2^\xd3\xd7\xfb\x9f\xffg\xdf\xc05\x9fH\xd7\xc9\x8fzQ\xdc\xb2w\xec\x97#\xeb\xfa\x8d\xfc}BD\x9eC\xf9\xeb\x9c\x1c_\x02~n\xeaz`77\xe5\xb6du_\x99Z\x13I\xea\x8bN\x08\xd9A\xbe\x8cd\xe9\x85\xe3\xf3\x11\xffQ\x1f\xf7\xd7\xac\xe5\xcc\xa7\xca\x99\x8d\xbc\xe4rz\xed\x829\xd5-g\xda+Ad\xaaW>\x15\x1dt\xac?\x83\xb2\xef8\x0f\x1d\x85\xfc<\xd6\x92\x11v\xd0\xf4w\xac\xfdTv\xa1\xb4\xb7\xa0\x04\x9c!\x8e\x15\x85\x04\x19<\xbc\xfab\xbb=\xee\xc5\xb6\xdd\xbd\x9c\x1c\x0b\x08B\x18;I\x9cB\x0e\xaf\xae\xea\xf9\xaej|\x82a\x06\xb0t\xc8\xf8\x80\xf1\xbd\x15\x99\xa9\x01\xf3\x91\x1dz(\xf8J\xb5\xc7\xba\xe6\xe2^l%\xd6\x9e\xc1\xb6\xa8\xb9l1$z\x0fE\xfd \x12c\xc9\xec\xea\x1a\x1ed^\xfd\"q\xcd\x95QO\xc6\xa8s-\xf0\xc1\xee\x96\xf4\xb2\x98\xdc$^\x1dM22\x8f\xfa\xedM\x94)P\x0d\xe9Z\x97\xce\xbb\x91\x95\x9eeK&Z\x91\x99\xec\xc7\xe5\x96\xa3\xfa\x94\xba\xd2\xda>\xa5\xbc\xa8*\x0d\xd6\x96|@a\xd6%ip\"\x81\xc3\x1f\xbf:\xb6N\xa1\xc4\x02\x07\xc0\x0b\xf8\xf9\xddO\xcfZ\xd65\xc7v\xcb\xa0.\xf6\xaa\xfe\xfcX\x97\xbf\x1cY\xf5\x00|b}yS*\xbb\xb7Wu7.\xb6\x16@\xc7\xda\xb2\xa8\xca\xbf0\xe4\x80.\xf6\xfe\xb6\xa9\xe0\xfaxs\xc3Z]\xb0\xb3\x91\xcc!\xc7\x0e\xfbc7\x14\xc5s\x95Q\xb1\xa2\xeb]ZM\xcd\xe0\xd1\xb3G\xb0\xbd+8\xff\xb3v#\xe4WUt=t\xec\x96K)\xed\xd6\xff\xf9\xddO\x8f;8\x14\xfd\x9d \xee\x90\x1ax\xde\xed\x85\xbf~s\xac\xaa\x07\xf8\xe5XT|\x05vr}\x14i\xb1\x12O\x8a\x0e\xca\xda}\xf9\x03\xef\xf2\xd9m\xd3\xdcVl#\xe6~}\xbc\xd9\xbc:\xb6\x82w?|-G,\xc8uw\xcd\xb1\xdaqu\xc9'\xedP\xda\x16uS\x97\xdb\xa2\x12\x12\xc0\xed\xe9 \xdb\xdcn\xce\xf8R y\xf8h\xf3Hl\xb5\xa6\xe7\xca\x9c\x1dz\xb6\xfb\x1a\xf3\xca\x9c\xd7p\x10\xc2c\xcb\xce\xa0g\xc5\xbe\x83cw,\xf8te5\xc6\xa1\xe4\x86s\xcd\xc5\xe4\x1d\x83\xeb\xb2.\xda\x07\x19\xe0~80\x17\xc7U0M\x7f\xc7\x1e\xdc\xae\xb8\xcc\xdd\xf6P\xf6|\xe7\x1f;\xb3H\xab\xe7\xe7\x88\xe6\x06^\xd4\x0f\x1b\xf8\xb1\xf9\xc4\xee\xb9\xf5\xc07\xfa\xcf\xef~R;\xdc\xa1\xc7Ip\xf6s\xf9o{\xc7\xf6\x0c>\xdc\xf5\xfd\xe1\xc3\x99\xfc\xff\xee\x83\xa8)\xa9\x1b\xf5\xeb\x99\xe0\x1en\x9f4bW\x88\x19w\xac\x87\xe3\xc1\xa1'\xab\xcc\x90~X{\xcfZ9\xe5}q\xe8$+\x88\x11\xf7\xcdP\x8a&\xf4s)EU\xd1\xc1M#\xd4\xccs\xe4[\xfc#\x9c\xdf\x8c#\xe4\x9f\xef\xd06\\\xa2\xec\x86I\x08}\xdcu\xc7=\x17d\x08\x81\x175\xfcxyy\x01?\xbc\xbe\x04\x15@\xf8\xf9\xddOrC=\x08\x85^\xc0\x9f\xa6\xecx\xf9p`\x7f\xfe\xd3\x9f\x1dr\xa0\xcf:\xb5\xfe\xeeR\xf9\x88\x95<\xb4\xcd\xee\xb8e\xdc:`m\xdb8\xd7\xd1\x88\xd1\x8c5\"\x9d\x10\xd0B\xc5j\xd1\xbf\xe5{\xb5i>\x1e\x0f\xc3Q\xed\xba\xe0g\xd0\xa6F\xc5\n\xf0\xa9\x88\xbe\xef\x8a{\xf1\xe9\xf7\x06\x8f\xee$\x93\x16z\xa8\xfc\xbf\xef\x9br\xc7\xedM\x84\x94\xecXl\xbf\x96\xdd4-;\xd3/rzE_^\x97\x15\xd7\xff\\Wu\xfa\x88\xccED{\xcfv\x08\xbd\xa6\xe6b\xa8\xbee\xe2a\xb176\xf0\xe4\xe7\x8ei4I>k\xce\x1e|\xafK\xfe(\xea\xe2\x16\x9b\xe5u\xcb\xa4\xd6S\x047_#\xce\xd4\xa6g\xcf\xa1\xe72\xf3\xe6Xo%\x07\xf3\xf1\xaa=/t\x1d?\x87\x9b\xa7_|Y\x1bqhw\x0f\xbdJV_\x1f\xf9I\x9aK`v&\xec\xc8\xb2\xd7\x9d\x1c\xf9\xc7\x12\x87\xd4\x81\xef\xaf\xd9m)\xce\x00\x0e1\x81\x10\xed\x8a\x8b\x87\x03\xdbH~,\x0ee\xb7\xd96{LJ\xbd\x17;\xa2\x93\x07m\xbe\xe1\xea\xe9\xee\x86'*\xea\xc7\xf6\x87\xfeAm\xa1\xafa\xcf\x0d\x14\x87\xdc5\xb2\x99\xc5d\x84\xed<\x98\xb8\xd2v\xee\x0el[\xde\x94[\xe8\xd8\xbe\xa8\xfbr\xdb\xd9\xac.\xf6H\x82*\x0eTq\xc7\xb4\xf4\x1f\xf86\xbef\xda,3\x14\xad\xa3W\x95r*\xae\x9b{DA\xcb))\x964\xa7\x13\x1a\xc1\x87\x17\xf5\xc3\x87\x11\xab\xa6\xa8\xa1h\xaf\xcb\xbe\xe5\x9b&0\x12-\x07\x8b\xaa\x99\xac\x85<\xa9\xd8\x9f\x82K+!P\xe5H\xae]s\xc3\xecK[\x0f\x13\x96\xb9\xd0\x8c[\x95\xd7bxJ\x8ev\xd0\x1d\x0f\x87\xa6\x15\x1a\xe8Pl?>;\xd6\xfc\xff\xb8\xde\x91\xdf\xb1\xc3v\x89\xabp\x9b\x1b8\xf6R@\xe8\xed\xd7\x81L\xd6(\xe5^\x84[V\xb3V\x1c\xa0\xe5\xe1h\xc80x1\x91G\xf2\x13\xd8\xf4_\x7f.\xc4!\xe4\x9b\xe7p\xc1\xc7\xc7\xf7\x9d\x1aja\xd68\xbf\xfc\xa7\x7fB\xd4\xc0\xf7M\x037M\x03\xdf\xc2f\xb3\xf9\x9f\xce\xcf|\xb2E\xfd\xe0\xfeP\xd4\x0f\x1b\xde\xdd\xf7m\xb3\x7fr\xd34_\xbb\x8fl6\xae\x9c/o\xe0 \x7f\xf5g1\xc0\xcb\xe6\xc9?\xf0w\xbf\x86\xff\x8b\xc86\xec\xfd\xbf\xe2s\xff]d\xee\xffZ\xdc\x17\xb3'\x0f\xdf\n[\x83S\x9d1\xd3\xb2{\xf2}\xd3l\xb6U\xd1u\x9e\x89\xca!\xf0\x87\xe5\xd8\x8d\x17\xdc\xbe&+0,\xc1\xef#Kp\xf1\xd0\xdf55\xb2\x08\xb2\xf7\xef\x9b\xe6\xc9f\xb3\xf9\x1a\xfb\xd0r\x01\x9e\xa0\xbf &\x10\xcbB]\x15\xfe\xd2\xb9\\\x94W\xaf\xdf\xbf|w~q\xf9\xf6\xdd\xd7S\xa1\x08\x8a\xbcd\x14\xbc\x03\xd9\x05\xbe\x1c\xff\x12Y\x8e\x1f\x1aw%\xc4R<\xff\x16\xfe\xe1p\xbd\xf9\xbei\xfe\xeff\xb3\xf9\xab\xfbPQ?\x9cq3\x86?y\x90\xca\xfb\x0fE\xdb\xdd\x15\x15_$|\xa0\xd8RL{C\xba*o&\x1d\xfd\\\xef\xc7\xae\xc4@\x04C\x8a\xa7\xfe\xc7\xb7P\x97\x15\xca`x\xff\x13N\xba\x14\x11\x8a\xed\xc7A\x06i\x83\x12\xae\x1fF\xf5\xae\xa5\xe4\xa7\xb2\xaa\xf8\x0f\n\xa9\x81\xabD\x9b\xdccD]?\xe3g#\x81i\xb1\xe1\xa6\xcdcn\xe3\x0e\x12\x9bKs]C,\xbf\x98Mp\x10\x8du\xf5\xa0\xedy\xe7\xb05\x98M\xeaT\xdf\xeb3\xde\xe3g\x8fmr\xea@\xa1\xbb\x96'\x08\xa6\xb8\xe7\xd1M\xd3l\xae\x8bV\x0c\xfa\xf3\xb3\x87\xcd_\x1e\xc9\x19K\xbb\xd85\xf1E\x97\x8f\xf8s\\<[?\xfd\xeb\xfb\xb7o\xec\xbf|\xfb\xed\xb7\xdf\xbak\xcf\x9f\x1b\xcf\x96\xd2\x9eh\xf8vQ\xcaT\xda\xd7\xc7n\xa8H\xb9=VEk\xd3q_\xefE\x82\xe0\xa8\x06\xcf\x80\xed\xaf\xd9n7*\xc43\xa5[''RC=I\xef\xde\x87\xff\xc3\xa7\xfdA\xb9P,\x18:\xbd\x88\x1b\xbd\xfd\x9e#\x06b\xb1\xfd\xc8\xf7\xdex\xa0\xb8)+\xe6\xca7\xbdG/X\xdb55\xca\xce\xea\xe4\x7fS\xb6]\x7f%V\xfe[\xf8\xc6\xa54<(\x00k\xd5s\xbf\x8bKT\x00\xb4\xd7Gb\xfe\x8f\x9e\xc3#\x8c\xb3\xedim\xe4\xe8\x1f\x9dat\xc4\xb8\xdf\x14{N\xeb\x7f\xc9!\xfeo\xf4A>\xee\xc9s\xb1\xc1\x9f\xdf(\xc3\xd6\xfe\xc6\xf2\x0b\x95\x1d|bU\xf5\xf4c\xdd|\x92~\xde;\xe1\x8aW\x8eY\x97Qmv:\x93\xc6\xd6\x84\xc7\xa4 0\xba\xe4\x8c#\xf0\x05\x04\xdb\xd8\x04?\x08&\xd6\xb8q\x0c\xa1\xc5\x85\xe8\x02C^C\x19\"\xf5x9\x0df\xc8i4C\xb8*o\x91\xf1\x0c\x19\x0dh\x88\x1a\xd10\xd7\x90\x86%\xc64\xb6b\xdc\xb8\x08U\xe8-0\xaa\x11Z\xd2\x8f\xe3\xad\xd2[f\\#\xe4\xb8\xb9\x8d\x1a\xd8\x90\xdd\xc8\x86\xe5\x866\xe47\xb6a\x99\xc1\x0d\xcb\x8cn|\x8b\xa2\x83\xccf\x8aCvs\x1cr\x9a\xe4@2\xcb!\xa7i\x0e\xc1\x8a\xbee&:\xb6\xc7\xd1\xaa>\xa2\xe1\x0e\x8b\x8dw\x84 V\xdb7\xdb\xa4\x07_}_D\xc5\x07j\xfc(\xfa\x7f\xa6\x99\x8f\x89=O\xa5_Ns?\x96aj\x9b\xfb\x14/\xf5\xf0R\x92\x9b\xda\xee/\x1d]n0\x0cO\x8c\x17\x83\x9e\x1d\x82\x0c\x15\xe3\x98\x05'\x08\x97\xaf\xf9\x89\xc25\xc4=\xa7\x88\x0c\xc3\xcev\x96\x88\x9f&\xbc\xe7\x89\x93\x9c(\x02g\x8a00\xa8\xff\\\x11\x11;\xf1%\x87\xfc\xa7\x8b\xd8\xf9\"\xf7 #\xf3\x19#r\xcaX|\xce\xc8{\xd2\xa0\x9c5\x16\x9c6\xf2\x9e7H'\x8e\xbcg\x0e\xc2\xa9#\xfb\xb9#r\xf2\x98w\xf6@ \x05\xcf#YN$\xc43 \xfaf\xd29e\xf1I%\xf7Y\xc5\x7fZ\xc9|^9\xc5\x89%\xf3\x99\x85zj\xc9|n \x9f\\\xb2\x9f]\xfc\xa7\x97\x84\xf3\xcb\xfc\x13\x0cJ\xcc\x17\x92\x90m\xc1)\xc6{\x8e\x89\x9a\x14\xc1\xb3\x0c\xcd\xe2\xc8w\x9e a\x97\xe4=\xd3\x80\xd7(4D\x0d\xff\xe7\xe3\x8e\x18`\x98S\xd2Y\xd4\xe6_\xf5)i-\xe9\\K:\xa3\x07n\x1a\xb8\xf0\xf4\xc4\xdd\x85\x8e\xdc\xb7\xcd\xfdf\xbc^\xfc\xd0t%=-L^VSTW\xe5,\x84\xcb\x9d\xec\xae \xe7\x95\xe1\xb7\xbf\xe7=\xbe\xff\x8d\xe0^\xd3\xb0^\xeb\x19 \xaf\xe7\\\x16~9\x90W\xc5@\xa6\xa8S\x83R\xdfZ\xdd\x93X\xf3C\x8b\xf8\xbbq\x15\x96\xf8k_\x0e:BsW\x98Y\x13/\x1c\xdf\x97\xf5\xd5\xcedsXY\xeaW\xc2R\xce\xd4\xfeP\xd6\xe5\xfe\xb8\xd7\xbc\x03\x12\xf2W\xb3\x05g\x19&\\d\xf7\x8d\xf0\x82I\xa8]Mk_|\xd6\x1f\x9a\x06\xc2\xeb7z\xfeP|\x16\xe3\x90d\xc40^\xf0\x99\xde5\xd5\x8e\xb5\x82w\xf5\x10\xf9\xc2\x8e\x8c\x0b\xe7\xfc\xf0g\xdd\xa8\"-6\xf8\x9d\xb9>\xfb\xa6\xee\xef\xb0+@,\x16w/9\x93W\xbd\xab\xae;\xde\xf7ms\xcf\xdaZx\xb9\xf4 :\xcf\xf6\xb9P\xbf\x93w\xceBa/\xec0W\x8e\x93\xcc\x9b~\xcdX]\xee\x18[3ViN/y\xd0v\xd6h\xcdXM \xa6/t[\x91\x1cVt\xe7\xd4\x02\xb7\xd4\x02\x87\x14\xea\x11\xc9\xe6v\xca\xebp\xca\xe6j\x8a;\x99\xb2\xb9\x97\xd6\x8c\xd5\xbf\xbb\x8c\xd5p\xdfk\x85\xffZ\xe1\xbfV\xf8\xaf\x15\xfek\x85\xffZ\xe1\xbfV\xf8\xaf\x15\xfe\xd6ck\x85\xffZ\xe1\xaf\xdb\xfc\xaf\x9b\xa9\xc2\x9fse\xd1\x1f\x9d\xa4\xc3\x89\x0d\xce\xea\xa3\xe5\"~\n\x17\xef\xde^\xbc}\xff\xe2\xa7\xab\xf7\x97/.\x7f~\x7f\xf5\xf3\x9b\xf7\x17\xaf_\x9e\x7f\x7f\xfe\xfaU\xf0\xb9W\xaf/\xde\xbe?\xbf\xbc\xbax\xfd\xee\xfcm\xf8\xd1?\xbe\xbd<\x7f\xf3\x03\xe5\xc9\x8b\x17\xef\xdfG\xfa}\xf7\xfa__\xbf\xbc\x8c<\xf4\xfd\x8b\xf3\x9f\x8cG\x94\xcexN\x9a\xac\xdf\xd7\xad\x1d\x98\xef\xc5J\x8b\xb5\x14\x96\xafd?u2\x11\xbf1a\x04\x1b~Y\x8b_\x82\x8b\x1e\x1c\xa4\xe5\x91\xd5\x9aPtr\xe8\x8aJu\xbe \xf7e\x7f8\xb7;\xfbw\xc3\xb3?\xb8\xc1e7\xb0;\n1(\x87\"<\xc2F\xc7\xb6k\xdc3\x14\x8b1\xdc\x91X?\xd3\x06\"\x1d\xf3\xa9\xe3\x90l\xe7\x0e@\xfe=\xd0\xb3\xf5\x91\xa5\\\xbb\xb3\xb2\xaed\xb0:\xd2\xbdfiw\x00\xfa\x97%C\xb8f\xac\x86\x96\xfd'\xdb\xf6\xd1\x91\xc8}\xe3\x8eC\xfe}\xc9(n\x8a\xb2\x1a\xbb\xbf)\xeb\xa2\xba\xea\x8b\xaaz\xb8\x92N\xacY^\xfa\xc7\x0f\xac{L\xf2<\x14\xd7\x1d\xb7'H\xcf>\xae\x1b\x1a\xd1\xba\xb9\xe2\x96\xcd\xd5=\xeb\x1b\xc2\x0b\x96`\xb9\xe4s\x7f'\xa6n,\xab\xb8\x88\xb2hw \x96F\x85\x9f\x90\x10\x8b^\xc7\xeex\xbd/\xfb\xab\xbe\xdc\xc7\x00I\xb4\xe3eW\xf4\xec)\x7f\xfe+=(\x19\xb0b\xf5n \x19\x91\x8d\xb0\x869\x7f\xadaN)\x16\xaf\xba\xbeh\x17q\x8b\xa2\xb3\x88Y\xacE\xd6*\xd5Rl\xdb\xa6eje\xf6\xdc\x1el\x95|\xf1l\x84@\xa8\xf1\xbda\x139C4m!\x8a\x1d\x14S\xa5\xde\xc70\xfb'b\xfbD\xed\x9e\xa0\xcdC\xb6wp\x86\xcfa\xe7|)\x1b'\xf6QNa\xdfLl\x8a/n\xd7D\xfb?\x8d=3\xb1e\xbe\xa4\x1d\x83\xdb0_\xca~\x19m\x17D\xd4\x88\xcc7\x956\x91\\,\xe6Q\x98$\xe3\x07\xcd\x8e\x00J\xf0\xc5\xc9YD\xd2\xe2\x02\x840\x95\x8a)z\xc0\x94=\xf8\x15>D\n\x9aP\xc5\x0f\xa1 \x83\xd7\x00\x88\xbc\x16KG\x9em\x0c8\x94\x96X\x04\x0e1e!8\x7f\xa7\x9a !\x0b(k\xa2\x1dL\x92\xed\x82\xb9\xa8\x93\xcdEID\xd5\x83%f\xa1\x9a\xdd\xa4W|\xeat\xa8\xd3\x9a\xbd\xde\xed\x1ed\xe4@\x9a\xb2g\xd3\xcf\xb4\xa5\xdd\xad\xef\xd9\xfc\xc1\xed\x1f\x16\x00\x01\x11\x10\x11\x02!1\x10y5&\nr\n\x83\xcc\xe2\xc0/\x10RDBx \x16\x8a\x05\x9b\xbf\xa4\x88@\xd9^\x8fgN\xf9C\xbf\xdeh\xb5\x96?$\x95?LuA\x82\xce!\x97>\x88\xb7d\xa2m\xb2\xcaQ\xe7\xf0\x83\x91\x89\xee\xcc\xc8z\xc6M\xe5e=?W\xb7\xac\x12\xa9\x1b}\xa3\x9e\x9f\xb5\x1btW\x93\xa4g\x08q\x905\xd6\x9fX}\xdb\xdf\xe9p\"\x9a]=dV\x87\xe6l?D\x98\xb4za\xd6\xac\xd1\xc4~X\x8d\xe1\xf9\xfa/\xab\xf6[n\x0c\xc3t\xf2\x8b\xca\x03 R\"\x00\xe4\xdd\xe2\xa6\xc7e,\x17\x00O\xc9\x00L\xca\x06@\xfa\xa8\xc3\xfb\xd1|\x84\xb0\x1b\xc5\xe3\xb3\xf6\xe2/\xc7\xa6=\xee\x89\x8b97 Q}\xfd\x03k\xb7\xac\xee\xb96\xe5\x02Kh\xb3\xae/>2\x91\xf9:\x08S\xa6\xd8C\xaa7W;_;\xa9\xac\xdb\xa6\xee\xca\x9d\x00\x04\x11N6\x93s\xfa\xbb\x96u\xfc{~\xa19r\x0ei{\x95\xe3\xf1\x1f\xac\x133\x92\xe5\x1f&\xbfskd\x03\xaf\xa4\x97\x0e\xe7\xa2\x7f\xde\xfc?\xe6D\xeeY\xdf\\}\xe1\xd9HS\xa0\xb9\x81?2\xf5m\xc4\x9e\xb8\x14\x9fN\xfeS\x84\xdf\xa7\xd3\x8b~1>\x19\xb6\x1b\x16@O\xf9\x9bg\xbfGN\xb5\x88\xc2\xa7\xd8\x15\xaa\x16\xe7\xdd\xc5K\x8a=\xa1\x06\x9flQ\xe8Y?\x9f\xb3\xfb2\xba\xa2\x9c\xa2\x1d\x08\xe9H\xbf\x86\xecWTM\xa7e+\xec\x81\x18\xdeM?\xbf\xc0\x072\x16\xf9@\xb4\xd0\x07\xe6\x16\xfb\xc0\x92\x82\x1fl\xc5\xe2\x187\xb3\x0b\x7f\x10ZQ|\x9b%\x05@\x08\xb9\x15UsYQ\x10,+\x0c\xc2\xb7(:\xc8l\xe5B\x90\xbdd\x08r\x96\x0d\x01\xa9t\x08r\x96\x0f\xc1\x8a\xaa\x89u3\xb3\xec\x08\xfe^Q5!:\x8eeeI\x13b\xa2H )M\x82<\xe5I\x90\xbbD \x902%X^\xaa4\xa1\xd6;\x85K\xb0\xb0x b5=\xe0/b\x02J!\x13\xe05\x17I\x05M~\x1aNB\xfb\xa2\xe2&HX\x8cX\x91\x13D\xe7\x1d-v\x82\xb4\x82'\xc0\xd6ci\xe1\x13\xc4\x8a\x9f X\x00\x05\x91\"(\x08\xad\x12\xb5\x18\n\x08\x05Q\x80\x14E\xc1\xb2\xc2(\xa0\x15G\xc1\xac\x02)\xf0.L\xb4P\n\xf2\x15K\x81\x7f\x14\x0e\xa7e-\x9c\x82\x85\xc5S\x13Rn)\x15\xe4.\xa7\x82\xcc%U\x10*\xab\x02\xa4\xb4\n\x90\xf2*\xc8Vb\x059\xcb\xac {\xa9\x15\x00\xb5\xdc\n(%W@/\xbb\x02b\xe9\x15\xa0\xd2\x19-\xd2\x81\x84B\x9dp\x19\x16\xd0K\xb1\x80V\x8e\x05\xd84r\x96e\xc1\xd2\xd2\xac -\xa7P\x0b\xb2\x16kA\xd6\x82-X\xcc\x0f\xd1\xc2- \x14o\x81Q\xc0\x05H\x11\x17\x84N3\xd3b.\x88\xe5\xddF\x9f\xf5\x16u\xe1\x8f\xfb\n\xbb\xf0\xa7\x9d\xe2.\xfc1\xa4\xc0\x0b\x7fpR\xe4\x05)\x89\xcf\xe3\x0b\xfe\x8c\xff<\x89\xd0\xba}\xa9\x84h\x7f\x7f\xa7O\x8c\xd6\x0d)\xba\xc2\x87t\xe2D\xe9\xe4\xf1\x9c&qz\x18\x86[\x0c\x86\x0f\xe3t\x89\xd4\xba\xf9\x8b\xc2\xf0\x11\x9d&\xb1Z7\xbb8\x0c\"\x05b0/\"\x84\x14\x8bA\xd8W\x84\x16\x8dE\xdeq\x8b\xc7\"/\xf8\x8b\xc8\x82/\x9e\xa0\x98\x0c|\x05e\xc1\x81\xf8J\x85\xc0\xc8\xd9q\xeb\x85f\x93\xf4\x14\x9a\xc1\x9av\xf3w\x94v\x13(W\x83\xb9\x8c\xe3-]\x9bI1{\x19[0!q\x1a\xd7'%\x0e\xe8A%%$\xaa\x97\xd2s\x12\xf5\\~ky\xf0h\xc6\xc1l\x01\xd1\xaf\xb7\xee\xac\xb7\xee\xac\xb7\xee\xcc\xc9I d%d\xcfKXo\xdd\x91-)\x8faq&C\xee\\\x86\xf5\xd6\x1d\xb3\xd1\xb2\x1a2\xe75\xac\xb7\xee\xac\xb7\xee,\xb8u\x07\x08\xa3\xc9\x9a\xf5\x10\xce{\xc8\x96\xf9\xb04\xf7\xc1!',\x1a\xd4x\xc8\x9b\xff\xe0\xcb\x80X\x9e\x03A\x08\xfc\x07\xf3 \x88\x99\x10\xdepjb6\x84\x9f\x0e\x12cZ\x9c\x13\x91\xb28\x94\xbc\x88\xf8*\x90r#\x92\xb3#\xf0\x08\\\x86\x0c B\x8eD,K\"\x9e'\x11\\\xb5\x94\\ Z\xb6\x04\x9e/\xb18c\x82\x9c317k\xc2\xbfL\xa4\xcc\x89\xac\xb9\x13\x81\xb1 \x9c\xb8(\x83\xc2\xa1\x86dTd\xcd\xa9\xf0eU,\xcc\xabp\x87\xec\xe6Y\xe4\xcf\xb4\x88\xe4Z\xe0\xd9\x16x\xbeE\xce\x8c\x8b\xcc9\x17\xa7\xc8\xbaH\xc9\xbb f^$\xe5^\xd0\xb3/<\xf9\x17\xbe\x88;=\xe6\x1e\xcf\xc1H\xca\xc2 \xe7a\xa0\x13\xca\x9d\x8b\x917\x1b\xc3\x93\x8f\x91;##wN\xc6r\x1e!\xe5e\xd023\xec\xdc\x0c<;#x\x06\xc324\xd2r4\xe2\x81|\xc2\x0b\xa1<\x0dr\xa6FB\xae\x061[cF\xbeF,c#o\xce\xc6\x97\xcf\xda\x88\x7f\xeeS\xe6mx3%\xa2Lu\xba\xdc\x8d\xa41\x9d6\x7f\xc3\x9b\xc1\xf1\xb7\xc9\xe1\x88eq|\xf9<\x0e,\x93#\x9e\xcb1;\xd6\xe6\xc9\xe8\x88\x05\xe3}Y\x1d\x91\xf7\xf0\xcc\x8e\xc8K\xe1\xec\x0ez\xfc?_\x86G \xc7\x83\x14A\xc5b\xeb\xb1L\x8f\x05\x84\x03\xf9\x1e\xfe\x8c\x8f\x15z,9\x07$s\x16H.\xe8\xb1h.\xc8\x02\xd6\nf\x84\xcc\xa6{\x82\xbc\x90\x15\xf5lE=;\x0d\xea\xd9\x7f\xa1IFi\xf0$\xfa\xa5\xa44#C\x9f%'\x1a e7M2\"\xf1\xef\x7f\xf3\xfb\x02\x02\xf9e\xc8\xf7\xa0||\xf1Z\xd2\x87\xffc\xd3\xb3\xe4/~\xdf\xf4\x0e\xd6<\xe9\x83{\x93\xc5\xd2\xb78\x1f\x03\x0d\x1fY&\x9d\xd8\x8f\x86U\xf9+vh\xd9\xb6\xe8\xd9\x8e\xab\x0cv\xc3Z\x9dN\xf3A\x12\xeb>@Yw=+v*\xf1j\xd0\xcd\x1d\xeb\xdd0!\x17\x81%\xeb\xa6\x82B\x04/v\xd2Y\\\xde\xc0\x87\x8a\xd5O\x14\xfd\xaf\xe1\xdbo\xe1\x9b\x0f\xca\x01]\xf4j\x12\xc2i\xf5\x89\x89\xc0\xf67\xd3\x03\xc6y-r\x87&\x7f\x95\xa1\xf4m\xd1\xb1\xeeL%\x17\x88\xb1\n\xbf\x95>\x07\xf7\x0d\xfc\xf1\xed\xe5\xeb\xab\xb7\x17\x97\xe7o\xdf\x98\xc7\xe6\x0de\x85}\xa5/\x1e\x9a\xc1\xe7\xfe\xe3\xf5\xfb\xe0\xef/\xbe{\x7f\xf9\xe2\xfcM\xf0\x997o#?_\xfd\xfb\xf9\xe5\x8fW\x7f|}\xf9v\xc2\x15\xca\xfd\x11\x1f\xb8\xfaN\x18\x03\x9e6\xe3\x19\xe3f\xd9\"f/\xee\xfb\x82\x84\x0f\x85=\xed~.\xec)\xfc\xa3aO:\x9f\x0e\x7f\xc8\xf3\x01eK\xf8\x8c\xe3+1\xd3\x1e\x80\x8b\xca\xb7r\x1b\xa2^,\x811\xa7\xf8B\x8b\xfe\xf2\x9e\xe1 R\xa8R@\x9f\xf4\x7f\x1e\xef\x04\x0d\x8dT7O\x9b\x8394OP\xce\xf9\xaa\xcf\xa7\x7f0\x88>(\xfc\xb9\x14\x92\x8a\x05\x9ec\x7f\x04\x13\xadXj\xfad\xfao\xde>\x9f\xfc\xdbZ\x85\x19\xf4F\x1e\x9bR\x1e\x7f\xb1\xfb\x10'\xbd{\x8di\xe7\xedM\n\xf0\xc4-\x1c\xf3\xb3\xfe\xbb \xcav\x06\x97\x8ec;\xd6\xa5\xc8\xfd\x1c`\x10\xc5\x7ft\x87\xaa\x9c\xde\x88\xc3\xdb\xfb\xb2\xde\xb2\xe7\xcadx\xda\xed>\xc2?o\xfe\xe5\xf7\xb6\xa4\x93\xe6\xf5c\xfc\xd1\xc7\xc3\xb3\xfeQ\xf3q\x1a#\x94\x0bV\xc7\xfd%/\xe4\x9b\x02\x9b\xb1\xeb\xa7\x8e\xb0\xf3Wg\xdau\xc9\xda\xb3\xe1BQ\xe7s\xb8@\x80\xa6!D1\xb5\xc4(h \x80\xfc\xd1\xf4\xfc}\x81\x838\xb5\xb2~\xe5\xb9\xfb\x88Q\x16 \x85\xab\xb2\x98(^f\x9c9\xe4\xca\xdag\x9ee7\xd0|&Zf#-\xf8\xf1|\x110\xaa\xaa\x8ck\x7f\x9a\xe6\x8fj}\xb2\xc6O\xd2\xf6\xa8\xd9\xf6e\x1d\x97~\x03.j\xc2\x85\x8c\xb8\x94\x8f\x88=\xef3\xe4\xa8\x1f\x14{\xd6c\xcc%|\\\xd9\x92>\xf1\xf8R\xdc\xa4\xcbl\xd4%\x99u_\xc8\xb0;\x89iwz\xe3.\xbfy\xf7\x05\x0d\xbc\x90\x89\x97\x12c@\xcc\xbc\xac\x86\x1e\xc9\xd4\xa3\x1b{\xe1\xd1\xcf5\xf8r\x99|\xce\xf8$\xd0\xb4\xf6\xca\xf2w\xa4! 7}\xb7\xfa\xfaW_\xff)}\xfd\xee\xd1\x80z\xec \x80\x8f\x0bG\xf0\x85q\x15\x00\xe1\xc01\xc5\xecG?\x05\xcaW\xfem\xbf\x14\xa3\x7f\x82\xf1\xeeC\xe4G\xf0\xebg\x8e\xfe\x7f\xa3\xa3og\xa0\xef\xbbEB\x06\xf2\xbe\x0fu\x7f\xe6\xa8\xd15\x9f\x8b\xb2?Y\xf3$L}\x83\xef&\xc2P\xfcI\xf02\x7f\xa4\xaco\xd5\x10\x9a\x1aS\x00]\x88\xaf\xdf\x19I+\x04\xbe\x9eD\x99\x90%v\xa2K\xc83vT y\x00\x8f&9\x0ff\x8e\"!k\xf4\xc7!:CX\x1c\xd4\x05\x10\xe4BK\x00O\x0e\xfc\xc8\x8b\xd3\xe3\x8e\x7f\xb7-;\xd8\xdbQ\x17\xe4H\xbf\xf40\x0f\xe7f\x07\x93c|\xb6\x03<\xba\xf4\xd3S\x1f\xe5\xa4\x17:\xdd\xc5Nt\x81S\x1c\xe1\xe4F<\xad9G\xf1Sx\xb8\xf0\xc3\xf6\xea\x1f!\xe6\xf3\"\xc7\xe6l\x07f\xe2Q\xf9\xe4\x87\xe4\xcc\xc7\xe3S\x1e\x8cs\x1e\x89\xbf\xc8a\x18?\x06{\xb6_\xe8\xf0\x98\xe9\xd0\x1b9\xeeR\x0e\xba\xf8(\xe7\x1cns\x1ck=\xea\xff\xad!\xf6\x9c\xd5\xb6\xef\xd9\x0fK\x05\x9f8\x0b 1\x8f\xe8\x8a\x08,\x92\x98\xc2\x85\xd3\\\x91d|\x1cE\xc9\x15D'\x12?Y\x84N~Q\xb3\\\xc0\x9cP\xac\xe0\xbc^\xd6\xb7\x89\xe7\\\xcf\xed\x98\xa8T\xb2\x18.z+\xa6\xf5\xb496\xdfYH\xd1H;\x03\xb9\xb2\x90<\xf5\xa99\xf4\xdf\xc7\xda\x0c\x196\xf9\xe4\x07\xa02\xc4\x9dI69\xe2\x92\x9e)K\\B9\xe4\x89Ku\x8eL\xc1\xa8d\x94+\x80\x18*\xe1c\xfb\xa0\xf6\x17\x9b%^\x83D\xed\xfb}Y\xf7\xc3\xc6O\x94s\xfc\xdd\xabI\x99\x04\xba\xe1\x95\xd9\xd3+,\x95mS\x8a*S\xfe\xbez\xa6\xaco*\xe1\xca\xbe\xe2{\xe3J\x02\x19\xd1\xa8\xee\xd5]\xa8E]\x1f\x8bJa AY\x8f4\x81\xd3t:\xda\x17\x9f\xd3:\x88\xd1\x8b\xf8wFz\xca}\x86\xd2\xbbm\x8a\xea\xea\xba\xa9w,\xa69\x145\xfe\x02_T\xe5\x00\x05\xf9.\x14}\xb3\xd7\xd5Z\xd7U\xb3\xfd\xd8q}t\xf5\xc0\x8a\xb07\xc5\xeb\x07W\xddI\xfc7\xb6SDy\xb7\xc0\x89\xba<\xac\x14\x93\xac76\xae\x7f\xd5\xeef\xfe\xf5a\xdf\xec\x8e\x15\xdbx\xf8Qx\xa4_\x88\xefz\xd16\xf7e\xc7\x05dr\x9e\x8bd\x8c\xab\xc3@\x81\xb8\x00~o\xa8CQ;\xd6\x15\x82\x96\x98\x9b\xa8\xd1\x96\xc1O\xa1LP\x00\x10R\x02\xc1>\xe2AQ\xbaB8\xc1u\xc8rc\xd8\xf6\xcbK\x83\xcd\x08\x1b\xaf;^w\x87b\x1b66\xac\xb08\xf2\xfb$\x12G4\xee\x8c\xe1\x9a\xf6nY\xef\xca\xfbr'\x14\x87\xde\xe5\x8a\xf3%\x18\x8f\x84]5\x89\xf0G$\xa1\x0b7t3Y\xa4\xc5R*$\xa4,\x19\xa5\xb3\x1d\x86Y\xcc\x12N\xee\x07\x02?\xc7R\xf3\x17\x10|\xc5\xf0G\xf30\xef\\\xc6\xed\xaa\xa2\xbb+\xeb\xdb\xb9\xa6wW\xde\xd6lw\xa56\xf5\xa7\xb2\xde5\x9f\x88z\xd7\xdc\xc9\xfb\xb2\xbeR\xa4\xb8`H\xa2c\xe8\xef]\xf3\xa9\xee\xcb=\xbb\xfa\xcf\xa2\xac\xaev\n\x89%HG,\xc0\xd5\x8d@/n\xea\xab]s\xbc\xae\x98\x18Kz\xf7\x0e-9\x9aTB\x98\xf5:`\xf18Zw\xc0/\xbd\x96\xf9(\xfa\x8b\xba&\xad\xf3\xad\x17\xef@\xc7\x82\xa5m\xa4 \xcf\x00E\x0dL\xb5@\x84\x7fH4' D1^\n\xd0\xa4\xf0T\xe0u\xef\x90\xa2\xfc\x95N4;\xaf\x0d\xfa8\x97\x96\x8d\xf1\xef\xfb\xf2\xb6.\xeb\xdb\xf3\xfa\xa6If\xe2\xfb\xa2\x12\x9f\xa5\xaco\xaf\xca\xfa\xc6\xc9f \xb1s\xb1\xdb\xb5\xac\xebH_A\x82 \xdc!\xc1\xa2\xe8g\xf3\x1a>?\xca\xb8}\xa1q\x12\x84+\xaf\xe8\x9bV\xe4l L2(`[\xd4;\xfeg\x06o\xdf\x89\x1f\x8e\xf5\x7f\n\xc8\x14\x83dY\xef\xd8\xe7\xab\xe6\xe6\xa6c\xcbG\x17\x0e\xaf\x9e\xf3\xae4\xb0C\x07e\xbdm\x05\xb6\x03\xdb\x01+\xb6w\xc0\xf9ztL\x0e\xb3)\x94U\xe9\x14\x98\xd6\xfc'.PD\xfch_\xe1\xc9\xc7\xb2\xe2\x03o\x8e=4\xd3\x1c\xc8\xf1\xd5\x8e\xf5_o\xe0\xbc\xd7E4\x93\x07\x9bz;eK\xc9V\xc2`f\xbf\x1c\xcb\xfbFB\xcb\xf3q \x0fz\xfd sf\\F\xbb)o\x8f-\xdb\xc1\xbe\xec\xae\xd9]Y\xdc\xdb\x98\xf5{\xc1 ZM\x8a\xd4Lb\x1d\xf8\xfcm\xf9\x02T?\xf0\x91\x1d\xfa\x11\x96\xfeX\xd7l\xcb\xbaN\\\xdb\xc09\x15ZV\xec:'\x8d\xe1M\xd3\xabkA>\xbc?\xee\x9f`<\xfe\xf5\x07(\xaaO\xc5C\xc7\x97\xab\xa8\xa6\xacc\xed\x8b\x97r0\xc6\xb6\x08\xc46\xf4\x171\x14\x82\x19\xa8\xd6??\xee@\x89|~\x06\x969\x81\xfb\xa6.\xfbf\xb2\x8a\xfd\x1d+-\xb4N\xcd\xec\xc0\xf5\xef}\xd9?\x18\xc7\x08)\x8a\xa7\xfaD+<\xabC\x91\x96+\xf2mer\xa7\x88\x8bk-\xf2\x95A\xcd\x06J@\xf4\x1cE\x9f\x1a\xaf)j\xef.^\xeaY%k\xd8t;\x11S\xaby3\x9fP\xfd\x1b\xd8\x1b~\x1d\x1cx)\xb4\xa5N\xa0\x89C\xbax\xf6(c O\x99urF\xadL\xd3\xcb\x9943E7\x87\xb43\xe9\xfb\xe0\x1a:\xfe\x8drji\\O\xfb5uHW\xc7G\x9eS_'h\xec\x9c:\x9b\xa2\xb5Iz\x9b\xc4\"s\xb6\xf0R\xfd\x9dC\x83Guxx\x1a\x0b\xf4\xb8\xfd\x19\x06\x9d\xeejr\x8a.\x0f\xe9\xef\xa2\xaa\xc6\x81\xe8\xf9c\xe5S \xc7\xc8\xb5\xec)\xe6\xe1\xff\xf5\x97=\x81\xd7\xc5>vi\x98n\x8d\x05\xa7]\xd6p\xfb\xee\xe2\xe5h\xcd),\xeb\x0e>\xdd\xb1\x96M4\xd5\xb6i\xe5\x83\x02\x83[\x19\x94\x03\xfc5\x97\xa8\xc2YcN\xd3\x9a\x9b~\xf2}\xb3\x1f\x07\x85\"`\xb7\xec\xc0\xc4\xd5-\xdf\x15\xed\xb0\xb2>\xacvk\x8e\x82=\xa6H\xed\x12\xd8:f\xe2&\xf9\x8c\xcc\xf7\x14\xbd\x14#\x17\x938d\xfb\xd6\xb1>\x11\x06\xc7-Nt'\xe0\xc2?\xab}\x89[\x96 \xa3\xf1K\xef\x8c\x16\xe4|\xdb\xd1\xb4\x15\x0d\x82\x98\xd5\xb8\xd8^\x0c[\x8a\xb8\x8d\x18\\\xe9\xc8u\xaf\xd6j\xe7\xb2\x05\xa7V f\xff\xe1\x96\x9f\x7fl\xb9\xac=\x92\x9d\xb7\xc0\xc23,:\x83 b\xdbE\xac\xba,\xdbg\x89\xf5\xb6\xccn\x0bXl\x9eL\xf4\xf9V\x9a\xebm\xb1\xec3\xd42\xd3\xa2\xbb\x17\xf7\x0b\x0e\x92\xfb\xbb\xa6\xde\xbd7\xaeFp\xbe\x82]\x01\xf0\xdd\xdb7\xaf\xfc8\xff\xd3\xdf\xf9\xbf\x82?\x9e\xbf\xf9\x01\xfd\xd5xq\xc8\xd9\x0du\x8d[\x0c\xe3\xdc\x06+\xd4\x00D\x1f\x16\xd8L\xe0\xf7t\xf2\x1c\xd0d\xdb\x1a\xcaZ\xa5\xfd\x8e\x9b\xcc\xbe\x1c\x00_\x12NO\xfe\x17\xf6\xc5%\x13\xaa\xcb\x15\xa5\\\x0f\xd2;\x7f\xf3\x83&x\xfe\xe6\x87 \xc5c}-\xed\x1d\x0fA=<\xc2\xe0\xc6\x81yX\xeb%\x17 ]W&\xe4\x9co\x87WD\x9e\x91/\x89\xca\xda\xf2\xd3w\xac\xbc\x05q\xb3\xabp\x10\xea\x87@el\x0b\xcbQG\xe3Lr-+d\xc2\x9f\xc9!\xfa\xd7\x84\xd3\x08\xef\x87h\xb8[\x93\xe3\xef\x0d\xd9r\xf6\xb0\xc5\xcd\xcb\xb7\xf2\xa0\xb1c\x15\xbb\x15\x87\xa73\x10\x06\x80\x0ejZ\x0e\xf0\xe2\xf3\xd5\xdcq8g\x05M\xccZ`\x9dh5\x1d\xe9\xd4\xbc\xda:\xde\x0ev/sa\xda[\x16\x99\x81L\x98\xc9;\x11\x83&:\x9f]QV\x0f\xd2\xfc*:\xcf-\xdc\x13])f\xef\x99\xca\xf1\xc0\xcd\x92\xab\x84\\\x86\x88\x19c\x10\xd4\xcc\"\xee\xe1\x1e\xecC\xe7\x83\x14\x9d\xca<\xc2\nP\xc6\xbd:\xac\x86A`\x92\xf2\xabK\x1a\xac\xfd\x11\x15\x02\xef\xc6\x0dM\x90\x04\xf6\xc7FW\xea$\xbb\xc6\xdd1\xf1\xbe-\x06[\xbaK\xc4\xbe0\xe5Qh\x87xw\xc7\x8cA\xcf\xda\x11\xe3\xd8\xcd!\x87w\x03>\x8c \xa3,\x90\xe2Z\x82k\xb5^\x90\x18\xf5\x95\xe4\x8c\x14m50\xd3\x15\xe5\x08;\x99\xb8\xf3\xb2\xe6\xdek\xb6\xbd\xfb\xfd\xef\x9e\xb2z\xdb\xa8+\xc2\xc4\xaf\xc3\x9dv\xea5\xcd\x02\xc3\xdc\xe6\x0c\xc2y\x996\x08G1vwE\xcb\x92z\x96o\xa8\xafl\xce\x8c\x7f\\\xf5c\xcb\xb6\xac\xbcG\xe5\xd5`\xe3\x8d\x9fm\x9at\xc3\xed\x13udm>\xb2\xba\x83;V\x89\xcb*\x8a\x1a\x8a\xad8&\xa8\xc3\x90\"\xd5|\xaa\xe5m\x16Mm\xac\xb3\xba\xecZ\\\xdf\xdelK\xe1\xc6\xd1\x07\xe1\xa1\xae\xaf\xf9$\xbdfM\xcd\xa6\x9f\x85\xc4r\xc91\xc1\xdd\x84[\xd1\xd7\xf0W!\xcc\xb9@\xd6\xab\xb98\x18\xc2\\L\x1fP.n\x06\x84\xa3\xe9\xa3H\xe7l\x87\x84\xe5\xf3\xcc\xc8\xe1\x90\x9b\xcba\xca\xe9\xbc]\x17UQ\xbbY\xd8D\xc6\xa4V.`7\xf3\xc4\xc5\x8e\xb5\xb2\xb3o\xe0\x19I,\xb9xgt\xab\xeaF\xbb]'&\x08M\xbf\xaf\xf0\xdc\x14\x15\xab\x85/\xc4`%\xf6y+\x1c$\xe20\xd7\x1b7\xb3\xdb\x1fqz\x9b\xa4\xe2\xdf\xc1?\xb9oZ\x06\xdd\xb1\xecE\x88\x80\x1b\x87\xdb\xaa\xe4\xbdigs\x17\x94\x7f\xe3D\xa8\x82o\xdf\xd4\xe5\xc7\xa8\xdb\xc8Z\"\xf5\x8a\xf1\xa5\xef\x8e\xfb\xa2~\xda\xb2b'\x86-\xaeC\xd5\xfep\x87\x9d\xcb\x1d\xab\xfb\xb2\x0fW\x0d\x84\x8c+M\xc0\xf4\x1b\xc8\x8a\xd2\xa2\x1a\x7f\x1c\xbe=\x8c\x87\x03\\\xfdc\xd9\xf5M[n\x8b*)\nr\xc7\x8a\x9d\xcb\xd7$\xa1y\xcf\xda\xaet\x12\xabe\xc0\xe3\xba\xe8\xca\xad\x8a\x02\x94c\x06S\xa0\x0f\x08$\n\xa9\xda\xa3\xe9\x1f\x03\xaa\x11\xc2qI\x80\xe2p\xc8G.|\xee\x7f\xc9\x05R\xdd\x1d;\xd8\x16\x07)f\xe5qQ\xff\xb9=V#R\xdf\x96u\x9d\xf4\x03\xe9\xd5\x9b\x90\x13*\x98\xff\xb4\xbd+\xca\xfa\xccM\xa8\xddVGy\xbdoU\x19\x0f\xf2\x93}\xc1\xe7v\xdc\xca1h\xb8\x16\xd9;\xeai(\x0e\x87\xaa\x94\xfe\xf7\xc7\x0e\xf6x\xd7\xf3#[\xdf\x16u'\xe5\xf4\xbe\xd8\xde\x95\xb5\x95\x92\"z\xa6\xde\xa4\x93%\xb9zFZ=\x96\xd1#\xee\xab\x16\x8b\xe7\x8e^r\xf8\xa1e\xf7\x19\x19\xfc\xae\xe8\xeef2\xa4\x93H j<\xfa\xab\x8e\xf5W\xd3\xed\xad\x9bw\x84\x10\x1c\xa5x\xd5M\x0d\x18~\x12T\xcb\xbag\xb7H\n\x0eDRd\xc0\xbb\x0c\x10[\n\x08/\xc7\xf0\xd1.\x8a\xb6\xefX\xff\xa3X\x95\xe9\xe7\x96\x91\xa7+w\x08Q\x0e\xf2\xa5rpRroIF\xe1[\xd0x\x8e\xff3Cwc>K\x06b\xd3\xb1\xdf\xb4\xcd^\x88\x89\xe2p\x80\xe6\xd8\x1f\x8e\xfd\xf8\xb7q\x0f\x18\x14D\xbaJ\xd61\x0d\x922\x03\xad\xe2p\xc8@E\xf0\x8b\xca\xa8\xc8@\x8e\xdds{l\xcb2\x90\x1a\xbe\xdf\xa8^&\xe2I\x82\xbf\xb0\xd4#o\xbc\x08I\xee*\xcb\x836\xa8\x1b\x19\xfb\xbad\xf5N\xc4\xe6{\xb5!\xa4x2|JHfC\xde\x9cc\xfeW\xff\x81?(f\xc2Z\xde%m\xad\x84\xef\xf0\xff\xd8M\xc2\xd3t\xfe\xa7p \x80v\x1f\x94\xb5\xb8h\x7fc=?n\x8d\xc3\xf1\xda\xc9A\x0b\xca\xf9\x90\x94\xe7\xaf]\x1d[T\xccG\x04ql\x95@\x84\xcb\x7f~\xf7\xd3\xb3\x96u\xcd\xb1\xdd\xaa\x83\x908\x12\x1e\xeb\xf2\x97#\xab\x1e\xd4\xf9\xe4\xa6T\xab\xd7+\x98\x00,\xe7\x17\xc4\x81\xa1-\x8b\xaa\xfc\x0b\x96\xcb\x0cr\xae}\xb3m*\xb8>\xde\xdc\xb0V\xe7P\xa9\xcc\x139\x17\xd8\x1f\xbb\xe1D\nE\x0f\x15+:$+\x15D\xde\x02\x83G\xcf\x1e /y\xb1\xedY\xbb\x11\x87q\x11\n\xe9\xd8-?r\xeb/\xfd\xf3\xbb\x9f\x1ewp(\xfa;\xd1\x01Jnp\xb0\xe0\xbdq27\xc7\xaaz\x80_\x8eE\xc5We'\xd7Lu!V\xe7I!\xd2\xafQ\x02\x1fx\xf7\xcfn\x9b\xe6\xb6b\x1b\xb1\x16\xd7\xc7\x9b\xcd+U\x19\xf9\xe1k9zA\xb2\xbbk\x8e\xd5\x0e\xae\xe5\x11\x1c\xa5\xb6-\xea\xa6\xe6\x07\x0d!\x13\xf0\x1e\x9f\xb0\xcd\xed\xe6\x8c/\xa10E\x1fm\x1e\xe9\xc0r\xb1\xdd\xb2C\xcfv_\xe3W\n\x8b\x0bh\x0e\xc2q\xbfeg\xd0\xb3b\xdf\xc1\xb1;\n\x98a\x999t(+>\xba\xbe\x91\xa6pY\x8b\xec\x8a\xaa\xc2\xd7\xee\xe1 x\xa8\xe8\xf9\xd3\x0fx\x97\x12\x81\x00\xca^\xa3\xf9*4|\xce\x0c\xec\xb3\xf8\x94/\xea\x87\x0d\xfc\xd8|b\xf7\xac\x955\xf4?\xbf\xfb\xc9\xdd\xbb\xbcI/\x05'\x83\xa6\xba\xf3\xd6m\xef\xd8\x9e\xc1\x87\xbb\xbe?|8\x93\xff\xdf}8\x93I7\xea\xd73\xc1e[\xe3\xd8Z=\xa0\xd7\x03\x81\x08\xf4A!\xe6\xea\xe9\x8f\xb5\xf7L\xc5\xd0\xf7\xc5\xa1\x93,\xc3g @7TF\xa1\x90W\xc2\x96\xef\x00\xb9\xa8\x1d\x84\x16\xa8\xaa\xe6S\xf7\xdc\xf3\xed\xfe\x11\xceo\xc6\x19\xf0O.\x80kvl7LRy\xfb\x8e{\xb6\xf3\\;\xf2\x8f\xf0\xa2\x86\x1f///\xe0\x87\xd7\x97\xd0\xd4z\x1b\xc9\x0d\xfa <]8g\xfei\xca\xe2\x97\x0f\x07\xf6\xe7?\xfd\x19}X\x95\xf0\xf3o\xadxH\xaa8\xf1\x15\x0em\xb3;n\x99\xc8Bj\xdbi\xa2\xb8n\xff\x08/\xc6\x13R\x07E\xcb8\x1f6\x9fd\xd0o[l\xb9Lh\x9a\x8f\xc7\xc3\x90~y]tl\x07\x0d~9\x8bO\xbc\x01\x9f\xbe\x18\x97\xc8\xa4\xeb\xef\xd8\xde\xd8\x0b;\xb9\x19\n=\x8d!\xfb\xa8\xa8\xa7W\x05\xe9&\x07%\xb6}\xcbn\x9a\x96\x9d\xe9\x979\xcd\xa2/\xaf\xcb\xaa\xec\x1f\x04\xf2\xbd\x0ew \x11\xd5\xdeO\xaa]\xc6\xd6\xd4*\xd0+^\x10\xfbn\x03O~\xee\x98v\x14\xf0U\xe1l\xc7\xe5\x8c\xe4\xbb\xa2.n}3\xben\x99pph\xa2\x9b\xafqny\xd3\xf4\xec\xb9\xc2\xb3V\xb9\x83\x85\x18\xbb\x927\n\xf9\xa7z0s\x8a\xf1\xea\x11\xde\x1a\x91\x0e\xed\xa6\x13\xcb\xa6\x19\x0bZ\xc6\xb5\x03S\xfe\xeb!kf(\xb3\x1e\xf7\xd75\xbb-\xeb\xdawh\xf9T\xf6w\x1e\xa1\xffp`\x1b\xc9\xcf\xc5\xa1\xec6\xdbf\xef\x93\x98\xef\xc5n\xeb\x94\xc7\xa9\xbf+\xea\xa9d\x81'\xca\xcd\xc8\xf6\x87\xfeAm\xcf\xafQb{\x91\xa9z\xed\x11$b\x82\xc2W=\xf8\x96U\x84\xe1\xc0\xb6\xe5M\xb9\x85\x8e\xed\x8b\xba/\xb7\x9d\xbbe\x10\xc8\x0c\xd9\"&E\xf0dG\xb38\xfe\xc0E\xc75\xd3~5\xc3`pl\x03\xa5T\x8b\xeb\xe6\xdecl\xc8\xa9*v\x9eN36\x9a\x0f/\xea\x87\x0f\x86\xe3\xbb\x86\xa2\xbd.\xfb\x96o\xbe\xc0\xa8\x94\x8cv\xc8\x15US\xdf\xaa\xe8\x81\xfb\xc9\xb8\xd4\x14B_\x8e\xea\xda5\xa7\xcc>\xb5U\x84\xb0\xd9\x85f\xfc\xaa\xbc\x16CUr\xbd\x83\xeex84m/\xef\x96\xd8~|v\xac\xf9\xffq})\xbf7Z\x14&,\x1a\xd4xhn\xe0\xd8K\xe1\xa3\xb7s\xc7\x05\x9f\x8e\x06\x14\x15\xdc\xb2Z\xe0_\xeeT$c0\xaa_ \xf2N~\"\xb7\x9f\xd7\x9f\x0b\xce\xc0\xf0\xcds\xb8(T\xaa\xb2\x1az1(\xc4\xb2\x86\x97\xff\xf4O\x1e5\xf5}\xd3\xc0M\xd3\xc0\xb7\xb0\xd9l\xd0\x94z\xb1\x08E\xfd\x80\xffX\xd4\x0f\x1b\xde\xf5\xf7m\xb3\x7fr\xd34_\xe3\x8fm6\xb8\xee)o\xe0 '\xf1\xb3\x18\xf4e\xf3\xe4\x1f8\x8d\xaf\xf1J\x80\x00\x9d\xbf\xfa\xd7\xe6w\x91\xb5\xf9\xd7\xe2\xbeX\xbc8\xf0\xad\xb0\xad8\xf5\x05\xabPvO\xbeo\x9a\xcd\xb6*\xba.\xb0\x08rH\xfc\x059\x1f\xe3%\xbc_du\x86\xe5\xf9}dy.\x1e\xfa\xbb\xa6\xf6,\x90\x1c\xc9\xf7M\xf3d\xb3\xd9\xe0\x92xX\x9c'\xde\xdf\x05\x03\x89eK]5\xfe\xf2\xb9\\\xb4W\xaf\xdf\xbf|w~q\xf9\xf6\xdd\xd7\xb8\xebMv%\x19\xcd\xdf\x99\xec\xce\xbf\\\xff\x12Y\xae\x1f\x1a|\xa5\xc4R=\xff\x16\xfe\xe1p\xbd\xf9\xbei\xfe\xeff\xb3\xf9+\xfe`Q?\x9cqs\x8d?}\x90\x06\xc8\x1f\x8a\xb6\xbb+*\xbe\x88\xfe\x81\xfb\x96i\xda\xb3\xa7\xdb\xf2f\xd2\xe9\xcf\xf5~\xecV\x0cJ0\xb6x\xea\x7f|\x0buYy\x19\xd4?\x16\x84\x13/\x05\xc6\xcb\xf6\xe3 \x07\xb5\xb1\x0d\xd7\x0f\xa3\xa9\xa2%\xb6\xb8\xe7\xe3\xfaAg6;\xd4\x8e\x1d\xa2\xf3\x1f#f\xc83~\x16\xdd\x88\x1f\xb8)\xf7\x18\nC\xabp\x8d\xa3\"\x0bn\x0f\xe2\xab\xbb\x9d\x0cb\xbc\xae\x1e\xf4\xb9\xc99\xf0\x0e\xa6#\x147=\x93\xd6\x0c?o\xbbC~\xf6\xd8\xedB\x1d\xe8\xf4\x10\xe5 \x8e)\xce|t\xd34\x9b\xeb\xa2\x15\x93\xfb\xfc\xeca\xf3\x97Gr\xb5\xe4Y\x03?V\x89\xa1<\xe2\xcfr\xf5\xe2\xfc\xfc\xaf\xef\xdf\xbeq\xff\xfa\xed\xb7\xdf~\x8b\x7fG\xfe\xfc\xe8\x07P%\x0f|\x9b*\x83A\x9eU\x8e\x1d\xd3EU\xb7\xc7\xaah]Z. \x99\n2\xaa\xf9\xb3\xb1pM\xed\xbe3e? \xde\x03C\xed\xca\x14\x83\x0f\xff\x87/\xc7\x07u\xc8\x1d\xcc\x18sq7z\xcb?\xf7\x18\xd1\xc5\xf6#\xdf\xf3\xe3a\xed\xa6\xac\x18.\x7f\xb5|\xb8`m\xd7\xd4\xdem\xa3<8\xa2\x90\xeaJ|\x19_\x99\xdb\xf8\xb0\xf0\xe1\xaag\x7fG\x97\xfe\x00\xdeQ<\x12k\xf3\xe89<\xc2v\x8d=\xdd\x8d\x9c\xd1\xa33\x1f-1\x977\xc5\x9e\xd3\xfb_r\xc8\xff\xdb\xfb0\x9f\xcb\xe4Y\xea\x84\xceo\xd4\xc1\xc0\xe6 \xf95\xcb\x0e>\xb1\xaaz\xfa\xb1n>\xc9|\x94;\x91Y\xa92Ip&\xb7Y\xf0L\x1a\xa0\x13\xbe\x94\xc2\xc8\xe8\x963Z}\x8b\x9c\xeb\x05\xdb\xb9\x9d|\x10\x1bB\xf3\xa1\x84\x086r\\\xc4v\x9a$\x91\xf0\x9f\x15\xfb\xba\xf4D7\x03\xe7\xc2\x13Q\xee\xa2\x96\xc2q+h\xcf\xd9\x9f\xff\xf4\xe7\xaf=L\xbe\x94G\xec\x8e\xfcl\"\x96\x81\x93\xfbf\xf3\xbbo~\xd7=\xf2|v\xf3_\xb2\xac\x0c\xf7\x14\xcfC\x08\xd0\x85j\xaa\xb4\xf6\x93*!\xb3\x1c\xddc\xf5\x98zZD\x91T\xf9\xe0\x94\xa0.\x98\x91\xf5\x81_\xb9?MGo\xa7\x80X\xc57\xd3\x1a\x19x\";}6\x14\xa5\xa8\xff\x12>I\x9bl\xe0`\xea\xbb\x85)\\\xaa\xe4\x7f\xd2*Z\n?6\x96/\xf9\x9eC\x89\x91J\x9at\x93\xa9}s\xa3#*1\xd0MF\x14\x9e1\xf1\xdb\x93\xb2\xdeV\x1b\xe8Xu\xf3t\xccT\x9c|\x811\xd7\x13K\x8c\xa4\x8f\x07\xe1\xd9)\xe91Z#o~\x94\x7f,\xbb\xee(\xbdyE0f3&\xf8O'0\xc95\xc3\x7f2\xffa\x85\x8d\xcc\xbf\xf7\xac\xddw\xfe\x841\xdd\xfay!\x1f'\xc3ml\x11\xf7L\xce\xac\xb7\xb1\xb9\xf9ocK\x19\x90\xc7!4?;\x0e%\xd7\xb4N\x9e\xdc\xd8\x9c\x8c\xb9\xb1\xa5\xcc$5\x8bnl\xfe|\xba\xb1\xa5\x8c\xc4\xb3\xa63S\xefPZ\x93t\xbc\xb19\x89ycK\x99BB\xb2\x9en\x83\xbe\xc8\x0bA\x15[\xd9i\xb7zU\xcf\xf8\xc1s\xf8Q\xde\xc4u7\xc1\x19\xe8\xefJWVMU\xf2\xed\xb1F\n4'}\xbbyU\xa4 \xcfEK\xb2;\x0eMy\xcf\x8fv\xe5~z\x87\xc1\xd8\x8c\x12\xd2F\x847*\xd63\xdf\x84\xb7\x93\xe2\xd1\xb1Y#\xde\xbauk\xbd]\x016\xd6\xaee\x92\xcf\xfe\x1a\xd5\xb1\xc5V\x15\xa3\x93P\xf1\x84\xd2\x1bB\x1e\xe1\n\xd6\xb1\x05\xe6\x0f\xd1\xe43\xac\xbeul\x11\x01\x00\xc4%\x02\xd5\xcd\x8c\xc2>/=\xac\xc8tlx\xc1\xec\xd82N,\xbdP\xd0K\xca- \x8c\x17\xd6\x8e-Xb;\xb6\xccSO.7\xf4R\xeb]\xd8\x8aP)\xee\xd8\xd0\xa2\\\x83.-\x18\xe6\x93\xac@\\\x909\x95\xbc\xb8@1\xab{u\x13\xb0\xde\xac\xba\xb9\xc2*\xc6d[`\xbb#\xd4\x9d\xd3\xde\xe3N\x9c-`\xc7\xb6U!a\xdf\xc4\xfd\x19\x0e1\xf5\x94&d\xce#4\x8e?\x1a\xf9\xf9N\xce\xfe\x19\xf4\xcd\xad<\x04\x0f\xe5L\xf2\\\xa1\xeauT.\x13N\xf1\xb1D9\xd0g\x10\xe5N-[`\x9f\xd5\xf5%\xe2\x83\x08uV\xd6\xdd\x06\xde+`$\x8b\x9c\xce8\x98&\x05\x15|I$w+\xaf\xa8E\xf6L\xa60\x88\xc8{\xd3\xb6l\xdb\xc3\xb6\xa8\xb6\xc7J;\x14-b7Gn\x1d\xdb\x1d\x1c\xebq5;1\xff\xe6\xd8C\xd9\xb3V\xea\x87\xe6^\x9c\x0f\x86\x03\x13\xfc\xfb\x1d\xab\xe5T\xa0hm~6\x8f\x8dv/\"\xe2o.\xf8\x14=g\xdb\xb2]9\x14\x94\x15f9\xdc\xa7\xbb\xa6\xb3\xfb\x19\x10\xc8\xecN\xcc\xcfP\x8e\xc9\x1b\xa2\xb3\xf1K\xca\xa1\x8fC\x15\x97oH/\xfc\xd4 Q\xd9\x08v/\xd6\xfao\xd4\xad\x8c\xaa\xee\x8dK\xd6k6|\x02\xb6\x13\xdev\xc1J\xea\x9a\x169<\x9b\xe2\xfeX\xf5\xe5\xa1*\xe5 l\xfa\xe2A\x9c\xb3\xed\x1a\x92\xd1\xbb+\xd34\x05#\x1aK\\KQ\xc4\x17\xf4\xc6\xb9DY\xe4w\x0e\xe1 \x05\xfe\xd37\xad\x9c\xc0\xa1h\xc5\xca\xa9\"\x16\x85B\xcf\xb7l/XPZ\xaf\x07\xd6\xcakg\x85\xe7\xae\xfe\xa0\x88\xed\x9b1-\xafe\xe2\xc6\x1a{\xe0\xfa\xc7'\x1f\xea\x0f\nth\xc0\xbd\x9fv\xf8\xe1nx\xf5\x8a\xd5}[\xb2\xee\xc3h\xbc\x89\xc3\x9c\xa7\xe0&\xf1\xbe\x0d\x9f)\x8d\x8aA\xeb\xf3Lla%\xe8\xa4]\xac\xfc\x83\"l>\xb5h\xb9\xba\x1b\xf3\xb0\xa7=N\xb3\xf4 \x90G6A=\x10\xad9G\x10\xbf\xf1\x19s(ju3\x8c\xc3\xc1\x10P\xa4\x8d\x11\x81\xfe\x93\x88\xf3\x94B\x12\x0f\x0bd\x8a\x02\xab\xd4\xade\xc6/O\x0e\xac\x85CQ\xb6\xcf\xfa\xb6l\x86c\xbd\xcb/\x19f\xe4\x12\xd5s\x19Wu|f\x98\\\xdf\xe8=\xa2G\xc7gH\xbaP\xd1\xea~|\xcb\xb2\x89\xf8\x9f\x85\xcff++V\xc7\xd2TD\x88\xf8n\x91\xb5\xaf\xec\xb3\xf7_hw5ME\xde[u\xd3\xab\x8b\xaf\xae\xa6~Kd\xf2\xd4'\xad\xe9\x8dW.5\x8d@\xae\x1cS\xbd\xdab+\xe6\xa4\xe41\x97\x92u\xd3?U\xff\x94\xe5\xbd\xdd\xf1p\xa8\x1et8\x8e\xff\xf4\x95\xfe\x0e\xf6\xaaz\x96C\xc0%f)\xdc\xbfj\xadw\xd1\xf7q\x1a6\x1d\xdb\x9c\xf3\x1e\xea\xfc\xc7\xb9\x08\x18\x00\xc4L\xe1\x98\x91\x88\xf4@*\xcc\x0f\x11\x9a\x1a\xf3\x11\xfc\x00X>\x87y\xe0\x02!B\xd39\xe0\x9e\xf5\x94\x81\xcf\x83\x1ep\xc88\xf3_\x0cA0\xa1W:5\x8c\xcbQ \xa6\x04k'U\x00]x\x07\xac\x00\xe6n\"\x07\xb8\x00\xc2\xdf\x0e\x030\x08\xbe\x12\xfeF\xb3\xc1\x0c&t\x96 \x1aLH)|\x83)\x9b\x93@\x0e 8\xe1<`\x07\x06A+es!\xf6\x81A\xc9BA\xf0M\xc8\xa3R r'\x9d1\xbf\xc0\xad\xa6!\xfd\xd5\xb4#\x8d\xf4k)\x10M\xe6(\xf1\xbc%c1\x17F\xb2+\x97\xa0\xf9\xa2n\xa0\xb8\xe6\xc8\xa8\xff\x02\x1a\x90\xa4\x03\xb3\xcc&\x9b&\x0c\xe8B\xbf6L\x9b\xc2|\x8d\x18_\x8beZ\xd1!'\x81z\x9c?/\xd4\x8c.\xbd\x1bL7z?\x05\xaa\x1f\x17l8TKF\xbe\xa9OS.r]\xe6\xd2\x97Y5\xa6Og\xa6h\xcd\xf0\xd4\x17iN\x8b\x92\x01\x19\x84qL\x06\xed\xe9\xe8O\x98N\x0e\xd3A\xe3G\xad\xaa\xc9\x8e\xef\x1e\x8f\xf7O\xb8\x92\x14\xbb}\xc2\xeam|`r\xba\x1e\xfe\xac\xfc\xb8z,\xe3\xa8\x13Nv\xeb-\x16\xbf\xfd[,p\x8fE\xd4\xf6\xf2\x9a|&\x81g\x18\x05\xcf\xd5\xc4A\xe3\xefg\xed\x86[b\x05\x8e>\xd1/k\x04\x9e\x048 \x93\x9d\xe6\xb1\xd1\xa2\xf6\xd9\x82\x91g\xb2\xc9\xfe\xb9\xf8Fqt#\xfa\x18\xd05\xcc\x87k\xe4A5\xf2b\x1a\xd1\x07\x9e\x8cg\x14F3\xf2v\xecOe\n\xafcf\x14\xa3\xa9\xd2\xf4b\x18\x85\x10\x8c\xa2\x93\xc4s\x97\xa8\x13]\x88\\4N1\x8a[\xe4C-\x9afW\xcd\xc4,\x9a!Y\xe3hE\xf1m\x97\x17\xa9(\x11\xa7\xc8;g\x88\xe6\x0c\xfa\xd1l\x82\xdb\x19H\x8b\x02\xd9\xb1\x89B(=a\\\xa2L\xd3\xc9\x86Hd\xa0\xf1$\xe3\x11\x91\xd0\x882N8\x19\x87\xc8\x13\xc3\x02{\xdeT\x14\xa2 \x06Qp\x9a\xf1\xbcNk\x11\xe6\xc0\x0ca\x90BQ@\xa1\x99f\xf0\x12(!\xf1\xd7 \xbd\x91\xcc8z\xff\x08r\x83\x08e\x85\x10\xc2\x01\x842\xc2\x07\xb9\xe0A\xf9\xa0\x83\xccs\x96\xd9CN\xd8 \x144\xe8:/d\x10\x02\x18\x94\x1b.(\x0d,\xc8SV\xe2d\xdc\x11\xd2\xfe\xdc\x97\x17\xe5\xfa\xa5W\x91\xf8\xd1q\xf2\x16\x8f\x84\xd3\x02\x83\x027\xa6Qf&\x07z\xe9\xac\x97N\x12\x93\x05c\xe9\x82\xb9\x13\x063\xa7\x0c\xae\x97NZ-g\xfa )\x810o\n!!\x890{\x1a\xe1z\xe9\xa4lIi\x87\x8b\x13\x0fs\xa7\x1e\xae\x97N\x9a\x8d\x96\x84\x989\x0dq\xbdtr\xbdtr\xbdtr\xbdt2\x9e\xb2H\xc8\xd3[/\x9d\xa4,\x0e%\x8d1\xbe\n\xa4T\xc6\xe4d\xc6\xf5\xd2I\xd5(\xc9\x8d\xeb\xa5\x93\xcbS\x1d\xd7K'\x93\xd3 \xdd!\xaf\x97N\xe6J\x91;\xb9\x83\x0e-\xbb?\xd1\x06\xba+\xba\xbb\x85L\xeeI\xc6;\x14m\x7f\xd5\xb1\xfe\n\x133\xbaE\\\x00\xb1\xd1\x03\xae\x12\xad\x9fE\x0f\xd3\xeb\x7f\xa7-~\x19Dh\xa9\x80\xb2\\\x10_\xb2\xe1\x83_\x14m\xdf\xb1\xfeG\xb1r\x18\xcb\x88#Y\x7f\x85\x0f\x89\xc4\x91\xe8\x10T\xf7\x9c\xac\xdc\xd7\x92\xe9\xf8\xf6\x9f<\xcb\xff\x94\xb9\xfb\xd1\xba\xccLx:/\x11o\x14\x86\xfb\xe1\x00\xcd\xb1?\x1c\xfb\xf1o\xe3^\x9bP\x11\xe6\xde\xc9\xc68\x96\xef\xe4\xa5[\x1c\x0e\x99)\n\xfeS\xf6`f\xd2\x8c\x9f\x96\xea-\xcbLv\xf8\xfe\xa3\xfaD\xc4(\x974M\xc7\xe6\xde\x1a\xec\xed\xdfR\xf6rG[\xd6\xdd\xa0V\xe5i\xea\x92\xd5;\xd6\xee\xcb\xbaW\x9bO\x8aOS#\xde\x17U\xc7Pl\x08\xf7\xfe\x1d\xf4\xf6\x9d\x80\xd4\x0d\xc9\xdbX\xc5\x1c\xc4\xd6\x88b\xf9\xe4\xab\x9e\x83\xc4\n: T\xd1A\\g\xc54V\x1f\xa8\xa8\x83\xf8\n\x02q\x15aAu\x9d\x97`o\xa5\x89{\xb24gV\xd9y\x89\x05\xaa\xef`n\x05\x9e\x97\x9a\x18T\xa4\n\x0f C%\x1e\xcc\xaf\xc6\xf3\xd2+H\x15y\xb0\xac*\x0f\xe6V\xe6\xf9\x87]Ub\xbd\xa2\xd5y0\xb3B\xcfKL\xd4\xe5\x10\xaa\xf4`A\xa5\x9e\x9f \xebc\xd5z\x90\xb3b\x0f\xe2U{\x90\xabr\x0f\x16U\xefAz\x05\x1f\xe4\xa8\xe2\x83\x05\x95|\x01\xf9\xe49\x1d\xeb\x96\xb9\xa2\x0fNT\xd5\x07\xf9+\xfb \xa1\xba\x0ffW\xf8\x05ex\xb8\xca\x0ffU\xfayI\x0d\x15\x80\x81j?P&\x00\xb1\xe2\x0frW\xfdA\xb4\xf2\x0f\x96V\xffA\xa8\x02\x10h&P\xf4$M\xb7\x92rV\x04B\xb4*\x10\x88#\x9bW\x1d\x88\x92\xd2:\"\\!\x089\xab\x04aY\xa5 JO)z\xbfa\xb3\xa0b\x10\xa5\xc7\xc7\xd3{\xaa\x06!K\xe5 \xd0\n\xe4 VA\x08\xf4*B\x08\x95\x16\xcd\xa8&\x84\x08=O\xe5D\x86\xcaBH^\xf4Wj\x82\xb7Z\x13\xa6#\xceW\xb1 qG\x02^\xb9 I\xd5\x9b\xd8\xd3\x9e\nN\xdf\xa3X\x15\xa7\xfb\xac\x97hR5'\x80\xaf\xa2\x13\xe2\xebe}\xa9\\\x95\x9d0&\xf7z\xab;!ql\x1e\xbeO\xae\xf4D\xa9\x98\x89\xe5\xbejO\x98\x8c(6`\xe3\x1fK\xab>ay\x882P\x01\n\xf1/\x01\xd3\xc9e\xab\x04\x85H5(\xcc\x18\\\xc018\xa72\xd4KL_\xdf\x11\xa8\x0e\x85p\x85(\xcc\x98\xdd\xfcJQ V\x8b\xc2\x8cQ\x05\xd63\x1d\x1a\xab\xfb\xd6\xb1F\x17\x8f\xcb\x91\xf0FW\xc6(A\xffI\xc4 K!\xe1\x87E4\x8b\xee\x9d\x84\xdc\x96\x19\xbf>9\xb0\x16\x0eE\xd9>\xeb\xdb\xb2\xb1\xdc$c!\xec\x89f\xeav\xa0\xe77\xae\xbeQ\x8d\xab\x9f\xe9\x1b8\xb0\xb6+;\xcb\xcf\xc0g~\xb5cu\xb3\x9f\xc3\xa5\xe3\xdb\x96\x0d\xc7\xff,|f\\H\x82\xf8]\xd5\xcc#\xc2\x06\xd9\xe71\xd9\"\x9fN\xa8\x83\xbeh\x9a*]\x884M\xe5\x13!MS\xd9\xa8\x00\xfc\x0fe}\xd3\xcc\x12\x17u\xd3_I\x81~\x95pct\xca\x1b\xc8\x8a\x1bK\x12]o>;\xfaj\xbf3vJ\xba\xec6\xf7\xd9\x95\x1e\x951?I\"\xef5[f\x9fS\xf37p\xc4\x0e\x1d\xadG7\xfei\x0b\x91\x9c~\xb40\xb8f\xdb\xbb\xdf\xff\xee\xa9\xae&\xb2k\x92\xc2\xa4\\\xe3s\x90\xe6W]\xbb=\xf1\x8c\xd0\xbe\xdc`\x9b%\x8fe\xf1\x10JNWW\xe9\x15\x08Mn\xd7\xf5_lrF_\xe1\xc9y\xbeU\xd7k\x1c\x92\xf8\x0cQE$\x1b\xb6\x9d\xc6\x86V\xe6\x99/.\xaa\x8a\x96\x9e\xae\xa6\x0e\xf8\x94e#\x1c\xbf\xe3\xfee\xd9(\x1fI\xb6\xc9\xe8\xc0\x86\xbb\x90\x7f\xd3\xb8\x85!\x07\x85\xc5\xa8}\xd3|\x84CUl\xd1\x9ck\x90\xbe\xc5C\xc5D\xc7!\x8fD\xe2\xa2\xc4\xbc\x12I\x0bc\x8f\xd0Z\x97c]~\x1e]\xcdQ6\x9e\x12\xf4-\x8a\xf2\xa9^]\x17UQo\x97.\n}\xaa\x93~Q?\xaf\xfe\xed\xd3\x1d\x0bM\xd2\x96W}\xd1\xf6\x98?F6y\x8c\xe3\"\xe2\x8b\xcdt\xecRK\xa3\xf1\xack\x08\x9b\xa7\x83\x8c\x8a\xd2\x92\x1bH\x9e8\xcd\xc9\xfb\xc2\\\x94\x91\x9a\xa6\xc5\xeb\xbao\x8d\xb0\xa7\xbd\xc0R.\xf9s\xe6@T\xca\xdc\x17u\xcf\x8d\x9abW\xf4\x056.kT\xda\x92.Z\xe9\x80\xb3:T?\xa6z\xa1\xcc \xd9\x19yU\xd9\xf5\xb2\xda\xfaP\xb4}\xb9=V\x85\xe1QAJ\x89\xc7\xe1\xd4\xb7\xc28D\xfc\x00\x02A\xc0\xa2\xa8\xcan\xad\xe0\xcf\xa4\xcb\xe1\xe3;\xe4<\xf1 \x8f\xba\xf1\xab\x1a\x8f\x9a \xaa\x98\xc8U\xea\xa6\x15\xc9\xc7\xe3\x89\xc5\xafZl\xd5b\xab\x16[\xb5\x98\x97\xd6\xdf\x83\x16\x0b\xf2[\xf0\x0b\xc4\xe7\xe3\xcc\xc5t*\xb0_\x8e\xe5}Q\xb1\xba\x97j\xc5y\x18!\xc8>o\xd9\xa1\x97 \xc2%\nn0\xd6\x1b\x0e\\;\xc9\xe6U\x9fN\xca5\xe1\xcaEB\x0e\x00\xdd\xb1\xec\x85\x9fJ\x84\xdd\xab\xd2\x03\xa608!\xcc\xb5\x0d\xad\x8c9M\xearL\xe6m\xabw\xa5P\xed\xc1\x0d\xa8\x14)\xab`\xcd\xd9&\x87\xcc\xdf\x99\xf9\x8a\x9a\xb9\xa2f\x9e\x025\xd3\x8e8\xa1\x0e\xc4\x98\x93\xd2zIQK\x8e7\xfd\xacC\x01\xaf\x9c\x0dLv`\xcap\xc2\xd4aI\xe2\xeb\x88\xd3\xd0\xcb\x0f\xd6Z\xce\xf3\x08\xe2\xde\xbf\xd1]\xb5`@\x0e\x11\xda\x80\xd0\xc3E \xa4rZ\\)\x82\x95\x1f\xb1eb\x96}\\\xd7\xba\xd6|\x89\xdb\xf1FH\x8b\x9b\xea()\x8f\xf9N0\xdc\x89\xf3$\xa77N-\xf1\x123\xc2\xc7\x19\x85\xecl\x82\x85\x9d\xc1\x89\x1b\xb2\xa7UU\x81z\xa4\x928\x16\xbbc%3\x1b0j-\xdb\xb2\xf2\x9eA\xd1\x07\xa7\x96iJ\x811\xf7\x0dm,\xb1%B\x84\xe8\xc4\xca5\xf2k\x836n\xc4\xba\x0dzg\xd0\xa8\xae\xe3\xa5\xb1HXv\x002\x0b\xe8\xfaF$\xefT\x95\xf4\xccte}[1\xd3+ct+]0#A\xce\xc5\xc3+F\xf6J\xcd\xd7\x83\xf3\xf9\xd3\xa6\xdd\xb1\x96\xed\x84\xeb\x07\x89\x94\xa2\xd0\xd2\x13\x133\xa4!\x91\x19)\x82\xf4\xd8\xde\x90\xcf\xf4\xca\xd5\xd0d\x0di\xb8f\xbeP\x80o\xec1\x93:\x88hj\xd9R\xf6\xe5\xaf$\xbcw\xda\xd9\xcc\xb3\x04\xc2\xa4\xdc\xd9\xe4)\xcf\xb2\xaa\xafL\x0bI\x08\x02\xf9\xa3\x12\x97\x8e\x07$\xb6\x16\x86H\x19j`\xc7\xd4 \x95r(\x85\xf2\x1d\xab\x84\xef\xa1\xa8\xa1\xd8\n\xe3\xdb\x9d\xf097\x04\xdc\x93k\xf3\xa9\x96~\x8b\xa66d\x94\x82\x86\x12\xe0h\xcd\xb6,\x86\xac9as\x19\xe9g.\xbd\x1bN\xc9\xed\xc7\xf3)<\nk\xf6\x86srTd\x0b~S\xe9\xfdI|-\xf6\xf5^\xca\xac\x16\xed\xb1\x11\x1fjL<\x1c\x93]\xc4B\xf3\xef\xb6\x97\x9f\xcd]\xb97o/_?\x17\xf0\x02\xcaM%\xeb\xf4K\xa1\"\xcfkm\xd1\x0d\xf0U\x92G<\x05\xd8R\x80\xbb\x9d\x0c\xb5_\x9c_\x7f9\x96\xadd\x8a\xdb\xe6\xb6\x11\xb5\xc2T\xaf\x06\xaepl\x9f\xc6+\x9f?\xc3\xa24:p\xbe\xc28&\xd9\x8f\xa1}\x17&\xad\xd5u\xb1\xba.N\xe5\xba\x98\xae}\xd42\xf2Zf&\x81g\x18\x05\xc34\xa3Zf\xc9\xe6\xd8 \xbfg\xf9,\xc2\x80\xcb4\x0f\x81\xf3\xc9g\xc2+\x8fP\xca\x13z1`\xe50\xa4\xb2We\xf9\x15V\xef\x05P\x0e\xea\xab\x98\xea\x99\x0f\x97\xec1\xa4\xc2@\xc9s \x92\xfdP\xc8\xb3@\x90\x05y\x84X\x10\xfe\xb8_\x06|<\x13\xf2\x18-\xc5\x8f\x83\x1d\xcf\x869\x9e\x05p\xcc\x0f\xaf\xd8\x8a\xc5\xa1\x8d\xe7\x80\x1a\xfb\xa0F\xa3p\xc6s\x81\x8c\xb9\x14G\xc8\x05!\x8c\xe7\x80\x17\x87A\x8a3\xc0\x13\x93\x80\x89\xd3\x00\x88\x17B\x0f\xcf\x05\x1d\x064j\xee;\xd7e\x05\x1a\xce\x0f1\x9c\x15\\\x98\x06+<\x0fP\xd8\xb3\xc0!(\xe1t\x10\xe1\x11,\x18\xdb\xe3\x1e\xf8\xe0\x9e\n\x1c<\x172XB\x03#\x04q\xb0\xe0\x050\xc1\x1e\x80\xe0\xa0\x8a\x0f\x82\x02\xc7\xf5\x7f> \xe0\x10\x04px\x1c\xf3`\x7f\xb5$\x9d\x10\x0b\x01\xfef\x82\xfa]\x00\xf2\x8b\xef$L\x95/\x00\xf6\xe5\xfdM\xa8\xf5(\xa4\xefR0\xdf(\x12m\x00\xc0\x97\x04\xdd\x8b#l\xa6\xc1\xf5\xe24\x1c\x04\xbb\xc5\xe0\xbc\xd4\xc5\xa0\x00\xf2\x86\xe7M\x02\xe1M\x84\xdfu\x11\xfd2@\xeeF\xc1v\xc30\xbb1\x80]\xef*\xa5\x80\xeaR\xe0t1 \xdd\x85\x10\xbaD\xf0\xdcy\xb0\xb9\x1e`Z\nTnF\x90\\\xcf(\x1cN\x9b\x05\x89\x0b\x01\xf8\xdb\x8c\xc0\xb78\xe4\xed\\\xb0[/\xb0\xed\x02H[\xf4\x18\x12\x04\xae\xc5P51\xb0\xda|0\xb5\xf3\x01j\x110\xdaY0\xb4A\xc8Y:\xd8, fV\xf91(\x00\xb3\xea\xd1(\xb4,\x8a\xb7\x8a\xf7N\x05\xf5\x8c\x03\xc9&@\xc8\x12\xc1c\x9di,\x00\x8cE\xd9x\x01,\xac\xe3mA\x01a\xe7A\xc1\xfa`_\xf3\x02\xbe.\xe3\x07\x12\xc8+\x05\xde\xd5T+\x18\xa4\xab<\xcd``\xae\xe1S\xc2l\x00W\x1c\xdc\xc2\x0b\xdd\x8a\x81\xb6\xda\x91\xdcLp\xad\xdec\x1d\x06\xd1J\x05g%\xc1\xb2\xd2\x00Y\xa3P\xac \xac\xa4\xaa\xf2\x91\xae\xb1\xday W\xc7\xbc\x07,\x9aO\x1b\x89\xc3\x91S\xa2cT\xc1\x03\xadj\xc6\x16|\xb4\xbcY\xe1\xfe\x81\x19\xff\xb0\x02\x1b\xe6\xdfI@\xaa}z`\xc2\x0b\x9b\x1atZX\xc3\xcf\x04\x95\xea\x07I\xa5\x0f\x05u\x91\xcc\x81D\x1d\xa0O\x11z>0T/\x0c*}\xfcs\xa1O\xe3\xa0\xa7\xf41\xa0k\x98\x0f\xe2\xd4\x03n\xea\x855\xa5\x0f<\x19\xca4\x0cb\xea\xed\x98\x88\xcb\xe2\xac\xe3\x02\xb0R\xe1\xee\x9d\x90\x9b*M/L\xe9,\xf4\xa1p\xd6.u\xa2\x0b\x81H\xad*\xd40\x04\xa9\x0f|\xd4\x1a\xe9|\xd8\xd1\x19\x925\x0e2\x1a\xdfvs\x81E\xe1\x1a\xf3\xf0&B\x8az\xe7\x0c\xd1:X?\x88dp;\x03iQ`\x16\\\xa8@~\xf4P\x0b\xe1A\x86!B3M'\x1b \xe8\xb8c\xd2\xa1@I \xa0\x19'\x9c\x06\xf9\x19J\xfe\xb4\xe6M\x05\xfb\x0c\xc2|\x06\xa7\x19\xafh\xb0\x16a\x0er'\x86\xd0\x19\xc5\xe6\x9ci\x06/A\xe2\x14\x7f\x9d\xd0\xc3\x8ab\xfd#X\x8a\xbb \x93\x8c\x81\xd9\x08\x9b\x03\xa2\xa6A\x0c\xc7\xd6\xcc\x88\xaa\xe9\xe2i\xe6C\xd24\xcfYf\x0f\x0b\xd03%Z\xa6A\x0b\xc5\xcd\xbc^\x88\x989\xd9\xe7\x08V\xe6\"\x94L\x04\x153\x8a\x87\xa9R\xfc\xf0\xcc\xbaX\xa1\xc5\xc8\xe2\xe9\xd9{H\x91Fz\x81\xc5h\x90}\xd9\xfa\n\x7f\x01A@\xbe\xc6\x14H\xa6\x12\x08O\xf9C\xb4\xf4a\xc1\xc83\x95;\xfczQV\x08E\x91\x04\x0b\"V\x18\x19_h\xd92\x16Gz\xcb#I\x05\x92 s\x0e#\x9aL\x0f3\xb9\xca$I\x85\x92\x84Y\xd0\xbeK\xderIr\xc1\xe4\x12\xdc\x0b\x98N.C\xd9$e\xb9\xf2\x95NF\x8b''\xc3\x99W>\x19\x9e\xd3\xd2\x12J\x8b\xd8\xb5\x8bh5\xa7\xa2r-\x04Y\x0bA\xb2\x15\x82Xl\xe3)\x07 \x19t\x89u!\x18\xa99\xb5\xbb\xe9\x06\xe5\xb0\xb9NlG\x86\x8bI\x16\x19c3KJ\xbct\xfeg\xb4\xa8$VV\x124\xbdB\x86W\xef-.\x89\xaa\xb5\xd8*A\xfe\x12\x93X\x91I\xee2\x93\xcc\x85&\x91R\x93\xc5\xc5&y\xcbM(\x05'\x0bJN\xf2\x16\x9dHn\x8d\x94\x9d\xe4-\x89\x94\x9f\xcc+@A \x05\x8bR\xb2\x94\xa5\x10\x0bS\xd07\x93\x8aU\x16\x97\xab\xe4.X\xf1\x97\xacd.Z9E\xd9J\xe6\xc2\x15j\xe9J\xe6\xe2\x95p\xf9J\xf6\x02\x16\x7f \x8b\x14\\\xa4\"\x96\xf9e,(1Q\xda\xe2)dYT\xca\xe2-f\x89\x9a\x14\xc1\x82\x16\x9a\xc5\x91\xaf\xa8%\\\xd6\x12\x1fM\xd6\xd2\x96pqK\xb6\xf2\x96\xa5\x05.\x0e9a\xd1\xa0\xc6C\xde\"\x17\xb5\x8d\x90 --t!Tw\x04\x8b]\x88\xe5.\xde\x9c\xf9\xc4\x92\x17?\x1d$\x91xq\xe1K\xca\xe2P\x8a_\xe2\xab@*\x80I.\x81\xc1\xd3\xac3\x94\xc1\x10\nab\xa50\xf1b\x98\xe0\xaa\xa5\x14\xc4\xd0Jb\xf0\xa2\x98\xc5e1\xe4\xc2\x98\xb9\xa51\xfee\"\x95\xc7d-\x90 \x8c\x05\xe1\xc4Ee2\x0e5\xa4l&k\xe1\x8c\xaftfa\xf1\x8c;d\xb7\x98&\x7f9M\xa4\xa0\x06/\xa9\xc1\x8bjr\x96\xd5d.\xac9EiMJq\x0d\xb1\xbc&\xa9\xc0\x86^b\xe3)\xb2\xf1\x95U\xd0\x0b+\xe2\x856I\xa56\xe4b\x1btB\xb9\x0bn\xf2\x96\xdcx\x8anr\x97\xdd\xe4.\xbcY\xce#\xa4\xe2\x1bZ\xf9\x8d]\x80\x83\x97\xe0\xe83\x18V\x84\x13?\xd3d.\xc4 \x94\xe2\xe0\xc58\x93\x11\xe6*\xc7 \x1eL\xb1\x92\x1czQ\x0e\xb1,\x87Z\x98C(\xcd\x81\x94\xe2\x1c\xbc<\x87\x1e\x1d\xc9S\xa2\x03\x91\"\x1d\xfax\x82I?\xcbKu\xc0S\xacc\x8f\"4@\xe3\x1f\xcb\nvf\x87|\xbce;Q\xf7\x8c5\x91L\xa5;\xa1\xe2\x9d\xb4\x01y\x1cB\xf3KxPrM\xeb-\xe2 \x94\xf1\xa4\xcddn)\x0f\xa5\x98'm$\x9e5\xcdW\xd2\xe3-\xea\x01\x7fYO\xda\x14\x92K{b\xc5=\xc1\xeeC h\xb1\x95\xcd\\\xe4\x93P\xe6\x13.\xf4!M\xd8\x97}F\x9f\xf4\xc2\x82\x9f\xa4\x92\x1f\x7f\xd1\x8f\x9b)7\xb3\xecg\xb6|\x8e\x17\xff\xc4W\x15\xa3\xb3\xac\x00(\xb9\x04(\x92\x0d\x1a\xcb\x07\x0d\x15\x02E\x05\x00\x10\x97\x08\xb2\x97\x03\x85\x0b\x82b%AY'\x96\xad0hYi\x10\xb18(\xfb\xd4\x93K\x84\xbc\xd4\xec\xb3\x05\xb9H(R&\x14\x9dpL\xb2\x02qA\xe6\xd4\x10\xe1\x02\xc5\xad+\"T\x16-\xb2\xdd\x97\xd4\x179\xc4\xd4Sn\x85Qx\x1c\xb9\xab\x8c2\xd7\x19\xf9*\x8d\xb2\xd6\x1aa\xd5F9\xeb\x8d\xc0[q\x94\xb7\xe6\xc8Su\x94\xbd\xee\x08\xad<\xca_{D\xa8>\x82)w\x8f\xf9\x97Fl\xba\xaa\xc4L\x7f9\xb2\x96\x93\x1a\x9f\xd1D\xd6L\xe75\xd39S\xa6\xf3t\xa0\x9e\x84bre\x9c\xc8[V\xb4b\x05r\xe6\xcd~r\xc9\x1d\xe6\xf3\xde1\x84\xa5\x12\xa3\x1fjr\xfc\x9cSr\xe6\x96\x98\x8d\x05`]\xbb\x9d3\x10\x8b1Pj\xae\x1f\xd5\xbe\xa2W\xe6\xf0\xea\xa4e\x83\x9az\xdf\x1d\xea\xae\xeb3\x0e\xd5\xa0\x16\x19*~\xd1\xb8\x1e\xf9t\xbcN\xf5[\x7f\x82t\xf4H}\x1b\xe1\x84=\xc7\xa5\x90te\xb7{1\xb7C\x0f)e\x8b\x14\xb1\x11&6\xd7u\x90\xe9\xdam_\x99U\xa4\xaem\x81U\x9bz\x89vx\xfc\xe8\xd5\xd9\xfe\x0b\xb3\x17\x8c;\xf9J\xec\xc9\xc5\xd7\x0e\xc1\xc0E\xd8\xa1\xb1\xcc\xb9\xf4z\xa8a\xb3(\xb9\xf5lV\xbf\xd3J6\x8b\xb8U\xc1\x86\x0f\xd7\xba\x95\xd9\n\xa1We\xd7\xcb\xaa\xb5C\xd1\xf6%7\xf9Z\xabrm\xecj\xf8LV\xd9\x9a\x08\xaaYo+\xf9ly\xc1&\xe4\x87Od;n\x08\xcaR,3Ycz\x85\x1d\xca|\xb8\x80\xb3\xddp\xcb\xe4\x98-\xb7\xbc\x12+8:WJM\x1d\x853\x84\x11\"|\xbcb'\xae7\x17\xc9\x95\xa9\x1c\xc1$H|\x08\xd6N]*/\xe0\xda\xb4\x93]Ia\xf5\xbcH(X\x82\x80\xba\x1d\x92K\xdf\xcca\\\xb1qG\xa1\xaf\xe3$ fJD\x8f\x0e\xa9\xd0c\x0b\xb7\xde\x84\x9ac@\x04\xcd\x87\xe8d\x08\x10c\xd96&\xc4l\x02\xefh\xc3\x0b\xbch\xd7Nh!\xb6\x80\xcf\x12\x989\xda\xa5{zB\xcek\x01\xf8G\xb1h\xa3\x1bt\xa6\xba?.p\xe3J\xde\x92\x0b\xe0\xdciX \x837.7T\x04\xcb\xc1k4:h\x16_h8\x88 \xe3.C\x82\xa0[$\xe3fI\xb7\xc1\x08Zr\x0b\x9cCd\xe6\xa9\x1b\xe2'o\xfa\xa0\x9c\xbd4\xff\x14>!\xe4;\xd9B\xfc4\x0e9\x86\xbf\xf4d\x0e\x919\xacW\xf5\xcfT\xc1(9\xd7\"6\xba\x8aC\xd2\x10'\xbc4l5OoGH\xb9\x13&\xa0\xd7D&L\x99L\xaa\x8eG\x89\x84\xac\xf5\xb1\xf9O\xfe\x90g.s-\x00?k\xcb\xe0\x85\xcf\x13\x00\x84q\xe5\xb2 d\xc3Qnfz\x06\x9cW\xbd\xc6L\x9a\x87\xc0 b\xfa\n\\p\x9be\x9e\x02\x83\x90\x93\xec\xf1E\x1c\xa7\xa1CS\x90`\x88(\xac\xb2}\x8e\xa8[e;\xd2V\xd9\xfe\xdb\x97\xedi>\xfe$\xdft\xd2i\xd0\"5\xb9\xf6\xde\xfa-\xc3\xc9\xd0\xa6g\x9d\x12e\x9b\xdc{\x1f?\xfdR\xa7:\x99\x99\xe6\x1e\xa5N&\x87\xdf\x053\x9cq\xf6Ep\xb1\xc8G\xdf\xc0\xc95\xee8\xcdub\x1d\x0fe3\x06\xe1\xbcL\x1b\xc4\xdf\xc60\xf8\x02\x11\xd5y0\xa0\x7f\xc3(i&`\xcf\xbfM\xe83\x0d\xc0\x93\x00\x94\xb9p\xf8\x0b\x81:CK1\x1b\x9c3K\x183\x0e\xc8i\xbd>dI-\x05\xe1Tg\x13I,\x1dq\x93.\xb2\x7fe\xd1\xca9b\xe3\x8b\x04)\x93\xc5\xc3\x82\xe0\xa4\xb5\x03f\x8b\x01c\xdb\x19\xe4\xdc\x81\xce\x18\xe0\xec\xed\x8eO3\xdb\x16'\x84&\x87\\82\xcf\xfb\xd11\xe3\x0be}\xc9\x99X\x98\x13\xecK\x83\xa0\x07\x05\xd3\x8f\x7f\x89\x9a\x0d\xb8\xd1\xd0\xa3h\x97^}\x10Vf\x19\xb1-\xfd\xa8\x96\xf9\xf0,\xb3!Yz1,\xfb\xf9\xe8\x95\xb9p+\xc3\x88\x95\xb3\xb0*g\xa3T\x8a\xf9NO\xc6^|\xca\xd9\xc8\x94h\xe9\x8e\x07\x93r \x1a\xa5@\x9e\x9c\xce\x06\x01L\x99\x83@\xe9G\x9b\\\x883IB\x98\xa4\xa3I.\xc0\x91\\\x80 \x89\x08\x8c\x8c8\x91y\x11\"\xb3aC\xc6Q!\xb3\xe1A\xfa\x90 \x97`@\xa2x\x8f=\x05\xe9q.\xc6\xa3\x17\xcfq&\x92#\x82\xe1\xe8U\x94\xde:\x8b\xb0\x06\x9d\x89\xd58\xe22b\xeb\xfbU\xbc\xefe\xc8\x8c\x12\x89\xd1 \xe7b2f@c\\\x86\xc38\xe1\xf2\xa92\\\x88\xbd\xa8\x16\xda\xa4\xb8\x04e1\x08!\xe8AV\x8cb*\xba\xf0jt\x1cE\xf7\xdd\xbfbs\x9d\x85\x9aH\x99l\x0c)\xd1?\xb7(:b\x02.\xa2\x0d!\xb5\x10\x0b1\x88\x82\xe8\xc7?\x0c!\x1f\xa2\xab@E;\x8c\xe1\x1cN\x11\x0e\x17`\x1b\x12P\x0d\xd3\xf1\x0c\x11\xf4\xc0\x18\x86a&\xf4B\xa4g\x8bS\x16a\x15N\xb1 \x97\xa0\x12\"(\x84\x8b\xf0\x07\xa7x\x839\x91\x06\xbd\x18\x83S\xe0\xb5)\xae`\x1eD\xc1lX\x82yQ\x04i\xf8\x81Q\xe4@uJ\x8ea\x06\xaa\xc7\x82h\x81\x0e\xac\x9e\xdb\x1b\x15\xf7-\x8c\x0dHD\x05$\xe0\x01ZC\xce\x89\x01\xb8\x08\xfd\xcfE\xfb\xcb\x87\xf3\x97\x0f\xe1o\xfe\xd7\x8d\xa2\xfa\xc5\xf0\xfc\xb4\xf8\x9eb\xf8I\x1b|\x8a\xde\xe7\xb7u3\"\xf6\xa1X}S\x94>k$9\xf0\xf9\xd0C\xc7\x14\x93\x8f\x82\xc6\x17\xc5\xe1\x8b#\xf0\x05\xb1\xf7\x88\xa8{S\xbc=t~\xd6*.\xc7\xd8\x1b\x83\xcbSt\xbdx\xef\x167M \x8d\xde\xde4,\xbd\x81N7\x0eq\xec\x13\x1f\x88\xf1\x0f\xcb\xc9l\xfe=\x8a\x9c\xd7\xd3\x9d\xc5(N\x9e\xf7\x08l\x0d5\x036\x1e\x8e\x8aG\xeb\xde-1\x99\x8d\x81\x07\x93<\x11@\xd1\xefP\xdc;\xdaX\xe7`\xdd\x85Q\xeeh\xfd\xce\x84\xb0\xc3\xe0\xeaP\xa0:\xda(\x92\xc0\xe9\xfc\xb0thg\x84@\xa5\xc5(\x19\xe1\xe7\xa6\x9a\x05\x05\x9e\xf3A\xce\x05'\x13 pz&\xd4'B\xcb\x8d\x130\xc8\x05A\xe508\xb9i\xe8u\x06\x90\\\x82\xb8\n\xc3\xc6\x85\xe5\xc3\x02\xa88\xe1^\x9c\x90\xa3\x81\xc4\xa1s\x83`\xd2.\x0e\x1f\xe6\xddj\x10\x9d8d\x05\x80\xf3!\x81\xf9A\xdf\x16\x0e=\x1d\xe2\x0d\xe5l\xdd\xd2\xc0\xdd\xa2\xb0n\x19&\x97\x0c\xe2\x86\xb8\xf7\xc1\x06\xb0\xa3\xc0\xb7y\x81\xdb\xbcSJ(H\x9d\x83\xc76\xc5^\x0b\xa2\xae%\xdatK0\xd6\xc4_\xbf2'jg\xf9\xe2\xbd\xe6DT[\x8e\xa5\xa6\xe3m\x8a\xe0\x18\x9c^\x8a\x9f6\xc1L[\x88\x966\x1a\xfd\x8a\xde\x88\x93\xb6\x18!M\xa1B)r#6ZFT\xb4 \x1eZN$\xb4\x08\x06\x9a\xca\x999\x1en\xdbb\xc7\x86\x9c\x99?4\xbbc\xc5\xfe(\xa3\x92\xe4\xbc\x19n\xb8Gv\x9a\xc2\xb723\x1f\x8a\xc3\x01\xf6\xa2?\xf5\xd4\xbd\xd9\xad\x97\x92\x07\xedKu0d\xc4hj\x9e\xde\xac=8\xe4\xf2Y\xd3\x1f\"j|'\xcaWU\xac\xb3s\xbb\x19\x1c\xe3\xef\xcbz+\xc6\xc1\xd7\xf7i\xb7\xfb\x08\xff\xbc\xf9\x97\xdf\xfbW\xfc\xa2*\xb2.\xb4_\xa4\xbdg\xbd\x14`\xd69K\x8fG\xe6\xce\x88\x9f\xb4\x7fJ\xc4H%\xbf\xea\xc7,\xe7\xd4d\x85\xbb\xe6\xa6\xff$\xb2)\x1b\xbe\xda\x95\x8c\xda\x88E,*x\xd4\xd4O\x15\x91GB\x98\x17c\xd6\xa3\x18\xf7QL\xc3\xf8\x0b\xa7)\x1c~\xf0\x1d\xbb-\xeb\xef\xaaf\xf0\x9f\x1bNhES\xe4;\x1c\x04\xbfo\xe0\\D\xa3\x8b\xaa3\x13d\x85If\x92\xe7\xd6K/\xf2\xcb\x94\xfb\xa7\x18\xa7\xa0\xa7\xc6w\xdd]Q\xef\xf8\xa7\x87\xdb\xf2\x9e\xd5\xe3\x82\x89\x1c\x0c\x93\xa2\x1e\x8a|a\x90\xd4zY\x07\x7fR\xc7z-;u\x87gP\xf6b\xdd\x0drv\xd0Z%s\x0c\xb92\xe3X\xcb\x0e\x9ac\xff\xb4\xb9y\xba\x93\x16\x0d\xab\xad\x95\xb9\xe4*\xd42m~\xd4\x19\x98\xb6\xe7\xb2\xd8\xdeq\xb1\xa2\x02\x05\x03}\xc1\x0e\xecs9\x1c\xefNt2y\xc5\x0e-\xdbr\xd1\xf6\\\x8eYJV5\x8dN&u\x88\x05\xdc\x0dOn\x8c'\x91/Q5\xb7\xe5\xd6\x9c\xe4\xf0\x0dZ\xb6o\xee\xb5S\x8fO\xf7\xfd\xab\x7f\xdb8N\xe1\xb2S\x1e{\x95\xdc r\x0b\xce\x86t\x96a\xa7\xf4wm\xf3i0\x96r\x1dD- \xc6K\xf4\x809~\xe5\xbdJ\x1b8\xb0\x96\x93\xb6\x0b\xa5\xde\xaa\xd0\xce\x8e\x1f\xf3.\x95\x8d\xc5'\xd4\xb1\xe1\xab\x96\xf5MC\x13\xe2\xd6\xb8DtvL\xe2\x19\xf3'\x86\x8dY\xdf4\xeaTT\xd6\xdb\xea\xb8\x13\xda\xf2\xe9\xf6\xae\xb0nF\xec\x8e\xdb;i{\xde\x96\xbd\xb4\xf6T-\xcc\xa0\xb4\xb9\xd8=V;(\x8e}\xb3/\xfar+\xb2\xb0t?C6\xbc\x16UW\xb2\xd0\xe5\xaa\xeb-C<\xe1\xf4\xd8\xaf\x99\x91kf\xe4\x9a\x19\xb9fF\xae\x99\x91C[3#\xd7\xcc\xc853r\xcd\x8c\\3#\x03\xef\xae\x99\x91kf\xe4\x9a\x19)\xda\x9a\x19\xa9\xda\x9a\x19\xb9fF.\xc8\x9d[3#\xd7\xcc\xc8hf$n\xc3^T\x85\x19\xcc(ki\x7f\xf3U)\xae\x9bc\x0f\x05\x1c\xaa\xa2\xaeGg\xab\xf8\x9a\xc2\x91\\\xf6\xca\x83\xa2h5\xdb\xed\xb1\x0d\x04\x90\xc45$/\xa4#\x9e\xf7\x9b\x0c\x95\x9a\xcbyj\xa3\x0c\\\x8b\xe0\x01\xe6?\xe53\x17\xc1d\x1d=\x08,\xa4or\xba\x97\xd0\xcd,\xc6k\x8a\xda\xbb\x8b\x97\x9a\x81\xa4\xa2\x89-\xebKyB\x9d\xb5\xac\x87!\xcc\xe4LO\xac\x80N\xf5\x90]\x0c|\xc0\x7f\x9b\x95xcG\xaa`\xbe\xdbtI\xd4jB\n\x8baA\xee8\x16\xa0\xb1,X\x1e\xcf\x9aP+\xaa\xaeqbZ\x90!\xae5!\xe7D\xb9`y\xa4kBM}\xb9i'9#^\xe0\x8bzAR\xe4\x0b\x9c\xe8\x17P\xfc\x1c\x84\xfc\x17\x87\xef3F\xc3 \x14\x11\x83\xa4\xa8\x18,\x8b\x8c\x01\"\xe0\x81\xb2\x82\x11|~\xe7\xca\xb2E\xd12 F\xcc\xc0\x89\x9aAh.\xbe\xbb\xc8\x96E\xd0&\xc4\x96\x86\xd1\x1cab\xfc!\x12X\x03\x9f\x86\x80`\xfab\x8f\x06\xd9 \xb4\x92\x10\xdd=\x907\xe0\x06\xc1\xa0\x1bd\x0d\xbcA\xce\xe0\x1b\x84\x02p\xb0,\x08\x07\x19\x03q\x10\x0d\xc6\xc1\xdc\x80\x1c, \xcaa+\xf6p\x10\xfc\xe2 \xcc\xc1\x92\xe0\x1cBK\xca.O\x80\x0e\x16\x06\xe9\x10r\xc7\x03\x14h\xa0\x0e\xb2\x07\xeb`y\xc0\x0e\xf2\x07\xed`Y\xe0\x0e\x96\x05\xef\xf0-\x8a\x0e2[H\x0f\xb2\x87\xf5 gh\x0fH\xe1=\xc8\x19\xe2\x83@\x98\x0f\x16\x86\xfa\xb0=\x8e\x04\xff\x80\x1a\x00\x84\xc5A@\x84\xa0k\x8d\xc3\xfc\xd0 \xe0\xe1A\x88\xa9xo\x98\x10H\xfa\x7ff\xb8\x10\x13{:\x808 \x19Bt\x1c\xcbB\x87\x13b\"\x90\x88\x84\x0f!O\x08\x11r\x87\x11\x01 %\xc2\xf2p\xe2\x84Z\xef\x04\x17aa\x80\x11bq7\xf0\x07\x1a\x81\x12l\x04<.\x92\x14t\xf4\xd3p\x9c\xce\x8b\x02\x90\x90\xb0\x18\xb1@$D\xe7\x1d\x0dHBZP\x12\xb0\xf5X\x1a\x9c\x84X\x80\x12\x82AJ\x88\x04*!\xb4J\xd4\x80%\x10\x82\x96\x80\x04.aY\xf0\x12h\x01L\x98\x15\xc4\x04\xef\xc2D\x83\x99\x90/\xa0 \xfeQ8\x9c\x965\xb8 \x0b\x03\x9c\x13Rn\xb8\x13r\x87\x00@y\xbd\xdd\x18!\xacnS\xd6=kE\x80\xea\xaa\xd8n\x9bc\xdds\xa1\\\xf7mSU\xac\xdd\xdc\x7f\xb3\xb9(\xdaBK\x11\xc2\x02\x8f/_\xb1\xba\xb8NE\xffr_\x07\xf9\xff\xc2\xf1\xb0+;\xf9\xdf\xdaI/\x1f\x85\xeex-\xf7\x04\xc2\xe5\xc3\xd6\x96\x13\xb1\x80\x18:&\xf6\x93\x8e\xd1\xc1\xb8\x1a\xa0W\x03\x016\xe1F\xa9\xf4\x95\x8b\xaa\xef\xe1w\xd8\x17\x0fCbC\xdf\xe8\xd1\x06\x07;\xe3\x83\x88\xaf.'\x93\xcc\xfe\x07\xe3c:+up\x17\xc8\x98\x9c\x92\xa5\xe6:\xa3\x9d\xe2\x1dC\x845\xc0\xcb\x1epz\x16AV\x94b\x0d(\x86\x9a\xb1\xc3\xee\x9a\xae\x9f\xb1\xb7\xf8k\xb3v\x95\xf9\xa2w\xb1\xf8C\xd3e\x02\x19\x0f\xb9R\x16\xe1<{\x83\\\xf8n\xf7e\xc0kh\xc5\xc7e\xabi\x9f\x0b\x87\xbd\x11\xb1\xb96\x15<\xfb\xcc\xb6\xc7^VZ\x15rv\xe23\xfcje\x84\xfb\x01\x92\x98\xe97+\x17p\xb6\x06\xbaDX\xc0\xde\x10`q\xf0\xb09`\xac\x0e!\xfb5\x1c{X\xca\xf6\x13r\xfc\\Ig\xfd\x93\xca\xbe\xbe-\xea\xeeF\xaa\xadW\xacn\xf6\x97m\xb1M\xe1\xca\xfe.b\x98\xf9WVdZX`eb\xcf67ph\xda\xfe\xd9\xf6\xae\xa8kV\x8d\xa9%mgD\x03\xdbbk\x7f\xc3IL_\xa5\xaa(\xde\xbf9\xd6\xb7\xa5\xd8\xc5\xcdGf\\\xe2\xd4\xb1\xab\x1d\x9fu\xca\x1c\xf8[ \xdeR\xb7\x95\xeaNZV\x15\x0f||Hg\xf8*\x8c+n{\xa4\xdc.\xf8\x9c\xcf_\xbe\xff\xdd?O\xa8\x0b \xa2\xaf\x9c\x15P\xb3W\xabd\xe5)\xf3U\x8f\xb2B\xa2\xda\xebX\xbd\x9b\xa5\xf6,~0\xa9\xa0B\xa2\xa8*\xd8\xb6M\xd7)A/V\x00\xf4\xb8;\x91kgq\x84\x9d\xa0hl\xb0\xe1z\xbf\xe5\xa3\x9e\x10\x9a5pKB\x04\x86\x8d\x8f\xc2\xaf\x12\xcf\xbf{9\xf4b\xa9@\xf5\xe6\x9b\xb7\x97\xaf\x9f\xc3e\x03\x87\x96\xdd\xb3\xba\x1f/\xcc\x93#\x948\xbdL\xdc \xa7\xc8\xb4lw&\xc8\x1b\xdcv\xa9'\xf2Z\xad\xc1\xd0\x95pm\xb5G\xa6\x1d\xe7\xb5~\x15\xae\x8b\xfa\xa3RI\x03r\xeb{V\xef\x14\x89\xaf\x06\x01\xa3)i\xe9fm\x8b\xbe\x81\x9b\xa2\xeapUl2\xb4\x90\x89b\xbb\xfdXtw\xc9\xda\xf7\xae\xe8\x92\xe4\x1c\x7f\x1e\x9e\x945\xdc\xb1\xcf\xeah\xfa\xf5\xe8\xd16' 6\xbf\xb1?C\xb6\x0f> \x8a2\x18^\x12\xee0I\x8d\xa8\x15\xc6N\x85\xa0J^:1\xdd\xab~T+\xe8{\xf8\xbb\xe0\xa8\x18\x98\xaf\xc4\x17\xa8\x9b %-V1\x9c\x07\x82\xda\x01\x8f\xea\x01\xf2\xdcf\xa9 \x87\xca\x042h\xb1*2\xa8\xe98\x99\xf1'\x82J\x8a\xf3\xbd\xc5\x82d\xc6\x97\xd3Z\xca\xf9\xe96\xbb\xc1\xfa\xf3\xceed?\xb0\xbbI\x82\xbe\xdaX\xc6O\xbe\xad\x12\xdc,\xf4\xed\xe2\xdf0\xf4y\xce\xde4\xe1\xf5\xca\xbbq\xd0\xadC\xdc<\xceHM\xfe\x83\x96\xf5\xc7\xb6\x96\xb6\x889\xac\xce\xa7\x838\x1b\xdc\xaa\x87\xbc\xe7N\xfd\xc0\xe4\xec9\xfcY\xc5\xac\xf5\x16\x9du\xfa\xac\xd9\xe7\xfe\xca\xba\x92\x13B\x9f\xdd\x9b\xeb\x86an\x81A_\xcb\x13\xfe\x9f*-\xb3\xe8\x94\x17\xe0\xa2\xb8e\xef\xd8/G\xd6\xf5\x1b\xf9\xfb\x84\xc8/\\X\x88\xd799\xbe\x04\xfc\xc4\xdd\xf5\xc0D\xf2\xa3\xc8\x954\xf7w\xd3\x17T0\xac@d\xc5W\x08!\xd1,K\x0dk)\xe179\xbf\xeb$Y#k\xf3f\xf2\xae9U\xe1\xc0\xb8\x12D\xa6\x9b\xf7S\xd1qc\xeeLDYT\x96o'@H\xe5M\x10\"\x81\xf2S\xd9! \x91\x93H_S\xd7L\xa6\xae\xcd\x93\xecz\xff\xa0\x91\xbe\xb8\x84\xff-:d\xf0\x03\x17x\x8f/\x10\x15\xfaK\x0f_\x13r\xaa\xec\xc9\xad\x10\xb3\x0ea\x10:\x88\xc1\x82\xd9\xcc>\x94M\xf7\x91qD\x8bM\xe7\xa4N\x9bm\xd3\xb2\x8d\xd2\xbb\x9cs_\xca\xff$s\xeb4\x84\xa6\xe2\xb1\xaaFU\xfc\xaa\xd9RkwV\xef&\xac9\x91M\xee%)\xef/_\\\xbe\xbe\xfa\xf9\xcd\xf9\x9b\xf3\xcb\xf3\x17?\x9d\xff\x7f\xaf_y/K\x91\xcf\xf2'\x91?_\xbe\xfb\x8f\xb7\x17\xaf\xdf \xbfx\xfe\xfc\xf2\xa7\xb7\xef\xb1\xbbR\xa8#\xc2\x0dO\xdeD\xacn\xd8\xc9\xe5\x0d\x14\xc3\n\x95\"S\xb7\xa9G\x03f\xf0'\x8b\x15\xb5\xb6\xac\x1c\xe1\x19\xf0\x91\x9c\x81\x9a\xe0\x19\xf0\xff\xe5li\x0d\xd1\x8eQG\xd7\xf59\xbcRyn2\xb0\x88\xbc\xcb\xdf|\x0e/\x86\xa1\xdf\x15\x1d\xfc\xe7\xb1\x13\x9f\xbe\x15\x17\xbd\xdc1h\x0eL h\xdd\x15\xf5\xae\xbb+>\xda\xf9\xd9\x93o3\xa5Vl?\xd6\xcd\xa7\x8a\xedn\x15\xb5\x81\nt=;\xe8j\x12\xa1QX{(\xda\xfe\xc1\x15\x06\xd6g\x9e\xf6\xa0oG\x98\x90\xdf\xc0\xdb\x03\xab\xf5\x93\xa2F\xc4\x12/\xc5N\xa8s.\xe0\x84q\xa5oZ?\x14\xdb\x8f\xac\xef\xd0\xee\xe5\xc7\x9a\x0e@\x14vn\xab\xa6S\x15\xae\xdb\xa2\x86\xba\x81\xaa\xa9oYk\xc6\x0cD_M\xab\xbb2z\x98t\xda\xb4;\xc6\xf7\x94\xb33\xcd{\x94\x0cv\x13\xcf3A\xfbX\xab\x7f\xa4n\xd2\xb7\xef^\xbd~w\xf5\xe6\xed\x9b\xd7\xde\xbd)\x1f\xf9\xf9\x8d\xf8\x7f\xf4\xb7\xe9/\xc3\x86\x8bP\xf7\xef3\xdf\xc0\x9e\xc3_X\xdb<\x95\x16\x86\xb8\xf9A-\x87^;\xfb\xfbM\x86\xfe\\\xaf\xb8F\xfd\xde\xb1\xaa\xbc\x17kX\xd6\"\xb3X\x909S\xb9Z\xfb\xe2\x01v\xa5(\x1c\x18\nw\xc5\x03`!\xac\x0eU\xb0\x0f\xf0\x89\xb5\x8c\x7f\xef~\x83\x8d\xc3\x19\x85\x02ZWC`\x9f\x8bm/.\x180z\xc2\x88+\xda\xe6\xe6q\x85\xf9dgy\x848\xc9\xbe\xe0\xc7\xbc\xab\x12U\xc61\xdf\x84\xebw\x11\xd7\xfc\xf8v\xbf\x9an\xf3I\x1d\x9bd\xdd\x8d\xd8?X\xf9\xa8V\x81_9\x7f\xa2\x0fW\xaf\xd7\xb8D\xfe\xe1\x0d\x0b\xafm\xd4\xab\xbb\xe60\xef0?\x19 v\x1a\xd1\xe1\xa4\xb1;\xf3\x8c}&\xb4\x8ddWU\xc0\"\xd6N\xf3V'jYM>\x15\xf5[z\x9e\"\xa5\xb1o\x8b{\xa6k1i(\xf1j\xa0\xcd\xa1\xf8\xe58\n#\xf5\xae\xde8e\x07\xc5m\xcbDY=?\x0d\n\xd8\x06[N\x0b\x82\xf8\xfeW\xd6\xcc\xa0e\x0f\xe5\x81Ue\xcdt\x863\xdf$O\x9bz\xab\x85\xb6\xdeB\x0fp\xcd\xfaO\x02\x1eA\x95M)\x82\xd2\xb4\xee\xf8w\xed\x18\xb7\xbc{\x05\\\">j\xa7G-\xf4\x96*\x1e\x16z\x9c \xa9~\x10\x07\xa3F\x1f\x8c\xb84\x971b\xb5\x87\x05\xc3L\x1fV\xc2\xdex\xd0k\xbb9\xbb\x98`\xc09;2\xee\x84\xb6\x83m\xb9v\xe1d\x07b\xbb/\xc4F\xf4]\xa7^0W\xcb\x88\xbc\x9atL\x02\x9e5?\xd7\xdbh\xb7Z\xce\xf6\x9fW\xcby\xb5\x9cW\xcb\x99\xb4IW\xcby\xb5\x9cW\xcb9E\x87\xaf\x96s6\xcb\x99j\x02\xaaN\x05\xef\x8cK\xa0\xbf\xc6LkmB\x08\x97E\x8e\x8d\x85\x98k\xb2\\o,\xce\x13\xc3\x14\x1aA>\xa0H\x8d\xfd\xc9\xf2'\xaf-\xfd\x96\x7fT\xd3\x963\xe6a\n\xf0\x88\xf0\xf6 nLhS\x046\xbe@\x8b\x05\xf5\x17\x10\xd2A\x01}\x12\xe1\xacXM|I\xaf\xb5\xa8z\x94\xf6\xde\xf850\x96\xb8\x10cz?\x9a\xed\x04#\x9f\xb6\xb5\xac\xaf\xaa\x077\xd9h\xc9\xe7\"\x94\xa8\xc4\xd5B\xc8v\xec\x97#\xab\xddT\x1aO5\xcc1\x00\xeb\xa9\x8e\xd2\x9a\xa2\xeeaW\xf4\x05\x91\xba\x15a\xb5h\x0fe\x93\x9c\xda\xa4\xc0\xb2\x1bz\xee\xd5\x0dz\xbe\xfdb|I+\x94& -\xca\xad\x0c\xa0\xd4l\xcb\xbaN!\xf3\xb4\xacoKv/\xf3\xcd\xba\xbe\x19\x0cZ\xd5\xa5Dq\xdb\xf3Q\x9c\x99v\xb7\xfe\x8b6r\x0f\xa3\xa1\xf9\xb2\x10\xd5 e\xa7\x037\"p\xcfw)\x7f[\xcbj\x8dGe\x8dF\xe4\x82\x1fZ\x91\xf16\xa0N\xca\x13\xa3\xacQ\x1dF\xe3\x0cF\xc0\x11\x15z0>\xe9'\xe3\xa7\xf2\xdf/\x05\x92\xdc\xbc\x9a\xab\x81\xcf\xbc7=)u ~\x1c\xa6\xd05\xdb\xb2\x18\xae}4\x0c\xee \xfb\x90\x0c'\xd5q\xb2-\"\x87\xe4h:\x83\xe4\n\xae7\xb6\x15\\o\x05\xd7\x1b\xda\n\xae\xb7\x82\xeb\xad\xe0z+\xb8\xde\n\xae7\xb4\x15\\o\x05\xd7\xd3m\x05\xd7\x8b\x82\xcc\xad\xe0z+\xb8\x9e\xfb\xd7\x15\\o\x05\xd7[\xc1\xf5Vp\xbd~\x05\xd7[\xc1\xf5Vp=*?d\x06\xd7\xd3\x0d\xf1\xdd\x0e\xbf\xfb\x93\n\x8c`\xde\xe8X6\x03z\xa6+X\xc9 S0\xc8\xdf\x0d\x82\xd3\x90\x9e\xd6L\x87\xb6in\xe6\x04\x1c\xd4\xbc\xf6\xac\xfdX1I\x86\xcb5\xf6\xb9\xeczVo\x99I\xff\xca\xb9\x0bM\xbe\x8c^c&(}*\xba!\x9a0+\x11\xa0e\xf7eW6\xf5\x95,\xbe\"z\xb5\xe3\xb5^R\xc8K\xda\xe3\x85N\xda\x0d\xde\x19\xce\x03\xcbK3\x0cg\xd6\xa5A\xe1\xe1\xa8U\xe4\\\xa0\xd4\xa8\xbc\x07K\xf7\x89\xb3\x9bu\x08}\xc3;\xe2\xda\x9b\xbf\xfdN\xbd7\\3\x05e\xbdm\xc59\x9e\x0b\x8b\x1eX\xc1\xb7\xbe\xea\xf5\xae\xb4P\x03?2v(\xed+\xc34\xbd7\xb2\x0cN\x1c2\x8b=\x1b\x1c\x9b\xd05{f \x05\x16\xd5m\xd3\x96\xfd\xdd^\x82\x01m\xef\x9a\xa63\xbb\xe8-\x83\x92K\xb6\xde\\\x87\xb2\x86-k\x85\xf3|\xdb\xd4;\xe5ad\x9b\xdb\x0d\xdc\x15\xadp\xb8|\xec\xce\xe4\xd6y\xba/\xb6wem\x99\x0fS'\x12\x9c\x8bE\xed\x18l\x8b\x8eug\xd6\x1a\xa99M\xd6\xa8\xb3\x01%\n\xcb\xa7\xae\x86\xc9\xd5tY\x1f\x99v\x93\xed\x9b\xba\xec\xa5g[\xc4n\xb7-+:>\x0c\xc6\xbf\xa54\xd6\x90E\x95\x1f\xc9\xa4\x7f\xcb\xfaN\xae\x8a\xf8\xe34]#\x12\xb4\xd2eR\xef\xa2\xb0z\x1eBF\xf5\x14%l\xb6\x0c\xad0\x02RH\x92\x14=\x1aY\xf2\xee\xc9\xb0''c4\xc9\x1fI\xca\x17E\xca\x16A\xf2F\x8f\x16D\x8erE\x8d\xc2\x11\xa3Y\xd1\xa2\xd9\x91\"\xe9\xe1v\xd6\xc8\x13%\x9a\x1d!\x92\xfatB\xcd\x13\x1dZ\x12\x19\x12q\xa0\xe9l\x90\xe3X\xde\x88\xd0\xc2hP\xe6H\xd0\x82(\xd0\x82\x08\x10\"02\xc6z\xf2\xc6y\xb2\xc5x\xe2\xf1\x9dl\xb1\x1d_\\gIL\x07\x8d\xe0 \x87\x12W\xde,\x8b\xdc q\x9a\x991\x1a$>\x135^\x9d\xb8LX\x83\xce\x8c\xc7\x8c\xd1\x17l}\xbf\x8a\xf7\xbd,\x06#\xa3.\x0697\xfe\x92!\xf6\x925\xee2U\x86\x0b\xe3-H\x84eIt%\x18L\xf0DU\xa2\x11\x15\xd7!K\x8f\xa4\xb8\xef\xfe\x15\x9b\xeb\xac\xe8 e\xb2\xb1\xa8\x89\x7fn\xd1hIB\xa4\xc4v`-\x8c\x90\x04\xa3#\xfe\xc8H(*\x82\xae\x025\x1a\x12\x8b\x84L\xa3 \x0b\" \x84\xe8Gz\xe4\x03\x897\xc4\"\x1e\x99\xa2\x1dH\xcf\x16\xa7d\x8dp,\x89n \xf1\x8c\xac\xb1\x8c\x9cq\x0co\x0cc\xea\xf8\x9d\xc6.\xf2\xc4-\xb2\xc5,\xf2\xc6+h\xb1\x8ah\x9c\x82\x18\xa3\xa0\xc4'\x1c\xa7\xbe\xdb\x1b\xd5\x07\x1d\x8eI\x10\xe3\x11\x84X\x845\xe4\x9c1\x88E\xf1\x077\xe2\x90/\xda\x90/\xd20\xff\xebF#\x0c\xb1\xe8\xc2(\xbe\x9d\x1b]\xa8I\xe1H\x9e7j\xc1\xdba\x8b\xf3W8i\xbb{\xf5\xf2\x1aR0\x7f\xa0\xf9\xf0\xd7\x90\xc2\x1aRXC\nYB\n\xe9A\x04\xf9\x9e[n\xa3\xaa\xc10\xc9\xd7J\x84F\xb3\xcau\x8eH\xc1jc\x12\x11. \xb4\xdb\xa7E\xf4@Ae\xf0\x01}\xce\x98JC\x12B\x16\xf9\xa2\x18\xe4\xbc?\xef\xc4\x1f\xb4M\xb0\x03\x00\xe1\xec\xe9}\x039\xf9\xc7\xce\xfe\xc1\xd3\x7f\xf0\xfc?\xd3\x03\x10;S\xe4\xf5\x02,\xf5\x03\x10\xbeF\xc4\x13\x90\xdd\x17\xf0\x05\xbd\x01'\xf2\x07\xcc\xf1\x08|!\x9f\x00\xea\x15\xf0\xf9\x05\x16{\x06f \x07\xc2\xa9\x1d\x08\x1e\x82\xb0\x8f \xcdK\x10\xdf\xd3\xd9<\x05_\xd4W@\xf4\x16\x9c\xd4_\x10\xf2\x18\xa4\xf9\x0c\x02^\x83\x90\xdf \xe09\x88\x1c\xbc)\xde\x83%\xfe\x03\x94\x9c\xb1\x07\xdd\x0f\x15\xf2!D'3\xd3\x8f\x10\xf1$\xf8} \x1eoBp\x9c>\x8f\xc2B\x9f\x82CM#\x81\xbac\x8b\xfb\x15<\x9e\x85\x99\xf3\x9a\xe9pp\xe8\xb8\x0e\x08\xf0\xb3~|\xa48\xae\xa8l~.\x8c\xd3\x1d\xd4\x0bF:$\x853\xa2\x8e\xca\x86b\x8f\"\xe3\x18\xee\xfe\xee\x1b.\x03\x07\xbb`4\x9c\xcb\xe0MzzA\xc7\xcb\xf2\xf4\xd1g|\x84\xeeqX/\xc9\x8b9+~\xfd\x97\xe4A\x90\xd5e\x97\xc6a\xb9\xb1r\x98\xca\x1an\xdf]\xbc\x1c\xcf\xcf\xc3u\xf5\x9f\xee\xb8\xfa\x9d\xdc\xe2\xd0\xb4\xf2A\xe1\xbe\xd3\xc1d\x9d\x8f\xc4\x0dOaW\x9a\xd3\xb4\xe6\xa6\x9f|\xdf\xec\xc7A\xa1\xe5\xcf-;0\x11\xba\xfe\xaeh\x87\x95\xf5\x95\xe3[s\x14\xec1Mw\xd3\x19H\x1e\x9f\x9e\xe40\xe1\xd4T\x8f\xcc\xd9L\xab\xfbnu\xdf\xad\xee;\x92\xfb.\xe9zC\xfd\x8e\xf7.f\xdc\xa56Xv\xabsmu\xae\xad\xce\xb5\xd5\xb9\xb6:\xd7R\x85\x03\xc9\xd9\xb5:\xd7V\xe7\xda\xea\\s\x1eX\x9dk\xabsmu\xae\xfdm\x9ck\xa3A0\xc9\x81/\x0c\x9e\\\xbdlV[\xbdl\xab\x97m\xf5\xb2\xad^\xb6\xd5\xcb\xf6\x1b\xf1\xb2M\xb5A\xc4\xeb\x95Z\xce\xe6\x10\"\x96\xb3\xbda\x9f\xfb\xf7\xeav\xb0w\xf2\xe0\x9b\xecx\x13\nM_1v\xa5\x8e\xcfS/\x9c'\xe1w\xb2\xa5\xd4* \x9d\xa6)\x0e\x1e\x00)B\xd4\xb3kV\xb1\xf9\x03MB\xad\x02s\x15\x98\xbfm\x819\x8a\xaai@B\x9a]a)\x19\x10vDq)o+|a\xdf\xe3\x97,0'\xf7\x00.\x90b\xaaF$T<,\x8f`\xa6T[\xd0\xdf*5W\xa9\xb9J\xcd\xdf\x9a\xd4\x0cJ-\xeb\xd6U\xc5\xd9\xf2\xec7\x9c\x7f\xb9@\xd5\x00\xacJ\xe2\xc8\x1d\\T]\x93Zs\xa1\xc8\xa0\xfb>M\xee\xa6\x87\x88\xa7\xb7\xc1N%a\xdePq\xba\x8b\xd0\xda\xb2\xda\xf7\xe6\xb9|X\xb6Y\x1eC\xb4\x1b\xefu\xc4\xb2\xb9\x97\x12G\xbb \xc8\xb3\xc9\x18\x0e\xf85\xc5\xeaI\xeb\xb2b\xd9\x08\xbd\"7\xb5Y}\xa6^_\x8c\x90\x98\xf8\xc1\xb2\\els\xd0\x8c\x1b\x8d-\x029.6\xb6\x08\x8aK\x8em\xc6\xe8\xe7\xddu\x0c\xab3W\xb7\xd5\x99\xbb:sWg\xeeje\xafV\xf6\xdf\x99\x95\xdd#\x99\x93\x14G\x05n\xee&\xf9(^\x0e\xba8\xd9J\x1e\xd5\xf8\x02O\xc1\xea\x99\x90m\x95\x99\xab\xcc\\e&bn\x06e\xd5,\xa7\x84\xee|\xb6ob\xdc\xf3\x9aT\x82sb\x9cD\xba_\xc28\xe0\xad.\x89\xd5%\xb1\xba$V\x97\xc4\xd0V\x97\xc4\xea\x92X]\x12\xaby\xbd\x9a\xd7\xaby\x1d7\xaf1\x97\x04b\x99\xceqG\x18d\x92<\x11\xef\xa4\x82M6\x8aU\xda\x97s\x87\xc4u\xd3T\xac\xa8\xa7\xf2\xa4;n\xb9\xa9\x007Uq+\xa6R\xdeh\xdd.\x9d\x01\xab\xa7a\xbe\xecYE\xe1*\n\x7fk\xa2\x10\xf34Ld\x11\xd5\xcd0q0h\xb1\x12p4\x9cQ<\x0d\x8a\\\xaa\xbf\xe1\xe7Z\x8b\xc6\x17\xdb\x8f\xe9\xce\x06}\xa4\x9d\xe7jp\xf6l8\x93W\xd7\xf8\x1c\x871O\x8fa\xe3x\xd4\xbb\xab\xbd\xa8I/\x1b\xce*$W!i\xfcB\xb1\x17q\xc9\x02!\xd4\x0f\xf3\xf5g\xf6\xfbD+q|I\xca\xe8\xdf\x9eD\x9b\xf8\nWA\xb6\n\xb2U\x90\xfdJ\x04\xd9D\xa6\xcc\x91e3\x8e\xbf\xefG\x94 \x87\xf9M\xf8\x8e(\x86\xcc\xe49\x03\xc7\x07G\xefA0{\x10\xa4\x9e$|\x1e\xdc\xcf\x99\x03\x8bg\x1e\x02Ot\xcd<\xb8;\x99\xd0vN\x8e\xb1\x93\x15Y\x87\x8e\xa7sR\x14\x1d\xa3\xb3q\xbb\x08\x9d\xc2w\xcb\x8f\x86\xce \xa8{\xaf\xea\x0b\xbarpm>C\xddyU\xdd\xcc\xeeI\xea\x0d\xdf\x84\x0b\xd5\xda\xa0\xcc$\xb5,zl\x0c%\xe5Q\\\x92V\x16\x9d%5\x95$\xb8@IMU\x93$\x18\xf1A\x8c\x1f\xa5\xe0\x9d4h'2\xeck\\\xd0-\x18Ra\x17\xf1\xad_\xb4\xfcK\xde\x16e\xdd\xf5P\xd4\x12\xf2F\x91\xd6(|\x87c{h:&0j\x8f\x87]\xd1\x8f\x1f\xb8\xa8\x87{\x8foZ\xc6\xfe\"\x16T\xb0z\x87oL\x03\x1ad\xbc(\x93\xbcO\xe7\xdd\x02\xec\xe0\x97(2\x13\xe0\xbd\x04S\x99?zul\xa9\xf1\xc904\xd1\x0b\xf8\xf9\xddO\xcfZ\xd65\xc7v\xabnk\xff\xff\xd9\xfb\xd6\xe56rd\xcd\xff\xf3\x14\xb9\xde\x8d#{\xc6\xa6u\xb7\xe5]o\xac,\xc9\xd3j\xb7\xddjIv\x9f\xe9\x89\x0e\x1a$A\xb2,\xb2\x8a\xae*J\xa2\xcf\x99\x88}\x8e\xfd\xb3\xaf\xb8\x8f\xb0\x01dU\x11U\xb8\xd6\x85\x1e\xb7\x07\x19\x13\xd3\xddb!qK$\x12\xf9!\x13|\x9a\xf0\xb2\x02\x9b\xd0\xbc\x03(-\xdc\xc0P\xbe\x17\xb6~\xe3\xbc\nF\xf2g\x9c\x87\xd1\x0c\x06K\x9e\x8e*\xc3\xf0zp=\x0d\x92\xac\xcd0g{V\xf6\xaey\xf1\x96S\x95\x13\xdb\x85\x1f<}\xc0\xd6ML\x86)\x8d{\xfc\xe1v\xfe\xaa|B'\xdc\x01\x93\xed\xd2\xef/\x7f\xdaJ`A\xd2)g]aT\\D\xa8\xd6\x90*\x1e\xb2\xe7\xa3\x92\xb1\xe5\xfd\x7fH\xd8b\xac\x16\xfd\xc8*\xd3>]\xfd\xf1\x11\xb6\x953K\xa6\xd1r6b\xeb\x80u\xb6\xc2gHB\\N\\\xdbVky\xc84\xccc6<\x1cA}\xd0{\xc0\x96a\x18\xa5@\x86C\xbaH\xe9\xe8Q\xefO\xd5B\xe7!,\xd8\x80\x05C\xfa\x18RJ\xe6 ,\x93%_\xb0\x8b\x98\xb2\xb5\xc8\xf4g\x10fo\x81\x0f\x82\x90\xc4+ \xb3\x19\xefo5-R\xbe\xb1\xac\xaa\xd5\xd0\xfb\x05\x1d\xa6\x10\xa4L\xff,\x13\x9a'\x00\xcb\xaf?Dc8\x0eW\x85\x06\xc6\x97\xfe\xdf_\xfe\x94\xa0+\xb1\xc2\x8d1\x10\x9e\xb5\xc9)\x19N\xe9\x9c\xc2\xc7i\x9a.>>\xc6\x7f&\x1f\xf9\xf5\x870\xca~}\xcc%\x85\xa9\x9a\x88K>\xef)\xd3\xdf\xcb\x854\xdc\xa2\x86*\xea\xa0\xf1-\xdf3H\ns\xb2Hp\xdayK\xd3\xa8\xc0\xa0\xb9\xb9\x98\xe9}\x92dva\xf2B\x1a\xfd?\xc3\xf9x\xdd66]\x8b8\xba\x0dFtT4\x9f\xab\xd2$Y\xce\xe9HJ\xce\xf8g8\x0e\xe1\x87\xeb\xeb\x0b\xf8\xeb\xd9unq\xbd\xbf\xfc \x97\xcc*\xa0\xb3\x11\x10\xf9A\xf6\xeb\xd5\x82\xfe\xfe\xf7\xdf+\xcc \xbf\x0d\x10\xe6\xb3\x8c[:\x1f\xbfE\x1c\x8d\x96C\n$\x04\x1a\xc7Q\\M,\xf6g8^,f\xc1\x90d}\x8e)\x93\x91\xe8\x0em\xa5!\x19\xb2\xb5\x18E7\xcbE\x01\xb8\x0f\x08\xb3\xa4\xb0\xd1RS\xde_\xfe\xc4\xeb\x9d\x92[>\xd5sA\x1aG(\x8e$o&\xfb\xf7\xdb(`\xf6Z5}\x18d\x95\xf2\x05\x16\xd3q\x14\xd3\xc7y1\xbe\xcf\xa4\xc1 \x98\x05\xe9\nBJG\xf9\xe6\xc8\x15@|+\xa5*dZ\xa6\xd8\x98\xd9\x82`+\xa0\x07\x0f\xdf'4\xcf\xba\xc5\xfa\xcb\xaf\x1a\x919~3'!\x99\xc8\xfd\xab\xee\xf3\xbdG\xd5\xb9}\x17\xa5\xdcn\n\x12\x18/\xc3!\xca*ki\xb6\xa6\xd7\x06\x9bp'D5\x98\x11\xbf\xc8\"_\x04\xc9\xc5\x01b\xca4*EO~\x90\xe6\x15pC\x97o\xb6\x85\x84\x0f\xe8$\x08\xf9q\x81\x19q\x92\x82\x94\x9f\xeb\x97\xf5\xcd\x15\x97\xf4$\xcbb\x97NIX]\xaf\xf00\xdb\xe0\xe9|\x91\xae\xb2\xa5\xf1\x08\xe6|\xf3\x1fH\x0b\x927\x93_\xb9\x0e\xd8\x91\x81)z\xbc\xba\x94?\x1a\x08 \x9d\x930\x0d\x86\xa5\x8c\x96\\\xd6\x1d7J\xed\xcd$\xf3\x0e\xfa\x96-\xc2\x01\x05\xc2*\x0bF\xc26(\xed{\xd9\x16B\x06\xd1-\xcd\x1b\xae\xcc\x94\xa9\xc90V\xaa\xfb\xe3q\xb8\xfa\x98o\x98 [\xb2$\x1e\x04i\xcc\x84\xde\xd0\x86\\w\xf1\xe4w\x02;\xccP&\x0e;\xd30\\\x01b\x1b\x06\xb2\x01 \xd6\x93\xef\xe9%Q\xb8\xc8\x85o\x16\x0cx\xc32\xbd\x97@\xb2\\\xf0[\x97i\xc4\x0fSO\x97!\xfb\x07\xdb\x1dp\xce\x12Y\xca\xab\x9b!3\x08S\\\xd6\xf9\xd2I\xf8\x1d\xb8u^7~/\x90\xdf\x01B\xf7F\xf1\xd2\x01\xab\x07\x07Z\xe4xvO\x98p\xc1\xce\x0b~\xd3\x90\xaf\x94\xaca\xa4\x18\xb8 \x84\x93\xbf\xfcER\xd2\xaf\xa3\x08\xc6Q\x04/\xa1\xd7\xebU\xaf\x18\xb1\xeaH\xb8\xaa\xfe\x99\x84\xab\x1e\xab\xe8u\x1c\xcd\x1f\x8e\xa3\xe8Q\xf5\x83^\xaf\xaa\x81\x831\xc5\x16\x0b\x9fWk)\xf5\xb9\xe8\xf4\x9e\xa5\xd3\x17\xabt\x1a\x85R\xb7\xb1\xde\xd7Q\xf4\xb0\xd7\xeb=\x92'\x13\xbb\xfcP\xf1\x0b\x9ff>\x0c.\xa3\xc0\n\x9c\xe3 \x9c\x9e]\x9d\\\x9e_\\\xff|\xf9\xe8\x854\x0ekAP\xb1F\xe6\xaa\xee\xef[\xba\xff\xd7\xa8\xdas\xde\xf5\x17/\xe1\xdf\x16\x83\xde\xeb(\xfa\x8f^\xaf\xf7\x8f\xea'$\\=ff\x03\xfbn\x81\x9b\xe6[\x12'S2c\x83\xa2j\xa0\xdc\xf9j=R%\xc1\xb8R\xc5\xfbp\xbe\xae\x847\x81\x0b\x1b\xff\xea\xbf\xbc\x840\x98\xa9n\x07*j.I\n3\xd4\xf9\xb8\xe4z#7\xd8`\xb0Zo\xa9\xb9V\xe3\xe9?\x07\xab\xdc\x0f\xc96+\x91\xd9\x96b\xcb|\xca\xce\x18=\xfe\x033\"\xb6\xf2\xc3x\xbe\x0b\x17x;\xce\x8f\xc8\xaePe\xe1l\x95\xdb\xc8\xd2\x91\xa50O\x80\x8c\xd3\xcc\xfb\xc1OI[O\xb7Df\x99\x81\x9eW\x8b\x169\xcd\xe4\xe4\xc18\x8az\x03\x12\xf3\x06\xdf?]\xf5\xbe<\xc0\xbe\xa2\xcdY5\x9cyu\x0f\xd8WL\xad\n?\xfcx\xf5\xf3;\xf1\xbf_\xbe|\xf9\xb2:\xda\xec\x9b\xf5\xa9\x0c\xf7v\x1e\xe0\x90mth\xb5.\x13\x9a;\xbc'\xcb\x19\x89E.ra\xf6\xe1\x88\xae7\xa9\xc7\xebK\xab\x99\xb4?\xce\xf6\xbd\xd2YN\xd8@xL\x17|\xfc_\xac\xab\x1f\xb3\xfb\x0e\xc5\x96+\x0e\\/_\\/$\x03\x8c\x0co\xd8\xbaZ\x9b\xe7\xe3`F\xabz*_}\x174N\xa2P!\xb2\xd9)y\x1c\xc4I\xda\xe7#\xad\xbc\xca\x9a}\xc6\xa6:\xffj\xd7\xac\x13\x01\x14\xb5=\xe0=~\xf0\x02\x1e\xa8d\xb7\xdc\x95\x1e\xb6\xf9\xc1c\x99\x0bo\xed;2g\x9c\xfe\x076\xed\x7f*>c\xad\xad|ej\xf2\xf983\x1c\xcbs\x89s\x11$pGg\xb3'7at\x17\xf2U4\xc5\x9b\xf3\xcb$\x8d\xe6\x92(\x96\x85\xe6q%J\x01% \x97\xb7P!\x13\x90p\x02\x04\xc5Cd\xf7\x91\x8bi.)\xd3h6\xca.\xe3\xack\xe7'\xfeL\xc2 ;og\x02&r\xe2\xac\x0b\xa9\x82\x87l]\xe6\x1d\x95\x8ez\xb9\x8f\xe1\xf7\xbf\xff\xfeH\x12\xc0\xe6\xb3[f\xae\x9a`\xde]\xc6h\xa7\xb7\xbb\xb3\x9b<\x90\xa6-\xff\xb7\xb2S,)\x80\x0c\xb5#X\xe9\xa8\x13\xf3\xf8\nl\xf2\x15,.[\xfc=cV\xcd\xdf\xab\xf1\xda\x9f\xe4\x8e`^\xd9\xafA:\xad\xe9\xc7\xd7\xe0\xe3k\x0736\xd7c\xe4\x0e\xcdq\x02\x11\xc0c\xe4\xff\x9a\x189\xacG\xd6\xfb\xd1\xbd\x1f\xdd\xfb\xd1\xbd\x1f\xdd\xfb\xd1\xbd\x1f\xdd\xfb\xd1\xbd\x1f}M\xa9\xf7\xa3{?zF\xde\x8f\xee\xfd\xe8\xde\x8f.\x92\xf7\xa3{?\xba\xf7\xa3{?\xba\xf7\xa3\xff1\xfd\xe8e\xa72\xffYm\xe2\xea\xdc\xda\xa27\xbd\xe2\xa1\x96\x1d\xea\x19\xafi\xc91gr\xa6_\x90\x98\xe4\xc1i\x92KN\x91\xc8\x1c\x0f\xbf\xfd\xec\xf6n\xd5\x9d\xd7$\xee\xad4\x1a\x15\xfe\xa58\xe9<\x00.?\x80\x97\xb0\x05\xdc\x1b\xe5\xe1\xc5\xfe\x95\xf8$\x94\xb39\x7fu\x023\xf4\x86\"\xa3\x05\xfb\x94\xa64\xd6\x85\x0b\xe0\x8bG\xfc?\x91m\xed\x80\xc1\x850\xdaRS\x17rS\xd7M\xca\xb5\xfb<\x1a-g\xc2qI\xaaT]1\x98\xe6\x0e4\xf3\x07\xba\x07?\xb5'\xca\xcd\xcee\xe5\x8dx\xc5D\x18\xa3\xac\xf2w\xe2\x85r\x19\xbf\xcb\x8b\x93|\xad\xa8\x9e\x8cW \x00_\xa4\xb5\xe7\xdf_)\xf7\xaep\xef\n\xf7\xaep\xef\n\xf7\xaep\xef\n\xf7\xaep\xef\n\xf7\xaep\xef\n\x07\xef\n\xcf\xc8\xbb\xc2\xbd+\xdc\xbb\xc2\xbd+\xbcB\xde\x15^\x90w\x85\xffq]\xe1\xa2\x8f\xcf\xf4>\x8f\x94\x89\xc1g\xce\x15\x7fp\xbb\x98\xed\xef\x89\xfb{\xe2\x7f\x98{\xe2V7\x7f\xc9\xdd\xee\xee\xe5\x17\xf3p\xc9N~xE\x13~ \x15V\x07\x1f\xf1\xc7\xdcG\xe2\xf0\x84O\xce\xd0\xa8\x19\x1c\xc1\x84\xfah\x92\x88&4\x83\xe2\x9c\xdf\xefQ\xa4\xd4\x11\xf9(\xd4\x825\xbdN\x89q\x05\x11\x11yKm\x04C;A\x8b\x91\xac\x7f\xd34\x17\xac\xde\x1e\xa4\x0eQ\x13$=v\x82\xd4\x1d\x82\x82\xd4\x19\x8e\x82\xa4ES\x90T\x07\x14GL\x05\xa9+d\x05\xc9\x8c\xaf 5BY\x90\x1ac-\xea\xb1c\xa7\\=\xe2\x82\xd4\x18wQrCM\xa6A_\x90\xda`0J\x86\xcb\x05\x10%\x12\x83\xd4\x04\x8fQ2\xd2b4H-\x91\x9a\x9c\x89\x03^\xa3,\xe9\x8c\xe1 \xb5@r\x90Z\xe09\xba\x85\xaeijgH\x0fR\xb7x\x0fRg\xa8\x0f\x92\x1d\xfbA\xea\x0c\x01B\xd2\xe1@Hm\xd0 \xb5\xaeP DH\x8a\xa3\xa5Nc6E\x8b\x94\xcct\x08\x12RC\x1c I\x81&!YL\n-\xb2\x84\xe4bq4D\x99\xd4\xca4G\x9e*X\x13\x92\xad5\xedp'\x89\x1d\xc7\xa1\x14\xe8\x13R\x07\x18\x14R;$Jb\xc7-\x1a\xa5\xf1\xd0\x12\x95\x92k\x92P*\xa46X\x15\x92\x11\xc4A\xd2\xe0VHV\xf4\nI\xe1j\xe7\xe4\x8ed!\xe9\xf8H\xde\xcc\x96\xd8\x16\x92\xfb\xe0\xd8p.$\xdb(X1/\xa4\x1a\xc8\x17\x92bt\xda\xa2`HF,\x0cI\x8f\x88\x15\xbfkq1$\xc3\xa8\xb9bdH6\xa4\x0c\xa9\x8a\x97!\xb5@\xcd\x90\x1c\xb03\xa4\xfa\x08\x1a\x92n\x98\xach\x1aRG\x98\x1a\x92\xb6-\nIl\x85\xb2I\xdc*\xa8\x1bR\x1b\xecM\xaeA\xc2\xe2\x90Z!rr\x93\xcb\x08\x1dR\x978\x1d\x92\x16\xadC\xaa\x02%HU\xe4\x0e\xa9\x1b\xfc\x0e\xa93\x14\x0f\xa9[,\x0f\xc9\x0d\xd1C\xb2\xe2zH\x8e\xe8^\xe9c#\xc6\x87\xa4\xd2\xfeJD\x08\xc9\x15\x172\xa3~\x19/7\xec/\xfb\xd8\x8e\x00\"):\xd4%\x1a\x88\xd4\n\x13\x94\xb8I\x18!RwH\xa1PM'x!R[\x19\xb1b\x87\x19;\x0b\x82\x88T\xdd\xb8t \xaa\x90L'\x98\x96\xc9\xaaJ\xbc\xb2\xc4U\xa5\xbf\xa9\xf2W)Z\x95\xc7>\xf0G\xceG B\x00\xb9\xca+=\xcc\xe1_\x06\xe7\xe4_\x06\xf7/\x83w\xf22\xb8\x1b\xd8\xd8 \xa6\x08\xcbe\xfc\x1a\xc6\x14-\xeb\xc3\x80 /f\xb8\x1e\xe1\xd4\xe1e\xc3\x0e/\xf5\x1d\x86s\xb6u\xa6\xcb8\xcc\xb77\xee\xcd\xcc\x1a\x9c\xeb\xba\xf3W'\x9965\x8eP):\xb2\xf6\x18\xf94d\xed\x90\xc3\xce0C\x1f{\xe5\x86\x07\"\x06!\x8d\x91\x8f\xbd\xf2\xb1W\xf5\xb0:\xa53\xa33D\xae[,\xae3\x14\xce\x8e\xbfu\x86\xbc\xf9\xd8+\x1f{U\x03\x03\xf3\xb1W\nT\xab\x0d\x9e\xe5\x12\x8e\xe4c\xaf\x04\xf2\xb1W\xe0c\xaf|\xec\x95\x8f\xbd\xea\n\xbb\xe9\x0c\xb5\xe9\x16\xafqCj\xac\x18\x8d#:\xe3\x82\xcb\xf8\xd8\xab5\xafV8\x8b\x8f\xbd\xaa\x1b{U\xb2`\xabi\xc4T\xb1X\xd2\xad}\xc8\xa2\x88x\xd8\x8e\xc0\xac\xf4J\x86\x0f\xd4\x12\x7f\xb0\xc3\n\xa9\x0f\xd4\xf2\x81Z\x7f\xa4@\xad\xaa:1\xf8\xe6\x8d0\x82X\xfci\xb9|^\xfb\xe5\xc5Ifr9\xc3\x02\xf5\xb1\x93\n.\xb0\xe1(*\xd5ru}~(\xfb\xb6YH\x94Q\x7f!i\xd5\x06\x92Ayd\xe5[i4$\xa3^\xcb\xaa\xe9\xae\x99\xce\x9a\x0e\xc9v7\xba;\xad\x87\xa4\xd0}H\xed4\xa0\xc4\x0e5bE\x0f\"5\xd4\x86\x12\x1f\xadvDj\xa6#%6e\x9d)iJ\xa4n\xf4%\x92^k\"I\x8f!!i\xb1H\xa4\x86K<\xf5Q\x8f>\xea\xd1G=Z\x11O%7\x1f\xf5\xd8\x14#\xcd\x998 \xa5\xca\x92\xce\xe8)R\x0b\x0c\x15\xa9\x05\x92\xaa[\xe8\x9a\xa6v\x86\xb1\"u\x8b\xb4\"u\x86\xb7\"\xd9QW\xa4\xce\xb0W$\x1f\xf5\xe8\xa3\x1e\xf9H\xf9\xa8G\x91\xdaa\xc0\x12\xbb\xd4G=\xdaqc$[\xbc\x9f\x1dCF\xf2Q\x8f\xf50g$\x1f\xf5\xc8\xc9\x86Q#\xf9\xa8\xc7\xb4\x05\x9a\x8d\xe4\xa3\x1ekb\xe1r\x93}\xd4c\x17\xf89R\xb7(:\x92\x1b\x96\x8edE\xd4\x91\x1cq\xf5\xd2\xc7>\xea\x91S\x978q\x83\xec\xdf/&1\x19\x95b\xb0k\xc3\xf6\xcb\x8cG\xdf?\xa8\xd6\x02\x18\xeb\x0c\x12\xf3A}np\x17\xba\xd8\xa51\xf2A}>\xa8\xaf\x1e\x14\xa5<\xabw\x068u\x0b5u\x062\xd9\xe1\xa5\xce\x80%\x1f\xd4\xe7\x83\xfaj@<>\xa8O\x01\xda\xb4\x81k\\\xe2\xdc|P\x9f@>\xa8\x0f|P\x9f\x0f\xea\xf3A}]A\x13\x9d\x81\x12\xdd\xc2\x11n@\x84\x15\x82p\x04\x1f\\`\x07\x1f\xd4\xb7\xe6\xd5\nF\xf0A}u\x83\xfa\x9a>\xa8\xa6v\x99\xda\x9cs\xeenA\x05\x13\xc15h\xca\xf2U\x94l\x97\xedk\xed\x1e\xf4i\xbf\xbc\x87\xd0{\x08\xbd\x87\xd0{\x08\xc1{\x08\xbd\x87\xd0{\x08\xbd\x87\xd0{\x08\xbd\x87\x90\x93\xf7\x10\x82\xf7\x10z\x0f\xa1\xf7\x10z\x0f\xa1\xf7\x10\x96?\xf1\x1e\xc2\xef\xc3Cx\xe2\x90\xe9\xab\x85\x93\xb0e\xde\x1f5\x1f\xad\xab0\x9a\xcf\x83t\x9e\xb9\x0b\xdf\xf2La\x171\x1d\x07\xf7\xce~\xc1\x1b\xba\xea/\x84\"\xa0;\x9fHg\x93\xea\xfdI\xb1z\xd6\xe1\xbe>\xeb\xbf\x7fw\xfe\xee\xfc\xfa\xfc\xf8\xa7\xf3\xdf\xceN\xfb\xef\xdf]]\x9c\x9d\x9c\xbf>?;U|\xcb\xbeT\xfc\xf9\xfa\xf2o?_\x9c\xbdS\xfcR\xfasf{\xbfp\xac\x98_\xf9\xa7\xf1\x82\xc4\xe9J7*\xc2'\xf8\x00\x96\xab\xca\xa8\x05\xe7(T\x184\xc7s*hM\xa6\xea\xa2\xdc\x0do\xedQ\xd59\x8e\xd95+\x7fT\xf5X\xfc\xeb\xa6:S\x92H\xa7NU\x18\xaas\x1c`\x965u\xa7\xaa\xbb3\xc8R\x92[\x01\xebd\xa1|\x13.\x96Q\xb5y=\xc5\xd0(\xb2k\xe9sk\xa9\xac\x86\x9c\x0c\xca\xd9\x1e3$\xfb6\xebZ\x15\x95\xf2\x8d\xcc\x8b\n\x0f\xa5\xb1a\xf9F\xb6:\x80\xcf\xdb\x8c\xac\xfa\x0b\x1a\x07\x91\xcd^\xd0\x04#\xe9\xc5\x95\xf3\x06\xe4\x9d\xc1F\xcb$\xe5\xa1U0\xe0\x88\x84\"\xa6-\xdf\x152\x17\xbc\xd8+\xd4\xebO\xd8\xee4\xce\xf0\x16x\xf7\xf3\xf5\xd9\x8brM\xb3h\x12\x0c\xd9\xccpg@\xe1\x1a\xe7~\n\x81[\x12\xcdK'uT\x0b\x99\xa7\\mX\x97\xec1!.\x8f\xb7|\xbc\x9ce\"\xcbV!\xc9\x96]\xb6\x82P$H\xc8}\xff\x19\xb7\x84.H\xcc7\x97\xb0\xd8A\xb1;)\x8fm\xe2\x83\xc5\xfb0\xa0\xb0\x0bytU\xa9\x11\x1ch\xa1IJ\x06\xb3 \xc9\xb1B\"j\x85\x01M\xef(\x0d!\xbd\x8b\xb0II\xcfdpVw\x80M\xd9\x9b%A\xe9RAK\xcaY\xd6a\x1a\xa5\xdc\xb2\xd1\xad\x14\xb1\xac\x84u\n\xb8\xaa\xe4:S\xbc5\xb6g\x9d\xb2\xd5*ZS:\xe9\xd2\xa0\xb6Q\xaem\x15\xabM\xa9\xba(T\xb5\xb8\x88\xcb\xaad\xa0\xbb\xc8\xb6 \x03\x19\xbb\xcc\xf4\xd4\xaca\xe1\x01\xd5\xe2\xef\xcek\xb9\xdez\x10d~}^\xe9\xb5Q\x0b\xfe\x18*\xf3\xf7\xc7\xd0\xda\xc7P\x95j\xf9\x96\x0e\xa0Y9\x7f\xfe\xf4\xe7O\x87\x1e\xf9\xf3\xa7?\x7f\xae\xa9\x8d\x89\x04\x1d\x98I\xe0`*\xa9\xbe\xf9*\xe7\xcf\xd2A\xd0I3\xa8Oz*#\xaa\x9c\x88%\xff#\x8a\xef\x1a\x1d\x95\x94\xbc\xea\xc1y\x8d\xe9&\xbc\xf6\xbc\xae\xb6\xd1{ \xf9\xa2gR\xd1\xcc<2Yi\xc9,\x18\xf2=\x89_\x86-k\x01^\xa3\xca\x8a-^\x8f\xce\x1a\xfd\xad\xbeAS\xdc\x8f\xaa\xb4\xcei\xe3\xf0o\xd0\xf87h\xc0\xbfA\xa3\xcbe\xa3Sm\xeep\xb4\xc4B\x97\xcfF\xa1X\x8b?\xb5\xc9jS\xa8sm^\x1b\xc7\xb8\x9f\xec\xc0\xd0D\xcb\xd45O\xcbMR\x9e\xe9\xd4}\x81f\xc6P\xaa}\xe6\xc2h\n\x99\x0dO\xe862\x07\xac\xcf[t\x17\xa1\x03]F\xe9\x80\xeda\x8b\xb4y\xb4\x0et\x18\xb1\x03\xd6\xa8\x1dh\x1a\xb9\x03m\xa2wT#f\x7f\xcc\xa2q\x14\x8f\x82\x97\xf5!\x8b6\xd1<\nv\xc6G,\xba\x8d\xea\x81\xf6\x91=\xd0}t\x0f\xb4\x8b\xf0\x81vQ>\xea%\xaaldg\xb1?\xd0y\xfc\x0ft\x19\x03\x04Nq@\xd0e,\x10X\x1e\xa1h\x13\x13\xa4Z\xe3\x9a\x07(R\x97H!h\x1d-\xa4`\xa8~z\xa2a\x0c\x11\xe8\x9f\x9dh\xe6\xed\x00\xa7\xfd\xbfa\\\x91J\xed\x19\x1e\x9b0\xb7\xa3]\x8cQ\x85\x99\xe9\x99\x89\x0eb\x8d\xa0\xebx#P\xc4\x1cA\xfb\xb8\xa3\n\xb7T\xf9\xb8D\x9bH$\xb0\x05\xe8\x80\xf9Y kT\x12hs\xcc\xbbG'\xe9yH\xb7\xd3[E*A\x8d\xc1\xb0E,\x81\xb5\xdf\xd6\xc8%\xa8\x17\xbd\x04\xca|\xdb-\xa3\x98\xc0\x16\xc9\x04\xd6\x87#l\xcfFhG\xc95\xb2 \x1c\xa2\x9b@\xf3\\D\x8b('p\x8bt\x82F\xd1N\xa0\x7f\x9a\xc1\x16\xf5\x04\xddE>\x81\xbe\x15\x92\xa4u\x1a\x05\x05-#\xa1*\xac\xd4\x0fAt\x1a\x1b\x05\x1d\xc7G\x81\xed\xc9\x07U.|\xd5s\x0f\xdd\xc4KA\x971S\xd0y\xdc\x148\xc7N\x81K\xfc\x14\xb8\xc7P\x81c\x1c\x15\xe8\x9ewP\xd7\xee\x1auc\x7f\xda\xc11\xae\n\xdcb\xab@\xd5\x8d.c\xac\xa0m\x9cU\x85\x97\xf29\x87\xee\"\xaf\xa0\xd3\xe8+h-\x0f\xd6(,p\x88\xc4\x02\xe9 \x07\x85\xef\xb6\xf8]\x0d\x14B\x19,\x14\x92) h\xa1\xe8\n\xce\xf4D 2\xe4\xbf\x0b\x0cU\x90!|\xdb\xa8YL\xd38\xa0\xb7\x1e5\xf3\xa8\x99G\xcd:F\xcdL\xb8U\x0d\xe4L\xc5\xa6\x11z\xd6.\xef\x9bO\xf7\xd6\x0eL\xea\x0cH\xf2\xe9\xde\xdc\x00#ttKc\xe4\xd3\xbd\xd5\x01\x86Z\x82B\x1d\x03B-\xc0\xa0\x16@\x90Bat\x08\xf9t\x0b\xf7t\x06\xf5\xd8a\x9e\xce \x1e\x9f\xee\xcd\xa7{\xab\x01\xc5\xf8to\n\xa0\xa5\x0d\xc8\xe2\x92\x01\xcd\xa7{\x13\xc8\xa7{\x03\x9f\xeeM\x82\x1dl\xc0GG\xa0\x87O\xf7\x96Q\x97p\x86O\xf7\xe6\xd3\xbd\x95\xb9\xb8\xc1\x12\x0e\x90\x84O\xf7\xd6\x1cph>\xbbV\xa0\xc1\x062\xc8\x0fB8\xa4{+\xdf\x0dw\x8d\xa4.\xa3\x17\xe7\xa7j\xd6\x91\xeaqj\x8f,\x88?\xb8\xb9\xf2=\xb2\xe0\x91\x85\xef\x06Yh\x99%R\xc7\xa9 \xbe\xd0\x04Q(\xe5\xb9\x80\x92\xb2\xcd\x03\x13k\xa4\xd5T\xd6\xab\xae\x1b\x1a\x84\xe3\xb4\xc8x\x01\xca\xac\x17\xeb\xda\xe4\\\x11\xcaL\x11\xca\xce!\xe9\xa3zL\x990\xc0\xd4\xdf\xec\xe7:\x191\xc0\x90\x15\x03\x0c\xbdE\xd2d\xc7\x00\xe7Fv\x91%\x03\xacn\xb3n\xb3e\x80!c\x06\x80K\xd6\x0c\xb0\xb6\xb8E\x0e\x0dY\xcc0\xa3F5\x8f\x06\xd4\xcd\xa5!\xb6_\x11\xbe\xd6<\xa9\x06\x98\xc4\xa5\x9a\\\x03j&\xd8\x00}\x92\x0d0&\xda\x00]\xb2\x0d\xa8\x9fp\x03\xb4I7\xa0\xcb\xc4\x1b`\xd28z}\xa3Q\xab`[\xc5\xb6E\xd7&!\x87\x82Y\x16\xdf\xaeL\xca\x01\xda\xc4\x1c`N\xce\x01\xddw\xd21Q\x87\x82\x93\x9c\x8fD\xf1\x91)a\x07h\x92v@\xd7\x89;\xc0\xbc\xb7\x99w7s\x12\x0f\xb0\xcd\x08\xd8\xc2[t =\xa0\x83\xa4\x1e\xd0Qb\x0fpL\xee\xa1\xfaN\x9d\xe0\x03\xb4I>\xa0\xe1\x99\xc7,\xfam\x93NV\xd8)v\xa7\xb6i(+\xec\x06+)\x15%T\xd3Q\x82\xb1\xdb-\xd3R\n\x9c\xf2\x04\x95\xc2\x9f\xcaY*\x85\x1fZ\xa6\xaa\x14k\x15\x95\x93:_%x\x1f\x85\xfb\x02\xf1>\n\xef\xa3\xf8#\xfa(\xd4\x93\xae\xf1\x0e\x18}\x13\x92W\x02./N\xf2\x9a\xb3g+\xe0\x15M8\x0e/[G\x8f\xf9\xe5\x90p8[\x8e\xb8\"\xc5\x85\x9e\xef\x9e8*\x193\xb6\xc1\xe6\x8c\x8d\x9a\xc1\x9a\xf6I\xce\x8a\xd2\xc0\x01\xd2,\xd7S\x8dT\x98jO\x82\xd2$\xaaXv\xc5\x00\xcb\xa9B\x91\xb4\xf6\xbes\x1d\xb5]):g\x8a\xc9\xc1`L\xbd\xd9\xc8\xec4\xbbU\x1c\xcc\xce\xda\xae\x15\xb3s\xc5\xe6^1:X\xdc\x9b\xdb\x95\x93\xc5f\x11B;G\x8b\x82[\xe6\x06\xd1\xbaZ\\\x9d-\xa63Aw\xae\x16\x8b\xb3\xa5\xa6\xbb\xa5TZ\xe1oi\xebq1\xca\x8f\xca\xebR\xdf\xefb\xf4\xbc\xd8|/\x06\xefK#\xff\x8b\xc9\x03\xd3\xb1\x0f\xa6\xb1\xdf\xd7\xe0\x89\xb1.w\xfb\xda\xec\xd8\x1fc\xf7\xc8\x98|2V\xaf\xccF:\xdc\xdc7\xe3\xe8\x9d\xb1\xfbg\xf4\x1e\x9a\x0d\xf8h,\xdb\xa5m\xc3\xb4{j\xac\xb3\x046o\x8d\xd9_\xd3\x8d\xc7\xa6;\x9f\x8d\xbb\xd7\xa6\x8e\xdf\xc6\xe4\xb91\x8e\xb0\xe14X\x91\xa6\xfa [\x15L\xfe\xb3\x06\xf6\xff\xect_j\xd1Zy[G\xe6\x05\x9cf\xf7\xfa\xaf\xc4\x9c\x18\xe2H\xbd\x80\xe3\xea9\x86\xed\x18\x9f\x96 ?\xfc\xc7\x1ck\x9aR\x88\x16\x94\xbb\\d\x97He\x905\x0c\xc9\xf0&\x8c\xeeft4\xc9\x18\x16\x8c I\xe9Bux\xca*(\x9fE\xc4\xc9\xd3T5\x8c\xe6\x8b\x19M\xab\xf5\x18D1s3\x89\xc2\xe8\x96LZ\xd8N\x94\xba\xdb\xd1\xc3'{\xf5jx\x81\xd5U\xb6\xf3\xd2\xa9\x85\xbc\x857\xae\xea{\xcb\xdajp\xb7%t\x18Sf\x90\xcd\x17\xcb\x94\xf6nw\x064%;\xbd\xe3A\x12\xcd\x96)\xbd\xbe\xbf\x88\x92 \xad3k\xdc\x92\x90\x81B\xd5 \xe6\xfbmy\xbb\xcd\x86\xf6\x15\xe3\xb3\xde\x13Y'\xd0H\xc9\xba\x93\xc6d\x98rs\x91\xa9n\xdc*\xf3\x0e\xdf\xf7\x83pD]\x9f\xc8^*\xeb/m\xd8\xd7\xf7\xe7\x8c!\x0f\xc2f[G\xc4\xb7\x8e|\x1d\x89\xb6\x00\xb6\xf1!\x19\xa6K2\x834&aB\xaag&\xde8\x1e\xd7<\xe1\x0b)\xe4a\xddx\xb6\xccj\x97'\xa0\xf4\xf6c\x1aA\x12\xc5i1\x0e\x89~*O\xa2\x11=\x0f\xc7Q\x03\xdcdD\xed\xd7\xea\x95\x83\xc8g$\xb2-[\xc5\x89jDR\xd2\x9f\x92dZ\xbf(&\xa80\x96\x1b,\x83\xd9\xc8\xa0M\xb4#\x88\x83\xccF\xf1\x9b\x1e\xbd\x19\x19\xd0\x99\x9b\xae,I7c\x91\x00\x19\xcd\x83\x10^\xc2\x1e\xfc\xfd\xe1$\x9aD\xdc/\xde\x1b\x92$e\x8c\x1e\xc1K\xa1\xc4\x83I\x90N\x97\x03\x1e\x0e2\x8c\x92y\x94d\xffx\x92\x8cn\x9e\xa6<\xf0\xeex8<\x1e\x8db\x9a$\x0f~\xff\xefb\xd7\xe8H:\x84\x94\x8em!Z\xa9\xd3\xe8\x0e}\x1cA\x98\x1dR\xb2\xb3\xd0c\xdc7\x97 ZJl!\x94-\xf9\x87\x184\x7f7\xa5!,\xb9Q\xf7\x89)\xc4\x94L\xe0\xc1\x93\x07@\xe6A\x18AL\xc7\xc5R\xca\x03\xc0 HK\x81\x9b5\x0e@j\xb5\x07.\xc7\x0d\xedi\xa3\x85\n\x04\xa5\x1a\x04\x97\xe6\xd4\xf0\x074T\x8b\x15.\x82\x92tQ\x8d\xe2rDo\x12\xab\xfd\xd7\xe3\xab\xb7\xeb1 \xc2$%xy\xc5aQ\xff\x1a\xa4\xd3LT\x9d\xd77\x11\xbf\x87\x1a\x8bT\xd6&\xca\x1a\xd5\xb5\x82J\xb3@\xa3Y\x95\xb4\x8c\x13\x9b\x8a\xf7\xab\xa2q\x8c,tBT_\xfb@\x0b\x0d\x04*-\x04\x1aM\x04]h#\xe8R#\x81NV\xc0\x88\x0b\xe8\xb5\x13\x98\xa6\x0c\x8cZ\n:\xd3T\xa0\xd5V\xe0\xda<\xa53\xdd\x0cSt\xa3\xbd\xa0\x86\x06\x83\xc6ZL\xee\x89F\x811\xc5\x84\x13\x90i(xxCW\x8fr\xb0E,\x951*\x07\xb3\xea5f\xe6\xc3\x185Ij\xc64\xd6\xf7\xa0\xef\x14\xf6i\x136U[\xd5\xc0C\xb2Y5\xdf\xb2\x96\xd5\xdb\x8cl\xd3\xdc\xe4\xa6U6\xcf\xcd\x8e\xd8\xce\x17\xad\x94\x12a\xd4\x13\x06-\xa1\x94\x0b'fr\x1e \xb5t4c\xa6\x92\x11\x03'\xa5\x9c\xb8\x9epr\xf7d\xa1\x1ajO}cs\xa8Pl\xb9\xba\n\xca\xdak})\x867.+\xe5\x8d\xa8\xca<{#\xca\x1bQ\xe0\x8d\xa8\xbaF\x94V\xf19\x023U[\xaa\x14\xd0\xed\xa2l\x93WMM*,\xff5\xb6[I\xb7\x8b\\\xeamjj\xbd-\xf2\xab\x7f\xfdNm\x0c\x80M\xe6\xadR\xaf1\x0c\xc0\x9d\xb1\xf2\xea\x94B\xdb#Y\x98\x9a/\\5\xd3\xffHmv\x01$\xe5^\x80dnv\xc3}A\xc9\xab\xf1\xf6\xa0\xe4\xa6\xd82\x90\x0cb\n\x0ew\xf3\xcc\x9b\x08\x92E\x12\xc0\xba\xa1 u\xb7\xadd\xfc\xb4\x9bK\xf6\xbb{\xb35K\x0e\xc9,2\xd0\xe9\xa6\x83Tg\xeb\xc9J4\xdc\x80J\xa5+=\xec\xecD\x8fT\xeb\\\x7f5'q\x9a\xb3j\x96\xba\xbc\xf1 4`\x93\x96\xde\x97\x1bt\xce\xfe\xc8A\xe9\xe3!\x9f\xd7\xd7q4\xcfF\xa4v\xd3\x82\x82Y\x9f \xb7\xbe\xfd\xc0\xa2\xb4\x15\\\x9a\xa57\x1cDNO%V\xf9|_^\x9c\xac\x07'\xa6\x93 I1\xc1V1Bo\xf2[\x8b\x0e}/\xddp\xac1+\xca\x8ay\xcb\xcf\xc2a\xbcZ\xa4ttE\xe9\xa8\xf6\\\xd0\xbct?\xa1\xd4\x15\x1f\xcb\x9a\xc6\xb1\xccQa;9\xd7\xe9\x80F\xe3\x86\xb3YC\x8a\x99*Ot~\x0b\xbc8W\xfe\xbe\xa6kBiZh\xbfv3\xeb\xce\xa3\xb3\xfb\xe1\xf4b9\xb8\xa1\xab\xdas\xddx\xdc\x9d\xce\xf0\x81\xd0\xb4r/*\xf5\xfc\x14$k\xdd\x16\x84\x93\x99{\x0f\xa4)SL\x96\x0b^k\x87fm\n ;\xc1\x8e\n_i\x0e\xba\x95\xfd\x0d\x8a}}\xb7\xdbF|k\xf9\x04\xd5\x94\xb0\x0e\x84\xcb\xed\xd6D\x07\x17$X\xf7~(\xeaq\xe8\\c\xe1+UY\xff\xe2\x85u0l\xc3z\xc5l9\\n\x9f\x9d\xab\x1e\x90\x84\xf6\xe3\xbc\x80\xb2\x90\xba \xa3q\x1cU\xa2\xf7\xb4\xf2\x98\xa5\xdf}\x01xL\xdb\x99\x1c\x91i|x?\x9d\xa6\x07\xf1\xfc\xf3-\x0d\x0fw\x9f\x877\xb3\xfb\xd9\xf2\xcb\xea\xf6\xf9\x97\xa3O\x9f?\x0d\xe7\xc3\x12\x8b\xd2\xd5\xb3+\x1a\x8eh\xbcv\xb9\xc6\xf0\x86\xaeXg\xb2\xe7^\xa2\"O:\x10\xcd\x95\xa69\x9dGu[\x7fE\xc3\x14n\x03\x02'\xbc\x1b\xf0!Z\x91 \x8d\xe1\xff\xfd\xdf\xff\xf3\xbf\x85\x12h\xb79\xfbj\x0b\xf6\xc8\xf5\xc9\x0f\xcb\x81\xf0{n\xfe\xd5\xba\xa6^\xb0\xdc\xda\xde\x12~H\xe8\xe7%\x0d\x1dq\x1c\x91\xcb\x8e\xc8eB\x92\xda\x0cv\xb7\x19U\xb8\xf4\xc9\x88\x1d\x96\xe74t\xbd\x80\"\xb4\xa8\xb7+r\x1b\xd3\xaa\xfaVm \xd0q\x02\xbd\x11\x0d\xabK\x00I\xdb\x01\xa4\xa2\x1bIJn\xe4\xd3<\x99\xb3\x19o\xc3w\xeb\xa0<\xef\xc1|9\x93B{\x91\xd9 \x8af\x94\x84\xeaa\x1e\x93YRA\x8c\x8c\xe1\x90gI\x1a\xcc\xd9\xaa\x9b\xf0\xc7c\xe2\xf2\xea\x83\x87C\x12\x86QZ\\\n\xc4\x1b\xf8\x9f\xb2\xa7\x0e\xf0m\x8e2\xc3|\x19\xf7\xa3p\xb6\xca\x8f\xb4w$\x99\xf7\xb9\xff\xc8\xa81\x85~\x1c\xdf~\xd9\xde\xff0M\xdf\xfc8}~|r\xf2\xe1\xcb\xec\xfc9\xb9\x8e\x92\xbf\xae\xb6\x83\x9b\xd7\xff\xfe\xe6\xfc\xc3\x0f\xbf\xec}z\xf36\x8e\x92\x1f\x98 \xc9\x0f\xc0\xfc\x92jn\x85y\xad\xea\xb5\xaa\xd7\xaa^\xab\x8a\xf3\xfe}i\xd5 \x0c\xd2\xfe0\n6\x9dtF9\xbd\x86)0L\xabzJ]x S\xc9\xfb=O&\x96\xbd\xa44E\xdcO\x8f\xae\x1e\x1e\xce\xa5\xd9v\xb6\xfe\xe3\x1f\xac\x96\xb3{:\\\xfa\xad\xc4o%\n\x96~+\xf1[\xc9w\xb7\x95\xfc\x0b\xee\"\xf4\x9e\x0e\x1dv\x91\xea\xd6p2\xa5\xc3\x9b\xeb\xfbK\xc1\xa5\xe4\xb0+\x0c\xa3\x91\xe4\x16\x0b\xc2\x94N\n'\x9c\x15\xdab\xab\x9bM\xb1\x99\x0d\xfb\xea\x8e\x84\xa9\xed;\xd5U\xd9Ru\xb3\xc8<2)\x99lX`$\x97\xbba\x8a\x15o,*\xbe\xce\xe7R\x9c\x14\xd8\x16'\x80\xff\xbf0\x02\xec\xff\xaa\xe3\x0f\x07\xdb\xdb\xdb\xf2p\xc3\xce\xf6\xfa\xef|x\xf9\xff+\x87\xeb lmU\xff\xe3\x94\xce\x82[\x1a{\xd1\xfa~D\xeb@\x9c\x80\x7f\xa2h\xbd\x8a#2\x1a\x92$\xbd\xbe?\xe1\xc9\xa3\xea\x8a\x18\xd3y\xfdT\nvu\xb2i\xcb\xf2 \x1a\xa1\x01INA?)\xb2\xbc\x9a\xd8\xaa\xe4\xd6\xf4} ]\x1c\xd34\xa3$\xc7\x86\xef\xca\x13\x04\x1a\x99\x86\x8e-)\x85\x8c\x83I\xceA'\xeb\xdaR\x15\x99\x07I\xa5\x82J\xf6A\x96\x7f\xd0\xad\x010\xac\x03P\xad\x05P\x0ewiMT\xfe0B\xb5\xeb\xa5\xdbK\xb7\xa3t\x1fT'\xf5\x1b\x96n+H)\x18\xb8gg\x07\xaf\xf7\xf6\xb7\xf7\xb7\xf7\xf6O\x0ev\xf7\x0f\xb6w\x0ew\x8f^\x1d\x1c\x9em\x9f\x9e\x9e\xec=\x7f}|zx\xb0\xf3z;\xbfR\xa7\xc6]\xd7\x02\xf7\xe6\xc3\x05 \xb2\xd3\xb5\xc3\x1ec\xbbCT\x99\xbc\xca\x17os;\xbe\xf2wE\xc8\xad\xc0\xb5t\xf2\x1a\xd0\xe1to\x17\xf3\xb8\xe2\xfb\x8a\xac\xe4\x9f@\xe1k\x19\xd1\xc5\xcd\xc1\xfepI>Mn\xbePr\xf8e1\xb9\xf9\xbcw\x98\x86\x9f\xeeF_n\xf7\xc9x\xb87\xda}\xf6'\x80\x0fd\x16\x8cH\x1a\xc5\x1bi\xc7-\x99\xb1Q\xdc9\xbc_\xd1\xf9\x82\xce\x17\x8b\xa3\xdd\xfb\xa3\xe9\xea\xcb\x97\xa3\xbbx2>\xda\x8f\x0f?\x1dM\x0f\xc6\xbbw\xfb\xe1\xee\x8c\x03\xdd\x81{\x92\x8d\xcay\xcd,;\xe2\x19\xadz:3\x97\xccNdU\xc8_aZ\xd5\x11\xd0\xeb{~\x8d\xcc\xb9\xb3u\xd6\xc9\xe9\xf6\xf3\x83\x9d\xbd\xe7\xa7G;{GG{G;G\xbbG\x07\xaf_\xef\xbf\xda>>\xda\xd9~\xf6z\xe7\xf5\xee\xc9\xe9\xd9\xf6\xe9\xde\xb3\xe3\xe7\xcfN\xce\xb6\x0f\xf7\xf7\xcfvw\x9e\x9d\xbcz\xbd\xf7j\xff\xe8\xf0\xe0\xd0\xb8~*wU\x8aJ\xf7\x0e\x9fg\x7fl\xb8Q\x95N\xba\xd0LKKzuL\x95\x9b\x9fB\x9b\xebu\xb9\xe4\xfb\x02\xb3\x1e\xd7\xb9rt\xfd\x01]\x9f\xc0\xbc\xfb\x80e\x07\x02\x93\xb7\nl{\x11\x92\xc5k\x05F\xcf\x15\xd4\xac\xa3\xe2\xc1r\xf6\xd6&\xc1$\xe4\xa9\x87ZO\xb5\x86\x13\xd8:RtA\xfdt\xcf\xd9\xfb\x93\xf3_N\xb7w\xc7\xc9\xe9EL\x9e\xbfM\x07\x97\xc9\xea\xd5\xce\xdd\xb3\xc1\xe7\xeb\xb7\x07\x07\xbf.w\xf6\x9e\x7f\xf9e\xf0z\xf8\xeb\xfd\xfe_N^\xaf\x8e\xcf'\xf4\xe0\xd7w\x17\xe37\xe7\xcb\xdb/\xaf~;\x10]C\xf2y\x99\x91$\xedc\x86\x16y\x14\x9c\xc4b\xc3\xb3ZT^\x96[h\xa8\xebd\x19\x06\x93\x1c\x83N\x96A\xe3\x11rUi5G\x00\x1d\x7f5\xe6w\xef@\x9c`|\xa3\xcf\x1e#\xdc\xbc\x81n\x01\xd9\xcd\xf9\xdf\xe6\xd0u\xb2\xc9Z\xf8\x03f_\xa7\xaa\xe25\xa2MVB\x16\x8bM\xb2\xe7\xb2\x95\xe5\xad\xdad=\xf46\x18\xb1\xcdw\x93u0\x9d\x11%4vH\x93\x035\xeeH\x80\xbc{\xb8\xdf\xd7\x80\xf5\x83\xd4\x8dT3\xd7\xebuu\xf3\x8e\xa8\xe6\xc8bQ\xb7\xfcv\xbe\x15;o\xc2Sa\xcfV\x16Q\x17\x83\x16\x818\xf2>\x0e\x1a\xef\xba\xdd\xc4\x11M\xdd\xf2\xbe\x0eNmq\xdb\xdfA\xb5\xc7\x83S\x03\xc5 \xd5\xec\xf7\xd0l;\xfd\x8a;`N\n;\x00L\x8d\x07\xab\xf3Bc\x13\x80\xcd.\x00\x93m\x00\xda\xd1\x01\xdb\x08A\xcbQR\xd8\n\xe0$'{\x07UAQ\xda\x0d\xe0$\xd5\x0d\x1a^7\xd5x\x9b\xba\xb4\x9b\xfc\xc6j4\xdb\x16\x1b\xabVggl\xacB\xd9\xe6\xd8XU\x06\xfbccujl\x91\x8d\xd5\xa7\xb7K\x8cU\xd6\xb1O\xa0\xad\x8d\x02*;\x05\x9am)\n\x9b\x05l\x1aSm\xbb\x80\xca~\x01g^m/\x16\x94\xf8\xe7R\xd3\x9e\x93\xa0\x97\x1bYL~\xef/\x15\xfd\xce\xf6\xfeELQ6\x94zb\xb38B\xb1\xb7\xa9U\x15\x92\xb1\xf7k\x0e\xda\xac\xbb\x96\xd1[\x1b\xd5\nDN\x9f\x82\xb8\x0d\xd78Z\x86\xed@>\x05Sv\x8eHR2Wh\xaf\x1a\x8c\x9d\x0f\x16\x02_m}\xda\x95P\xd4\xb7+\xfd\xa8V6H\xc6Uk[\xb7\xa6\x05f\x1d h\xb9\xc8\xd6\xa4QHH\x96\x0e\x82C'\xc1\xac\xa2\xb2\x0fl\x8a\n\xc9\xa8\xae\x90Lc\nn\xe3\n\x9d\x8c\xad\xc3\xad\x1c\xbb\xf8kn\xcc<[^\x9f<\xdb\xffev\x13~\xfe\xdb\xafgw\x93g\x1f\xc2\xc3\xb7\xcf\x7f\x9e?{\xbd\xfcm\xfb\xec\xe7\xfd\xc1\xa7\xdb\xe5\xa7\xc3\xf8\xee\x87\x9d\xf9\xf5\xfb\x1f\xe3\xcb\xe5\xdb\xb7\xbf\xdd\x1e\x1f\x7f\xbe>\xfa\xf0\xe9\xdd\xe4b\xfb\xf2\xf8\xe9\xf5\xe9\xe2p\xf9\xf4h\xf7\xf8s\xfc\xdb\xf8\xdf\x7f\xbcZ\xbc\xfa\xe5\xe5\xcb\xdc\xedQ/\xd2\x03W\xc8\x9c\xca!\xd1N\xbby\xd5u\xa2-\xaeg\x01Z7\n\xd8\x06\xdb\xe2N\x01\x83\xce5\n\xad\xd2\xb5\x02\xa0r\xaf\x80s\x1b\xebiC\xa5\xab\x05\x9c\x1b^]c\x06\xb7\x0b\xd8T\x85YI\xfc\x93\x0c\x8d\x9c\x0c\x1a\xd0\xaa\xff\xec\xda\xcf\xa2\xfb\x9c4\x9fU\xef\x99\xb5\x9eu\x14\xa1\x83\x91\xd4\xb8l\xc0\xd6G\xb5\xeb\x06\xac\xee\x1b\xb0u\xacm\x87\xb4 \x8a7\\\xaf\xd1\xbf\x02\x9b\xae\xdd\xee\xe2\x81M7\xc1\xe4\xee\x81MW\xaev\xfd\xc0\xa6\xab\xb5\xb8\x81`\xd3\xf5\x1b\\B\xb0\xe9\xba\xcd\xee!\xb0U_\xd7M\x04\xf2\xae_\xdfU\x04:w\x11\xd8v\x0d\xf3\x8e\xa1q\x1d\x81m\x10\x00L.$\xd0\xb9\x91\xa0\x16_\x91\xad\xf7\xc1\x94\x8a~G>\x98\x8a\x08zK\xde[\xf2\x02yK^\xfd\xa3\xc3B\x07\xdbb\x07o\xc9oD\xdf{K\xfe\x9f\xd4\x04o\xc9\x7f\xfd\xfa\xbd%\xef-y+_\x91\xad\xe6\x96M-\xa0M\xaaS\x06\x8b\xa1#\xceJ\xf0\x18\x9aY\x9a\xde\x06*\x93\xb7\x81r\xd2\x81\xd0`\x90b\xd8`Z$'`\x1a\\F\xc7\x01\xa0\x06\x17>\xe2aF\x13z\xdb\xfa\xbd\\k\x0dZ\xe0\x1a:\xaa\xc0\x08bC\xddJj\x1d\xfa\x908\x7fc\xdd\xc6\xd5V\xd4-\x03\xdb`\x01\xb7\xc1.\xb5\xe0 \xb9`]\xd0N\x83\x08\x1d,\xea5\x19Aop\xeb88v\x1e\xecj3\xfb\xc8>\x9d9YU(\x92m\xdc\xc1}\xec\xa1\xb3\xf1\xffZ)%6\x08\x92\x9f\xd2\x19\x9d\xf07v\xb3\x7f\x8b\xe2KzG\xe2l\x1dI\xc2#\x8b\x89A\x9f+\xbb_\xc74\xae\x98\xc4\xb5sZ\x02\xcfl\xb0\xee\x0eh\xf6\xbc\xb6\xd9\x88\xbe\xa5\xe7\x0b\x8ay\xbcf+\x15'3q\x9e\xcdX\xfc\x1e64\\V\x13\xc0\xd0\xdd:\xe2\x83\xd4\x85\x10!UE IoDiL\xa8\x16\x16\xb9!k\x90U\xd7\x18\x84\x0e\xc9\x94\x1d\xc8\x9d\xbb\x90'@\x99p\xac[Q\xfa\x96V\xde+\x92\xd4z\xae\xb5\xfc\xa0\x93\xb2\xa2\xaaO\xa0\xe6CN]>\xe2dM\xfa \xb4\xd6\xe1\xe1\xa6\xba\xb1\xde\xd2cM\xba|\x02f6k\xebX\xce!`)Y<\xcaTJ!b)T\xceG\xa3{\x84\xc9V\xf3\xfa\xf1\xa5\xf2\xc3K\xdf\xfb\x8a\x02\xe5cJ\xc8\xa0\xfa\x90RQ\xb6\xfc\x88\x92\xfe\x01\xa5N\x1fO\x92\x1eN\xba\xa6y.\x8e\"\xcf\xb7\xb3b\xf86\x0d))\xc3\x89YjKc]T;\x8c\xc2d\xb1\x1c\xec|\x19~\x1a-\xe9\xe2\xf3\xf6\xedr\xf7\xcb\xe4fr\xb3\x7fD\xc7d;\xfc|\xf7%\x1c\x91\xf0\xf3\xc1|\x7f\xf8lA\xf6\x96\xfbd\xf1e\x7f\xb2\x1b\x1fM\x92\xc5\xe7\xc9\xe1\xe4h\x98\xec\xdd\x1c\x0d\x97\xe3\x8c\xfbm\x94\x06\xe1\xa4\xbf\x88\xeej(\x81\x1daM\x16\x9e\xdeE\x1cDq\x90:w\xb0\xe0rM\xef\xd3\x0b\xce%\xdf\xed\x1c\xe6x\x91\x15P\xa8\xc0\xf2\xbb\x0ci\x90\xce\xccJJ\x14\x04\xd3wE\x95\xfc7\xa7/\x93\x94\xa4K\xb3 \x8e\x83\x90\xb1$\xb3\xd9\xaa\xdf\"/\xee\xd6\x8a&[eU\xa1U\x14\x826\xefm\x17$z\x1d\xc8 II\xa0\x8c\x7fj\xc4o+\x8c\xbak\\\x18\xf5\x99\xf6\xe8\xdf\xd2\xd4-\xc9\xb6\x8di\xb2\x1c\xcc\x83\xb4oMc\x82p\xe8\x88.\xa2D\x8eW\xfa\xbew\x91LM$)\x89-\x03u\x91\xe9\x83.V\xb2bQ\x19\xb4\xd4\xa981\x0e\x15\xab\xdfR\xf8\xbe\xe7\xd1u\xb03!\x8fl{B\x8bM\xd4\x1d\xa0\xbbf\xca\xb1\xe6\xb3Z\x15}h\xd9\x8aTZA\xd2\x81\x0dx\x94\xf5^\x03\x06j]W\x93\xd1\x87(7\xff\x1c\x06\xee6J-\x96\x80\xab\x0cE\xe6-\xb5\xbe]\xc7\xfe\xfb\x1b\xf6\x94\xad\xef8,\x96\x83o\xcf\xd2\xfbD\x82\x99\xfc\xbc`\xf9\x18\xa0\xb6W*\x06UtC\xe5\xf7L+\xda#\xf3\xa1\xf5\x93)\x89\xe5\x13\x97\xab\xf9\xe5d\xf9\xcc\xa30\xb8q\xcc\x88\x17\x8ch\x98\x96lT\xc3\xc7wt\x90\x04\xeaWh\xa5o\x13:\\2\xe3\xb7?\x8c\xc2\x94\x0c\x95\x80\xb4ThDS\x12\xcc\x12\xeb\xb7\x83(\x1c\xf5\xd5\xa9\xd9\xf4:`K,\x1c\x84iL\xfa\xe9=f\xdb\x97\xd7w\xf5)\xb3\x82O\x8e*,C\xc6\x87\x99\x00M\xdb\xb1\xe6`\xb5\xb3J\x87\x84\xa3g\xdbO\xb6w\x9el\xef\\oo\xbf\xe0\xff\xfb-g\xc9q\xd9\xa4qB\xa1X\xf3\xc4\xb0\xd9~\x14-\xd19\xb9\xefw\xc3e8%\xe1\x84v\xc0l\xb9\x18\xb1ct\xa3\xd4=\xba\xb1^\x83\x1c\xce\xaaz\xad\x01\\tu=\x0c\xc4A\xa7\x0c\xc8\x8c(|SNb\xa10\xd9\xeccW5\xd7\xf4\xe9o\x8d3\x80\x86\xda\xfb|\xa9\xac\x07\xbe\xd6so\x9b\x1c|\x1a\xa6q\xb0i\x1fZ\x10\x06i@f}i\x1aEn\x8a\x81\xac\xfb\xfd0\xa6|t%\xa5f)7\x0fB\xc5\n\x93\n\x14\xf3x&\x0e\x9a\xc3\x04j\xfb\xef.\xea\xa5o\xb4\xfdT|+\xf7M\xd7\xaboL-|\xe5A+o\x99\xbaQ[\x7fuIG_o\xbc\x92xX\xb3\xc4(I\x9dJ4[\xff\xff-\xa6\xe3\x17\xb0\xf5_\x9f\x8e\xe8\x98\xcfS\x14&O\xc5\x11\xd9\xaa\x8c\x10[1\xeeq\xe7\xb5\xa6j\x181e\xcb?7\xcf\x18l@\xa8p\xefb\xa3\xad\xfd\xac8\x17\x9d\x06Iz^\xbc(\xeb0\x0c\xdf\xf8\xf9(\xa1\xb3q\x9f\x9b\xa3_\x05%\xff\xd6\\/\xb7\xfc\xb1+\x9d\xc5\xfa\xfd\xf6\xfdb9\x98\x05\xc37\xd4}9\xf3OL\xb2k~\xaf\xf6*\x98\x84A8\xa9\xb5t\xd0\xb1\xe9\xb0=\xf2\xab\x92\xfdh9\x05\x00\xf8\x0c\x1b\x00\x1c\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x81\xf2\xdf\x08\x00swagger/swagger-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'\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x81\x83\x19\x0e\x00swagger/swagger-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\x16\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x81g\xd4\x0f\x00swagger/swagger-ui.cssUT\x05\x00\x01\x80Cm8PK\x01\x02\x14\x03\x14\x00\x08\x00\x08\x00\x00\x00!(\x80\xcc\xc7vF\xf5\x01\x00\xdep\x1c\x00\x14\x00 \x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x81\x9c.\x10\x00swagger/swagger.yamlUT\x05\x00\x01\x80Cm8PK\x05\x06\x00\x00\x00\x00\n\x00\n\x00\x19\x03\x00\x00-$\x12\x00\x00\x00" fs.Register(data) } diff --git a/client/docs/swagger_legacy.yaml b/client/docs/swagger_legacy.yaml new file mode 100644 index 000000000..596a1a44a --- /dev/null +++ b/client/docs/swagger_legacy.yaml @@ -0,0 +1,2949 @@ +swagger: "2.0" +info: + version: "3.0" + title: Secret-Lite for Secret Network + description: A REST interface for state queries, transaction generation and broadcasting. +tags: + - name: Transactions + description: Search, encode, or broadcast transactions. + - name: Tendermint RPC + description: Tendermint APIs, such as query blocks, transactions and validatorset + - name: Auth + description: Authenticate accounts + - name: Bank + description: Create and broadcast transactions + - name: Staking + description: Stake module APIs + - name: Governance + description: Governance module APIs + - name: Slashing + description: Slashing module APIs + - name: Distribution + description: Fee distribution module APIs + - name: Supply + description: Supply module APIs + - name: version + - name: Mint + description: Minting module APIs + - name: Misc + description: Query app version +schemes: + - https +host: api.cosmos.network +securityDefinitions: + kms: + type: basic +paths: + /node_info: + get: + description: Information about the connected node + summary: The properties of the connected node + tags: + - Secret REST + produces: + - application/json + responses: + 200: + description: Node status + schema: + type: object + properties: + application_version: + properties: + build_tags: + type: string + client_name: + type: string + commit: + type: string + go: + type: string + name: + type: string + server_name: + type: string + version: + type: string + node_info: + properties: + id: + type: string + moniker: + type: string + example: validator-name + protocol_version: + properties: + p2p: + type: string + example: 7 + block: + type: string + example: 10 + app: + type: string + example: 0 + network: + type: string + example: gaia-2 + channels: + type: string + listen_addr: + type: string + example: 192.168.56.1:26656 + version: + description: Tendermint version + type: string + example: 0.15.0 + other: + description: more information on versions + type: object + properties: + tx_index: + type: string + example: on + rpc_address: + type: string + example: tcp://0.0.0.0:26657 + 500: + description: Failed to query node status + /syncing: + get: + summary: Syncing state of node + tags: + - Tendermint RPC + description: Get if the node is currently syning with other nodes + produces: + - application/json + responses: + 200: + description: Node syncing status + schema: + type: object + properties: + syncing: + type: boolean + 500: + description: Server internal error + /blocks/latest: + get: + summary: Get the latest block + tags: + - Tendermint RPC + produces: + - application/json + responses: + 200: + description: The latest block + schema: + $ref: "#/definitions/BlockQuery" + 500: + description: Server internal error + /blocks/{height}: + get: + summary: Get a block at a certain height + tags: + - Tendermint RPC + produces: + - application/json + parameters: + - in: path + name: height + description: Block height + required: true + type: number + x-example: 1 + responses: + 200: + description: The block at a specific height + schema: + $ref: "#/definitions/BlockQuery" + 404: + description: Request block height doesn't + 400: + description: Invalid height + 500: + description: Server internal error + /validatorsets/latest: + get: + summary: Get the latest validator set + tags: + - Tendermint RPC + produces: + - application/json + responses: + 200: + description: The validator set at the latest block height + schema: + type: object + properties: + block_height: + type: string + validators: + type: array + items: + $ref: "#/definitions/TendermintValidator" + 500: + description: Server internal error + /validatorsets/{height}: + get: + summary: Get a validator set a certain height + tags: + - Tendermint RPC + produces: + - application/json + parameters: + - in: path + name: height + description: Block height + required: true + type: number + x-example: 1 + responses: + 200: + description: The validator set at a specific block height + schema: + type: object + properties: + block_height: + type: string + validators: + type: array + items: + $ref: "#/definitions/TendermintValidator" + 404: + description: Block at height not available + 400: + description: Invalid height + 500: + description: Server internal error + /txs/{hash}: + get: + deprecated: true + summary: Get a Tx by hash + tags: + - Transactions + description: Retrieve a transaction using its hash. + produces: + - application/json + parameters: + - in: path + name: hash + description: Tx hash + required: true + type: string + x-example: BCBE20E8D46758B96AE5883B792858296AC06E51435490FBDCAE25A72B3CC76B + responses: + 200: + description: Tx with the provided hash + schema: + $ref: "#/definitions/TxQuery" + 500: + description: Internal Server Error + /txs: + get: + deprecated: true + tags: + - Transactions + summary: Search transactions + description: Search transactions by events. + produces: + - application/json + parameters: + - in: query + name: message.action + type: string + description: "transaction events such as 'message.action=send' which results in the following endpoint: 'GET /txs?message.action=send'. note that each module documents its own events. look for xx_events.md in the corresponding cosmos-sdk/docs/spec directory" + x-example: "send" + - in: query + name: message.sender + type: string + description: "transaction tags with sender: 'GET /txs?message.action=send&message.sender=cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv'" + x-example: "cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv" + - in: query + name: page + description: Page number + type: integer + x-example: 1 + - in: query + name: limit + description: Maximum number of items per page + type: integer + x-example: 1 + - in: query + name: tx.minheight + type: integer + description: "transactions on blocks with height greater or equal this value" + x-example: 25 + - in: query + name: tx.maxheight + type: integer + description: "transactions on blocks with height less than or equal this value" + x-example: 800000 + responses: + 200: + description: All txs matching the provided events + schema: + $ref: "#/definitions/PaginatedQueryTxs" + 400: + description: Invalid search events + 500: + description: Internal Server Error + post: + tags: + - Transactions + summary: Broadcast a signed tx + description: Broadcast a signed tx to a full node + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: txBroadcast + description: The tx must be a signed StdTx. The supported broadcast modes include `"block"`(return after tx commit), `"sync"`(return afer CheckTx) and `"async"`(return right away). + required: true + schema: + type: object + properties: + tx: + required: true + $ref: "#/definitions/StdTx" + mode: + required: true + type: string + example: block + sequences: + required: false + type: array + items: + type: string + example: "1" + fee_granter: + required: false + $ref: "#/definitions/Address" + responses: + 200: + description: Tx broadcasting result + schema: + $ref: "#/definitions/BroadcastTxCommitResult" + 500: + description: Internal Server Error + /txs/encode: + post: + deprecated: true + tags: + - Transactions + summary: Encode a transaction to the Amino wire format + description: Encode a transaction (signed or not) from JSON to base64-encoded Amino serialized bytes + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: tx + description: The tx to encode + required: true + schema: + type: object + properties: + tx: + $ref: "#/definitions/StdTx" + responses: + 200: + description: The tx was successfully decoded and re-encoded + schema: + type: object + properties: + tx: + type: string + example: The base64-encoded Amino-serialized bytes for the tx + 400: + description: The tx was malformated + 500: + description: Server internal error + /txs/decode: + post: + deprecated: true + tags: + - Transactions + summary: Decode a transaction from the Amino wire format + description: Decode a transaction (signed or not) from base64-encoded Amino serialized bytes to JSON + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: tx + description: The tx to decode + required: true + schema: + type: object + properties: + tx: + type: string + example: SvBiXe4KPqijYZoKFFHEzJ8c2HPAfv2EFUcIhx0yPagwEhTy0vPA+GGhCEslKXa4Af0uB+mfShoMCgVzdGFrZRIDMTAwEgQQwJoM + responses: + 200: + description: The tx was successfully decoded + schema: + $ref: "#/definitions/StdTx" + 400: + description: The tx was malformated + 500: + description: Server internal error + /bank/balances/{address}: + get: + deprecated: true + summary: Get the account balances + tags: + - Bank + produces: + - application/json + parameters: + - in: path + name: address + description: Account address in bech32 format + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + 200: + description: Account balances + schema: + type: array + items: + $ref: "#/definitions/Coin" + 500: + description: Server internal error + /bank/accounts/{address}/transfers: + post: + deprecated: true + summary: Send coins from one account to another + tags: + - Bank + consumes: + - application/json + produces: + - application/json + parameters: + - in: path + name: address + description: Account address in bech32 format + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: body + name: account + description: The sender and tx information + required: true + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + amount: + type: array + items: + $ref: "#/definitions/Coin" + responses: + 202: + description: Tx was succesfully generated + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid request + 500: + description: Server internal error + /bank/total: + get: + deprecated: true + summary: Total supply of coins in the chain + tags: + - Bank + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Supply" + 500: + description: Internal Server Error + /bank/total/{denomination}: + parameters: + - in: path + name: denomination + description: Coin denomination + required: true + type: string + x-example: uatom + get: + deprecated: true + summary: Total supply of a single coin denomination + tags: + - Bank + produces: + - application/json + responses: + 200: + description: OK + schema: + type: string + 400: + description: Invalid coin denomination + 500: + description: Internal Server Error + /auth/accounts/{address}: + get: + deprecated: true + summary: Get the account information on blockchain + tags: + - Auth + produces: + - application/json + parameters: + - in: path + name: address + description: Account address + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + 200: + description: Account information on the blockchain + schema: + type: object + properties: + type: + type: string + value: + type: object + properties: + account_number: + type: string + address: + type: string + coins: + type: array + items: + $ref: "#/definitions/Coin" + public_key: + $ref: "#/definitions/PublicKey" + sequence: + type: string + 500: + description: Server internel error + /staking/delegators/{delegatorAddr}/delegations: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + get: + deprecated: true + summary: Get all delegations from a delegator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Delegation" + 400: + description: Invalid delegator address + 500: + description: Internal Server Error + post: + summary: Submit delegation + parameters: + - in: body + name: delegation + description: Delegate an amount of liquid coins to a validator + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + delegator_address: + $ref: "#/definitions/Address" + validator_address: + $ref: "#/definitions/ValidatorAddress" + amount: + $ref: "#/definitions/Coin" + tags: + - Staking + consumes: + - application/json + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid delegator address or delegation request body + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /staking/delegators/{delegatorAddr}/delegations/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query the current delegation between a delegator and a validator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Delegation" + 400: + description: Invalid delegator address or validator address + 500: + description: Internal Server Error + /staking/delegators/{delegatorAddr}/unbonding_delegations: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + get: + deprecated: true + summary: Get all unbonding delegations from a delegator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/UnbondingDelegation" + 400: + description: Invalid delegator address + 500: + description: Internal Server Error + post: + summary: Submit an unbonding delegation + parameters: + - in: body + name: delegation + description: Unbond an amount of bonded shares from a validator + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + delegator_address: + $ref: "#/definitions/Address" + validator_address: + $ref: "#/definitions/ValidatorAddress" + amount: + $ref: "#/definitions/Coin" + tags: + - Staking + consumes: + - application/json + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid delegator address or unbonding delegation request body + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /staking/delegators/{delegatorAddr}/unbonding_delegations/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query all unbonding delegations between a delegator and a validator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/UnbondingDelegationPair" + 400: + description: Invalid delegator address or validator address + 500: + description: Internal Server Error + /staking/redelegations: + parameters: + - in: query + name: delegator + description: Bech32 AccAddress of Delegator + required: false + type: string + - in: query + name: validator_from + description: Bech32 ValAddress of SrcValidator + required: false + type: string + - in: query + name: validator_to + description: Bech32 ValAddress of DstValidator + required: false + type: string + get: + deprecated: true + summary: Get all redelegations (filter by query params) + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Redelegation" + 500: + description: Internal Server Error + /staking/delegators/{delegatorAddr}/redelegations: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + post: + deprecated: true + summary: Submit a redelegation + parameters: + - in: body + name: delegation + description: The sender and tx information + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + delegator_address: + $ref: "#/definitions/Address" + validator_src_addressess: + $ref: "#/definitions/ValidatorAddress" + validator_dst_address: + $ref: "#/definitions/ValidatorAddress" + shares: + type: string + example: "100" + tags: + - Staking + consumes: + - application/json + produces: + - application/json + responses: + 200: + description: Tx was succesfully generated + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid delegator address or redelegation request body + 500: + description: Internal Server Error + /staking/delegators/{delegatorAddr}/validators: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + get: + deprecated: true + summary: Query all validators that a delegator is bonded to + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Validator" + 400: + description: Invalid delegator address + 500: + description: Internal Server Error + /staking/delegators/{delegatorAddr}/validators/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 ValAddress of Delegator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query a validator that a delegator is bonded to + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Validator" + 400: + description: Invalid delegator address or validator address + 500: + description: Internal Server Error + /staking/validators: + get: + deprecated: true + summary: Get all validator candidates. By default it returns only the bonded validators. + parameters: + - in: query + name: status + type: string + description: The validator bond status. Must be either 'bonded', 'unbonded', or 'unbonding'. + x-example: bonded + - in: query + name: page + description: The page number. + type: integer + x-example: 1 + - in: query + name: limit + description: The maximum number of items per page. + type: integer + x-example: 1 + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Validator" + 500: + description: Internal Server Error + /staking/validators/{validatorAddr}: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query the information from a single validator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Validator" + 400: + description: Invalid validator address + 500: + description: Internal Server Error + /staking/validators/{validatorAddr}/delegations: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Get all delegations from a validator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Delegation" + 400: + description: Invalid validator address + 500: + description: Internal Server Error + /staking/validators/{validatorAddr}/unbonding_delegations: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Get all unbonding delegations from a validator + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/UnbondingDelegation" + 400: + description: Invalid validator address + 500: + description: Internal Server Error + /staking/pool: + get: + deprecated: true + summary: Get the current state of the staking pool + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + loose_tokens: + type: string + bonded_tokens: + type: string + inflation_last_time: + type: string + inflation: + type: string + date_last_commission_reset: + type: string + prev_bonded_shares: + type: string + 500: + description: Internal Server Error + /staking/parameters: + get: + deprecated: true + summary: Get the current staking parameter values + tags: + - Staking + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + inflation_rate_change: + type: string + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + unbonding_time: + type: string + max_validators: + type: integer + bond_denom: + type: string + 500: + description: Internal Server Error + + # TODO: We need to either fix this route when the validator is not found or add a slashed validator in the contract tests + # /slashing/validators/{validatorPubKey}/signing_info: + # get: + # summary: Get sign info of given validator + # description: Get sign info of given validator + # produces: + # - application/json + # tags: + # - Slashing + # parameters: + # - type: string + # description: Bech32 validator public key + # name: validatorPubKey + # required: true + # in: path + # x-example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + # responses: + # 200: + # description: OK + # schema: + # $ref: "#/definitions/SigningInfo" + # 400: + # description: Invalid validator public key + # 500: + # description: Internal Server Error + /slashing/signing_infos: + get: + deprecated: true + summary: Get sign info of given all validators + description: Get sign info of all validators + produces: + - application/json + tags: + - Slashing + parameters: + - in: query + name: page + description: Page number + type: integer + required: true + x-example: 1 + - in: query + name: limit + description: Maximum number of items per page + type: integer + required: true + x-example: 5 + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/SigningInfo" + 400: + description: Invalid validator public key for one of the validators + 500: + description: Internal Server Error + /slashing/validators/{validatorAddr}/unjail: + post: + deprecated: true + summary: Unjail a jailed validator + description: Send transaction to unjail a jailed validator + consumes: + - application/json + produces: + - application/json + tags: + - Slashing + parameters: + - type: string + description: Bech32 validator address + name: validatorAddr + required: true + in: path + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + - description: "" + name: UnjailBody + in: body + required: true + schema: + type: object + properties: + base_req: + $ref: "#/definitions/StdTx" + responses: + 200: + description: Tx was succesfully generated + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid validator address or base_req + 500: + description: Internal Server Error + /slashing/parameters: + get: + deprecated: true + summary: Get the current slashing parameters + tags: + - Slashing + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + max_evidence_age: + type: string + signed_blocks_window: + type: string + min_signed_per_window: + type: string + double_sign_unbond_duration: + type: string + downtime_unbond_duration: + type: string + slash_fraction_double_sign: + type: string + slash_fraction_downtime: + type: string + 500: + description: Internal Server Error + /gov/proposals: + post: + deprecated: true + summary: Submit a proposal + description: Send transaction to submit a proposal + consumes: + - application/json + produces: + - application/json + tags: + - Governance + parameters: + - description: valid value of `"proposal_type"` can be `"text"`, `"parameter_change"`, `"software_upgrade"` + name: post_proposal_body + in: body + required: true + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + title: + type: string + description: + type: string + proposal_type: + type: string + example: "text" + proposer: + $ref: "#/definitions/Address" + initial_deposit: + type: array + items: + $ref: "#/definitions/Coin" + responses: + 200: + description: Tx was succesfully generated + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid proposal body + 500: + description: Internal Server Error + get: + deprecated: true + summary: Query proposals + description: Query proposals information with parameters + produces: + - application/json + tags: + - Governance + parameters: + - in: query + name: voter + description: voter address + required: false + type: string + - in: query + name: depositor + description: depositor address + required: false + type: string + - in: query + name: status + description: proposal status, valid values can be `"deposit_period"`, `"voting_period"`, `"passed"`, `"rejected"` + required: false + type: string + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/TextProposal" + 400: + description: Invalid query parameters + 500: + description: Internal Server Error + /gov/proposals/param_change: + post: + deprecated: true + summary: Generate a parameter change proposal transaction + description: Generate a parameter change proposal transaction + consumes: + - application/json + produces: + - application/json + tags: + - Governance + parameters: + - description: The parameter change proposal body that contains all parameter changes + name: post_proposal_body + in: body + required: true + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + title: + type: string + x-example: "Param Change" + description: + type: string + x-example: "Update max validators" + proposer: + $ref: "#/definitions/Address" + deposit: + type: array + items: + $ref: "#/definitions/Coin" + changes: + type: array + items: + $ref: "#/definitions/ParamChange" + responses: + 200: + description: The transaction was succesfully generated + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid proposal body + 500: + description: Internal Server Error + /gov/proposals/{proposalId}: + get: + deprecated: true + summary: Query a proposal + description: Query a proposal by id + produces: + - application/json + tags: + - Governance + parameters: + - type: string + name: proposalId + required: true + in: path + x-example: "2" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/TextProposal" + 400: + description: Invalid proposal id + 500: + description: Internal Server Error + /gov/proposals/{proposalId}/proposer: + get: + deprecated: true + summary: Query proposer + description: Query for the proposer for a proposal + produces: + - application/json + tags: + - Governance + parameters: + - type: string + name: proposalId + required: true + in: path + x-example: "2" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Proposer" + 400: + description: Invalid proposal ID + 500: + description: Internal Server Error + /gov/proposals/{proposalId}/deposits: + get: + deprecated: true + summary: Query deposits + description: Query deposits by proposalId + produces: + - application/json + tags: + - Governance + parameters: + - type: string + name: proposalId + required: true + in: path + x-example: "2" + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Deposit" + 400: + description: Invalid proposal id + 500: + description: Internal Server Error + post: + deprecated: true + summary: Deposit tokens to a proposal + description: Send transaction to deposit tokens to a proposal + consumes: + - application/json + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: "2" + - description: "" + name: post_deposit_body + in: body + required: true + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + depositor: + $ref: "#/definitions/Address" + amount: + type: array + items: + $ref: "#/definitions/Coin" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid proposal id or deposit body + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /gov/proposals/{proposalId}/deposits/{depositor}: + get: + deprecated: true + summary: Query deposit + description: Query deposit by proposalId and depositor address + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: "2" + - type: string + description: Bech32 depositor address + name: depositor + required: true + in: path + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Deposit" + 400: + description: Invalid proposal id or depositor address + 404: + description: Found no deposit + 500: + description: Internal Server Error + /gov/proposals/{proposalId}/votes: + get: + deprecated: true + summary: Query voters + description: Query voters information by proposalId + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: "2" + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Vote" + 400: + description: Invalid proposal id + 500: + description: Internal Server Error + post: + deprecated: true + summary: Vote a proposal + description: Send transaction to vote a proposal + consumes: + - application/json + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: "2" + - description: valid value of `"option"` field can be `"yes"`, `"no"`, `"no_with_veto"` and `"abstain"` + name: post_vote_body + in: body + required: true + schema: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + voter: + $ref: "#/definitions/Address" + option: + type: string + example: "yes" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid proposal id or vote body + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /gov/proposals/{proposalId}/votes/{voter}: + get: + deprecated: true + summary: Query vote + description: Query vote information by proposal Id and voter address + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: "2" + - type: string + description: Bech32 voter address + name: voter + required: true + in: path + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Vote" + 400: + description: Invalid proposal id or voter address + 404: + description: Found no vote + 500: + description: Internal Server Error + /gov/proposals/{proposalId}/tally: + get: + deprecated: true + summary: Get a proposal's tally result at the current time + description: Gets a proposal's tally result at the current time. If the proposal is pending deposits (i.e status 'DepositPeriod') it returns an empty tally result. + produces: + - application/json + tags: + - Governance + parameters: + - type: string + description: proposal id + name: proposalId + required: true + in: path + x-example: "2" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/TallyResult" + 400: + description: Invalid proposal id + 500: + description: Internal Server Error + /gov/parameters/deposit: + get: + deprecated: true + summary: Query governance deposit parameters + description: Query governance deposit parameters. The max_deposit_period units are in nanoseconds. + produces: + - application/json + tags: + - Governance + responses: + 200: + description: OK + schema: + type: object + properties: + min_deposit: + type: array + items: + $ref: "#/definitions/Coin" + max_deposit_period: + type: string + example: "86400000000000" + 400: + description: is not a valid query request path + 404: + description: Found no deposit parameters + 500: + description: Internal Server Error + /gov/parameters/tallying: + get: + deprecated: true + summary: Query governance tally parameters + description: Query governance tally parameters + produces: + - application/json + tags: + - Governance + responses: + 200: + description: OK + schema: + properties: + threshold: + type: string + example: "0.5000000000" + veto: + type: string + example: "0.3340000000" + governance_penalty: + type: string + example: "0.0100000000" + 400: + description: is not a valid query request path + 404: + description: Found no tally parameters + 500: + description: Internal Server Error + /gov/parameters/voting: + get: + deprecated: true + summary: Query governance voting parameters + description: Query governance voting parameters. The voting_period units are in nanoseconds. + produces: + - application/json + tags: + - Governance + responses: + 200: + description: OK + schema: + properties: + voting_period: + type: string + example: "86400000000000" + 400: + description: is not a valid query request path + 404: + description: Found no voting parameters + 500: + description: Internal Server Error + /distribution/delegators/{delegatorAddr}/rewards: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf + get: + deprecated: true + summary: Get the total rewards balance from all delegations + description: Get the sum of all the rewards earned by delegations by a single delegator + produces: + - application/json + tags: + - Distribution + responses: + 200: + description: OK + schema: + $ref: "#/definitions/DelegatorTotalRewards" + 400: + description: Invalid delegator address + 500: + description: Internal Server Error + post: + deprecated: true + summary: Withdraw all the delegator's delegation rewards + description: Withdraw all the delegator's delegation rewards + tags: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: + properties: + base_req: + $ref: "#/definitions/BaseReq" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid delegator address + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /distribution/delegators/{delegatorAddr}/rewards/{validatorAddr}: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Query a delegation reward + description: Query a single delegation reward by a delegator + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Coin" + 400: + description: Invalid delegator address + 500: + description: Internal Server Error + post: + deprecated: true + summary: Withdraw a delegation reward + description: Withdraw a delegator's delegation reward from a single validator + tags: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: + properties: + base_req: + $ref: "#/definitions/BaseReq" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid delegator address or delegation body + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /distribution/delegators/{delegatorAddr}/withdraw_address: + parameters: + - in: path + name: delegatorAddr + description: Bech32 AccAddress of Delegator + required: true + type: string + x-example: cosmos167w96tdvmazakdwkw2u57227eduula2cy572lf + get: + deprecated: true + summary: Get the rewards withdrawal address + description: Get the delegations' rewards withdrawal address. This is the address in which the user will receive the reward funds + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/Address" + 400: + description: Invalid delegator address + 500: + description: Internal Server Error + post: + deprecated: true + summary: Replace the rewards withdrawal address + description: Replace the delegations' rewards withdrawal address for a new one. + tags: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: + properties: + base_req: + $ref: "#/definitions/BaseReq" + withdraw_address: + $ref: "#/definitions/Address" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid delegator or withdraw address + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /distribution/validators/{validatorAddr}: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Validator distribution information + description: Query the distribution information of a single validator + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + $ref: "#/definitions/ValidatorDistInfo" + 400: + description: Invalid validator address + 500: + description: Internal Server Error + /distribution/validators/{validatorAddr}/outstanding_rewards: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Fee distribution outstanding rewards of a single validator + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Coin" + 500: + description: Internal Server Error + /distribution/validators/{validatorAddr}/rewards: + parameters: + - in: path + name: validatorAddr + description: Bech32 OperatorAddress of validator + required: true + type: string + x-example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + get: + deprecated: true + summary: Commission and self-delegation rewards of a single validator + description: Query the commission and self-delegation rewards of validator. + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Coin" + 400: + description: Invalid validator address + 500: + description: Internal Server Error + post: + deprecated: true + summary: Withdraw the validator's rewards + description: Withdraw the validator's self-delegation and commissions rewards + tags: + - Distribution + consumes: + - application/json + produces: + - application/json + parameters: + - in: body + name: Withdraw request body + schema: + properties: + base_req: + $ref: "#/definitions/BaseReq" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Invalid validator address + 401: + description: Key password is wrong + 500: + description: Internal Server Error + /distribution/community_pool: + get: + deprecated: true + summary: Community pool parameters + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + type: array + items: + $ref: "#/definitions/Coin" + 500: + description: Internal Server Error + /distribution/parameters: + get: + deprecated: true + summary: Fee distribution parameters + tags: + - Distribution + produces: + - application/json + responses: + 200: + description: OK + schema: + properties: + base_proposer_reward: + type: string + bonus_proposer_reward: + type: string + community_tax: + type: string + 500: + description: Internal Server Error + /minting/parameters: + get: + deprecated: true + summary: Minting module parameters + tags: + - Mint + produces: + - application/json + responses: + 200: + description: OK + schema: + properties: + mint_denom: + type: string + inflation_rate_change: + type: string + inflation_max: + type: string + inflation_min: + type: string + goal_bonded: + type: string + blocks_per_year: + type: string + 500: + description: Internal Server Error + /minting/inflation: + get: + deprecated: true + summary: Current minting inflation value + tags: + - Mint + produces: + - application/json + responses: + 200: + description: OK + schema: + type: string + 500: + description: Internal Server Error + /minting/annual-provisions: + get: + deprecated: true + summary: Current minting annual provisions value + tags: + - Mint + produces: + - application/json + responses: + 200: + description: OK + schema: + type: string + 500: + description: Internal Server Error + /wasm/code: + post: + summary: Generate wasm store code message + tags: + - Wasm + produces: + - application/json + parameters: + - in: body + name: store code request body + schema: + $ref: "#/definitions/StoreCodeReq" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Bad request + 500: + description: Internal Server Error + get: + summary: List code info + tags: + - Wasm + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + height: + type: string + result: + $ref: "#/definitions/ListCodeReponse" + /wasm/code/{codeID}: + post: + summary: Instantiate wasm contract message + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: codeID + description: code ID you want to instantiate + required: true + type: number + - in: body + name: instantiate contract request body + schema: + $ref: "#/definitions/InstantiateContractReq" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Bad request + 500: + description: Internal Server Error + get: + summary: Get code info of the code ID + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + type: number + responses: + 200: + description: OK + schema: + type: object + properties: + height: + type: string + result: + $ref: "#/definitions/CodeInfo" + /wasm/code/{codeID}/contracts: + get: + summary: Get info about all contracts deployed with a code ID + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + type: number + responses: + 200: + description: OK + schema: + type: object + properties: + height: + type: string + result: + $ref: "#/definitions/CodeIdContracts" + /wasm/contract/{contractAddress}: + post: + summary: Execute wasm contract message + tags: + - Wasm + produces: + - application/json + parameters: + - in: path + name: contractAddress + description: contract address you want to execute + required: true + type: string + - in: body + name: execute contract request body + schema: + $ref: "#/definitions/ExecuteContractReq" + responses: + 200: + description: OK + schema: + $ref: "#/definitions/StdTx" + 400: + description: Bad request + 500: + description: Internal Server Error + /wasm/contract/{contractAddress}/code-hash: + get: + summary: Get stored contract-hash information + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to lookup + required: true + type: string + - in: query + name: query_msg + description: json formatted query msg + required: true + type: string + x-example: "{}" + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + height: + type: string + result: + type: string + /wasm/contract/{contractAddress}/query/{query}: + get: + summary: Get stored information with store key + tags: + - Wasm + parameters: + - in: path + name: contractAddress + description: contract address you want to lookup + required: true + type: string + - in: path + name: query + description: hex encoded data for the query + required: true + type: string + - in: query + name: encoding + description: encoding of the query data (only hex supported) + required: false + type: string + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + height: + type: string + result: + type: object + properties: + key: + type: string + value: + type: string + /wasm/code/{codeID}/hash: + get: + summary: Get code ID data hash + tags: + - Wasm + parameters: + - in: path + name: codeID + description: code ID you want to query + required: true + type: number + produces: + - application/json + responses: + 200: + description: OK + schema: + type: object + properties: + height: + type: string + result: + $ref: "#/definitions/CodeHash" + 404: + description: Not Found + /reg/consensus-io-exch-pubkey: + get: + tags: + - Reg + summary: Get chain public key + description: Get chain public key + operationId: consensus-io-exch-pubkey + responses: + 200: + description: OK + schema: + type: object + properties: + $ref: "#/definitions/IoExchPubkeyResponse" + "404": + description: Not Found +definitions: + CodeIdContracts: + type: object + properties: + height: + type: string + result: + type: array + items: + $ref: "#/definitions/ListContractSingle" + IoExchPubkeyResponse: + type: object + properties: + height: + type: string + result: + type: object + properties: + ioExchPubkey: + type: string + ListContractSingle: + type: object + properties: + code-id: + type: number + creator: + type: string + label: + type: string + address: + type: string + ListCodeReponse: + type: object + properties: + height: + type: string + result: + type: array + items: + $ref: "#/definitions/ListCodeSingle" + ListCodeSingle: + type: object + properties: + id: + type: number + creator: + type: string + data_hash: + type: string + source: + type: string + builder: + type: string + CodeHash: + type: object + properties: + height: + type: string + result: + type: string + CodeInfo: + type: object + properties: + code_hash: + type: string + creator: + type: string + StoreCodeReq: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + wasm_bytes: + type: string + example: "Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH" + InstantiateContractReq: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + init_coins: + type: array + items: + $ref: "#/definitions/Coin" + init_msg: + type: string + description: json formatted string + example: "{}" + ExecuteContractReq: + type: object + properties: + base_req: + $ref: "#/definitions/BaseReq" + coins: + type: array + items: + $ref: "#/definitions/Coin" + exec_msg: + type: string + example: "{}" + CheckTxResult: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + $ref: "#/definitions/KVPair" + example: + code: 0 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + DeliverTxResult: + type: object + properties: + code: + type: integer + data: + type: string + gas_used: + type: integer + gas_wanted: + type: integer + info: + type: string + log: + type: string + tags: + type: array + items: + $ref: "#/definitions/KVPair" + example: + code: 5 + data: data + log: log + gas_used: 5000 + gas_wanted: 10000 + info: info + tags: + - "" + - "" + BroadcastTxCommitResult: + type: object + properties: + check_tx: + $ref: "#/definitions/CheckTxResult" + deliver_tx: + $ref: "#/definitions/DeliverTxResult" + hash: + $ref: "#/definitions/Hash" + height: + type: integer + KVPair: + type: object + properties: + key: + type: string + value: + type: string + Msg: + type: string + Address: + type: string + description: bech32 encoded address + example: cosmos1depk54cuajgkzea6zpgkq36tnjwdzv4afc3d27 + ValidatorAddress: + type: string + description: bech32 encoded address + example: cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l + Coin: + type: object + properties: + denom: + type: string + example: stake + amount: + type: string + example: "50" + Hash: + type: string + example: EE5F3404034C524501629B56E0DDC38FAD651F04 + TxQuery: + type: object + properties: + hash: + type: string + example: "D085138D913993919295FF4B0A9107F1F2CDE0D37A87CE0644E217CBF3B49656" + height: + type: number + example: 368 + tx: + $ref: "#/definitions/StdTx" + result: + type: object + properties: + log: + type: string + gas_wanted: + type: string + example: "200000" + gas_used: + type: string + example: "26354" + tags: + type: array + items: + $ref: "#/definitions/KVPair" + PaginatedQueryTxs: + type: object + properties: + total_count: + type: number + example: 1 + count: + type: number + example: 1 + page_number: + type: number + example: 1 + page_total: + type: number + example: 1 + limit: + type: number + example: 30 + txs: + type: array + items: + $ref: "#/definitions/TxQuery" + StdTx: + type: object + properties: + msg: + type: array + items: + $ref: "#/definitions/Msg" + fee: + type: object + properties: + gas: + type: string + amount: + type: array + items: + $ref: "#/definitions/Coin" + memo: + type: string + signature: + type: object + properties: + signature: + type: string + example: MEUCIQD02fsDPra8MtbRsyB1w7bqTM55Wu138zQbFcWx4+CFyAIge5WNPfKIuvzBZ69MyqHsqD8S1IwiEp+iUb6VSdtlpgY= + pub_key: + type: object + properties: + type: + type: string + example: "tendermint/PubKeySecp256k1" + value: + type: string + example: "Avz04VhtKJh8ACCVzlI8aTosGy0ikFXKIVHQ3jKMrosH" + account_number: + type: string + example: "0" + sequence: + type: string + example: "0" + BlockID: + type: object + properties: + hash: + $ref: "#/definitions/Hash" + parts: + type: object + properties: + total: + type: number + example: 0 + hash: + $ref: "#/definitions/Hash" + BlockHeader: + type: object + properties: + chain_id: + type: string + example: cosmoshub-2 + height: + type: number + example: 1 + time: + type: string + example: "2017-12-30T05:53:09.287+01:00" + num_txs: + type: number + example: 0 + last_block_id: + $ref: "#/definitions/BlockID" + total_txs: + type: number + example: 35 + last_commit_hash: + $ref: "#/definitions/Hash" + data_hash: + $ref: "#/definitions/Hash" + validators_hash: + $ref: "#/definitions/Hash" + next_validators_hash: + $ref: "#/definitions/Hash" + consensus_hash: + $ref: "#/definitions/Hash" + app_hash: + $ref: "#/definitions/Hash" + last_results_hash: + $ref: "#/definitions/Hash" + evidence_hash: + $ref: "#/definitions/Hash" + proposer_address: + $ref: "#/definitions/Address" + version: + type: object + properties: + block: + type: string + example: 10 + app: + type: string + example: 0 + Block: + type: object + properties: + header: + $ref: "#/definitions/BlockHeader" + txs: + type: array + items: + type: string + evidence: + type: array + items: + type: string + last_commit: + type: object + properties: + block_id: + $ref: "#/definitions/BlockID" + precommits: + type: array + items: + type: object + properties: + validator_address: + type: string + validator_index: + type: string + example: "0" + height: + type: string + example: "0" + round: + type: string + example: "0" + timestamp: + type: string + example: "2017-12-30T05:53:09.287+01:00" + type: + type: number + example: 2 + block_id: + $ref: "#/definitions/BlockID" + signature: + type: string + example: "7uTC74QlknqYWEwg7Vn6M8Om7FuZ0EO4bjvuj6rwH1mTUJrRuMMZvAAqT9VjNgP0RA/TDp6u/92AqrZfXJSpBQ==" + BlockQuery: + type: object + properties: + block_meta: + type: object + properties: + header: + $ref: "#/definitions/BlockHeader" + block_id: + $ref: "#/definitions/BlockID" + block: + $ref: "#/definitions/Block" + DelegationDelegatorReward: + type: object + properties: + validator_address: + $ref: "#/definitions/ValidatorAddress" + reward: + type: array + items: + $ref: "#/definitions/Coin" + DelegatorTotalRewards: + type: object + properties: + rewards: + type: array + items: + $ref: "#/definitions/DelegationDelegatorReward" + total: + type: array + items: + $ref: "#/definitions/Coin" + BaseReq: + type: object + properties: + from: + type: string + example: "cosmos1g9ahr6xhht5rmqven628nklxluzyv8z9jqjcmc" + description: Sender address or Keybase name to generate a transaction + memo: + type: string + example: "Sent via Cosmos Voyager 🚀" + chain_id: + type: string + example: "Cosmos-Hub" + account_number: + type: string + example: "0" + sequence: + type: string + example: "1" + gas: + type: string + example: "200000" + gas_adjustment: + type: string + example: "1.2" + fees: + type: array + items: + $ref: "#/definitions/Coin" + simulate: + type: boolean + example: false + description: Estimate gas for a transaction (cannot be used in conjunction with generate_only) + TendermintValidator: + type: object + properties: + address: + $ref: "#/definitions/ValidatorAddress" + pub_key: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + voting_power: + type: string + example: "1000" + proposer_priority: + type: string + example: "1000" + TextProposal: + type: object + properties: + proposal_id: + type: integer + title: + type: string + description: + type: string + proposal_type: + type: string + proposal_status: + type: string + final_tally_result: + $ref: "#/definitions/TallyResult" + submit_time: + type: string + total_deposit: + type: array + items: + $ref: "#/definitions/Coin" + voting_start_time: + type: string + Proposer: + type: object + properties: + proposal_id: + type: string + proposer: + type: string + Deposit: + type: object + properties: + amount: + type: array + items: + $ref: "#/definitions/Coin" + proposal_id: + type: string + depositor: + $ref: "#/definitions/Address" + TallyResult: + type: object + properties: + yes: + type: string + example: "0.0000000000" + abstain: + type: string + example: "0.0000000000" + no: + type: string + example: "0.0000000000" + no_with_veto: + type: string + example: "0.0000000000" + Vote: + type: object + properties: + voter: + type: string + proposal_id: + type: string + option: + type: string + Validator: + type: object + properties: + operator_address: + $ref: "#/definitions/ValidatorAddress" + consensus_pubkey: + type: string + example: cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf + jailed: + type: boolean + status: + type: integer + tokens: + type: string + delegator_shares: + type: string + description: + type: object + properties: + moniker: + type: string + identity: + type: string + website: + type: string + security_contact: + type: string + details: + type: string + bond_height: + type: string + example: "0" + bond_intra_tx_counter: + type: integer + example: 0 + unbonding_height: + type: string + example: "0" + unbonding_time: + type: string + example: "1970-01-01T00:00:00Z" + commission: + type: object + properties: + rate: + type: string + example: "0" + max_rate: + type: string + example: "0" + max_change_rate: + type: string + example: "0" + update_time: + type: string + example: "1970-01-01T00:00:00Z" + Delegation: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + shares: + type: string + balance: + $ref: "#/definitions/Coin" + UnbondingDelegationPair: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + entries: + type: array + items: + $ref: "#/definitions/UnbondingEntries" + UnbondingEntries: + type: object + properties: + initial_balance: + type: string + balance: + type: string + creation_height: + type: string + min_time: + type: string + UnbondingDelegation: + type: object + properties: + delegator_address: + type: string + validator_address: + type: string + initial_balance: + type: string + balance: + type: string + creation_height: + type: integer + min_time: + type: integer + Redelegation: + type: object + properties: + delegator_address: + type: string + validator_src_address: + type: string + validator_dst_address: + type: string + entries: + type: array + items: + $ref: "#/definitions/Redelegation" + RedelegationEntry: + type: object + properties: + creation_height: + type: integer + completion_time: + type: integer + initial_balance: + type: string + balance: + type: string + shares_dst: + type: string + ValidatorDistInfo: + type: object + properties: + operator_address: + $ref: "#/definitions/ValidatorAddress" + self_bond_rewards: + type: array + items: + $ref: "#/definitions/Coin" + val_commission: + type: array + items: + $ref: "#/definitions/Coin" + PublicKey: + type: object + properties: + type: + type: string + value: + type: string + SigningInfo: + type: object + properties: + start_height: + type: string + index_offset: + type: string + jailed_until: + type: string + missed_blocks_counter: + type: string + ParamChange: + type: object + properties: + subspace: + type: string + example: "staking" + key: + type: string + example: "MaxValidators" + subkey: + type: string + example: "" + value: + type: object + Supply: + type: object + properties: + total: + type: array + items: + $ref: "#/definitions/Coin" diff --git a/client/docs/yarn.lock b/client/docs/yarn.lock new file mode 100644 index 000000000..303c05ede --- /dev/null +++ b/client/docs/yarn.lock @@ -0,0 +1,1797 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@apidevtools/json-schema-ref-parser@9.0.9", "@apidevtools/json-schema-ref-parser@^9.0.6": + version "9.0.9" + resolved "https://registry.yarnpkg.com/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz#d720f9256e3609621280584f2b47ae165359268b" + integrity sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w== + dependencies: + "@jsdevtools/ono" "^7.1.3" + "@types/json-schema" "^7.0.6" + call-me-maybe "^1.0.1" + js-yaml "^4.1.0" + +"@apidevtools/openapi-schemas@^2.0.4": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@apidevtools/openapi-schemas/-/openapi-schemas-2.1.0.tgz#9fa08017fb59d80538812f03fc7cac5992caaa17" + integrity sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ== + +"@apidevtools/swagger-methods@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz#b789a362e055b0340d04712eafe7027ddc1ac267" + integrity sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg== + +"@apidevtools/swagger-parser@10.0.3": + version "10.0.3" + resolved "https://registry.yarnpkg.com/@apidevtools/swagger-parser/-/swagger-parser-10.0.3.tgz#32057ae99487872c4dd96b314a1ab4b95d89eaf5" + integrity sha512-sNiLY51vZOmSPFZA5TF35KZ2HbgYklQnTSDnkghamzLb3EkNtcQnrBQEj5AOCxHpTtXpqMCRM1CrmV2rG6nw4g== + dependencies: + "@apidevtools/json-schema-ref-parser" "^9.0.6" + "@apidevtools/openapi-schemas" "^2.0.4" + "@apidevtools/swagger-methods" "^3.0.2" + "@jsdevtools/ono" "^7.1.3" + call-me-maybe "^1.0.1" + z-schema "^5.0.1" + +"@babel/code-frame@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" + integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== + dependencies: + "@babel/highlight" "^7.16.7" + +"@babel/generator@^7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.0.tgz#46d28e8a18fc737b028efb25ab105d74473af43f" + integrity sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg== + dependencies: + "@babel/types" "^7.18.0" + "@jridgewell/gen-mapping" "^0.3.0" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.16.0": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862" + integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-environment-visitor@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz#ff484094a839bde9d89cd63cba017d7aae80ecd7" + integrity sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-function-name@^7.17.9": + version "7.17.9" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12" + integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg== + dependencies: + "@babel/template" "^7.16.7" + "@babel/types" "^7.17.0" + +"@babel/helper-hoist-variables@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246" + integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.0": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" + integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-split-export-declaration@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b" + integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw== + dependencies: + "@babel/types" "^7.16.7" + +"@babel/helper-validator-identifier@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" + integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== + +"@babel/highlight@^7.16.7": + version "7.17.12" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351" + integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.16.7", "@babel/parser@^7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.0.tgz#10a8d4e656bc01128d299a787aa006ce1a91e112" + integrity sha512-AqDccGC+m5O/iUStSJy3DGRIUFu7WbY/CppZYwrEUB4N0tZlnI8CSTsgL7v5fHVFmUbRv2sd+yy27o8Ydt4MGg== + +"@babel/runtime@^7.17.8": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.0.tgz#6d77142a19cb6088f0af662af1ada37a604d34ae" + integrity sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.16.7": + version "7.16.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" + integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/parser" "^7.16.7" + "@babel/types" "^7.16.7" + +"@babel/traverse@^7.4.5": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.0.tgz#0e5ec6db098660b2372dd63d096bf484e32d27ba" + integrity sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw== + dependencies: + "@babel/code-frame" "^7.16.7" + "@babel/generator" "^7.18.0" + "@babel/helper-environment-visitor" "^7.16.7" + "@babel/helper-function-name" "^7.17.9" + "@babel/helper-hoist-variables" "^7.16.7" + "@babel/helper-split-export-declaration" "^7.16.7" + "@babel/parser" "^7.18.0" + "@babel/types" "^7.18.0" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.18.0": + version "7.18.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.0.tgz#ef523ea349722849cb4bf806e9342ede4d071553" + integrity sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw== + dependencies: + "@babel/helper-validator-identifier" "^7.16.7" + to-fast-properties "^2.0.0" + +"@emotion/is-prop-valid@^1.1.0": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz#34ad6e98e871aa6f7a20469b602911b8b11b3a95" + integrity sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ== + dependencies: + "@emotion/memoize" "^0.7.4" + +"@emotion/memoize@^0.7.4": + version "0.7.5" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50" + integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ== + +"@emotion/stylis@^0.8.4": + version "0.8.5" + resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" + integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== + +"@emotion/unitless@^0.7.4": + version "0.7.5" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" + integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== + +"@exodus/schemasafe@^1.0.0-rc.2": + version "1.0.0-rc.6" + resolved "https://registry.yarnpkg.com/@exodus/schemasafe/-/schemasafe-1.0.0-rc.6.tgz#7985f681564cff4ffaebb5896eb4be20af3aae7a" + integrity sha512-dDnQizD94EdBwEj/fh3zPRa/HWCS9O5au2PuHhZBbuM3xWHxuaKzPBOEWze7Nn0xW68MIpZ7Xdyn1CoCpjKCuQ== + +"@jridgewell/gen-mapping@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9" + integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.0.3": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe" + integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA== + +"@jridgewell/set-array@^1.0.0": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea" + integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.13" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c" + integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.13" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea" + integrity sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jsdevtools/ono@^7.1.3": + version "7.1.3" + resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.3.tgz#9df03bbd7c696a5c58885c34aa06da41c8543796" + integrity sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg== + +"@redocly/ajv@^8.6.4": + version "8.6.4" + resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.6.4.tgz#94053e7a9d4146d1a4feacd3813892873f229a85" + integrity sha512-y9qNj0//tZtWB2jfXNK3BX18BSBp9zNR7KE7lMysVHwbZtY392OJCjm6Rb/h4UHH2r1AqjNEHFD6bRn+DqU9Mw== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +"@redocly/openapi-core@^1.0.0-beta.97": + version "1.0.0-beta.98" + resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.0.0-beta.98.tgz#3dfdd9b84e16b4c2c686914dd1ec53ef9135b1bd" + integrity sha512-lrWCpyaxMYaw0x4F6zP2FosGJGAogrFBz3VNDD3OsaSlC3iQZYIOBI2UNBqVtdnDZSzfTLIdiQtEoXfKzlD2qw== + dependencies: + "@redocly/ajv" "^8.6.4" + "@types/node" "^14.11.8" + colorette "^1.2.0" + js-levenshtein "^1.1.6" + js-yaml "^4.1.0" + lodash.isequal "^4.5.0" + minimatch "^5.0.1" + node-fetch "^2.6.1" + pluralize "^8.0.0" + yaml-ast-parser "0.0.43" + +"@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/node@^14.11.8": + version "14.18.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.18.tgz#5c9503030df484ccffcbb935ea9a9e1d6fad1a20" + integrity sha512-B9EoJFjhqcQ9OmQrNorItO+OwEOORNn3S31WuiHvZY/dm9ajkB7AKD/8toessEtHHNL+58jofbq7hMMY9v4yig== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +asn1.js@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" + +assert@^1.1.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + dependencies: + object-assign "^4.1.1" + util "0.10.3" + +"babel-plugin-styled-components@>= 1.12.0": + version "2.0.7" + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz#c81ef34b713f9da2b7d3f5550df0d1e19e798086" + integrity sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-module-imports" "^7.16.0" + babel-plugin-syntax-jsx "^6.18.0" + lodash "^4.17.11" + picomatch "^2.3.0" + +babel-plugin-syntax-jsx@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + integrity sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.0.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.0.1, brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + dependencies: + bn.js "^5.0.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" + integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== + dependencies: + bn.js "^5.1.1" + browserify-rsa "^4.0.1" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.3" + inherits "^2.0.4" + parse-asn1 "^5.1.5" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== + +buffer@^4.3.0: + version "4.9.2" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== + +call-me-maybe@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" + integrity sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw== + +camelize@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" + integrity sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg== + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chokidar@^3.5.1: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +classnames@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" + integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clsx@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" + integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colorette@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== + +commander@^2.20.3: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +console-browserify@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +create-ecdh@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + dependencies: + bn.js "^4.1.0" + elliptic "^6.5.3" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +css-color-keywords@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" + integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU= + +css-to-react-native@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756" + integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ== + dependencies: + camelize "^1.0.0" + css-color-keywords "^1.0.0" + postcss-value-parser "^4.0.2" + +debug@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decko@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decko/-/decko-1.2.0.tgz#fd43c735e967b8013306884a56fbe665996b6817" + integrity sha1-/UPHNelnuAEzBohKVvvmZZlraBc= + +des.js@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" + integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + +dompurify@^2.2.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.8.tgz#224fe9ae57d7ebd9a1ae1ac18c1c1ca3f532226f" + integrity sha512-eVhaWoVibIzqdGYjwsBWodIQIaXFSB+cKDf4cfxLMsK0xiud6SE+/WCVx/Xw/UwQsa4cS3T2eITcdtmTg2UKcw== + +elliptic@^6.5.3: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +es6-promise@^3.2.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" + integrity sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM= + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +eventemitter3@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +fast-deep-equal@^3.1.1: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-safe-stringify@^2.0.7: + version "2.1.1" + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" + integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +foreach@^2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.6.tgz#87bcc8a1a0e74000ff2bf9802110708cfb02eb6e" + integrity sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +handlebars@^4.7.7: + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoist-non-react-statics@^3.0.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +http2-client@^1.2.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/http2-client/-/http2-client-1.3.5.tgz#20c9dc909e3cc98284dd20af2432c524086df181" + integrity sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA== + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + +ieee754@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +js-levenshtein@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-pointer@0.6.2, json-pointer@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/json-pointer/-/json-pointer-0.6.2.tgz#f97bd7550be5e9ea901f8c9264c9d436a22a93cd" + integrity sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw== + dependencies: + foreach "^2.0.4" + +json-schema-ref-parser@^9.0.9: + version "9.0.9" + resolved "https://registry.yarnpkg.com/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz#66ea538e7450b12af342fa3d5b8458bc1e1e013f" + integrity sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q== + dependencies: + "@apidevtools/json-schema-ref-parser" "9.0.9" + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= + +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= + +lodash@^4.17.11, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lunr@^2.3.9: + version "2.3.9" + resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" + integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== + +mark.js@^8.11.1: + version "8.11.1" + resolved "https://registry.yarnpkg.com/mark.js/-/mark.js-8.11.1.tgz#180f1f9ebef8b0e638e4166ad52db879beb2ffc5" + integrity sha1-GA8fnr74sOY45BZq1S24eb6y/8U= + +marked@^4.0.15: + version "4.0.16" + resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.16.tgz#9ec18fc1a723032eb28666100344d9428cf7a264" + integrity sha512-wahonIQ5Jnyatt2fn8KqF/nIqZM8mh3oRu2+l5EANGMhu6RFjiSG52QNE2eWzFMI94HqYSgN184NurgNG6CztA== + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.5: + version "1.2.6" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mobx-react-lite@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/mobx-react-lite/-/mobx-react-lite-3.4.0.tgz#d59156a96889cdadad751e5e4dab95f28926dfff" + integrity sha512-bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ== + +mobx-react@^7.2.0: + version "7.5.0" + resolved "https://registry.yarnpkg.com/mobx-react/-/mobx-react-7.5.0.tgz#8da71f8d3c96409cf178112503ec50467e5cea70" + integrity sha512-riHu0XZJA6f64L1iXZoAaDjVt6suYoy8I2HIfuz2tX3O4FFaAe4lVA2CoObttmUQTTFPM7j3Df6T4re0cHkghQ== + dependencies: + mobx-react-lite "^3.4.0" + +mobx@^6.3.2: + version "6.6.0" + resolved "https://registry.yarnpkg.com/mobx/-/mobx-6.6.0.tgz#617ca1f3b745a781fa89c5eb94a773e3cbeff8ae" + integrity sha512-MNTKevLH/6DShLZcmSL351+JgiJPO56A4GUpoiDQ3/yZ0mAtclNLdHK9q4BcQhibx8/JSDupfTpbX2NZPemlRg== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +neo-async@^2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +node-fetch-h2@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz#c6188325f9bd3d834020bf0f2d6dc17ced2241ac" + integrity sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg== + dependencies: + http2-client "^1.2.5" + +node-fetch@^2.6.1: + version "2.6.7" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-libs-browser@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" + integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.1" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "^1.0.1" + +node-readfiles@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/node-readfiles/-/node-readfiles-0.2.0.tgz#dbbd4af12134e2e635c245ef93ffcf6f60673a5d" + integrity sha1-271K8SE04uY1wkXvk//Pb2BnOl0= + dependencies: + es6-promise "^3.2.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +oas-kit-common@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/oas-kit-common/-/oas-kit-common-1.0.8.tgz#6d8cacf6e9097967a4c7ea8bcbcbd77018e1f535" + integrity sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ== + dependencies: + fast-safe-stringify "^2.0.7" + +oas-linter@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/oas-linter/-/oas-linter-3.2.2.tgz#ab6a33736313490659035ca6802dc4b35d48aa1e" + integrity sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ== + dependencies: + "@exodus/schemasafe" "^1.0.0-rc.2" + should "^13.2.1" + yaml "^1.10.0" + +oas-resolver@^2.5.6: + version "2.5.6" + resolved "https://registry.yarnpkg.com/oas-resolver/-/oas-resolver-2.5.6.tgz#10430569cb7daca56115c915e611ebc5515c561b" + integrity sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ== + dependencies: + node-fetch-h2 "^2.3.0" + oas-kit-common "^1.0.8" + reftools "^1.1.9" + yaml "^1.10.0" + yargs "^17.0.1" + +oas-schema-walker@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz#74c3cd47b70ff8e0b19adada14455b5d3ac38a22" + integrity sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ== + +oas-validator@^5.0.8: + version "5.0.8" + resolved "https://registry.yarnpkg.com/oas-validator/-/oas-validator-5.0.8.tgz#387e90df7cafa2d3ffc83b5fb976052b87e73c28" + integrity sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw== + dependencies: + call-me-maybe "^1.0.1" + oas-kit-common "^1.0.8" + oas-linter "^3.2.2" + oas-resolver "^2.5.6" + oas-schema-walker "^1.1.5" + reftools "^1.1.9" + should "^13.2.1" + yaml "^1.10.0" + +object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +openapi-sampler@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/openapi-sampler/-/openapi-sampler-1.2.3.tgz#753b69c4f45b54682469f2343399a10bc60ec993" + integrity sha512-dH2QYXqakorV5dxkP/f1BV3Ku4yNn21YmBsqJunnyrHLw7mnCNZZldftgrEpv/66b1m5oaUAmiJoJN+FqBEkJg== + dependencies: + "@types/json-schema" "^7.0.7" + json-pointer "0.6.2" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + +pako@~1.0.5: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parse-asn1@^5.0.0, parse-asn1@^5.1.5: + version "5.1.6" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" + integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== + dependencies: + asn1.js "^5.2.0" + browserify-aes "^1.0.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +path-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +pbkdf2@^3.0.3: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +perfect-scrollbar@^1.5.1: + version "1.5.5" + resolved "https://registry.yarnpkg.com/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz#41a211a2fb52a7191eff301432134ea47052b27f" + integrity sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pluralize@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" + integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== + +polished@^4.1.3: + version "4.2.2" + resolved "https://registry.yarnpkg.com/polished/-/polished-4.2.2.tgz#2529bb7c3198945373c52e34618c8fe7b1aa84d1" + integrity sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ== + dependencies: + "@babel/runtime" "^7.17.8" + +postcss-value-parser@^4.0.2: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +prismjs@^1.27.0: + version "1.28.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.28.0.tgz#0d8f561fa0f7cf6ebca901747828b149147044b6" + integrity sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +prop-types@^15.5.0, prop-types@^15.7.2: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +react-dom@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" + integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.2" + +react-is@^16.13.1, react-is@^16.7.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-tabs@^3.2.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/react-tabs/-/react-tabs-3.2.3.tgz#ccbb3e1241ad3f601047305c75db661239977f2f" + integrity sha512-jx325RhRVnS9DdFbeF511z0T0WEqEoMl1uCE3LoZ6VaZZm7ytatxbum0B8bCTmaiV0KsU+4TtLGTGevCic7SWg== + dependencies: + clsx "^1.1.0" + prop-types "^15.5.0" + +react@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +readable-stream@^2.0.2, readable-stream@^2.3.3, readable-stream@^2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +redoc-cli@0.13.14: + version "0.13.14" + resolved "https://registry.yarnpkg.com/redoc-cli/-/redoc-cli-0.13.14.tgz#5d580ae5782cca4271ff5d5134328688dfcae530" + integrity sha512-QPiVRdz0+CvLmjPzaIAz1RttpYUOSeUbep/WxLXaalu1Z9jeSjsI0yI2+HC3sh/tEuLzaHQ2bvE7mvGq0aTbWA== + dependencies: + chokidar "^3.5.1" + handlebars "^4.7.7" + isarray "^2.0.5" + mkdirp "^1.0.4" + mobx "^6.3.2" + node-libs-browser "^2.2.1" + react "^17.0.1" + react-dom "^17.0.1" + redoc "2.0.0-rc.70" + styled-components "^5.3.0" + yargs "^17.3.1" + +redoc@2.0.0-rc.70: + version "2.0.0-rc.70" + resolved "https://registry.yarnpkg.com/redoc/-/redoc-2.0.0-rc.70.tgz#24a64f1fa012c104479bc85445bc01662a4d92b4" + integrity sha512-sdmZ8FX4JjF50hTSjHJ64Ccu9Ewa2O8+Fo8pCLg8GHFrbaFJ2E+KBDK9pGuAqNi61fm3Z5c91Ur7zqpITkUpNg== + dependencies: + "@redocly/openapi-core" "^1.0.0-beta.97" + classnames "^2.3.1" + decko "^1.2.0" + dompurify "^2.2.8" + eventemitter3 "^4.0.7" + json-pointer "^0.6.2" + lunr "^2.3.9" + mark.js "^8.11.1" + marked "^4.0.15" + mobx-react "^7.2.0" + openapi-sampler "^1.2.3" + path-browserify "^1.0.1" + perfect-scrollbar "^1.5.1" + polished "^4.1.3" + prismjs "^1.27.0" + prop-types "^15.7.2" + react-tabs "^3.2.2" + slugify "~1.4.7" + stickyfill "^1.1.1" + style-loader "^3.3.1" + swagger2openapi "^7.0.6" + url-template "^2.0.8" + +reftools@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/reftools/-/reftools-1.1.9.tgz#e16e19f662ccd4648605312c06d34e5da3a2b77e" + integrity sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w== + +regenerator-runtime@^0.13.4: + version "0.13.9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safer-buffer@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +scheduler@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shallowequal@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" + integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== + +should-equal@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-2.0.0.tgz#6072cf83047360867e68e98b09d71143d04ee0c3" + integrity sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA== + dependencies: + should-type "^1.4.0" + +should-format@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1" + integrity sha1-m/yPdPo5IFxT04w01xcwPidxJPE= + dependencies: + should-type "^1.3.0" + should-type-adaptors "^1.0.1" + +should-type-adaptors@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz#401e7f33b5533033944d5cd8bf2b65027792e27a" + integrity sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA== + dependencies: + should-type "^1.3.0" + should-util "^1.0.0" + +should-type@^1.3.0, should-type@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3" + integrity sha1-B1bYzoRt/QmEOmlHcZ36DUz/XPM= + +should-util@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.1.tgz#fb0d71338f532a3a149213639e2d32cbea8bcb28" + integrity sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g== + +should@^13.2.1: + version "13.2.3" + resolved "https://registry.yarnpkg.com/should/-/should-13.2.3.tgz#96d8e5acf3e97b49d89b51feaa5ae8d07ef58f10" + integrity sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ== + dependencies: + should-equal "^2.0.0" + should-format "^3.0.3" + should-type "^1.4.0" + should-type-adaptors "^1.0.1" + should-util "^1.0.0" + +slugify@~1.4.7: + version "1.4.7" + resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.4.7.tgz#e42359d505afd84a44513280868e31202a79a628" + integrity sha512-tf+h5W1IrjNm/9rKKj0JU2MDMruiopx0jjVA5zCdBtcGjfp0+c5rHw/zADLC3IeKlGHtVbHtpfzvYA0OYT+HKg== + +source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +stickyfill@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stickyfill/-/stickyfill-1.1.1.tgz#39413fee9d025c74a7e59ceecb23784cc0f17f02" + integrity sha1-OUE/7p0CXHSn5ZzuyyN4TMDxfwI= + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +style-loader@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575" + integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ== + +styled-components@^5.3.0: + version "5.3.5" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.5.tgz#a750a398d01f1ca73af16a241dec3da6deae5ec4" + integrity sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/traverse" "^7.4.5" + "@emotion/is-prop-valid" "^1.1.0" + "@emotion/stylis" "^0.8.4" + "@emotion/unitless" "^0.7.4" + babel-plugin-styled-components ">= 1.12.0" + css-to-react-native "^3.0.0" + hoist-non-react-statics "^3.0.0" + shallowequal "^1.1.0" + supports-color "^5.5.0" + +supports-color@^5.3.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +swagger-combine@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/swagger-combine/-/swagger-combine-1.4.0.tgz#f66ccc5fe26ff3a3fb22d986d598dfcc0e0bc956" + integrity sha512-nVQPzSGixSJ6U3BSTBYswIbamumNCz1ZXPqnCrXYz6BHlSeOtfGKuyZ+sAWtpOepUFuOu93x+VOIzAxLKK6xYw== + dependencies: + call-me-maybe "^1.0.1" + js-yaml "^4.1.0" + json-schema-ref-parser "^9.0.9" + lodash "^4.17.21" + minimist "^1.2.5" + swagger-parser "^10.0.3" + traverse "^0.6.6" + url-join "^4.0.1" + +swagger-parser@^10.0.3: + version "10.0.3" + resolved "https://registry.yarnpkg.com/swagger-parser/-/swagger-parser-10.0.3.tgz#04cb01c18c3ac192b41161c77f81e79309135d03" + integrity sha512-nF7oMeL4KypldrQhac8RyHerJeGPD1p2xDh900GPvc+Nk7nWP6jX2FcC7WmkinMoAmoO774+AFXcWsW8gMWEIg== + dependencies: + "@apidevtools/swagger-parser" "10.0.3" + +swagger2openapi@7.0.8, swagger2openapi@^7.0.6: + version "7.0.8" + resolved "https://registry.yarnpkg.com/swagger2openapi/-/swagger2openapi-7.0.8.tgz#12c88d5de776cb1cbba758994930f40ad0afac59" + integrity sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g== + dependencies: + call-me-maybe "^1.0.1" + node-fetch "^2.6.1" + node-fetch-h2 "^2.3.0" + node-readfiles "^0.2.0" + oas-kit-common "^1.0.8" + oas-resolver "^2.5.6" + oas-schema-walker "^1.1.5" + oas-validator "^5.0.8" + reftools "^1.1.9" + yaml "^1.10.0" + yargs "^17.0.1" + +timers-browserify@^2.0.4: + version "2.0.12" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" + integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== + dependencies: + setimmediate "^1.0.4" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= + +traverse@^0.6.6: + version "0.6.6" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" + integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + +uglify-js@^3.1.4: + version "3.15.5" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.15.5.tgz#2b10f9e0bfb3f5c15a8e8404393b6361eaeb33b3" + integrity sha512-hNM5q5GbBRB5xB+PMqVRcgYe4c8jbyZ1pzZhS6jbq54/4F2gFK869ZheiE5A8/t+W5jtTNpWef/5Q9zk639FNQ== + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-join@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" + integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== + +url-template@^2.0.8: + version "2.0.8" + resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" + integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + dependencies: + inherits "2.0.3" + +validator@^13.7.0: + version "13.7.0" + resolved "https://registry.yarnpkg.com/validator/-/validator-13.7.0.tgz#4f9658ba13ba8f3d82ee881d3516489ea85c0857" + integrity sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw== + +vm-browserify@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +xtend@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yaml-ast-parser@0.0.43: + version "0.0.43" + resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" + integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^21.0.0: + version "21.0.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" + integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== + +yargs@^17.0.1, yargs@^17.3.1: + version "17.5.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" + integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +z-schema@^5.0.1: + version "5.0.3" + resolved "https://registry.yarnpkg.com/z-schema/-/z-schema-5.0.3.tgz#68fafb9b735fc7f3c89eabb3e5a6353b4d7b4935" + integrity sha512-sGvEcBOTNum68x9jCpCVGPFJ6mWnkD0YxOcddDlJHRx3tKdB2q8pCHExMVZo/AV/6geuVJXG7hljDaWG8+5GDw== + dependencies: + lodash.get "^4.4.2" + lodash.isequal "^4.5.0" + validator "^13.7.0" + optionalDependencies: + commander "^2.20.3" diff --git a/deployment/deb/control b/deployment/deb/control index ee9f3562e..278554883 100644 --- a/deployment/deb/control +++ b/deployment/deb/control @@ -1,9 +1,11 @@ Package: secretnetwork Priority: optional Architecture: amd64 -Homepage: https://github.com/enigmampc/SecretNetwork -Maintainer: https://github.com/enigmampc +Homepage: https://github.com/scrtlabs/SecretNetwork +Maintainer: https://github.com/scrtlabs Provides: secretnetwork Conflicts: secretnetwork Replaces: secretnetwork -Description: The Secret Network +Depends: libsnappy1v5 +Description: More Privacy. Limitless Possibilities. + Secret Network is the first blockchain with customizable privacy. You get to choose what you share, with whom, and how. This protects users, and empowers developers to build a better Web3. Visit diff --git a/deployment/docker/README.md b/deployment/docker/README.md new file mode 100644 index 000000000..25a0b5ac9 --- /dev/null +++ b/deployment/docker/README.md @@ -0,0 +1,3 @@ +## Docker scripts and files + +This folder contains mostly dev-related scripts. \ No newline at end of file diff --git a/deployment/docker/config/local/app.toml b/deployment/docker/config/local/app.toml index 9ef622953..929ba064b 100644 --- a/deployment/docker/config/local/app.toml +++ b/deployment/docker/config/local/app.toml @@ -8,7 +8,7 @@ # The minimum gas prices a validator is willing to accept for processing a # transaction. A transaction's fees must meet the minimum of any denomination # specified in this config (e.g. 0.25token1;0.0001token2). -minimum-gas-prices = "0.25uscrt" +minimum-gas-prices = "0.0125uscrt" # default: the last 100 states are kept in addition to every 500th state; pruning at 10 block intervals # nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node) diff --git a/deployment/docker/docker-compose-mainnet.yaml b/deployment/docker/docker-compose-mainnet.yaml new file mode 100644 index 000000000..fc1d6702c --- /dev/null +++ b/deployment/docker/docker-compose-mainnet.yaml @@ -0,0 +1,42 @@ +version: '3.4' + +services: + aesm: + image: fortanix/aesmd:2.13.103.1-1 + devices: + - /dev/sgx/enclave + - /dev/sgx/provision + volumes: + - /tmp/aesmd:/var/run/aesmd + stdin_open: true + tty: true + + node: + image: ghcr.io/scrtlabs/secret-network-node:1.3.0-docker + devices: + - /dev/sgx/enclave + - /dev/sgx/provision + volumes: + - /tmp/aesmd:/var/run/aesmd + - /tmp/.secretd:/root/.secretd + - /tmp/.secretcli:/root/.secretcli + - /tmp/.sgx_secrets:/opt/secret/.sgx_secrets + environment: + - SGX_MODE=HW + - MONIKER + - CHAINID + - STATE_SYNC1 + - STATE_SYNC2 + - REGISTRATION_SERVICE + + healthcheck: + test: ["CMD", "curl", "-f", "http://127.0.0.1:26657"] + interval: 1m30s + timeout: 10s + retries: 3 + start_period: 40s + ports: + - "26656:26656" + - "26657:26657" + - "1317:1317" + - "9091:9091" \ No newline at end of file diff --git a/deployment/docker/node/mainnet_node.sh b/deployment/docker/node/mainnet_node.sh new file mode 100644 index 000000000..a51e74c4e --- /dev/null +++ b/deployment/docker/node/mainnet_node.sh @@ -0,0 +1,65 @@ +#!/usr/bin/env bash +set -euv + +export SCRT_SGX_STORAGE=/opt/secret/.sgx_secrets +export SCRT_ENCLAVE_DIR=/usr/lib + +FORCE_REGISTER=${FORCE_REGISTER:-} +FORCE_SYNC=${FORCE_SYNC:-} + +CHAINID="${CHAINID:-secret-4}" +MONIKER="${MONIKER:-default}" +REGISTRATION_SERVICE="${REGISTRATION_SERVICE:-https://mainnet-register.scrtlabs.com/api/registernode}" +STATE_SYNC1="${STATE_SYNC1:-http://peer.node.scrtlabs.com:26657}" +STATE_SYNC2="${STATE_SYNC2:-${STATE_SYNC1:-http://peer.node.scrtlabs.com:26657}}" + +file=/opt/secret/.sgx_secrets/consensus_seed.sealed +if [ ! -z "$FORCE_REGISTER" ] || [ ! -e "$file" ]; +then + secretd auto-register --reset --registration-service $REGISTRATION_SERVICE +fi + +file=/root/.secretd/data/blockstore.db/MANIFEST-000000 +if [ ! -z "$FORCE_SYNC" ] || [ ! -e "$file" ]; +then + + echo "Resetting or initializing node" + + rm -rf /root/.secretd/* || true + + mkdir -p /root/.secretd/.node + secretd config chain-id "$CHAINID" + + secretd init "$MONIKER" --chain-id "$CHAINID" + + echo "Initialized chain: $CHAINID with node moniker: $MONIKER" + + cp /root/genesis.json /root/.secretd/config/genesis.json + + # Open RPC port to all interfaces + perl -i -pe 's/laddr = .+?26657"/laddr = "tcp:\/\/0.0.0.0:26657"/' /root/.secretd/config/config.toml + + if [ ! -z "$STATE_SYNC1" ] && [ ! -z "$STATE_SYNC2" ]; + then + + echo "Syncing with state sync" + + LATEST_HEIGHT=$(curl -s $STATE_SYNC1/block | jq -r .result.block.header.height); \ + BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \ + TRUST_HASH=$(curl -s "$STATE_SYNC1/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) + + echo "State sync node: $STATE_SYNC1,$STATE_SYNC2" + echo "Trust hash: $TRUST_HASH; Block height: $BLOCK_HEIGHT" + + # enable state sync (this is the only line in the config that uses enable = false. This could change and break everything + perl -i -pe 's/enable = false/enable = true/' ~/.secretd/config/config.toml + + sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \ + s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$STATE_SYNC1,$STATE_SYNC2\"| ; \ + s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \ + s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" $HOME/.secretd/config/config.toml + else + echo "Syncing with block sync" + fi +fi +secretd start diff --git a/deployment/docker/node/node_init.sh b/deployment/docker/node/node_init.sh index 8e602ae5b..bbbd29624 100644 --- a/deployment/docker/node/node_init.sh +++ b/deployment/docker/node/node_init.sh @@ -15,12 +15,6 @@ if [ ! -e "$file" ] then rm -rf ~/.secretd/* || true - # secretcli config chain-id enigma-testnet -# secretcli config output json -# secretcli config indent true -# secretcli config trust-node true - - mkdir -p /root/.secretd/.node # secretd config keyring-backend test secretd config node tcp://"$RPC_URL" diff --git a/deployment/setup scripts/setup_host.sh b/deployment/docker/setup scripts/setup_host.sh similarity index 100% rename from deployment/setup scripts/setup_host.sh rename to deployment/docker/setup scripts/setup_host.sh diff --git a/deployment/setup scripts/setup_tmp_folder.sh b/deployment/docker/setup scripts/setup_tmp_folder.sh similarity index 100% rename from deployment/setup scripts/setup_tmp_folder.sh rename to deployment/docker/setup scripts/setup_tmp_folder.sh diff --git a/deployment/dockerfiles/build-deb-mainnet.Dockerfile b/deployment/dockerfiles/build-deb-mainnet.Dockerfile index 62c968766..7d905abe8 100644 --- a/deployment/dockerfiles/build-deb-mainnet.Dockerfile +++ b/deployment/dockerfiles/build-deb-mainnet.Dockerfile @@ -1,4 +1,4 @@ -FROM rust-go-base-image:latest AS build-env-rust-go +FROM build-release:latest AS build-env-rust-go # Final image FROM enigmampc/enigma-sgx-base:2004-1.1.3 @@ -25,11 +25,11 @@ RUN mkdir -p ./go-cosmwasm/api/ COPY Makefile . # Copy over binaries from the build-env -COPY --from=build-release /usr/lib/libgo_cosmwasm.so ./go-cosmwasm/api/ -COPY --from=build-release /usr/lib/librust_cosmwasm_enclave.signed.so ./go-cosmwasm/ -COPY --from=build-release /usr/lib/librust_cosmwasm_query_enclave.signed.so ./go-cosmwasm/ -COPY --from=build-release /usr/bin/secretd secretd -COPY --from=build-release /usr/bin/secretcli secretcli +COPY --from=build-env-rust-go /usr/lib/libgo_cosmwasm.so ./go-cosmwasm/api/ +COPY --from=build-env-rust-go /usr/lib/librust_cosmwasm_enclave.signed.so ./go-cosmwasm/ +COPY --from=build-env-rust-go /usr/lib/librust_cosmwasm_query_enclave.signed.so ./go-cosmwasm/ +COPY --from=build-env-rust-go /usr/bin/secretd secretd +COPY --from=build-env-rust-go /usr/bin/secretcli secretcli COPY ./deployment/deb ./deployment/deb COPY ./deployment/docker/builder/build_deb.sh . diff --git a/deployment/dockerfiles/mainnet-upgrade-release.Dockerfile b/deployment/dockerfiles/mainnet-upgrade-release.Dockerfile index c97d3e187..9dc8eaab0 100644 --- a/deployment/dockerfiles/mainnet-upgrade-release.Dockerfile +++ b/deployment/dockerfiles/mainnet-upgrade-release.Dockerfile @@ -24,19 +24,19 @@ RUN curl -sL https://deb.nodesource.com/setup_15.x | bash - && \ apt-get install -y nodejs npm && \ npm i -g local-cors-proxy +RUN wget -O /root/genesis.json https://github.com/scrtlabs/SecretNetwork/releases/download/v1.2.0/genesis.json + ARG BUILD_VERSION="v0.0.0" ENV VERSION=${BUILD_VERSION} ENV SGX_MODE=HW -ENV SECRET_NODE_TYPE=NODE - ENV SCRT_ENCLAVE_DIR=/usr/lib/ + # workaround because paths seem kind of messed up RUN cp /opt/sgxsdk/lib64/libsgx_urts_sim.so /usr/lib/libsgx_urts_sim.so RUN cp /opt/sgxsdk/lib64/libsgx_uae_service_sim.so /usr/lib/libsgx_uae_service_sim.so -# Install ca-certificates WORKDIR /root RUN STORAGE_PATH=`echo ${VERSION} | sed -e 's/\.//g' | head -c 2` \ @@ -50,15 +50,10 @@ COPY --from=build-env-rust-go /go/src/github.com/enigmampc/SecretNetwork/go-cosm COPY --from=build-env-rust-go /go/src/github.com/enigmampc/SecretNetwork/secretd /usr/bin/secretd COPY --from=build-env-rust-go /go/src/github.com/enigmampc/SecretNetwork/secretcli /usr/bin/secretcli -COPY deployment/docker/bootstrap/bootstrap_init.sh . -COPY deployment/docker/node/node_init.sh . -COPY deployment/docker/startup.sh . -COPY deployment/docker/node_key.json . +COPY deployment/docker/node/mainnet_node.sh . RUN chmod +x /usr/bin/secretd -RUN chmod +x bootstrap_init.sh -RUN chmod +x startup.sh -RUN chmod +x node_init.sh +RUN chmod +x mainnet_node.sh RUN secretd completion > /root/secretd_completion @@ -72,17 +67,8 @@ RUN mkdir -p /root/config/ ####### Node parameters -ARG MONIKER=default -ARG CHAINID=secret-testnet-1 -ARG GENESISPATH=https://raw.githubusercontent.com/enigmampc/SecretNetwork/master/secret-testnet-genesis.json -ARG PERSISTENT_PEERS=201cff36d13c6352acfc4a373b60e83211cd3102@bootstrap.southuk.azure.com:26656 - -ENV GENESISPATH="${GENESISPATH}" -ENV CHAINID="${CHAINID}" -ENV MONIKER="${MONIKER}" -ENV PERSISTENT_PEERS="${PERSISTENT_PEERS}" #ENV LD_LIBRARY_PATH=/opt/sgxsdk/libsgx-enclave-common/:/opt/sgxsdk/lib64/ # Run secretd by default, omit entrypoint to ease using container with secretcli -ENTRYPOINT ["/bin/bash", "startup.sh"] +ENTRYPOINT ["/bin/bash", "mainnet_node.sh"] diff --git a/deployment/registration-service/registration.Dockerfile b/deployment/registration-service/registration.Dockerfile deleted file mode 100644 index 9f1986cf9..000000000 --- a/deployment/registration-service/registration.Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -FROM cashmaney/enigma-sgx-base - -# wasmi-sgx-test script requirements -RUN apt-get update && \ - apt-get install -y --no-install-recommends \ - #### Base utilities #### - python3-pip && \ - rm -rf /var/lib/apt/lists/* - -ARG SECRET_PACKAGE_URL - -# COPY enigma_package/secretcli /usr/bin/ -ADD ${SECRET_PACKAGE_URL} /usr/lib/secretcli - -#RUN dpkg -i secretpackage.deb -# COPY enigma_package/libgo_cosmwasm.so /usr/lib/ - -COPY requirements.txt . - -RUN pip3 install -r requirements.txt - -COPY svc.py . - -CMD python3 -m svc \ No newline at end of file diff --git a/deployment/registration-service/requirements.txt b/deployment/registration-service/requirements.txt deleted file mode 100644 index acec48365..000000000 --- a/deployment/registration-service/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -requests -flask -flask_cors \ No newline at end of file diff --git a/deployment/registration-service/svc.py b/deployment/registration-service/svc.py deleted file mode 100644 index c7a02de42..000000000 --- a/deployment/registration-service/svc.py +++ /dev/null @@ -1,69 +0,0 @@ -#! /usr/bin/python3 - -import logging -import base64 - -import subprocess -import os -import json - -from flask import Flask, request, abort, jsonify -from flask_cors import CORS -# from flask_restplus import Api, Resource -# from flask_restplus import abort - -logger = logging.getLogger(__name__) - -logging.getLogger("urllib3.connectionpool").setLevel(logging.ERROR) -logging.getLogger("werkzeug").setLevel(logging.ERROR) - -application = Flask(__name__) -CORS(application) - -wallet_name = 'a' -node_url = os.getenv("RPC_URL", 'secret-2.node.enigma.co:26657') -cert_file = 'attestation_cert.der' -chain_id = os.getenv("CHAIN_ID", 'supernova-1') - -executable = ['secretcli', 'tx', 'register', 'auth', cert_file, '--node', 'tcp://' + node_url, '-y', '--from', wallet_name, '--gas', '250000', '--gas-prices', '0.25uscrt', '--chain-id', chain_id] - - -# @ns.param('cert', 'Base64 encoded certificate file', 'query') -@application.route('/register') -def get(): # pylint: disable=no-self-use - filename: str = request.args.get('cert') - - decoded_cert = base64.decodebytes(filename.encode('ascii')) - - try: - with open(cert_file, '+wb') as f: - f.write(decoded_cert) - - except PermissionError: - logger.critical(f'No permissions to write to file') - return abort(500) - - try: - resp = subprocess.check_output(executable) - res = json.loads(resp.decode()) - - if res.get("code", 0) == 0: - return jsonify(res["txhash"]) - else: - logger.error(f"Error creating transaction: {res['raw_log']}") - except Exception as e: - logger.error(f"Error while trying to create transaction: {e}") - abort(500) - finally: - try: - os.remove(cert_file) - except Exception: - pass - - -def start_server(port): - application.run(host='0.0.0.0', port=port, debug=False) - - -if __name__ == '__main__': - start_server(8081) \ No newline at end of file diff --git a/go.mod b/go.mod index b7589bb63..29db8f1fa 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/enigmampc/SecretNetwork go 1.17 require ( - github.com/cosmos/cosmos-sdk v0.45.1 + github.com/cosmos/cosmos-sdk v0.45.4 github.com/cosmos/ibc-go/v3 v3.0.0 github.com/gogo/protobuf v1.3.3 github.com/golang/protobuf v1.5.2 @@ -31,9 +31,7 @@ require github.com/cosmos/gorocksdb v1.2.0 // indirect require ( github.com/dgraph-io/badger/v2 v2.2007.3 // indirect - github.com/ghodss/yaml v1.0.0 // indirect github.com/go-playground/validator/v10 v10.4.1 // indirect - github.com/golang/glog v1.0.0 // indirect github.com/stretchr/objx v0.3.0 // indirect gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect ) @@ -130,8 +128,7 @@ require ( ) replace ( - // github.com/cosmos/cosmos-sdk v0.44.5 => github.com/scrtlabs/cosmos-sdk v0.44.7-0.20220208193714-214a72279fd0 - github.com/cosmos/cosmos-sdk v0.45.1 => github.com/scrtlabs/cosmos-sdk v0.45.4-scrt.0.20220506123023-e9198e81a691 + github.com/cosmos/cosmos-sdk v0.45.4 => github.com/scrtlabs/cosmos-sdk v0.45.4-scrt.0.20220524151842-19338330a997 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 // enforce grpc version google.golang.org/grpc => google.golang.org/grpc v1.33.2 diff --git a/go.sum b/go.sum index 50ac6b970..047d6defd 100644 --- a/go.sum +++ b/go.sum @@ -143,6 +143,7 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= +github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d/go.mod h1:d3C0AkH6BRcvO8T0UEPu53cnw4IbV63x1bEjildYhO0= github.com/btcsuite/btcd v0.0.0-20190315201642-aa6e0f35703c/go.mod h1:DrZx5ec/dmnfpw9KyYoQyYo7d0KEvTkk/5M/vbZjAr8= @@ -216,6 +217,7 @@ github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfc github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cosmos/btcutil v1.0.4 h1:n7C2ngKXo7UC9gNyMNLbzqz7Asuf+7Qv4gnX/rOdQ44= github.com/cosmos/btcutil v1.0.4/go.mod h1:Ffqc8Hn6TJUdDgHBwIZLtrLQC1KdJ9jGJl/TvgUaxbU= +github.com/cosmos/cosmos-sdk v0.45.1/go.mod h1:XXS/asyCqWNWkx2rW6pSuen+EVcpAFxq6khrhnZgHaQ= github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= @@ -311,7 +313,6 @@ github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4 github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= -github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= @@ -365,8 +366,6 @@ github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2V github.com/golang-sql/sqlexp v0.0.0-20170517235910-f1bb20e5a188/go.mod h1:vXjM/+wXQnTPR4KqTKDgJukSZ6amVRtWMPEjE6sQoK8= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -671,6 +670,7 @@ github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0Qu github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= @@ -768,6 +768,7 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= @@ -866,8 +867,8 @@ github.com/sagikazarmark/crypt v0.4.0/go.mod h1:ALv2SRj7GxYV4HO9elxH9nS6M9gW+xDN github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa h1:0U2s5loxrTy6/VgfVoLuVLFJcURKLH49ie0zSch7gh4= github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZjwesgfQ1/iLM= -github.com/scrtlabs/cosmos-sdk v0.45.4-scrt.0.20220506123023-e9198e81a691 h1:9XbcJ+iDgLxofN8LsE1G2tcniDjMj+t5N1YzlA1j9r0= -github.com/scrtlabs/cosmos-sdk v0.45.4-scrt.0.20220506123023-e9198e81a691/go.mod h1:WOqtDxN3eCCmnYLVla10xG7lEXkFjpTaqm2a2WasgCc= +github.com/scrtlabs/cosmos-sdk v0.45.4-scrt.0.20220524151842-19338330a997 h1:AgfqeBDrB1CGWhmQeTQr0ko5PJMejWkFnqpl/KAAIoM= +github.com/scrtlabs/cosmos-sdk v0.45.4-scrt.0.20220524151842-19338330a997/go.mod h1:WOqtDxN3eCCmnYLVla10xG7lEXkFjpTaqm2a2WasgCc= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo= github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY= @@ -893,12 +894,14 @@ github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY52 github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= github.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI= +github.com/spf13/cobra v1.2.1/go.mod h1:ExllRjgxM/piMAM+3tAZvg8fsklGAf3tPfi+i8t68Nk= github.com/spf13/cobra v1.3.0/go.mod h1:BrRVncBjOJa/eUcVVm9CE+oC6as8k+VYr4NY7WCi9V4= github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q= github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g= @@ -913,6 +916,7 @@ github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DM github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= +github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= github.com/spf13/viper v1.10.0/go.mod h1:SoyBPwAtKDzypXNDFKN5kzH7ppppbGZtls1UpIy5AsM= github.com/spf13/viper v1.10.1 h1:nuJZuYpG7gTj/XqiUwg8bA0cp1+M2mC3J4g5luUYBKk= github.com/spf13/viper v1.10.1/go.mod h1:IGlFPqhNAPKRxohIzWpI5QEy4kuI7tcl5WvR+8qy1rU= @@ -1174,6 +1178,7 @@ golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= @@ -1406,6 +1411,7 @@ google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34q google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.44.0/go.mod h1:EBOGZqzyhtvMDoxwS97ctnh0zUmYY6CxqXsc1AvkYD8= google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= @@ -1495,7 +1501,6 @@ google.golang.org/genproto v0.0.0-20211129164237-f09f9a12af12/go.mod h1:5CzLGKJ6 google.golang.org/genproto v0.0.0-20211203200212-54befc351ae9/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb h1:ZrsicilzPCS/Xr8qtBZZLpy4P9TYXAfl49ctG1/5tgw= google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 h1:q1kiSVscqoDeqTF27eQ2NnLLDmqF0I373qQNXYMy0fo= google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= @@ -1515,7 +1520,6 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw= google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= @@ -1532,6 +1536,7 @@ gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.66.2 h1:XfR1dOYubytKy4Shzc2LHrrGhU0lDCfDGG1yLPmpgsI= gopkg.in/ini.v1 v1.66.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= diff --git a/scripts/protoc-swagger-gen.sh b/scripts/protoc-swagger-openapi-gen.sh similarity index 51% rename from scripts/protoc-swagger-gen.sh rename to scripts/protoc-swagger-openapi-gen.sh index 98664ea22..8775b0f2c 100755 --- a/scripts/protoc-swagger-gen.sh +++ b/scripts/protoc-swagger-openapi-gen.sh @@ -24,10 +24,24 @@ for dir in $proto_dirs; do fi done -# combine swagger files -# uses nodejs package `swagger-combine`. -# all the individual swagger files need to be configured in `config.json` for merging -npx swagger-combine ./client/docs/config.json -o ./client/docs/static/swagger/swagger.yaml -f yaml --continueOnConflictingPaths true --includeDefinitions true +# service.swagger.json doesn't work for some reasone +( + cd ./client/docs + + # Generate config.json + # There's some operationIds naming collision, for sake of automation we're + # giving all of them a unique name + find ../../tmp-swagger-gen -name 'query.swagger.json' | + sort | + awk '{print "{\"url\":\""$1"\",\"operationIds\":{\"rename\":{\"Params\":\""$1"Params\",\"DelegatorValidators\":\""$1"DelegatorValidators\",\"UpgradedConsensusState\":\""$1"UpgradedConsensusState\"}}}"}' | + jq -s '{swagger:"2.0","info":{"title":"Secret Network - gRPC Gateway docs","description":"A REST interface for queries and transactions","version":"'"$(git describe --tags $(git rev-list --tags --max-count=1) | perl -pe 's/-(beta|alpha).*//')"'"},apis:.} | .apis += [{"url":"./swagger_legacy.yaml","dereference":{"circular":"ignore"}}]' > ./config.json + + # Derive openapi & swagger from config.json + yarn install + yarn combine + yarn convert + yarn build +) # clean swagger files rm -rf ./tmp-swagger-gen \ No newline at end of file diff --git a/x/compute/internal/keeper/testdata/test-contract/Cargo.lock b/x/compute/internal/keeper/testdata/test-contract/Cargo.lock index 69c8c4bd5..408e644c7 100644 --- a/x/compute/internal/keeper/testdata/test-contract/Cargo.lock +++ b/x/compute/internal/keeper/testdata/test-contract/Cargo.lock @@ -176,7 +176,7 @@ dependencies = [ [[package]] name = "secret-cosmwasm-std" -version = "0.10.0" +version = "0.10.1" dependencies = [ "base64", "schemars",